diff --git a/AUTHORS b/AUTHORS
index b8d8ad1..4500330 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -17,20 +17,25 @@ Much appreciated contributors (in alphabetical order):
Denis Kot - Russian translation
Dmitry Dulepov
Fernando Sayago Gil - Spanish translation
+ Gert van Valkenhoef
Jakub Viták - Czech translation
Janez Troha - Slovenian translation
Jean-Philippe Fleury
Jerry - Chinese translation
Julien Issler
+ Litew - Russian translation
Ludovic Bellière
Manuel Eidenberger
Matthew Dawson
Matías Halles
Mehdi Kabab
Nicolas Lassalle - Subversion support
+ Ozan - Turkish translation
Patrick Georgi
+ Pedro Kiefer - Brazilian Portuguese translation
Raphaël Emourgeon
Samuel Suther - German translation
+ Simon Holywell
Sindre R. Myren
Stewart Platt
Stéphane Baron
diff --git a/INSTALL.mdtext b/INSTALL.mdtext
index 7827f25..f5aeba2 100644
--- a/INSTALL.mdtext
+++ b/INSTALL.mdtext
@@ -6,9 +6,15 @@ the installation of InDefero by itself.
## PHP modules for indefero
-Indefero need the GD module for PHP. It's named "php5-gd" in debian.
+Indefero needs additional PHP modules to function correctly, namely
- $ apt-get install php5-gd
+ - gd (for graphic operations)
+ - zip (for upload archive processing)
+
+The package names of these modules might vary between distributions,
+for Debian they are
+
+ $ apt-get install php5-gd php5-zip
## Recommended Layout of the Files
diff --git a/Makefile b/Makefile
index 8ec8daa..90d3854 100644
--- a/Makefile
+++ b/Makefile
@@ -62,11 +62,11 @@ pot-update: pluf_path
fi
touch src/IDF/locale/idf.pot;
# Extract string
- @cd src; php $(PLUF_PATH)/extracttemplates.php IDF/conf/idf.php IDF/gettexttemplates
+ @cd src; php "$(PLUF_PATH)/extracttemplates.php" IDF/conf/idf.php IDF/gettexttemplates
@cd src; for phpfile in `find . -iname "*.php"`; do \
printf "Parsing file : "$$phpfile"\n"; \
xgettext -o idf.pot -p ./IDF/locale/ --from-code=UTF-8 -j \
- --keyword --keyword=__ --keyword=_n:1,2 -L PHP $$phpfile ; \
+ --keyword --keyword=__ --keyword=_n:1,2 -L PHP "$$phpfile" ; \
done
# Remove tmp folder
rm -Rf src/IDF/gettexttemplates
@@ -76,7 +76,7 @@ pot-update: pluf_path
po-update: pluf_path
@for pofile in `ls src/IDF/locale/*/idf.po`; do \
printf "Updating file : "$$pofile"\n"; \
- msgmerge -v -U $$pofile src/IDF/locale/idf.pot; \
+ msgmerge -v -U "$$pofile" src/IDF/locale/idf.pot; \
printf "\n"; \
done
@@ -144,7 +144,7 @@ po-stats:
--pretty=format:%h`.zip
db-install:
- @cd src && php $(PLUF_PATH)/migrate.php --conf=IDF/conf/idf.php -a -d -i
+ @cd src && php "$(PLUF_PATH)/migrate.php" --conf=IDF/conf/idf.php -a -d -i
db-update:
- @cd src && php $(PLUF_PATH)/migrate.php --conf=IDF/conf/idf.php -a -d
+ @cd src && php "$(PLUF_PATH)/migrate.php" --conf=IDF/conf/idf.php -a -d
diff --git a/NEWS.mdtext b/NEWS.mdtext
index ce953c9..bf489b0 100644
--- a/NEWS.mdtext
+++ b/NEWS.mdtext
@@ -1,4 +1,76 @@
-# InDefero 1.2 - xxx xxx xx xx:xx 2011 UTC
+# InDefero 1.3 - xxx xxx xx xx:xx 2011 UTC
+
+The development of this version of Indefero has been sponsored
+by the friendly folks from Scilab !
+
+ATTENTION: You need Pluf [4121ca4](http://projects.ceondo.com/p/pluf/source/commit/4121ca4)
+or newer to properly run this version of Indefero!
+
+## Changes
+
+- Indefero's post-commit web hook now by default issues HTTP PUT instead of
+ HTTP POST requests and carries the authentication digest in the new
+ `Web-Hook-Hmac` header. The old behaviour can be re-enabled by setting the
+ `$cfg['webhook_processing']` flag to "compat", we urge you to change the
+ implementations of this web hook as this setting is likely to be removed
+ in future versions of Indefero.
+- Indefero now needs PHP's zip module which is not enabled by default.
+- Existing email notifications now have to be explicitely activated in the
+ project's administrative area.
+
+## New Features
+
+- It is now possible to upload and embed resources like images or text
+ files into wiki pages. If no preview for a resource's mime type is
+ available, than a download link is provided for it instead.
+- The notification system has been overhauled; it is now possible to configure
+ what kind of user group, project administrators, members and / or additional
+ mail addresses are notified about updates in a certain section, such as
+ issues, downloads, reviews, and so on. We now also ensure that notification
+ emails for one object are uniquely identifyable to support a grouped view
+ in email clients that support that. (fixes issues 334, 452, and 480)
+- Indefero can now be configured to record activity metrics for all projects
+ in a forge. This needs a special cron job named 'activitycron.php`
+ (under `scripts`) that is run on a regular basis. The metrics can be
+ fine-tuned via `activity_section_weights` and `activity_lookback` in
+ `idf.php` and the result is visible as green bar in the project list view.
+- The forge's project list has been overhauled - its now possible to attach
+ labels on projects and to filter and order the project list by various
+ criteria. Additionally, projects can now get an external project URL
+ configured that is displayed as linkable icon right beside the project name
+ (if available)
+- Forge administrators can furthermore configure an alternative entry page
+ for the forge that is displayed instead of the plain project list. This
+ page accepts standard Markdown syntax and has support for the new
+ `projectlist` macro that allows the (partial) inline rendering of the
+ known global project list.
+- It is now also possible to configure a web hook that informs an external
+ URL about new and updated downloads for a specific project, similar to the
+ available post-commit web hook.
+- One can now upload multiple files at once by using a special archive format
+ which Indefero processes in the background and for which individual upload
+ records are created.
+
+## Bugfixes
+
+- Ensure that IDF does not break UTF-8 encoded strings when
+ shortening them for view rendering (issue 785)
+- Indefero no longer confuses a non-owner of an issue with a notification that
+ a particular ticket has been opened and assigned to him (fixes issue 562)
+
+# InDefero 1.2.1 - XXX XXX XX XX:XX:XX UTC 201X
+
+## Bugfixes
+
+- The diff view now renders properly in Firefox when a minimum font size
+ is configured or the user zooms the web page (fixes issue 773)
+
+## Language and Translations
+
+- Multiple fixes to English source strings (fixes issues 763, 766, and 772,
+ thanks to JP Fleury!)
+
+# InDefero 1.2 - Sun Nov 6 23:04:00 UTC 2011
ATTENTION: You need Pluf [46b7f251](http://projects.ceondo.com/p/pluf/source/commit/46b7f251)
or newer to properly run this version of Indefero!
@@ -50,9 +122,13 @@ or newer to properly run this version of Indefero!
middle (issue 697)
- Indefero now sends the MD5 checksum as HTTP header when downloading a file from the
download area; additionally, a unneeded redirect has been removed (issue 716)
-- Avatar URL generation use correctly the configuration (issue 732)
- Source links without a specific revision did not work due to a wrong regex
(issue 730)
+- Avatar URL generation use correctly the configuration (issue 732)
+- The SyncGit plugin no longer fails to remove a non-existing post-update hook
+ on repository creation (issue 752)
+- When uploading a project logo, an existing uploaded file with the same name
+ no longer leads to an error, but is simple overwritten (fixes issue 740)
- The error detection and reporting in the SyncMonotone plugin has been improved
- The branch links users of the Subversion frontend get when they enter a wrong
revision are fixed; this list is now also only displayed (for any SCM) if
@@ -71,6 +147,11 @@ or newer to properly run this version of Indefero!
## Translations
+- The Russian translation has been enabled by default (thanks for all the great
+ work, Denis Kot and Litew!)
+- Brazilian Portuguese translation started (thanks to Pedro Kiefer!)
+- Turkish translation started (thanks to Ozan!)
+
# InDefero 1.1.2 - Thu May 26 07:42:25 2011 UTC
## Bugfixes
diff --git a/logo/external_link.svg b/logo/external_link.svg
new file mode 100644
index 0000000..e448789
--- /dev/null
+++ b/logo/external_link.svg
@@ -0,0 +1,284 @@
+
+
+
+
diff --git a/scripts/activitycron.php b/scripts/activitycron.php
new file mode 100644
index 0000000..43f91d9
--- /dev/null
+++ b/scripts/activitycron.php
@@ -0,0 +1,48 @@
+ 1) {
+ $date = new DateTime($_SERVER['argv'][1]);
+}
+
+echo 'recalculating project activity for '.$date->format('Y-m-d')."\n";
+IDF_ActivityTaxonomy::recalculateTaxnomies($date);
+
diff --git a/src/IDF/ActivityTaxonomy.php b/src/IDF/ActivityTaxonomy.php
new file mode 100644
index 0000000..9991e51
--- /dev/null
+++ b/src/IDF/ActivityTaxonomy.php
@@ -0,0 +1,156 @@
+ $weight) {
+ $sectionWeights[$section] = $weight / (float) $allWeights;
+ }
+
+ //
+ // determine the date boundaries
+ //
+ $lookback = Pluf::f('activity_lookback', 0);
+ if ($lookback < 1) {
+ throw new LogicException('lookback must be greater or equal to 1');
+ }
+ $dateCopy = new DateTime();
+ $dateCopy->setTimestamp($date->getTimestamp());
+ $dateBoundaries = array(
+ $dateCopy->format('Y-m-d 23:59:59'),
+ $dateCopy->sub(new DateInterval('P'.$lookback.'D'))->format('Y-m-d 00:00:00')
+ );
+
+ //
+ // now recalculate the values for all projects
+ //
+ $projects = Pluf::factory('IDF_Project')->getList();
+ foreach ($projects as $project) {
+ self::recalculateTaxonomy($date, $project, $dateBoundaries, $sectionWeights);
+ }
+ }
+
+ private static function recalculateTaxonomy(DateTime $date, IDF_Project $project, array $dateBoundaries, array $sectionWeights)
+ {
+ $conf = new IDF_Conf();
+ $conf->setProject($project);
+
+ $sectionClasses = array(
+ 'source' => array('IDF_Commit'),
+ 'issues' => array('IDF_Issue'),
+ 'wiki' => array('IDF_Wiki_Page', 'IDF_Wiki_Resource'),
+ 'review' => array('IDF_Review'),
+ 'downloads' => array('IDF_Upload')
+ );
+
+ $value = 0;
+ foreach ($sectionWeights as $section => $weight) {
+ // skip closed / non-existant sections
+ if ($conf->getVal($section.'_access_rights') === 'none')
+ continue;
+
+ if (!array_key_exists($section, $sectionClasses))
+ continue;
+
+ $sectionValue = self::calculateActivityValue(
+ $dateBoundaries, $sectionClasses[$section], $project->id);
+ $value = ((1 - $weight) * $value) + ($weight * $sectionValue);
+ }
+
+ echo "project {$project->name} has an activity value of $value\n";
+
+ $sql = new Pluf_SQL('project=%s AND date=%s', array($project->id, $date->format('Y-m-d')));
+ $activity = Pluf::factory('IDF_ProjectActivity')->getOne(array('filter' => $sql->gen()));
+
+ if ($activity == null) {
+ $activity = new IDF_ProjectActivity();
+ $activity->project = $project;
+ $activity->date = $date->format('Y-m-d');
+ $activity->value = $value;
+ $activity->create();
+ } else {
+ $activity->value = $value;
+ $activity->update();
+ }
+ }
+
+ private static function calculateActivityValue(array $dateBoundaries, array $classes, $projectId)
+ {
+ $allCount = self::countActivityFor($dateBoundaries, $classes);
+ if ($allCount == 0) return 0;
+ $prjCount = self::countActivityFor($dateBoundaries, $classes, $projectId);
+ return $prjCount / (float) $allCount;
+ }
+
+ private static function countActivityFor(array $dateBoundaries, array $classes, $projectId = null)
+ {
+ static $cache = array();
+ $argIdent = md5(serialize(func_get_args()));
+ if (array_key_exists($argIdent, $cache)) {
+ return $cache[$argIdent];
+ }
+
+ $cache[$argIdent] = 0;
+ list($higher, $lower) = $dateBoundaries;
+ $sql = new Pluf_SQL('model_class IN ("'.implode('","', $classes).'") '.
+ 'AND creation_dtime >= %s AND creation_dtime <= %s',
+ array($lower, $higher));
+
+ if ($projectId !== null) {
+ $sql->SAnd(new Pluf_SQL('project=%s', array($projectId)));
+ }
+
+ $cache[$argIdent] = Pluf::factory('IDF_Timeline')->getCount(array('filter' => $sql->gen()));
+
+ return $cache[$argIdent];
+ }
+}
\ No newline at end of file
diff --git a/src/IDF/Commit.php b/src/IDF/Commit.php
index 0e724ad..0060ec7 100644
--- a/src/IDF/Commit.php
+++ b/src/IDF/Commit.php
@@ -235,7 +235,7 @@ class IDF_Commit extends Pluf_Model
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 ""
+
+#: 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 a URL to which a HTTP POST\n"
+"request is sent after each repository commit. If this field is empty,\n"
+"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.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:6
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+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 ""
+"\n"
+"Only project members and admins have write access to the source. \n"
+"If you restrict the access to the source, anonymous access is \n"
+"not provided and the users must authenticate themselves with their \n"
+"password or SSH key."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+msgid ""
+"You can configure here the project tabs access rights and notification "
+"emails."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+#, php-format
+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 ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+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. 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:11
+msgid ""
+"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:12
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+msgid "Notification Email"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.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
+msgid "Project Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:12
+#: 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:234
+msgid "New Download"
+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/delete.html.php:7
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/view.html.php:8
+#: IDF/gettexttemplates/idf/wiki/view.html.php:9
+#, 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:7
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
+#: 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/create.html.php:7
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/update.html.php:7
+msgid "Cancel"
+msgstr "Storno"
+
+#: 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/delete.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/view.html.php:15
+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/index.html.php:15
+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/view.html.php:17
+#: 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: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/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/delete.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/view.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/WikiRevision.php:175
+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/issues/issue-created-email.txt.php:5
+#: 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/issues/issue-created-email.txt.php:6
+#: 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
+msgid "Submitted by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+msgid "Download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-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/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/submit.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/submit.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:8
+msgid "Submit File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:10
+#: 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/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/update.html.php:9
+#: IDF/gettexttemplates/idf/wiki/view.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.html.php:34
+msgid "Here we are, just to help you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:35
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+#: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57
+#: IDF/Views.php:47
+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\", change 123 "
-"with the corresponding issue number.
\n"
+"
Write in the comments \"This is a duplicate of issue 123\", change 123 with the corresponding issue number.
\n"
"
Change the status of the current issue to Duplicate.
\n"
"
Submit the changes.
\n"
""
@@ -299,8 +1460,9 @@ msgstr ""
#: IDF/gettexttemplates/idf/faq.html.php:9
msgid ""
-"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+"You need to create an account on Gravatar, this takes about 5 minutes "
+"and is free."
msgstr ""
#: IDF/gettexttemplates/idf/faq.html.php:10
@@ -391,158 +1553,37 @@ msgstr ""
msgid "Alt+4: Search (when available)."
msgstr ""
-#: IDF/gettexttemplates/idf/faq.html.php:34
-#: IDF/gettexttemplates/idf/faq-api.html.php:3
-msgid "Here we are, just to help you."
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+msgid "People"
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"
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "Usher"
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."
+#: IDF/gettexttemplates/idf/gadmin/home.html.php:3
+msgid "You have here access to the administration of the forge."
msgstr ""
-#: IDF/gettexttemplates/idf/register/inputkey.html.php:4
-msgid "Confirm Your Account"
+#: IDF/gettexttemplates/idf/gadmin/home.html.php:4
+#: IDF/gettexttemplates/idf/project/home.html.php:3
+#: IDF/gettexttemplates/idf/project/timeline.html.php:4
+msgid "Welcome"
+msgstr "Vítejte"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Project List"
msgstr ""
-#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
-#: IDF/gettexttemplates/idf/register/index.html.php:7
-#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
-#: 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/user/myaccount.html.php:13
-#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
-#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
-#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
-#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
-#: IDF/gettexttemplates/idf/wiki/create.html.php:7
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:10
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7
-#: IDF/gettexttemplates/idf/wiki/update.html.php:7
-#: IDF/gettexttemplates/idf/review/create.html.php:12
-#: IDF/gettexttemplates/idf/review/view.html.php:43
-#: IDF/gettexttemplates/idf/issues/create.html.php:14
-#: IDF/gettexttemplates/idf/issues/view.html.php:25
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
-#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:8
-msgid "Cancel"
-msgstr "Storno"
-
-#: 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
-#: IDF/gettexttemplates/idf/downloads/submit.html.php:10
-msgid "Instructions"
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/index.html.php:5 IDF/Views/Admin.php:128
+msgid "Create Project"
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/register/index.html.php:3
-msgid ""
-"Read the terms and conditions "
-"– basically \"Please be nice, we respect you\"."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/register/index.html.php:4
-#, 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:5
-msgid "Oops, please check the provided login and email address to register."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/register/index.html.php:8
-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:9
-msgid "Did you know?"
-msgstr ""
-
-#: 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:4
-#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
-#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
-#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
-msgid "Login:"
-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 ""
-
-#: IDF/gettexttemplates/idf/index.atom.php:3
-#, php-format
-msgid "Personal project feed for %%user%%."
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+msgid "Change Project Details"
msgstr ""
#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
@@ -553,31 +1594,17 @@ msgstr ""
#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
msgid ""
-"Once you have defined the repository type, you cannot change it"
-"strong>."
+"Once you have defined the repository type, you cannot change "
+"it."
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"
+"
Specify each person by its login. Each person must have already registered with the given login.
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.
"
+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/summary.html.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+msgid "Status Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+msgid "Unresolved: By Assignee"
+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] ""
+"Zobrazit %%nb_submit_closed%% zavřené."
+msgstr[1] ""
+"Zobrazit %%nb_submit_closed%% zavřené."
+msgstr[2] ""
+"Zobrazit %%nb_submit_closed%% zavřené."
+
+#: 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 "Odeslané předměty k řešení:"
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:7
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:6
+msgid "Working issues:"
+msgstr "Rozpracované předmět k řešení:"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:3
+#, php-format
+msgid "Reported by %%submitter%%, %%c.creation_dtime%%"
+msgstr "Nahlášeno kým %%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 ""
+"Komentář %%i%% kým %%submitter%%, "
+"%%c.creation_dtime%%"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:5
+#, php-format
+msgid "Sign in to reply to this comment."
+msgstr "Přihlásit se pro odpověď na tento komentář."
+
+#: 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 ""
+"Předmět je nahlášen jako uzavřený, přidejte komentář jen tehdy, pokud si "
+"myslíte, že problém nebyl vyřešen a potřebuje další práci k jeho opravě."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:8
+#, php-format
+msgid "%%interested%% person"
+msgid_plural "%%interested%% persons"
+msgstr[0] "%%interested%% osoba"
+msgstr[1] "%%interested%% osoby"
+msgstr[2] "%%interested%% osoby"
+
+#: 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
+msgid "Click here to view the previous closed issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
+msgid "Click here to view the previous open issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
+msgid "Click here to view the next closed issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
+msgid "Click here to 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 ""
+"Formulář obsahuje nějaké chyby. Prosím opravte je ke změně předmětu k "
+"řešení."
+
+#: 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/login_form.html.php:3
#, php-format
msgid ""
-"If you don't have an account yet, you can create one here."
+"If you don't have an account yet, you can create one here."
msgstr ""
#: IDF/gettexttemplates/idf/login_form.html.php:4
@@ -997,36 +2371,757 @@ msgstr ""
msgid "It takes less than a minute to create your account."
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:3
#, php-format
-msgid "You are looking at the public profile of %%member%%."
+msgid "Welcome, %%user%%."
+msgstr ""
+
+#: 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:9 IDF/Views/Admin.php:42
+msgid "Forge Management"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:10
+msgid "Help and accessibility features"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
+#: 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:4
+#: IDF/gettexttemplates/idf/project/timeline.html.php:5
+msgid "Latest Updates"
+msgstr "Poslední změny"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:5
+msgid "Featured Downloads"
+msgstr "Doporučené soubory ke stažení"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:6
+#: IDF/gettexttemplates/idf/project/home.html.php:8
+msgid "show more..."
+msgstr "zobrazit více.."
+
+#: IDF/gettexttemplates/idf/project/home.html.php:7
+msgid "Featured Documentation"
+msgstr "Doporučená dokumentace"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:9
+msgid "Development Team"
+msgstr "Vývojářksý team"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:10
+msgid "Admins"
+msgstr "Administrátoři"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:11
+msgid "Happy Crew"
+msgstr "Šťastný team"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:3
+msgid "Latest updates"
+msgstr "Poslední změny"
+
+#: 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/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 ""
+
+#: 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 to log in afterwards."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/register/index.html.php:3
+msgid ""
+"Read the terms and conditions "
+"– basically \"Please be nice, we respect you\"."
+msgstr ""
+
+#: 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. Just go here to 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:90
+msgid "Create Your Account"
+msgstr "Vytvořte si účet"
+
+#: 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.
\n"
+"
Check your patch does not provide any password or confidential information!
\n"
+"
"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:18
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:21
+#, php-format
+msgid "Your comments on the changes in file %%file%%:"
+msgstr ""
+
+#: 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
+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
+msgid "Commit:"
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:4
#: IDF/gettexttemplates/idf/review/view.html.php:30
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
-#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
-msgid "Description:"
-msgstr "Popis:"
-
-#: IDF/gettexttemplates/idf/user/public.html.php:5
-msgid "Twitter:"
+#: IDF/gettexttemplates/idf/source/commit.html.php:8
+msgid "View corresponding source tree"
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:6
-msgid "Public Email:"
+#: IDF/gettexttemplates/idf/review/view.html.php:32
+msgid "Reviewers:"
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:7
-msgid "Website:"
+#: IDF/gettexttemplates/idf/review/view.html.php:33
+msgid "No reviewers at the moment."
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:8
-msgid "Last time seen:"
+#: IDF/gettexttemplates/idf/review/view.html.php:34
+msgid "Files:"
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:9
-msgid "Member since:"
+#: IDF/gettexttemplates/idf/review/view.html.php:36
+#: IDF/gettexttemplates/idf/source/commit.html.php:24
+msgid "Download the corresponding diff file"
+msgstr ""
+
+#: 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:188
+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
+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
+msgid "Date:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:6
+msgid "Branch:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:9
+msgid "Parents:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:11
+msgid "Message:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:12
+#: IDF/gettexttemplates/idf/wiki/feedfragment.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:10
+msgid "Changes:"
+msgstr ""
+
+#: 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
+msgid "full"
+msgstr ""
+
+#: 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
+msgid "added"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
+msgid "modified"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
+msgid "properies changed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
+msgid "removed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
+msgid "File differences"
+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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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:314
+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
+#, 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/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/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 ""
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.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/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 ""
+
+#: 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
@@ -1054,32 +3149,31 @@ msgid ""
"The development team.\n"
msgstr ""
-#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3
-#, php-format
+#: 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 ""
-"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"
+"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
@@ -1145,41 +3239,49 @@ msgstr ""
msgid "Show API key and extra password"
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/dashboard.html.php:6
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7
-msgid "Working issues:"
-msgstr "Rozpracované předmět k řešení:"
-
-#: IDF/gettexttemplates/idf/user/dashboard.html.php:7
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:6
-msgid "Submitted issues:"
-msgstr "Odeslané předměty k řešení:"
-
-#: 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
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3
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."
+"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 ""
#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4
@@ -1196,21 +3298,43 @@ msgstr ""
msgid "Reset Your Password"
msgstr ""
-#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3
-msgid ""
-"Oops, please check the provided login or email address to recover your "
-"password."
+#: IDF/gettexttemplates/idf/user/public.html.php:3
+#, php-format
+msgid "You are looking at the public profile of %%member%%."
msgstr ""
-#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4
-msgid "Recover My Password"
+#: IDF/gettexttemplates/idf/user/public.html.php:5
+msgid "Twitter:"
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."
+#: 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
+#: IDF/gettexttemplates/idf/wiki/index.html.php:4
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:173
+msgid "New Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:5
+msgid "Update This Page"
msgstr ""
#: IDF/gettexttemplates/idf/wiki/create.html.php:3
@@ -1222,15 +3346,6 @@ msgstr ""
msgid "The form contains some errors. Please correct them to create the page."
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/create.html.php:5
-#: IDF/gettexttemplates/idf/wiki/update.html.php:5
-#: IDF/gettexttemplates/idf/issues/create.html.php:11
-#: IDF/gettexttemplates/idf/issues/create.html.php:13
-#: IDF/gettexttemplates/idf/issues/view.html.php:22
-#: IDF/gettexttemplates/idf/issues/view.html.php:24
-msgid "Preview"
-msgstr "Náhled"
-
#: IDF/gettexttemplates/idf/wiki/create.html.php:6
msgid "Create Page"
msgstr ""
@@ -1238,8 +3353,7 @@ msgstr ""
#: IDF/gettexttemplates/idf/wiki/delete.html.php:3
#, php-format
msgid ""
-"You are looking at an old revision (%%oldrev.summary%%) of the "
-"page \n"
+"You are looking at an old revision (%%oldrev.summary%%) of the page \n"
"%%page.title%%. This revision was created\n"
"by %%submitter%%."
msgstr ""
@@ -1250,81 +3364,16 @@ msgid ""
"you will not be able to recover it."
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:7
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:8
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:4
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:5
-#: IDF/gettexttemplates/idf/wiki/view.html.php:8
-#: IDF/gettexttemplates/idf/wiki/view.html.php:9
-#: IDF/gettexttemplates/idf/issues/view.html.php:7
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
-#: IDF/gettexttemplates/idf/downloads/view.html.php:4
-#, php-format
-msgid "by %%submitter%%"
-msgstr "kým %%submitter%%"
-
#: IDF/gettexttemplates/idf/wiki/delete.html.php:9
msgid "Delete Revision"
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:11
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:8
-#: IDF/gettexttemplates/idf/wiki/view.html.php:14
-#: IDF/gettexttemplates/idf/review/view.html.php:25
-#: IDF/gettexttemplates/idf/issues/view.html.php:26
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
-msgid "Created:"
-msgstr "Vytvořeno:"
-
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:12
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:9
-#: IDF/gettexttemplates/idf/wiki/view.html.php:15
-#: IDF/gettexttemplates/idf/review/view.html.php:26
-#: IDF/gettexttemplates/idf/issues/view.html.php:27
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:14
-msgid "Updated:"
-msgstr ""
-
#: IDF/gettexttemplates/idf/wiki/delete.html.php:14
#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:11
#: IDF/gettexttemplates/idf/wiki/view.html.php:17
msgid "Old Revisions"
msgstr ""
-#: 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"
-"
To directly include a file content from the repository, embrace its path "
-"with triple square brackets: [[[path/to/file.txt]]].
Website addresses are automatically linked and you can link to another page in the documentation using double square brackets like that [[AnotherPage]].
\n"
+"
To directly include a file content from the repository, embrace its path with triple square brackets: [[[path/to/file.txt]]].
\n"
msgstr ""
#: IDF/gettexttemplates/idf/wiki/index.html.php:3
@@ -1390,6 +3404,24 @@ msgstr ""
msgid "Number of pages:"
msgstr ""
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:4
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:6
+msgid "Update Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:8
+#: IDF/gettexttemplates/idf/wiki/update.html.php:10
+#: IDF/gettexttemplates/idf/wiki/update.html.php:11
+msgid "Delete this page"
+msgstr ""
+
#: IDF/gettexttemplates/idf/wiki/view.html.php:3
msgid ""
"Attention! This page is marked as deprecated, \n"
@@ -1413,1295 +3445,105 @@ msgstr ""
msgid "Delete this revision"
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/update.html.php:4
-msgid "The form contains some errors. Please correct them to update the page."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/wiki/update.html.php:6
-msgid "Update Page"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/wiki/update.html.php:8
-#: IDF/gettexttemplates/idf/wiki/update.html.php:10
-#: IDF/gettexttemplates/idf/wiki/update.html.php:11
-msgid "Delete this page"
-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:8
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9
-msgid "Content:"
+#: 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/base.html.php:3
-msgid "List Pages"
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/base.html.php:5
-msgid "Update This Page"
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
+msgid "Updated by:"
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/base.html.php:6
-#: IDF/gettexttemplates/idf/issues/base.html.php:7
-msgid "Search"
-msgstr "Hledat"
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13
+msgid "New content:"
+msgstr ""
-#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:3
+#: IDF/Issue.php:76
+msgid "owner"
+msgstr "vlastník"
+
+#: IDF/Issue.php:84 IDF/WikiPage.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/Review.php:95 IDF/Upload.php:99 IDF/WikiPage.php:94
+msgid "labels"
+msgstr "nálepky"
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/WikiPage.php:106
+msgid "modification date"
+msgstr "datum změny"
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
#, php-format
-msgid ""
-"The branch or revision %%commit%% is not valid or does not exist\n"
-"in this repository."
+msgid "Issue %3$d, %4$s"
msgstr ""
+"předmět "
+"k řešení %3$d, %4$s"
-#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5
-msgid "The following list shows all available branches:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:6
+#: IDF/Issue.php:214
#, 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 ""
+msgid "Creation of issue %d, by %s"
+msgstr "Vytvoření předmět %d, by %s"
-#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:3
+#: IDF/Issue.php:224
#, php-format
-msgid ""
-"The revision identifier %%commit%% is ambiguous and can be\n"
-"expanded to multiple valid revisions - please choose one:"
-msgstr ""
+msgid "%s: Issue %d created - %s"
+msgstr "%s: Předmět %d vytvořen - %s"
-#: 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/commit-created-email.txt.php:3
-msgid "A new commit has been created:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:5
-#: IDF/gettexttemplates/idf/source/commit.html.php:7
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:7
-#: IDF/gettexttemplates/idf/review/view.html.php:28
-msgid "Commit:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8
-msgid "Created at:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10
-msgid "Commit details:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:3
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:3
-#: IDF/gettexttemplates/idf/review/view.html.php:3
+#: IDF/Issue.php:290
#, php-format
-msgid "%%ndiff%% diff"
-msgid_plural "%%ndiff%% diffs"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgid "Issue %s - %s (%s)"
+msgstr "Předmět k řešení %s - %s (%s)"
-#: IDF/gettexttemplates/idf/source/commit.html.php:4
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:4
-msgid "Date:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:5
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:5
-#: IDF/gettexttemplates/idf/review/view.html.php:27
-msgid "Author:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:6
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:6
-msgid "Branch:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:8
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:8
-#: IDF/gettexttemplates/idf/review/view.html.php:29
-msgid "View corresponding source tree"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:9
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:9
-msgid "Parents:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:10
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:10
-#: IDF/gettexttemplates/idf/source/changelog.html.php:6
-msgid "View corresponding commit"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:11
-#: IDF/gettexttemplates/idf/source/commit.html.rej.php:3
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:11
-msgid "Message:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:13
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:13
-msgid "deleted"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:14
-#: IDF/gettexttemplates/idf/source/commit.html.php:17
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:14
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:17
-msgid "full"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:15
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:15
-msgid "renamed"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:16
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:16
-msgid "added"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:18
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:18
-msgid "modified"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:19
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:19
-msgid "properies changed"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:20
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:20
-msgid "removed"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:21
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:21
-msgid "File differences"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:22
-#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:22
-#: IDF/gettexttemplates/idf/source/git/file.html.php:6
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
-#: IDF/gettexttemplates/idf/review/view.html.php:34
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
-msgid "Archive"
-msgstr "Archív"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:23
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:23
-#: IDF/gettexttemplates/idf/review/view.html.php:35
-msgid "Download the corresponding diff file"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3
+#: IDF/Issue.php:336
#, php-format
-msgid "%%cproject.name%%: Commit %%c.scm_id%%"
-msgstr ""
+msgid "Updated Issue %s - %s (%s)"
+msgstr "Předmět aktualizován %s - %s (%s)"
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:3
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3
-#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:3
-msgid "Branches"
-msgstr ""
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
+msgid "issue"
+msgstr "předmět k řešení"
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:4
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:4
-#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:4
-msgid "filter branches"
-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 "komentář"
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:5
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:5
-#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:5
-msgid "Tags"
-msgstr ""
+#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63
+#: IDF/WikiRevision.php:85
+msgid "changes"
+msgstr "změny"
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:6
-#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:6
-msgid "filter tags"
-msgstr ""
+#: 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/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
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:3
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:3
-#: IDF/gettexttemplates/idf/source/git/file.html.php:3
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:3
+#: IDF/IssueComment.php:180
#, php-format
-msgid ""
-"Source at commit %%commit%% created %%"
-"cobject.date%%."
+msgid "Comment on issue %d, by %s"
msgstr ""
+"Komentář k předmětu k "
+"řešení č. %d, %s"
-#: 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
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:4
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:4
-#: IDF/gettexttemplates/idf/source/git/file.html.php:4
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:4
+#: IDF/IssueComment.php:191
#, php-format
-msgid "By %%cobject.author%%, %%cobject.title%%"
-msgstr ""
-
-#: 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
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:5
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:5
-#: IDF/gettexttemplates/idf/source/git/file.html.php:5
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:5
-msgid "Root"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:9
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
-#: IDF/gettexttemplates/idf/source/git/file.html.php:7
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
-msgid "Download this file"
-msgstr "Stáhnout tento soubor"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
-#: IDF/Views/Download.php:64 IDF/Views/Download.php:292 IDF/Form/Upload.php:59
-msgid "File"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7
-#: IDF/gettexttemplates/idf/source/changelog.html.php:3
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:7
-#: IDF/Views/Project.php:152
-msgid "Age"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8
-#: IDF/gettexttemplates/idf/source/changelog.html.php:4
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:8
-msgid "Message"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:9
-#: IDF/Views/Download.php:66 IDF/Views/Download.php:294
-msgid "Size"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:10
-msgid ":"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:12
-msgid "Download this version"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:13
-msgid "or"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:14
-#: IDF/gettexttemplates/idf/main-menu.html.php:10
-msgid "Help"
-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 ""
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6
-#: IDF/gettexttemplates/idf/source/git/help.html.php:7
-msgid "To make a first commit in the repository, perform the following steps:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/help.html.php:7
-#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7
-#: IDF/gettexttemplates/idf/source/git/help.html.php:8
-#, php-format
-msgid "Find here more details on how to access %%project%% source code."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8
-#: IDF/gettexttemplates/idf/source/svn/help.html.php:8
-#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8
-#: IDF/gettexttemplates/idf/source/git/help.html.php:9
-msgid "Command-Line Access"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9
-#: IDF/gettexttemplates/idf/source/git/help.html.php:10
-msgid "First Commit"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
-#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3
-msgid "Revision:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
-#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4
-msgid "Go to revision"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11
-msgid "Property"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12
-msgid "set to:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8
-msgid "Rev"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
-msgid "Branches:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18
-msgid "Tags:"
-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 ""
-
-#: IDF/gettexttemplates/idf/source/svn/help.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/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/svn/help.html.php:9
-#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9
-msgid "Write Access Authentication"
-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 ""
-
-#: 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:5
-#: IDF/gettexttemplates/idf/source/changelog.html.php:7
-#: IDF/Form/ReviewCreate.php:74
-msgid "Commit"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/base.html.php:6
-msgid "How To Get The Code"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/changelog.html.php:5
-msgid "Parent:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/changelog.html.php:8
-msgid "by"
-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 ""
-
-#: 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 ""
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:3
-#, php-format
-msgid ""
-"Welcome, %%user%%."
-msgstr ""
-
-#: 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:7
-#: IDF/gettexttemplates/idf/index.html.php:6
-#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77
-msgid "Private project"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42
-msgid "Forge Management"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:9
-msgid "Help and accessibility features"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:4
-msgid "No projects managed with InDefero were found."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:7
-msgid "Forge statistics"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:8
-msgid "Projects:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:9
-msgid "Members:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:10
-msgid "Issues:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:11
-msgid "Commits:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:12
-msgid "Documentations:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:14
-msgid "Code reviews:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/base-full.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:4
-#: IDF/gettexttemplates/idf/base.html.php:4
-msgid "Project Home"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/base-full.html.php:6
-#: IDF/gettexttemplates/idf/admin/base.html.php:5
-#: IDF/gettexttemplates/idf/base.html.php:6 IDF/Form/TabsConf.php:40
-msgid "Documentation"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/base-full.html.php:8
-#: IDF/gettexttemplates/idf/admin/base.html.php:7
-#: IDF/gettexttemplates/idf/base.html.php:8 IDF/Form/TabsConf.php:41
-msgid "Source"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/base-full.html.php:9
-#: IDF/gettexttemplates/idf/base.html.php:9 IDF/Form/TabsConf.php:39
-msgid "Code Review"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/base-full.html.php:10
-#: IDF/gettexttemplates/idf/base.html.php:10
-msgid "Project Management"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/create.html.php:3
-#, fuzzy
-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 ""
-"
Před odesláním předmetu k řešení, nezapomeňte poskytnout následující "
-"informace:
\n"
-"
\n"
-"
Kroky potřebné pro zopakování problému.
\n"
-"
Verzi softwaru a typ operačního systému, který používate.
\n"
-"
Jakákoli informace, která může pomoci vývojářům vyřešit problém.
\n"
-"
Neposkytujte žádná hesla ani jiné citlivé informace!"
-"li>\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/create.html.php:11
-#: IDF/gettexttemplates/idf/review/index.html.php:3
-#: IDF/gettexttemplates/idf/review/base.html.php:4 IDF/Views/Review.php:83
-msgid "Start Code 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:4
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4
-#, php-format
-msgid "By %%who%%, %%c.creation_dtime%%:"
-msgstr "Kým %%who%%, %%c.creation_dtime%%:"
-
-#: 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 ""
-
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:11
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:7
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:8
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:8
-msgid "Reported by:"
-msgstr "Nahlášeno kým:"
-
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9
-msgid "URL:"
-msgstr "URL:"
-
-#: 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/review-updated-email.txt.php:16
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10
-msgid "Review:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:4
-#, php-format
-msgid "%%nc%% comment"
-msgid_plural "%%nc%% comments"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:5
-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 ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:13
-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 ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:20
-#, php-format
-msgid ""
-"Comment %%i%% by %%who%%, "
-"%%c.creation_dtime%%"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:21
-#, php-format
-msgid "Your comments on the changes in file %%file%%:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:22
-#: IDF/gettexttemplates/idf/issues/view.html.php:4
-#, php-format
-msgid ""
-"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%"
-msgstr ""
-"Komentář %%i%% kým %%submitter%%, %%c.creation_dtime%"
-"%"
-
-#: 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:31
-msgid "Reviewers:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:32
-msgid "No reviewers at the moment."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:33
-msgid "Files:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:36
-msgid "How to Participate in a Code Review"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:37
-msgid "Old"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:38
-msgid "New"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:39
-msgid "General Comments"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:42
-msgid "Submit Code Review"
-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/review-created-email.txt.php:3
-msgid "The following review has been created:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/members.html.php:13
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:15
-#: IDF/gettexttemplates/idf/admin/summary.html.php:8
-#: IDF/gettexttemplates/idf/admin/wiki.html.php:8
-#: IDF/gettexttemplates/idf/admin/source.html.php:31
-#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8
-#: IDF/gettexttemplates/idf/admin/downloads.html.php:8
-msgid "Save Changes"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
-msgid ""
-"\n"
-"Only project members and admins have write access to the source. \n"
-"If you restrict the access to the source, anonymous access is \n"
-"not provided and the users must authenticate themselves with their \n"
-"password or SSH key."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
-msgid ""
-"You can configure here the project tabs access rights and notification "
-"emails."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
-#, php-format
-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 ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
-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. 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:11
-msgid ""
-"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:12
-msgid ""
-"The form contains some errors. Please correct them to update the access "
-"rights."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
-msgid "Access Rights"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
-msgid "Notification Email"
-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"
-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/wiki.html.php:3
-#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
-#: IDF/gettexttemplates/idf/admin/downloads.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 ""
-
-#: 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 a URL to which a HTTP POST\n"
-"request is sent after each repository commit. If this field is empty,\n"
-"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.
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"
+"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 ""
@@ -1095,6 +1189,7 @@ 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 a URL to which a HTTP POST\n"
"request is sent after each repository commit. If this field is empty,\n"
@@ -1144,8 +1239,8 @@ msgstr ""
"
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/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/summary.html.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr "Ungelöst: Nach %%key%%"
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+msgid "Status Summary"
+msgstr "Status-Zusammenfassung"
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+msgid "Unresolved: By Assignee"
+msgstr "Ungelöst: Nach Zugeordneten"
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:3
#, php-format
msgid ""
"See the %%nb_submit_closed%% closed."
@@ -2393,57 +2542,49 @@ msgstr[1] ""
"Siehe die %%nb_submit_closed%% "
"geschlossenen."
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4
+#: 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"
-"a>."
+"Siehe das %%nb_owner_closed%% "
+"geschlossene."
msgstr[1] ""
"Siehe die %%nb_owner_closed%% "
"geschlossenen."
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:6
+#: 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/my-issues.html.php:7
+#: 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/search.html.php:4
-msgid "Found issues:"
-msgstr "Gefundene Tickets:"
-
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:3
#: 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.orig.php:4
#: 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"
-"%%"
+"Kommentar %%i%% von %%submitter%%, "
+"%%c.creation_dtime%%"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:5
#: 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.orig.php:6
#: IDF/gettexttemplates/idf/issues/view.html.php:6
msgid ""
"This issue is marked as closed, add a comment only if you think this issue "
@@ -2453,7 +2594,6 @@ msgstr ""
"hinzu, wenn Du denkst, dass das geschilderte Problem noch nicht ganz "
"beseitigt wurde."
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:8
#: IDF/gettexttemplates/idf/issues/view.html.php:8
#, php-format
msgid "%%interested%% person"
@@ -2461,79 +2601,65 @@ msgid_plural "%%interested%% persons"
msgstr[0] "%%interested%% Person"
msgstr[1] "%%interested%% Personen"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:9
#: IDF/gettexttemplates/idf/issues/view.html.php:9
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:3
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:7
+#, 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.orig.php:10
-#: IDF/gettexttemplates/idf/issues/view.html.php:10
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:4
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:8
+#: 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.orig.php:11
-#: IDF/gettexttemplates/idf/issues/view.html.php:11
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:5
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:9
+#: IDF/gettexttemplates/idf/issues/view.html.php:12
msgid "Click here to view the previous closed issue"
msgstr "Klicke hier, um das vorherige geschlossene Ticket zu sehen."
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:12
-#: IDF/gettexttemplates/idf/issues/view.html.php:12
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:6
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:10
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
msgid "Click here to view the previous open issue"
msgstr "Klicke hier, um das vorherige offene Ticket zu sehen."
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:13
-#: IDF/gettexttemplates/idf/issues/view.html.php:13
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
msgid "Click here to view the next closed issue"
msgstr "Klicke hier, um das nächte geschlossene Ticket zu sehen."
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:14
-#: IDF/gettexttemplates/idf/issues/view.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
msgid "Click here to view the next open issue"
msgstr "Klicke hier, um das nächste offene Ticket zu sehen."
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:15
-#: IDF/gettexttemplates/idf/issues/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:16
msgid "download"
msgstr "herunterladen"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:16
-#: IDF/gettexttemplates/idf/issues/view.html.php:16
+#: IDF/gettexttemplates/idf/issues/view.html.php:17
msgid "view"
msgstr "anzeigen"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:21
-#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: 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.orig.php:23
-#: IDF/gettexttemplates/idf/issues/view.html.php:23
+#: IDF/gettexttemplates/idf/issues/view.html.php:25
msgid "Submit Changes"
msgstr "Sende Änderungen"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:30
-#: IDF/gettexttemplates/idf/issues/view.html.php:30
+#: IDF/gettexttemplates/idf/issues/view.html.php:32
msgid "Followed by:"
msgstr "Beobachtet von:"
#: IDF/gettexttemplates/idf/login_form.html.php:3
#, php-format
msgid ""
-"If you don't have an account yet, you can create one here."
+"If you don't have an account yet, you can create one here."
msgstr ""
-"Wenn Du noch kein Benutzerkonto hast, kannst Du hier ein "
-"neues erstellen."
+"Wenn Du noch kein Benutzerkonto hast, kannst Du hier "
+"ein neues erstellen."
#: IDF/gettexttemplates/idf/login_form.html.php:4
msgid "What is your account information?"
@@ -2568,8 +2694,8 @@ msgstr "Es dauert weniger als eine Minute, um Dein Benutzerkonto zu erstellen."
msgid ""
"Welcome, %%user%%."
msgstr ""
-"Willkommen, %%user%%"
-"strong>."
+"Willkommen, %%user%%."
#: IDF/gettexttemplates/idf/main-menu.html.php:4
msgid "Sign Out"
@@ -2579,25 +2705,24 @@ msgstr "Abmelden"
msgid "Sign in or create your account"
msgstr "Anmelden oder Benutzerkonto erstellen"
-#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42
+#: IDF/gettexttemplates/idf/main-menu.html.php:9 IDF/Views/Admin.php:42
msgid "Forge Management"
msgstr "Administration"
-#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/main-menu.html.php:10
msgid "Help and accessibility features"
msgstr "Hilfe und Barrierefreiheit"
-#: IDF/gettexttemplates/idf/main-menu.html.php:10
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
#: 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:14
-#: IDF/gettexttemplates/idf/source/svn/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:4
#: IDF/gettexttemplates/idf/project/timeline.html.php:5
-#: IDF/gettexttemplates/idf/project/timeline.html~.php:5
msgid "Latest Updates"
msgstr "Letzte Änderungen"
@@ -2627,20 +2752,29 @@ msgid "Happy Crew"
msgstr "Glückliche Mannschaft"
#: IDF/gettexttemplates/idf/project/timeline.html.php:3
-#: 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:72
+#: 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
-#: IDF/gettexttemplates/idf/project/timeline.html~.php:6
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/register/confirmation-email.txt.php:3
#, php-format
msgid ""
@@ -2713,21 +2847,20 @@ 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"
-"strong> to log in afterwards."
+"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
-#: 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\""
-"em>."
+"– kurz zusammengefast \"Bitte sei nett, wir respektieren "
+"Dich\"."
#: IDF/gettexttemplates/idf/register/index.html.php:4
#, php-format
@@ -2737,11 +2870,10 @@ msgid ""
"login name and password."
msgstr ""
"Wenn Du einfach nur Deine Anmeldedaten vergessen hast, gibt es keinen Grund, "
-"ein neues Benutzerkonto zu erstellen. Gehe einfach hier her, "
-"um Deinen Anmeldenamen und Dein Passwort wiederherzustellen."
+"ein neues Benutzerkonto zu erstellen. Gehe einfach hier "
+"her, um Deinen Anmeldenamen und Dein Passwort wiederherzustellen."
#: IDF/gettexttemplates/idf/register/index.html.php:5
-#: IDF/gettexttemplates/idf/register/index.html~.php:4
#, php-format
msgid ""
"With your account, you will able to participate in the life of all the "
@@ -2749,25 +2881,22 @@ msgid ""
"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."
+"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
-#: IDF/gettexttemplates/idf/register/index.html~.php:5
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/gettexttemplates/idf/register/index.html~.php:6 IDF/Views.php:90
+#: IDF/gettexttemplates/idf/register/index.html.php:7 IDF/Views.php:90
msgid "Create Your Account"
msgstr "Erstelle Deinen Account"
#: IDF/gettexttemplates/idf/register/index.html.php:9
-#: IDF/gettexttemplates/idf/register/index.html~.php:8
msgid ""
"Be sure to provide a valid email address, as we are sending a validation "
"link by email."
@@ -2776,7 +2905,6 @@ msgstr ""
"diese Adresse versenden."
#: IDF/gettexttemplates/idf/register/index.html.php:10
-#: IDF/gettexttemplates/idf/register/index.html~.php:9
msgid "Did you know?"
msgstr "Wusstest Du?"
@@ -2826,14 +2954,14 @@ msgid ""
"
\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"
+"
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"
+"
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"
@@ -2847,8 +2975,8 @@ msgstr ""
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."
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die "
+"Code-Besprechung einzusenden."
#: IDF/gettexttemplates/idf/review/create.html.php:10
msgid ""
@@ -2889,22 +3017,6 @@ msgid "Detailed file comments (last first):"
msgstr "Detaillierte Dateikommentare (neueste zuerst):"
#: IDF/gettexttemplates/idf/review/view.html.php:3
-#: 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:4
-#, php-format
-msgid "%%nc%% comment"
-msgid_plural "%%nc%% comments"
-msgstr[0] "%%nc%% Kommentar"
-msgstr[1] "%%nc%% Kommentare"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:5
msgid ""
"Code review is a process in which\n"
"after or before changes are commited into the code repository,\n"
@@ -2923,7 +3035,7 @@ msgstr ""
"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:13
+#: IDF/gettexttemplates/idf/review/view.html.php:11
msgid ""
"\n"
"Proposing code for review is intimidating, you know\n"
@@ -2937,8 +3049,23 @@ msgstr ""
"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"
-"strong>.\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
+#, 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
@@ -2946,8 +3073,8 @@ msgid ""
"Comment %%i%% by %%who%%, "
"%%c.creation_dtime%%"
msgstr ""
-"Kommentar %%i%% von %%who%%"
-"a>, %%c.creation_dtime%%"
+"Kommentar %%i%% von %%who%%, %%c.creation_dtime%%"
#: IDF/gettexttemplates/idf/review/view.html.php:21
#, php-format
@@ -2965,63 +3092,51 @@ msgstr ""
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."
+"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die "
+"Code-Besprechung einzusenden."
-#: IDF/gettexttemplates/idf/review/view.html.php:27
-#: 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:28
-#: 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:29
-#: 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:31
-msgid "Reviewers:"
-msgstr "Rezensenten:"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:32
-msgid "No reviewers at the moment."
-msgstr "Derzeit gibt es keine Rezensenten."
-
-#: IDF/gettexttemplates/idf/review/view.html.php:33
-msgid "Files:"
-msgstr "Dateien:"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:35
-#: IDF/gettexttemplates/idf/source/commit.html.php:23
-#: 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:36
+#: 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
+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
+msgid "Commit:"
+msgstr "Revision"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:30
+#: 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
+msgid "Download the corresponding diff file"
+msgstr "Dazugehörige Unterschiedsdatei herunterladen"
+
#: IDF/gettexttemplates/idf/review/view.html.php:37
-msgid "Old"
-msgstr "Alt"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:38
-msgid "New"
-msgstr "Neu"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:39
msgid "General Comments"
msgstr "Allgemeine Kommentare"
-#: IDF/gettexttemplates/idf/review/view.html.php:42
+#: IDF/gettexttemplates/idf/review/view.html.php:40
msgid "Submit Code Review"
msgstr "Code-Besprechung einsenden"
@@ -3040,17 +3155,16 @@ 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:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
-#: IDF/Views/Project.php:163
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8 IDF/Views/Project.php:188
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:8
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
msgid "Message"
msgstr "Logmeldung"
@@ -3060,7 +3174,6 @@ 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"
@@ -3092,71 +3205,61 @@ 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.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:17
-#: IDF/gettexttemplates/idf/source/commit.html~.php:14
-#: IDF/gettexttemplates/idf/source/commit.html~.php:17
+#: IDF/gettexttemplates/idf/source/commit.html.php:18
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
-#: IDF/gettexttemplates/idf/source/commit.html~.php:16
+msgid "copied"
+msgstr "kopiert"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:17
msgid "added"
msgstr "hinzugefügt"
-#: IDF/gettexttemplates/idf/source/commit.html.php:18
-#: IDF/gettexttemplates/idf/source/commit.html~.php:18
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
msgid "modified"
msgstr "verändert"
-#: IDF/gettexttemplates/idf/source/commit.html.php:19
-#: IDF/gettexttemplates/idf/source/commit.html~.php:19
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
msgid "properies changed"
msgstr "Eigenschaften geändert"
-#: IDF/gettexttemplates/idf/source/commit.html.php:20
-#: IDF/gettexttemplates/idf/source/commit.html~.php:20
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
msgid "removed"
msgstr "entfernt"
-#: IDF/gettexttemplates/idf/source/commit.html.php:21
-#: IDF/gettexttemplates/idf/source/commit.html~.php:21
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
msgid "File differences"
msgstr "Dateiunterschiede"
@@ -3222,10 +3325,10 @@ msgstr "Tags filtern"
#: 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: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
+#: 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 "
@@ -3238,10 +3341,10 @@ msgstr ""
#: 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: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
+#: 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%%"
@@ -3250,10 +3353,10 @@ msgstr "Von %%cobject.author%%, %%cobject.title%%"
#: 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: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
+#: 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"
@@ -3272,13 +3375,15 @@ msgstr ""
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."
+"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."
+"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
@@ -3311,28 +3416,28 @@ 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:9
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
-#: IDF/Views/Download.php:66 IDF/Views/Download.php:294
+#: 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:314
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:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13
+#: 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: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:13
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14
msgid "or"
msgstr "oder"
@@ -3347,10 +3452,12 @@ msgstr ""
"in diesem Depot."
#: IDF/gettexttemplates/idf/source/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/svn/invalid_revision.html.php:6
#, php-format
msgid ""
"If this is a new repository, the reason for this error\n"
@@ -3389,6 +3496,14 @@ msgstr ""
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 ""
@@ -3401,28 +3516,18 @@ msgstr ""
#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3
#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
+#: 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/file.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
+#: 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/file.html.php:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11
-msgid "Property"
-msgstr "Eigenschaft"
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12
-msgid "set to:"
-msgstr "gesetzt auf:"
-
#: IDF/gettexttemplates/idf/source/svn/help.html.php:3
#, php-format
msgid ""
@@ -3433,15 +3538,24 @@ msgstr ""
"Das Team von %%project%% nutzt subversion\n"
"als Software zur Versionsverwaltung."
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8
+#: 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:17
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
msgid "Branches:"
msgstr "Zweige:"
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
msgid "Tags:"
msgstr "Tags:"
@@ -3715,7 +3829,7 @@ msgstr "Seiten anzeigen"
#: IDF/gettexttemplates/idf/wiki/base.html.php:4
#: IDF/gettexttemplates/idf/wiki/index.html.php:4
-#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:175
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:173
msgid "New Page"
msgstr "Neue Seite"
@@ -3741,8 +3855,8 @@ msgstr "Seite anlegen"
#: IDF/gettexttemplates/idf/wiki/delete.html.php:3
#, php-format
msgid ""
-"You are looking at an old revision (%%oldrev.summary%%) of the "
-"page \n"
+"You are looking at an old revision (%%oldrev.summary%%) of the page "
+"\n"
"%%page.title%%. This revision was created\n"
"by %%submitter%%."
msgstr ""
@@ -3788,8 +3902,8 @@ msgstr "Lösche Seite"
msgid ""
"\n"
"
Website addresses are automatically linked and you can link to another "
"page in the documentation using double square brackets like that "
"[[AnotherPage]].
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"
"
Um direkt die Inhalte einer Datei aus dem Depot einzubinden, umklammere "
-"den Pfad zur Datei mit dreifachen, eckigen Klammern: [[[Pfad/zu/Datei.txt]]]."
-"
\n"
+"den Pfad zur Datei mit dreifachen, eckigen Klammern: "
+"[[[Pfad/zu/Datei.txt]]].\n"
#: IDF/gettexttemplates/idf/wiki/index.html.php:3
#, php-format
@@ -3901,16 +4015,16 @@ msgstr ""
"Interessierte Benutzer werden eine E-Mail erhalten, wenn das Ticket geändert "
"wird."
-#: IDF/Issue.php:92 IDF/Review.php:95 IDF/Upload.php:93 IDF/WikiPage.php:94
+#: IDF/Issue.php:92 IDF/Review.php:95 IDF/Upload.php:99 IDF/WikiPage.php:94
msgid "labels"
msgstr "Labels"
#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
-#: IDF/Upload.php:112 IDF/WikiPage.php:106
+#: IDF/Upload.php:118 IDF/WikiPage.php:106
msgid "modification date"
msgstr "Änderungsdatum"
-#: IDF/Issue.php:194 IDF/IssueComment.php:143
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
#, php-format
msgid ""
"Issue %3$d, %4$s"
@@ -3918,27 +4032,27 @@ msgstr ""
"Ticket %3$d, "
"%4$s"
-#: IDF/Issue.php:196
+#: IDF/Issue.php:214
#, php-format
msgid "Creation of issue %d, by %s"
msgstr "Erstellung von Ticket %d, von %s"
-#: IDF/Issue.php:206
+#: IDF/Issue.php:224
#, php-format
msgid "%s: Issue %d created - %s"
msgstr "%s: Ticket %d angelegt - %s"
-#: IDF/Issue.php:272
+#: IDF/Issue.php:290
#, php-format
msgid "Issue %s - %s (%s)"
msgstr "Ticket %s - %s (%s)"
-#: IDF/Issue.php:318
+#: IDF/Issue.php:336
#, php-format
msgid "Updated Issue %s - %s (%s)"
msgstr "Ticket %s aktualisiert - %s (%s)"
-#: IDF/IssueComment.php:51
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
msgid "issue"
msgstr "Ticket"
@@ -3956,12 +4070,12 @@ msgstr "Änderungen"
msgid "Serialized array of the changes in the issue."
msgstr "Serialisierte Liste von Änderungen im Ticket"
-#: IDF/IssueComment.php:171
+#: IDF/IssueComment.php:180
#, php-format
msgid "Comment on issue %d, by %s"
msgstr "Kommentar zum Ticket %d, von %s"
-#: IDF/IssueComment.php:182
+#: IDF/IssueComment.php:191
#, php-format
msgid "%s: Comment on issue %d - %s"
msgstr "%s: Kommentar zum Ticket %d - %s"
@@ -3990,11 +4104,19 @@ msgstr "Bild"
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:87
+#: IDF/Key.php:90
msgid "Invalid or unknown key data detected."
msgstr "Ungültige oder unbekannte Schlüsseldaten bemerkt."
@@ -4008,125 +4130,134 @@ msgstr "Das Depot %s existiert bereits."
msgid "%s does not exist or is not writable."
msgstr "%s existiert nicht oder ist nicht schreibbar."
-#: IDF/Plugin/SyncMonotone.php:86 IDF/Plugin/SyncMonotone.php:457
-#: IDF/Plugin/SyncMonotone.php:783
+#: 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 \"%s\": %s"
+msgstr "Konnte die usher-Konfiguration in \"%s\" nicht analysieren: %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 \"%s\": %s"
+msgstr "Konnte read-permissions-Datei für Projekt \"%s\" nicht analysieren: %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:93 IDF/Plugin/SyncMonotone.php:447
-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:100
-#, 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:135
-#, php-format
-msgid "The configuration file %s is missing."
-msgstr "Die Konfigurationsdatei %s fehlt."
-
-#: IDF/Plugin/SyncMonotone.php:144
-#, php-format
-msgid "The project path %s already exists."
-msgstr "Der Projektpfad %s existiert bereits."
-
-#: IDF/Plugin/SyncMonotone.php:150
-#, php-format
-msgid "The project path %s could not be created."
-msgstr "Der Projektpfad %s konnte nicht angelegt werden."
-
-#: IDF/Plugin/SyncMonotone.php:187 IDF/Scm/Monotone/Stdio.php:87
-#, php-format
-msgid "The key directory %s could not be created."
-msgstr "Das Schlüsselverzeichnis %s konnte nicht erstellt werden."
-
-#: IDF/Plugin/SyncMonotone.php:205
-#, php-format
-msgid "Could not parse key information: %s"
-msgstr "Konnte die Schlüsselinformationen nicht analysieren: %s"
-
-#: IDF/Plugin/SyncMonotone.php:243
-#, php-format
-msgid "Could not create configuration directory \"%s\""
-msgstr "Konnte Konfigurationsverzeichnis \"%s\" nicht erstellen."
-
-#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414
-#, php-format
-msgid "Could not create symlink \"%s\""
-msgstr "Konnte symbolischen Link \"%s\" nicht erstellen."
-
-#: IDF/Plugin/SyncMonotone.php:269
-#, php-format
-msgid "Could not write configuration file \"%s\""
-msgstr "Konnte die Konfigurationsdatei \"%s\" nicht schreiben."
-
-#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489
-#, php-format
-msgid "Could not parse usher configuration in \"%s\": %s"
-msgstr "Konnte die usher-Konfiguration in \"%s\" nicht analysieren: %s"
-
-#: IDF/Plugin/SyncMonotone.php:295
-#, 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:320 IDF/Plugin/SyncMonotone.php:510
-#, php-format
-msgid "Could not write usher configuration file \"%s\""
-msgstr "Konnte die usher-Konfigurationsdatei \"%s\" nicht schreiben."
-
-#: IDF/Plugin/SyncMonotone.php:366
-#, php-format
-msgid "Could not write write-permissions file \"%s\""
-msgstr "Konnte die write-permissions-Datei \"%s\" nicht schreiben."
-
-#: IDF/Plugin/SyncMonotone.php:389
-#, php-format
-msgid "Could not write read-permissions file \"%s\""
-msgstr "Konnte die read-permissions-Datei \"%s\" nicht schreiben."
-
-#: IDF/Plugin/SyncMonotone.php:406
-#, php-format
-msgid "Could not remove symlink \"%s\""
-msgstr "Konnte symbolischen Link \"%s\" nicht entfernen."
-
-#: IDF/Plugin/SyncMonotone.php:465
-#, php-format
-msgid "One or more paths underknees %s could not be deleted."
-msgstr "Ein oder mehrere Pfade unterhalb %s konnten nicht gelöscht werden."
-
-#: IDF/Plugin/SyncMonotone.php:477
-#, 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:560 IDF/Plugin/SyncMonotone.php:676
-#, php-format
-msgid "Could not parse read-permissions for project \"%s\": %s"
-msgstr "Konnte read-permissions-Datei für Projekt \"%s\" nicht analysieren: %s"
-
-#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699
-#, 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:617 IDF/Plugin/SyncMonotone.php:717
-#, 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:790
+#: 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:808
+#: IDF/Plugin/SyncMonotone.php:838
#, php-format
msgid "The command \"%s\" could not be executed."
msgstr "Das Kommando \"%s\" konnte nicht ausgeführt werden."
@@ -4183,8 +4314,8 @@ msgstr "abstimmen"
msgid ""
"Review %3$d, %4$s"
msgstr ""
-"Code-"
-"Besprechung %3$d, %4$s"
+"Code-Besprechung %3$d, %4$s"
#: IDF/Review/Comment.php:141
#, php-format
@@ -4228,23 +4359,28 @@ msgstr "%s: Erstellung von Code-Besprechung %d -%s"
msgid "New Code Review %s - %s (%s)"
msgstr "Neue Code-Besprechung %s - %s (%s)"
-#: IDF/Scm/Git.php:311 IDF/Scm/Mercurial.php:141
+#: 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:427 IDF/Scm/Mercurial.php:158
+#: 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:79
+#: 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:98
+#: 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."
@@ -4309,26 +4445,30 @@ msgstr "Der Pfad ist relativ zum Upload-Pfad."
msgid "file size in bytes"
msgstr "Dateigröße in Bytes"
-#: IDF/Upload.php:100
+#: IDF/Upload.php:84
+msgid "MD5"
+msgstr "MD5"
+
+#: IDF/Upload.php:106
msgid "number of downloads"
msgstr "Anzahl der Downloads"
-#: IDF/Upload.php:189
+#: IDF/Upload.php:201
#, php-format
msgid "Download %2$d, %3$s"
msgstr "Download %2$d, %3$s"
-#: IDF/Upload.php:192
+#: IDF/Upload.php:204
#, php-format
msgid "Addition of download %d, by %s"
msgstr "Hinzufügen von Download %d, von %s"
-#: IDF/Upload.php:202
+#: IDF/Upload.php:214
#, php-format
msgid "%s: Download %d added - %s"
msgstr "%s: Download %d hinzugefügt - %s"
-#: IDF/Upload.php:244
+#: IDF/Upload.php:256
#, php-format
msgid "New download - %s (%s)"
msgstr "Neuer Download - %s (%s)"
@@ -4349,12 +4489,12 @@ msgstr "Größe des Depots"
msgid "No projects were found."
msgstr "Es wurden keine Projekte gefunden."
-#: IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:312
+#: IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:310
#, php-format
msgid "Update %s"
msgstr "Aktualisiere %s"
-#: IDF/Views/Admin.php:101 IDF/Views/Project.php:277
+#: IDF/Views/Admin.php:101 IDF/Views/Project.php:302
msgid "The project has been updated."
msgstr "Das Projekt wurde aktualisiert."
@@ -4470,11 +4610,11 @@ msgstr "%s Downloads"
msgid "This table shows the files to download."
msgstr "Diese Tabelle zeigt die herunterladbaren Dateien."
-#: IDF/Views/Download.php:67 IDF/Views/Download.php:295
+#: IDF/Views/Download.php:67 IDF/Views/Download.php:315
msgid "Uploaded"
msgstr "Hochgeladen"
-#: IDF/Views/Download.php:71 IDF/Views/Download.php:299
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:319
msgid "No downloads were found."
msgstr "Keine Downloads gefunden."
@@ -4497,17 +4637,17 @@ msgstr "Lösche Download %s"
msgid "The file has been deleted."
msgstr "Die Datei wurde gelöscht."
-#: IDF/Views/Download.php:223
+#: IDF/Views/Download.php:243
#, php-format
msgid "The file has been uploaded."
msgstr "Die Datei wurde hochgeladen."
-#: IDF/Views/Download.php:277
+#: IDF/Views/Download.php:297
#, php-format
msgid "%1$s Downloads with Label %2$s"
msgstr "%1$s Downloads mit der Marke %2$s"
-#: IDF/Views/Download.php:287
+#: IDF/Views/Download.php:307
#, php-format
msgid "This table shows the downloads with label %s."
msgstr "Diese Tabelle zeigt die Downloads mit der Marke %s."
@@ -4517,242 +4657,256 @@ msgstr "Diese Tabelle zeigt die Downloads mit der Marke %s."
msgid "%s Open Issues"
msgstr "%s Offene Tickets"
-#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:287 IDF/Views/User.php:75
+#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:379 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:138 IDF/Views/Issue.php:219
-#: IDF/Views/Issue.php:295 IDF/Views/Issue.php:382 IDF/Views/Issue.php:561
-#: IDF/Views/Issue.php:620 IDF/Views/Review.php:57 IDF/Views/User.php:81
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:217 IDF/Views/Issue.php:298
+#: IDF/Views/Issue.php:387 IDF/Views/Issue.php:539 IDF/Views/Issue.php:762
+#: IDF/Views/Issue.php:821 IDF/Views/Review.php:57 IDF/Views/User.php:81
msgid "Id"
msgstr "Id"
-#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:141 IDF/Views/Issue.php:223
-#: IDF/Views/Issue.php:298 IDF/Views/Issue.php:385 IDF/Views/Issue.php:564
-#: IDF/Views/Issue.php:623 IDF/Views/Review.php:60 IDF/Views/User.php:85
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:220 IDF/Views/Issue.php:302
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 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:145 IDF/Views/Issue.php:227
-#: IDF/Views/Issue.php:302 IDF/Views/Issue.php:389 IDF/Views/Issue.php:568
-#: IDF/Views/Issue.php:627
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:224 IDF/Views/Issue.php:306
+#: IDF/Views/Issue.php:394 IDF/Views/Issue.php:546 IDF/Views/Issue.php:769
+#: IDF/Views/Issue.php:828
msgid "No issues were found."
msgstr "Es wurden keine Tickets gefunden."
-#: IDF/Views/Issue.php:112
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr "Nicht zugeordnet"
+
+#: IDF/Views/Issue.php:146
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr "Zusammenfassung verfolgter Tickets in %s"
+
+#: IDF/Views/Issue.php:191
#, php-format
msgid "Watch List: Closed Issues for %s"
msgstr "Beobachtungsliste: Geschlossene Tickets für %s"
-#: IDF/Views/Issue.php:113
+#: IDF/Views/Issue.php:192
#, 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:118
+#: IDF/Views/Issue.php:197
#, php-format
msgid "Watch List: Open Issues for %s"
msgstr "Beobachtungsliste: Offene Tickets für %s"
-#: IDF/Views/Issue.php:119
+#: IDF/Views/Issue.php:198
#, 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:195
+#: IDF/Views/Issue.php:274
msgid "Watch List: Closed Issues"
msgstr "Beobachtungsliste: Geschlossene Tickets"
-#: IDF/Views/Issue.php:196
+#: IDF/Views/Issue.php:275
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:201
+#: IDF/Views/Issue.php:280
msgid "Watch List: Open Issues"
msgstr "Beobachtungsliste: Offene Tickets"
-#: IDF/Views/Issue.php:202
+#: IDF/Views/Issue.php:281
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:221 IDF/Views/User.php:82
+#: IDF/Views/Issue.php:300 IDF/Views/User.php:82
msgid "Project"
msgstr "Projekt"
-#: IDF/Views/Issue.php:254
+#: IDF/Views/Issue.php:341
#, php-format
-msgid "My Submitted %s Issues"
-msgstr "Meine erstellten Tickets für %s"
+msgid "%s %s Submitted %s Issues"
+msgstr "%s %s eingesandte Tickets für %s"
-#: IDF/Views/Issue.php:258
+#: IDF/Views/Issue.php:345
#, php-format
-msgid "My Closed Submitted %s Issues"
-msgstr "Meine eingesandten, geschlossenen Tickets für %s"
+msgid "%s %s Closed Submitted %s Issues"
+msgstr "%s %s eingesandte, geschlossene Tickets für %s"
-#: IDF/Views/Issue.php:262
+#: IDF/Views/Issue.php:349
#, php-format
-msgid "My Closed Working %s Issues"
-msgstr "Meine bearbeiteten, geschlossenen Tickets für %s"
+msgid "%s %s Closed Working %s Issues"
+msgstr "%s %s bearbeitete, geschlossene Tickets für %s"
-#: IDF/Views/Issue.php:266
+#: IDF/Views/Issue.php:353
#, php-format
-msgid "My Working %s Issues"
-msgstr "Meine bearbeiteten Tickets für %s"
+msgid "%s %s Working %s Issues"
+msgstr "%s %s bearbeitete Tickets für %s"
-#: IDF/Views/Issue.php:321
+#: IDF/Views/Issue.php:414
msgid "Submit a new issue"
msgstr "Erstelle ein neues Ticket"
-#: IDF/Views/Issue.php:337
+#: IDF/Views/Issue.php:430
#, php-format
msgid "Issue %d has been created."
msgstr "Ticket %d wurde erstellt."
-#: IDF/Views/Issue.php:366
+#: IDF/Views/Issue.php:487
#, php-format
-msgid "Search Issues - %s"
+msgid "Search issues - %s"
msgstr "Suche Tickets - %s"
-#: IDF/Views/Issue.php:378
+#: IDF/Views/Issue.php:489
+#, php-format
+msgid "Search closed issues - %s"
+msgstr "Suche geschlossene Tickets - %s"
+
+#: IDF/Views/Issue.php:536
msgid "This table shows the found issues."
msgstr "Diese Tabelle zeigt die gefundenen Tickets."
-#: IDF/Views/Issue.php:408
+#: IDF/Views/Issue.php:601
#, php-format
msgid "Issue %d: %s"
msgstr "Ticket %d: %s"
-#: IDF/Views/Issue.php:432
+#: IDF/Views/Issue.php:625
#, php-format
msgid "Issue %d has been updated."
msgstr "Ticket %d wurde aktualisiert."
-#: IDF/Views/Issue.php:521
+#: IDF/Views/Issue.php:715
#, php-format
msgid "View %s"
msgstr "Zeige %s"
-#: IDF/Views/Issue.php:541
+#: IDF/Views/Issue.php:742
#, php-format
msgid "%s Closed Issues"
msgstr "%s Geschlossene Tickets"
-#: IDF/Views/Issue.php:551
+#: IDF/Views/Issue.php:752
msgid "This table shows the closed issues."
msgstr "Diese Tabelle zeigt die geschlossenen Tickets."
-#: IDF/Views/Issue.php:594
+#: IDF/Views/Issue.php:795
#, php-format
msgid "%1$s Issues with Label %2$s"
msgstr "%1$s Tickets mit Markierung %2$s"
-#: IDF/Views/Issue.php:597
+#: IDF/Views/Issue.php:798
#, php-format
msgid "%1$s Closed Issues with Label %2$s"
msgstr "%1$s geschlossene Tickets mit Markierung %2$s"
-#: IDF/Views/Issue.php:610
+#: IDF/Views/Issue.php:811
#, 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:660
+#: IDF/Views/Issue.php:934
msgid "The issue has been removed from your watch list."
msgstr "Das Ticket wurde von Deiner Beobachtungsliste entfernt."
-#: IDF/Views/Issue.php:663
+#: IDF/Views/Issue.php:937
msgid "The issue has been added to your watch list."
msgstr "Das Ticket wurde zu Deiner Beobachtungsliste hinzugefügt."
-#: IDF/Views/Issue.php:752
+#: IDF/Views/Issue.php:1035
msgid "On your watch list."
msgstr "Auf Deiner Beobachtungsliste."
-#: IDF/Views/Project.php:74
+#: IDF/Views/Project.php:95
msgid "Issues and Comments"
msgstr "Tickets u. Kommentare"
-#: IDF/Views/Project.php:76
+#: IDF/Views/Project.php:99
msgid "Documents"
msgstr "Dokumentation"
-#: IDF/Views/Project.php:77
+#: IDF/Views/Project.php:101
msgid "Reviews and Patches"
msgstr "Besprechungen u. Patches"
-#: IDF/Views/Project.php:153
+#: IDF/Views/Project.php:178
msgid "This table shows the project updates."
msgstr "Diese Tabelle zeigt Projekt-Aktualisierungen."
-#: IDF/Views/Project.php:164
+#: IDF/Views/Project.php:189
msgid "Change"
msgstr "Änderung"
-#: IDF/Views/Project.php:168
+#: IDF/Views/Project.php:193
msgid "No changes were found."
msgstr "Es wurden keine Änderungen gefunden."
-#: IDF/Views/Project.php:269
+#: IDF/Views/Project.php:294
#, php-format
msgid "%s Project Summary"
msgstr "%s Projektzusammenfassung"
-#: IDF/Views/Project.php:304
+#: IDF/Views/Project.php:329
#, php-format
msgid "%s Issue Tracking Configuration"
msgstr "%s Ticket-Einstellungen"
-#: IDF/Views/Project.php:313
+#: IDF/Views/Project.php:338
msgid "The issue tracking configuration has been saved."
msgstr "Die Ticket-Einstellungen wurden gespeichert."
-#: IDF/Views/Project.php:349
+#: IDF/Views/Project.php:375
#, php-format
msgid "%s Downloads Configuration"
msgstr "%s Download-Einstellungen"
-#: IDF/Views/Project.php:358
+#: IDF/Views/Project.php:384
msgid "The downloads configuration has been saved."
msgstr "Die Download-Einstellungen wurden gespeichert."
-#: IDF/Views/Project.php:392
+#: IDF/Views/Project.php:418
#, php-format
msgid "%s Documentation Configuration"
msgstr "%s Dokumentations-Einstellungen"
-#: IDF/Views/Project.php:401
+#: IDF/Views/Project.php:427
msgid "The documentation configuration has been saved."
msgstr "Die Dokumentations-Einstellungen wurden gespeichert."
-#: IDF/Views/Project.php:435
+#: IDF/Views/Project.php:461
#, php-format
msgid "%s Project Members"
msgstr "%s Projektmitglieder"
-#: IDF/Views/Project.php:444
+#: IDF/Views/Project.php:470
msgid "The project membership has been saved."
msgstr "Die Projektmitgliedschaft wurde gespeichert."
-#: IDF/Views/Project.php:467
+#: IDF/Views/Project.php:493
#, php-format
msgid "%s Tabs Access Rights"
msgstr "%s Zugriffsrechte auf Registerkarten"
-#: IDF/Views/Project.php:481
+#: IDF/Views/Project.php:507
msgid "The project tabs access rights have been saved."
msgstr "Die Zugriffsrechte für die Projekt-Registerkarten wurden gespeichert."
-#: IDF/Views/Project.php:527
+#: IDF/Views/Project.php:553
#, php-format
msgid "%s Source"
msgstr "%s Quellcode"
-#: IDF/Views/Project.php:541
+#: IDF/Views/Project.php:567
msgid "The project source configuration has been saved."
msgstr "Die Konfiguration des Projekt-Quellcodes wurde gespeichert."
@@ -4794,27 +4948,27 @@ msgstr "%s Quellcode-Hilfe"
msgid "%s Invalid Revision"
msgstr "%s Ungültige Revision"
-#: IDF/Views/Source.php:81
+#: IDF/Views/Source.php:82
#, php-format
msgid "%s Ambiguous Revision"
msgstr "%s Mehrdeutige Revision"
-#: IDF/Views/Source.php:106
+#: IDF/Views/Source.php:107
#, php-format
msgid "%1$s %2$s Change Log"
msgstr "%1$s %2$s Logmeldung"
-#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:360
+#: IDF/Views/Source.php:147 IDF/Views/Source.php:228 IDF/Views/Source.php:356
#, php-format
msgid "%1$s %2$s Source Tree"
msgstr "%1$s %2$s Quellcode-Baum"
-#: IDF/Views/Source.php:303
+#: IDF/Views/Source.php:304
#, php-format
msgid "%s Commit Details"
msgstr "%s Revisions-Details"
-#: IDF/Views/Source.php:304
+#: IDF/Views/Source.php:305
#, php-format
msgid "%s Commit Details - %s"
msgstr "%s Revisions-Details - %s"
@@ -4904,30 +5058,30 @@ msgstr "%1$s Dokumentations-Seiten mit der Marke %2$s"
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:186
+#: IDF/Views/Wiki.php:184
#, php-format
msgid "The page %s has been created."
msgstr "Die Seite %s wurde neu angelegt."
-#: IDF/Views/Wiki.php:273
+#: IDF/Views/Wiki.php:271
msgid "The old revision has been deleted."
msgstr "Alte Version der Seite wurde gelöscht."
-#: IDF/Views/Wiki.php:279
+#: IDF/Views/Wiki.php:277
#, php-format
msgid "Delete Old Revision of %s"
msgstr "Lösche alte Version von %s"
-#: IDF/Views/Wiki.php:324
+#: IDF/Views/Wiki.php:322
#, php-format
msgid "The page %s has been updated."
msgstr "Die Seite %s wurde aktualisiert."
-#: IDF/Views/Wiki.php:362
+#: IDF/Views/Wiki.php:360
msgid "The documentation page has been deleted."
msgstr "Die Dokumentations-Seite wurde gelöscht."
-#: IDF/Views/Wiki.php:370
+#: IDF/Views/Wiki.php:368
#, php-format
msgid "Delete Page %s"
msgstr "Lösche Seite '%s'"
@@ -5024,5 +5178,21 @@ msgstr "Neue Dokumentations-Seite %s - %s (%s)"
msgid "Documentation Page Changed %s - %s (%s)"
msgstr "Dokumentations-Seite geändert %s - %s (%s)"
+#~ 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/src/IDF/locale/es_ES/idf.po b/src/IDF/locale/es_ES/idf.po
index 52a8b93..997c6d7 100644
--- a/src/IDF/locale/es_ES/idf.po
+++ b/src/IDF/locale/es_ES/idf.po
@@ -1,20 +1,21 @@
# 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.
-#
+#
+# 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: 2011-03-28 01:13+0200\n"
-"PO-Revision-Date: 2011-03-28 14:19+0000\n"
-"Last-Translator: Mika \n"
-"Language-Team: Mika \n"
-"Language: es_ES\n"
+"POT-Creation-Date: 2011-10-31 01:11+0100\n"
+"PO-Revision-Date: 2011-10-31 00:19+0000\n"
+"Last-Translator: tommyd \n"
+"Language-Team: LANGUAGE \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: es_ES\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52 IDF/Review.php:65
@@ -23,8 +24,9 @@ msgid "project"
msgstr "proyecto"
#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65
-#: IDF/IssueFile.php:57 IDF/Review/Comment.php:69 IDF/Review.php:80
-#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79
+#: IDF/IssueFile.php:57 IDF/IssueRelation.php:69 IDF/Review/Comment.php:69
+#: IDF/Review.php:80 IDF/Upload.php:91 IDF/WikiPage.php:78
+#: IDF/WikiRevision.php:79
msgid "submitter"
msgstr "autor"
@@ -39,9 +41,9 @@ msgid "changelog"
msgstr "registro de cambios"
#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79
-#: IDF/IssueFile.php:96 IDF/Review/Comment.php:90
+#: 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:106 IDF/WikiPage.php:100 IDF/WikiRevision.php:92
+#: IDF/Upload.php:112 IDF/WikiPage.php:100 IDF/WikiRevision.php:92
msgid "creation date"
msgstr "fecha de creación"
@@ -63,6 +65,14 @@ msgstr "clave"
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"
@@ -71,30 +81,33 @@ msgstr "usuario"
msgid "email"
msgstr "email"
-#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:561
+#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:587
msgid "git"
msgstr "git"
-#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:562
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:588
msgid "Subversion"
msgstr "Subversion"
-#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:563
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:589
msgid "mercurial"
msgstr "mercurial"
-#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:564
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:590
msgid "monotone"
msgstr "monótono"
#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
-#: IDF/Views/Admin.php:66 IDF/Views/Admin.php:210
+#: IDF/Form/ProjectConf.php:38 IDF/Views/Admin.php:66 IDF/Views/Admin.php:210
msgid "Name"
msgstr "Nombre"
#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77
-#: IDF/gettexttemplates/idf/index.html.php:6
-#: IDF/gettexttemplates/idf/main-menu.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/index.html.php:7
+#: IDF/gettexttemplates/idf/index.html.php:8
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
msgid "Private project"
msgstr "Proyecto privado"
@@ -144,8 +157,8 @@ 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."
+"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:114 IDF/Form/Admin/ProjectUpdate.php:68
#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53
@@ -211,10 +224,10 @@ msgstr "Este nombre corto ya está en uso. Por favor, seleccione otro."
#: IDF/Form/Admin/ProjectCreate.php:279 IDF/Form/Admin/ProjectDelete.php:78
#: IDF/Form/Admin/ProjectUpdate.php:121 IDF/Form/Admin/UserCreate.php:106
-#: IDF/Form/Admin/UserUpdate.php:191 IDF/Form/IssueCreate.php:263
-#: IDF/Form/IssueUpdate.php:232 IDF/Form/MembersConf.php:64
+#: 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:127
+#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:143
#: IDF/Form/TabsConf.php:98 IDF/Form/UpdateUpload.php:126
#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:216
#: IDF/Form/UserChangeEmail.php:80 IDF/Form/WikiCreate.php:167
@@ -229,7 +242,7 @@ msgstr ""
"Haga clic en la pestaña Gestión de proyectos para establecer la descripción "
"de su proyecto."
-#: IDF/Form/Admin/ProjectCreate.php:362
+#: IDF/Form/Admin/ProjectCreate.php:363
msgid "This project is not available."
msgstr "Este proyecto no está disponible."
@@ -279,8 +292,8 @@ 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."
+"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."
@@ -317,8 +330,8 @@ msgstr ""
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:420
-#: IDF/Form/UserAccount.php:429
+#: 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."
@@ -353,10 +366,11 @@ msgstr ""
msgid "Confirm password"
msgstr "Confirmar contraseña"
-#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:62
-#: IDF/Form/ReviewCreate.php:54 IDF/Form/UpdateUpload.php:51
-#: IDF/Form/Upload.php:49 IDF/Form/UserAccount.php:101
-#: IDF/Form/WikiCreate.php:70 IDF/Form/WikiUpdate.php:60
+#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:66
+#: IDF/Form/ProjectConf.php:47 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiCreate.php:70
+#: IDF/Form/WikiUpdate.php:60
msgid "Description"
msgstr "Descripción"
@@ -421,15 +435,15 @@ msgstr "--- No es un nombre válido."
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."
+"Ya existe un usuario con este correo electrónico , por favor, introduce otro"
+" email."
-#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:389
+#: 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:452
+#: 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."
@@ -438,91 +452,127 @@ 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:53 IDF/Form/IssueUpdate.php:45
+#: 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/Views/Download.php:65 IDF/Views/Download.php:293 IDF/Views/Issue.php:62
-#: IDF/Views/Issue.php:139 IDF/Views/Issue.php:220 IDF/Views/Issue.php:296
-#: IDF/Views/Issue.php:383 IDF/Views/Issue.php:562 IDF/Views/Issue.php:621
-#: IDF/Views/Review.php:58 IDF/Views/User.php:83 IDF/Views/Wiki.php:62
-#: IDF/Views/Wiki.php:107 IDF/Views/Wiki.php:148
+#: IDF/gettexttemplates/idf/issues/base.html.php:3 IDF/Views/Download.php:65
+#: IDF/Views/Download.php:313 IDF/Views/Issue.php:62 IDF/Views/Issue.php:218
+#: IDF/Views/Issue.php:299 IDF/Views/Issue.php:388 IDF/Views/Issue.php:540
+#: IDF/Views/Issue.php:763 IDF/Views/Issue.php:822 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:107
+#: IDF/Views/Wiki.php:148
msgid "Summary"
msgstr "Resumen"
-#: IDF/Form/IssueCreate.php:72 IDF/Form/IssueUpdate.php:65
+#: 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."
+msgstr "La variable de configuración \"upload_issue_path\" no se ha establecido."
-#: IDF/Form/IssueCreate.php:82 IDF/Form/IssueUpdate.php:75
+#: IDF/Form/IssueCreate.php:86 IDF/Form/IssueUpdate.php:76
msgid "Attach a file"
msgstr "Adjuntar un archivo"
-#: IDF/Form/IssueCreate.php:95 IDF/Form/IssueUpdate.php:88
+#: 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:140 IDF/Views/Issue.php:222
-#: IDF/Views/Issue.php:297 IDF/Views/Issue.php:384 IDF/Views/Issue.php:563
-#: IDF/Views/Issue.php:622 IDF/Views/Review.php:59 IDF/Views/User.php:84
+#: IDF/Views/Issue.php:63 IDF/Views/Issue.php:219 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:389 IDF/Views/Issue.php:541 IDF/Views/Issue.php:764
+#: IDF/Views/Issue.php:823 IDF/Views/Review.php:59 IDF/Views/User.php:84
msgid "Status"
msgstr "Estado"
-#: IDF/Form/IssueCreate.php:104 IDF/Form/IssueUpdate.php:98
+#: IDF/Form/IssueCreate.php:108 IDF/Form/IssueUpdate.php:99
msgid "Owner"
msgstr "Propietario"
-#: IDF/Form/IssueCreate.php:150 IDF/Form/IssueUpdate.php:117
+#: IDF/Form/IssueCreate.php:118 IDF/Form/IssueUpdate.php:112
+#: IDF/Form/IssueUpdate.php:129
+msgid "This issue"
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:168 IDF/Form/IssueUpdate.php:164
#: IDF/Form/UpdateUpload.php:71 IDF/Form/Upload.php:70
#: IDF/Form/WikiCreate.php:93 IDF/Form/WikiUpdate.php:104
msgid "Labels"
msgstr "Etiquetas"
-#: IDF/Form/IssueCreate.php:192
+#: 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."
+msgstr "No se puede agregar una etiqueta con el prefijo \"Status\" a un ticket."
-#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200
+#: IDF/Form/IssueCreate.php:211 IDF/Form/IssueCreate.php:218
#: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:120
#: IDF/Form/WikiCreate.php:151 IDF/Form/WikiUpdate.php:162
msgid "You provided an invalid label."
msgstr "Proporcionaste una etiqueta no válida."
-#: IDF/Form/IssueCreate.php:199 IDF/Form/UpdateUpload.php:109
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
#: IDF/Form/Upload.php:119
#, php-format
msgid "You cannot provide more than label from the %s class to an issue."
-msgstr "No puede proporcionar más de una etiqueta de la clase %s en un ticket."
+msgstr ""
+"No puede proporcionar más de una etiqueta de la clase %s en un ticket."
-#: IDF/Form/IssueCreate.php:210 IDF/Form/IssueUpdate.php:147
+#: 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:233 IDF/Form/ReviewCreate.php:159
+#: 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/IssueTrackingConf.php:80
-msgid ""
-"Define an issue template to hint to the reporter to provide certain "
-"information"
+#: 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 ""
-"Defina una plantilla de tickets para sugerir al autor a que proporcione "
-"cierta información"
#: 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:97
+#: IDF/Form/IssueTrackingConf.php:114
msgid "Closed issue status values"
msgstr "Valores de estado para Tickets cerrados"
-#: IDF/Form/IssueTrackingConf.php:106
+#: IDF/Form/IssueTrackingConf.php:123
msgid "Predefined issue labels"
msgstr "Etiquetas de tickets predefinidas"
-#: IDF/Form/IssueTrackingConf.php:108
+#: IDF/Form/IssueTrackingConf.php:125
msgid ""
"The first \"Type:\" and \"Priority:\" entries found in this list are "
"automatically chosen as defaults for new issues."
@@ -530,17 +580,27 @@ msgstr ""
"La primera entrada \"Tipo:\" y \"Prioridad:\" de esta lista será "
"seleccionada automáticamente por defecto para los nuevos tickets."
-#: IDF/Form/IssueTrackingConf.php:116
+#: IDF/Form/IssueTrackingConf.php:133
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/IssueUpdate.php:55 IDF/Form/ReviewFileComment.php:45
+#: 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\"."
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
#: IDF/Form/WikiUpdate.php:82
msgid "Comment"
msgstr "Comentario"
-#: IDF/Form/IssueUpdate.php:219
+#: IDF/Form/IssueUpdate.php:316
msgid "No changes were entered."
msgstr "No se han introducido cambios."
@@ -566,8 +626,8 @@ 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."
+"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"
@@ -580,11 +640,11 @@ 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."
+"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."
+"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 ""
@@ -631,6 +691,34 @@ msgstr ""
"Esta cuenta no está activa. Póngase en contacto con el administrador de la "
"forja para activarlo."
+#: IDF/Form/ProjectConf.php:42
+msgid "Short Description"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:58
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:63
+msgid "Update the logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:65
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:75
+msgid "Remove the current logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:111
+msgid "Could not determine the size of the uploaded picture."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:115
+msgid "The picture must have a size of 32 by 32."
+msgstr ""
+
#: IDF/Form/Register.php:41
msgid "Your login"
msgstr "Tu nombre de usuario"
@@ -640,12 +728,12 @@ 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."
+"El nombre de usuario debe tener entre 3 y 15 caracteres y contener solamente"
+" letras y dígitos."
#: IDF/Form/Register.php:53
msgid "Your email"
-msgstr "Tu correo electrónico"
+msgstr "Correo electrónico"
#: IDF/Form/Register.php:55
msgid "We will never send you any unsolicited emails. We hate spam too!"
@@ -659,7 +747,8 @@ 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."
+"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."
@@ -686,16 +775,16 @@ 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."
+"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."
+"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
msgid ""
@@ -732,13 +821,19 @@ msgstr "El Parche inicial debe ser revisado."
msgid "General comment"
msgstr "Comentario General"
-#: IDF/Form/ReviewFileComment.php:104
-msgid "You need to provide comments on at least one file."
-msgstr "Debe hacer comentarios sobre al menos un archivo."
+#: 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:111
-msgid "You need to provide your general comment about the proposal."
-msgstr "Debe hacer un comentario general sobre la propuesta."
+#: 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:56
msgid "Webhook URL"
@@ -750,43 +845,33 @@ msgid "Learn more about the post-commit web hooks."
msgstr "Saber más sobre WebHooks post-commit."
#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
-#: 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/base-full.html.php:7
+#: 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:75
+#: IDF/Views/Project.php:97
msgid "Downloads"
msgstr "Descargas"
-#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:9
-#: IDF/gettexttemplates/idf/base-full.html~.php:9
-#: IDF/gettexttemplates/idf/base.html.php:9
-#: IDF/gettexttemplates/idf/base.html~.php:9
+#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:11
+#: 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:6
-#: IDF/gettexttemplates/idf/base-full.html~.php:6
-#: IDF/gettexttemplates/idf/base.html.php:6
-#: IDF/gettexttemplates/idf/base.html~.php:6
+#: IDF/gettexttemplates/idf/base-full.html.php:8
+#: 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:8
-#: IDF/gettexttemplates/idf/base-full.html~.php:8
-#: IDF/gettexttemplates/idf/base.html.php:8
-#: IDF/gettexttemplates/idf/base.html~.php:8
+#: IDF/gettexttemplates/idf/base-full.html.php:10
+#: IDF/gettexttemplates/idf/base.html.php:10
msgid "Source"
msgstr "Fuentes"
-#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:7
-#: IDF/gettexttemplates/idf/base-full.html~.php:7
-#: IDF/gettexttemplates/idf/base.html.php:7
-#: IDF/gettexttemplates/idf/base.html~.php:7
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:9
+#: IDF/gettexttemplates/idf/base.html.php:9
#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
msgid "Issues"
msgstr "Tickets"
@@ -809,9 +894,9 @@ msgstr "Usuarios autorizados adicionales"
#: IDF/Form/Upload.php:59 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:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6
-#: IDF/Views/Download.php:64 IDF/Views/Download.php:292
+#: 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:312
msgid "File"
msgstr "Archivo"
@@ -877,37 +962,38 @@ 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:334
+#: 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:354
+#: IDF/Form/UserAccount.php:363
msgid ""
-"Please check the key as it does not appear to be a valid monotone public key."
+"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:362
+#: 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:374
+#: 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."
+"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."
+"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"
@@ -915,7 +1001,8 @@ 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"
+"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"
@@ -1032,20 +1119,18 @@ 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"
+"
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.
\n"
+"
Si lo desea, puede utilizar un signo de igual para documentar el valor de cada estado.
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"
+"
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"
"
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"
+"
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."
+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."
@@ -1097,8 +1175,7 @@ msgid ""
"request is sent after each repository commit. If this field is empty,\n"
"notifications are disabled.\n"
"\n"
-"
Only properly-escaped HTTP URLs are supported, for "
-"example:
\n"
+"
Only properly-escaped HTTP URLs are supported, for example:
\n"
"\n"
"
\n"
"
http://domain.com/commit
\n"
@@ -1117,10 +1194,8 @@ msgid ""
"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"
+"
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.
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"
+"será reemplazada por los valores específicos del proyecto para cada commit:
\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"
+"
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.
The description of the project can be improved using the Markdown syntax.
\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"
+"
La descripción del proyecto puede ser mejorada mediante la Sintaxis de Marcado.
\n"
#: IDF/gettexttemplates/idf/admin/summary.html.php:7
msgid ""
@@ -1188,6 +1259,22 @@ 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.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:6
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+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 ""
"\n"
@@ -1197,8 +1284,7 @@ msgid ""
"password or SSH key."
msgstr ""
"\n"
-"Solo los miembros del proyecto y los administradores tienen acceso de "
-"escritura sobre las fuentes. \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."
@@ -1217,12 +1303,12 @@ 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."
+"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 "
+"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."
@@ -1232,8 +1318,8 @@ 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. 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."
+"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 "
@@ -1273,9 +1359,7 @@ msgid "Instructions:"
msgstr "Instrucciones:"
#: 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 "
@@ -1284,36 +1368,32 @@ msgstr ""
"Accede o create una cuenta para crear tickets y "
"añadir comentarios"
-#: 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/base-full.html.php:6
+#: IDF/gettexttemplates/idf/base.html.php:6
msgid "Project Home"
msgstr "Inicio del Proyecto"
-#: IDF/gettexttemplates/idf/base-full.html.php:10
-#: IDF/gettexttemplates/idf/base-full.html~.php:10
-#: IDF/gettexttemplates/idf/base.html.php:10
-#: IDF/gettexttemplates/idf/base.html~.php:10
+#: IDF/gettexttemplates/idf/base-full.html.php:12
+#: 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:214
+#: IDF/Views/Download.php:234
msgid "New Download"
msgstr "Nueva descarga"
#: 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 "
+"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?"
+"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
@@ -1327,7 +1407,6 @@ 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.orig.php:7
#: IDF/gettexttemplates/idf/issues/view.html.php:7
#: IDF/gettexttemplates/idf/wiki/delete.html.php:7
#: IDF/gettexttemplates/idf/wiki/delete.html.php:8
@@ -1345,20 +1424,18 @@ msgstr "Eliminar archivo"
#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:8
+#: 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.orig.php:25
-#: IDF/gettexttemplates/idf/issues/view.html.php:25
+#: 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/index.html~.php:7
#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
#: IDF/gettexttemplates/idf/review/create.html.php:12
-#: IDF/gettexttemplates/idf/review/view.html.php:43
+#: 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
@@ -1372,15 +1449,14 @@ msgid "Cancel"
msgstr "Cancelar"
#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
-#: IDF/gettexttemplates/idf/downloads/view.html.php:13
+#: 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:14
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:27
-#: IDF/gettexttemplates/idf/issues/view.html.php:27
-#: IDF/gettexttemplates/idf/review/view.html.php:26
+#: 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/delete.html.php:12
#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:9
#: IDF/gettexttemplates/idf/wiki/view.html.php:15
@@ -1388,23 +1464,21 @@ msgid "Updated:"
msgstr "Actualización:"
#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
-#: IDF/gettexttemplates/idf/downloads/view.html.php:15
+#: IDF/gettexttemplates/idf/downloads/view.html.php:16
#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
-#: IDF/gettexttemplates/idf/index.html.php:13
+#: IDF/gettexttemplates/idf/index.html.php:15
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/view.html.php:16
+#: IDF/gettexttemplates/idf/downloads/view.html.php:17
#: 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:10
#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:15
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:20
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:31
-#: IDF/gettexttemplates/idf/issues/view.html.php:20
-#: IDF/gettexttemplates/idf/issues/view.html.php:31
+#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: IDF/gettexttemplates/idf/issues/view.html.php:33
#: 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
@@ -1454,7 +1528,7 @@ msgstr "Descarga:"
#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
-#: IDF/gettexttemplates/idf/review/view.html.php:30
+#: IDF/gettexttemplates/idf/review/view.html.php:31
#: IDF/gettexttemplates/idf/user/public.html.php:4
msgid "Description:"
msgstr "Descripción:"
@@ -1479,8 +1553,7 @@ msgid ""
"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"
+"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/submit.html.php:6
@@ -1516,32 +1589,36 @@ msgstr ""
"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:6
+#: 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:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:8
msgid "Update File"
msgstr "Actualizar archivo"
-#: IDF/gettexttemplates/idf/downloads/view.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:11
+#: 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:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:11
#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
#: IDF/gettexttemplates/idf/wiki/update.html.php:9
#: IDF/gettexttemplates/idf/wiki/view.html.php:12
msgid "Trash"
msgstr "Papelera"
-#: IDF/gettexttemplates/idf/downloads/view.html.php:12
+#: IDF/gettexttemplates/idf/downloads/view.html.php:13
msgid "Delete this file"
msgstr "Eliminar este archivo"
@@ -1553,7 +1630,6 @@ msgstr "Aquí estamos, para ayudarte."
#: IDF/gettexttemplates/idf/faq-api.html.php:4
#: IDF/gettexttemplates/idf/faq.html.php:35
#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
-#: IDF/gettexttemplates/idf/gadmin/base.html~.php:3
#: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57
#: IDF/Views.php:47
msgid "Projects"
@@ -1563,27 +1639,27 @@ msgstr "Proyectos"
msgid ""
"
This is simple:
\n"
"\n"
-"
Write in the comments \"This is a duplicate of issue 123\", change 123 "
-"with the corresponding issue number.
\n"
+"
Write in the comments \"This is a duplicate of issue 123\", change 123 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.
\n"
+"
Escribe en los comentarios \"Esto es una duplicado del ticket 123\", cambia 123 por el número de ticket correspondiente.
\n"
"
Cambia el estado del ticket actual a Duplicado.
\n"
"
Envíe los cambios.
\n"
""
#: IDF/gettexttemplates/idf/faq.html.php:9
msgid ""
-"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+"You need to create an account on Gravatar, this takes about 5 minutes "
+"and is free."
msgstr ""
-"Necesitas crear una cuenta en Gravatar"
-"a> , tardarás 5 minutos y es gratuito."
+"Necesitas crear una cuenta en Gravatar , tardarás 5 minutos y es "
+"gratuito."
#: IDF/gettexttemplates/idf/faq.html.php:10
msgid ""
@@ -1678,12 +1754,10 @@ msgid "Alt+4: Search (when available)."
msgstr "Alt+4: Búsqueda (cuando esté disponible)."
#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
-#: IDF/gettexttemplates/idf/gadmin/base.html~.php:4
msgid "People"
msgstr "Personas"
#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
-#: IDF/gettexttemplates/idf/gadmin/base.html~.php:5
msgid "Usher"
msgstr "Usher"
@@ -1694,7 +1768,6 @@ msgstr "Tienes aquí el acceso a la administración de la forja."
#: IDF/gettexttemplates/idf/gadmin/home.html.php:4
#: IDF/gettexttemplates/idf/project/home.html.php:3
#: IDF/gettexttemplates/idf/project/timeline.html.php:4
-#: IDF/gettexttemplates/idf/project/timeline.html~.php:4
msgid "Welcome"
msgstr "Bienvenido"
@@ -1724,8 +1797,8 @@ msgstr ""
#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
msgid ""
-"Once you have defined the repository type, you cannot change it"
-"strong>."
+"Once you have defined the repository type, you cannot change "
+"it."
msgstr ""
"Una vez que haya definido el tipo de repositorio, no se puede "
"modificar."
@@ -1733,13 +1806,11 @@ 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"
+"
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"
+"
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
@@ -1752,7 +1823,8 @@ msgstr ""
#: 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."
+"Proporcione al menos un propietario para el proyecto o utilice una "
+"plantilla."
#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3
#, php-format
@@ -1772,8 +1844,7 @@ msgid ""
msgstr ""
"\n"
"¡Atención! Eliminar un proyecto es una operación delicada,\n"
-"que tiene como resultado borrar todos los datos del "
-"proyecto.\n"
+"que tiene como resultado borrar todos los datos del proyecto.\n"
#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10
msgid ""
@@ -1799,7 +1870,7 @@ msgid "Code reviews"
msgstr "Revisiones del código"
#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16
-#: IDF/Views/Project.php:73
+#: IDF/Views/Project.php:93
msgid "Commits"
msgstr "Commits"
@@ -1829,7 +1900,7 @@ 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:16
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17
msgid "Attachments:"
msgstr "Archivos adjuntos:"
@@ -1929,8 +2000,8 @@ 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>"
+"
Tiene aquí una visión general de los usuarios registrados en la forja. "
+"
"
#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
msgid "Number of users:"
@@ -1952,8 +2023,7 @@ msgid ""
"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"
+"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."
@@ -1994,6 +2064,10 @@ msgstr "dirección"
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:"
@@ -2015,7 +2089,7 @@ msgid "reload"
msgstr "Recargar"
#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
msgid "Status explanation"
msgstr "Explicación del estado"
@@ -2053,46 +2127,50 @@ msgid "action"
msgstr "acción"
#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+msgid "No monotone servers configured."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
msgid "stop"
msgstr "parada"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
msgid "start"
msgstr "inicio"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
msgid "kill"
msgstr "matar"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
msgid "active connections"
msgstr "conexiones activas"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
+#: 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:12
+#: 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:13
+#: 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:14
+#: 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:15
+#: 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:16
+#: 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:17
+#: 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"
@@ -2105,31 +2183,31 @@ msgstr "Feed del proyecto personal de %%user%%."
msgid "No projects managed with InDefero were found."
msgstr "No se encontraron proyectos gestionados con InDefero."
-#: IDF/gettexttemplates/idf/index.html.php:7
+#: IDF/gettexttemplates/idf/index.html.php:9
msgid "Forge statistics"
msgstr "Estadísticas de la Forja"
-#: IDF/gettexttemplates/idf/index.html.php:8
+#: IDF/gettexttemplates/idf/index.html.php:10
msgid "Projects:"
msgstr "Proyectos:"
-#: IDF/gettexttemplates/idf/index.html.php:9
+#: IDF/gettexttemplates/idf/index.html.php:11
msgid "Members:"
msgstr "Miembros:"
-#: IDF/gettexttemplates/idf/index.html.php:10
+#: IDF/gettexttemplates/idf/index.html.php:12
msgid "Issues:"
msgstr "Tickets:"
-#: IDF/gettexttemplates/idf/index.html.php:11
+#: IDF/gettexttemplates/idf/index.html.php:13
msgid "Commits:"
msgstr "Commits"
-#: IDF/gettexttemplates/idf/index.html.php:12
+#: IDF/gettexttemplates/idf/index.html.php:14
msgid "Documentations:"
msgstr "Documentación:"
-#: IDF/gettexttemplates/idf/index.html.php:14
+#: IDF/gettexttemplates/idf/index.html.php:16
msgid "Code reviews:"
msgstr "Revisiones del código:"
@@ -2139,49 +2217,38 @@ 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:34
-#: IDF/gettexttemplates/idf/source/commit.html.php:22
-#: IDF/gettexttemplates/idf/source/commit.html~.php:22
+#: IDF/gettexttemplates/idf/review/view.html.php:35
+#: IDF/gettexttemplates/idf/source/commit.html.php:23
#: 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:6
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
+#: 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:7
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:9
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
msgid "Download this file"
msgstr "Descargar este archivo"
#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:26
-#: IDF/gettexttemplates/idf/issues/view.html.php:26
-#: IDF/gettexttemplates/idf/review/view.html.php:25
+#: IDF/gettexttemplates/idf/issues/view.html.php:28
+#: IDF/gettexttemplates/idf/review/view.html.php:26
#: IDF/gettexttemplates/idf/wiki/delete.html.php:11
#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:8
#: IDF/gettexttemplates/idf/wiki/view.html.php:14
msgid "Created:"
msgstr "Creado:"
-#: IDF/gettexttemplates/idf/issues/base.html.php:3
-msgid "Open Issues"
-msgstr "Tickets abiertos:"
-
#: IDF/gettexttemplates/idf/issues/base.html.php:4
-#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
-#: IDF/gettexttemplates/idf/issues/index.html.php:5
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:5
-#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
-#: IDF/gettexttemplates/idf/issues/search.html.php:3
-msgid "New Issue"
-msgstr "Nuevo Ticket"
+msgid "All Issues"
+msgstr ""
#: IDF/gettexttemplates/idf/issues/base.html.php:5
msgid "My Issues"
@@ -2192,11 +2259,20 @@ 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:6
msgid "Search"
msgstr "Búsqueda"
-#: IDF/gettexttemplates/idf/issues/base.html.php:8
+#: IDF/gettexttemplates/idf/issues/base.html.php:9
msgid "Back to the issue"
msgstr "Volver al ticket"
@@ -2204,13 +2280,10 @@ msgstr "Volver al ticket"
#, php-format
msgid ""
"
"
+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/summary.html.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+msgid "Status Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+msgid "Unresolved: By Assignee"
+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."
+"Ver %%nb_submit_closed%% tickets "
+"cerrado."
+msgstr[1] "Ver %%nb_submit_closed%% cerrado."
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:4
#, php-format
-msgid ""
-"See the %%nb_owner_closed%% closed."
+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."
+"Ver %%nb_owner_closed%% tickets "
+"cerrado."
+msgstr[1] "Ver %%nb_owner_closed%% cerrado."
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:6
+#: 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/my-issues.html.php:7
+#: 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/search.html.php:4
-msgid "Found issues:"
-msgstr "Tickets encontrados:"
-
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:3
#: 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.orig.php:4
#: 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%%"
+"Comentario %%i%% por %%submitter%%, "
+"%%c.creation_dtime%%"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:5
#: 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.orig.php:6
#: IDF/gettexttemplates/idf/issues/view.html.php:6
msgid ""
"This issue is marked as closed, add a comment only if you think this issue "
@@ -2440,7 +2526,6 @@ msgstr ""
"este problema sigue activo y se necesita más trabajo hasta su completa "
"revisión."
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:8
#: IDF/gettexttemplates/idf/issues/view.html.php:8
#, php-format
msgid "%%interested%% person"
@@ -2448,76 +2533,63 @@ msgid_plural "%%interested%% persons"
msgstr[0] "%%interested%% persona"
msgstr[1] "%%interested%% personas"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:9
#: IDF/gettexttemplates/idf/issues/view.html.php:9
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:3
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:7
+#, 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.orig.php:10
-#: IDF/gettexttemplates/idf/issues/view.html.php:10
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:4
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:8
+#: 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.orig.php:11
-#: IDF/gettexttemplates/idf/issues/view.html.php:11
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:5
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:9
+#: IDF/gettexttemplates/idf/issues/view.html.php:12
msgid "Click here to view the previous closed issue"
msgstr "Haga clic aquí para ver el anterior ticket cerrado"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:12
-#: IDF/gettexttemplates/idf/issues/view.html.php:12
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:6
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:10
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
msgid "Click here to view the previous open issue"
msgstr "Haga clic aquí para ver el anterior ticket abierto"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:13
-#: IDF/gettexttemplates/idf/issues/view.html.php:13
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
msgid "Click here to view the next closed issue"
msgstr "Haga clic aquí para ver la siguiente ticket cerrado"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:14
-#: IDF/gettexttemplates/idf/issues/view.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
msgid "Click here to view the next open issue"
msgstr "Haga clic aquí para ver la siguiente ticket abierto"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:15
-#: IDF/gettexttemplates/idf/issues/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:16
msgid "download"
msgstr "descarga"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:16
-#: IDF/gettexttemplates/idf/issues/view.html.php:16
+#: IDF/gettexttemplates/idf/issues/view.html.php:17
msgid "view"
msgstr "ver"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:21
-#: IDF/gettexttemplates/idf/issues/view.html.php:21
-msgid "The form contains some errors. Please correct them to change the issue."
+#: 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.orig.php:23
-#: IDF/gettexttemplates/idf/issues/view.html.php:23
+#: IDF/gettexttemplates/idf/issues/view.html.php:25
msgid "Submit Changes"
msgstr "Enviar cambios"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:30
-#: IDF/gettexttemplates/idf/issues/view.html.php:30
+#: IDF/gettexttemplates/idf/issues/view.html.php:32
msgid "Followed by:"
msgstr "Seguido por:"
#: IDF/gettexttemplates/idf/login_form.html.php:3
#, php-format
msgid ""
-"If you don't have an account yet, you can create one here."
+"If you don't have an account yet, you can create one here."
msgstr ""
"Si aún no tienes una cuenta, puedes crear una aquí."
@@ -2551,11 +2623,10 @@ msgstr "Se tarda menos de un minuto en crearte una cuenta."
#: IDF/gettexttemplates/idf/main-menu.html.php:3
#, php-format
-msgid ""
-"Welcome, %%user%%."
+msgid "Welcome, %%user%%."
msgstr ""
-"Bienvenido, %%user%%"
-"strong>."
+"Bienvenido, %%user%%."
#: IDF/gettexttemplates/idf/main-menu.html.php:4
msgid "Sign Out"
@@ -2565,25 +2636,24 @@ msgstr "Salir"
msgid "Sign in or create your account"
msgstr "Accede o create una cuenta"
-#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42
+#: IDF/gettexttemplates/idf/main-menu.html.php:9 IDF/Views/Admin.php:42
msgid "Forge Management"
msgstr "Gestión de la Forja"
-#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/main-menu.html.php:10
msgid "Help and accessibility features"
msgstr "Ayuda y características de accesibilidad"
-#: IDF/gettexttemplates/idf/main-menu.html.php:10
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
#: 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:14
-#: IDF/gettexttemplates/idf/source/svn/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:4
#: IDF/gettexttemplates/idf/project/timeline.html.php:5
-#: IDF/gettexttemplates/idf/project/timeline.html~.php:5
msgid "Latest Updates"
msgstr "Últimas actualizaciones"
@@ -2613,20 +2683,30 @@ msgid "Happy Crew"
msgstr "Equipo Feliz"
#: IDF/gettexttemplates/idf/project/timeline.html.php:3
-#: 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:72
+#: IDF/Views/Project.php:90
msgid "All Updates"
msgstr "Todas las actualizaciones"
#: IDF/gettexttemplates/idf/project/timeline.html.php:7
-#: IDF/gettexttemplates/idf/project/timeline.html~.php:6
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/register/confirmation-email.txt.php:3
#, php-format
msgid ""
@@ -2700,14 +2780,13 @@ 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."
+"This is the last step, but just be sure to have the cookies "
+"enabled 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
-#: IDF/gettexttemplates/idf/register/index.html~.php:3
msgid ""
"Read the terms and conditions "
"– basically \"Please be nice, we respect you\"."
@@ -2722,48 +2801,43 @@ msgid ""
"create a new account. Just go here to 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 "
+"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
-#: IDF/gettexttemplates/idf/register/index.html~.php:4
#, 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!"
+"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>!"
+"algo divertido e interesante, así que si tiene problemas, puede ¡hacernos saber cuáles son sus inquietudes en cualquier "
+"momento!"
#: IDF/gettexttemplates/idf/register/index.html.php:6
-#: IDF/gettexttemplates/idf/register/index.html~.php:5
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/gettexttemplates/idf/register/index.html~.php:6 IDF/Views.php:90
+#: IDF/gettexttemplates/idf/register/index.html.php:7 IDF/Views.php:90
msgid "Create Your Account"
msgstr "Crea tu cuenta"
#: IDF/gettexttemplates/idf/register/index.html.php:9
-#: IDF/gettexttemplates/idf/register/index.html~.php:8
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."
+"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
-#: IDF/gettexttemplates/idf/register/index.html~.php:9
msgid "Did you know?"
msgstr "¿Sabía que?"
@@ -2810,35 +2884,30 @@ msgstr "Iniciar revisión del Código"
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"
+"
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 ""
"
Para iniciar una revisión de código, debe proporcionar:
\n"
"
\n"
-"
Un commit o revisión del actual código del repositorio, desde el que ha "
-"comenzado su trabajo.
\n"
-"
Un parche que describa los cambios con respecto al commit referenciado."
-"li>\n"
-"
¡Asegúrese de que el parche no contiene ninguna contraseña o "
-"información confidencial!
\n"
+"
Un commit o revisión del actual código del repositorio, desde el que ha comenzado su trabajo.
\n"
+"
Un parche que describa los cambios con respecto al commit referenciado.
\n"
+"
¡Asegúrese de que el parche no contiene ninguna contraseña o información confidencial!
\n"
"
"
#: IDF/gettexttemplates/idf/review/create.html.php:9
msgid ""
-"The form contains some errors. Please correct them to submit the code review."
+"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."
+"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."
+"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."
@@ -2874,22 +2943,6 @@ msgid "Detailed file comments (last first):"
msgstr "Comentarios detallados del archivo (más reciente primero):"
#: IDF/gettexttemplates/idf/review/view.html.php:3
-#: 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:4
-#, php-format
-msgid "%%nc%% comment"
-msgid_plural "%%nc%% comments"
-msgstr[0] "%%nc%% comentario"
-msgstr[1] "%%nc%% comentarios"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:5
msgid ""
"Code review is a process in which\n"
"after or before changes are commited into the code repository,\n"
@@ -2901,16 +2954,13 @@ msgid ""
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"
+"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"
+"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:13
+#: IDF/gettexttemplates/idf/review/view.html.php:11
msgid ""
"\n"
"Proposing code for review is intimidating, you know\n"
@@ -2920,23 +2970,35 @@ msgid ""
"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"
+"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
+#, 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%%"
+"Comment %%i%% by %%who%%,"
+" %%c.creation_dtime%%"
msgstr ""
-"Comentario %%i%% por %%who%%"
-"a>, %%c.creation_dtime%%"
+"Comentario %%i%% por %%who%%, %%c.creation_dtime%%"
#: IDF/gettexttemplates/idf/review/view.html.php:21
#, php-format
@@ -2952,63 +3014,51 @@ msgstr "Accede para participar en la revisión."
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."
+"El formulario contiene algunos errores. Por favor, corríjalos para enviar su"
+" revisión."
-#: IDF/gettexttemplates/idf/review/view.html.php:27
-#: 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:28
-#: 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:29
-#: 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:31
-msgid "Reviewers:"
-msgstr "Revisores:"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:32
-msgid "No reviewers at the moment."
-msgstr "Sin revisores en este momento."
-
-#: IDF/gettexttemplates/idf/review/view.html.php:33
-msgid "Files:"
-msgstr "Archivos:"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:35
-#: IDF/gettexttemplates/idf/source/commit.html.php:23
-#: 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:36
+#: 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
+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
+msgid "Commit:"
+msgstr "Commit:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:30
+#: 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
+msgid "Download the corresponding diff file"
+msgstr "Descargue el correspondiente archivo diff"
+
#: IDF/gettexttemplates/idf/review/view.html.php:37
-msgid "Old"
-msgstr "Antiguo"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:38
-msgid "New"
-msgstr "Nuevo"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:39
msgid "General Comments"
msgstr "Comentarios generales"
-#: IDF/gettexttemplates/idf/review/view.html.php:42
+#: IDF/gettexttemplates/idf/review/view.html.php:40
msgid "Submit Code Review"
msgstr "Enviar Revisión del Código"
@@ -3027,17 +3077,17 @@ 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:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
-#: IDF/Views/Project.php:163
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8
+#: IDF/Views/Project.php:188
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:8
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
msgid "Message"
msgstr "Mensaje"
@@ -3047,7 +3097,6 @@ 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"
@@ -3079,71 +3128,61 @@ 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.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:17
-#: IDF/gettexttemplates/idf/source/commit.html~.php:14
-#: IDF/gettexttemplates/idf/source/commit.html~.php:17
+#: IDF/gettexttemplates/idf/source/commit.html.php:18
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
-#: IDF/gettexttemplates/idf/source/commit.html~.php:16
+msgid "copied"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:17
msgid "added"
msgstr "añadido"
-#: IDF/gettexttemplates/idf/source/commit.html.php:18
-#: IDF/gettexttemplates/idf/source/commit.html~.php:18
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
msgid "modified"
msgstr "modificado"
-#: IDF/gettexttemplates/idf/source/commit.html.php:19
-#: IDF/gettexttemplates/idf/source/commit.html~.php:19
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
msgid "properies changed"
msgstr "propiedades modificadas"
-#: IDF/gettexttemplates/idf/source/commit.html.php:20
-#: IDF/gettexttemplates/idf/source/commit.html~.php:20
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
msgid "removed"
msgstr "eliminado"
-#: IDF/gettexttemplates/idf/source/commit.html.php:21
-#: IDF/gettexttemplates/idf/source/commit.html~.php:21
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
msgid "File differences"
msgstr "Diferencias de archivos"
@@ -3209,10 +3248,10 @@ msgstr "Filtrar etiquetas"
#: 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: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
+#: 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 "
@@ -3225,10 +3264,10 @@ msgstr ""
#: 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: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
+#: 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%%"
@@ -3237,10 +3276,10 @@ msgstr "Por %%cobject.author%%, %%cobject.title%%"
#: 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: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
+#: 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"
@@ -3260,13 +3299,15 @@ msgstr ""
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."
+"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."
+"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
@@ -3298,28 +3339,28 @@ 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:9
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
-#: IDF/Views/Download.php:66 IDF/Views/Download.php:294
+#: 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:314
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:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13
+#: 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: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:13
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14
msgid "or"
msgstr "o"
@@ -3333,10 +3374,12 @@ msgstr ""
"en este repositorio."
#: IDF/gettexttemplates/idf/source/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/svn/invalid_revision.html.php:6
#, php-format
msgid ""
"If this is a new repository, the reason for this error\n"
@@ -3346,8 +3389,7 @@ msgid ""
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"
+"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
@@ -3376,6 +3418,14 @@ msgstr ""
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 ""
@@ -3388,27 +3438,17 @@ msgstr ""
#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3
#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
+#: 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/file.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
-msgid "Go to revision"
-msgstr "Ir a la revisión"
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11
-msgid "Property"
-msgstr "Propiedad"
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12
-msgid "set to:"
-msgstr "establecer a:"
+#: 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
@@ -3421,15 +3461,22 @@ msgstr ""
"el software subversion para gestionar el código\n"
"fuente."
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8
+#: 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:17
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
msgid "Branches:"
msgstr "Branches:"
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
msgid "Tags:"
msgstr "Etiquetas:"
@@ -3540,7 +3587,8 @@ msgstr "Clave de API"
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."
+"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"
@@ -3576,8 +3624,8 @@ msgid ""
"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."
+"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"
@@ -3597,13 +3645,13 @@ 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."
+"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."
+"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
@@ -3703,7 +3751,7 @@ msgstr "Lista de Páginas"
#: IDF/gettexttemplates/idf/wiki/base.html.php:4
#: IDF/gettexttemplates/idf/wiki/index.html.php:4
-#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:175
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:173
msgid "New Page"
msgstr "Nueva página"
@@ -3729,15 +3777,12 @@ msgstr "Crear Página"
#: IDF/gettexttemplates/idf/wiki/delete.html.php:3
#, php-format
msgid ""
-"You are looking at an old revision (%%oldrev.summary%%) of the "
-"page \n"
+"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%%."
+"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/delete.html.php:6
msgid ""
@@ -3764,8 +3809,8 @@ msgid ""
"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."
-""
+"con todas las revisiones relacionadas y no será capaz de "
+"recuperarla."
#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:6
msgid "Delete Page"
@@ -3776,23 +3821,15 @@ msgstr "Eliminar página"
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"
-"
To directly include a file content from the repository, embrace its path "
-"with triple square brackets: [[[path/to/file.txt]]].
Website addresses are automatically linked and you can link to another page in the documentation using double square brackets like that [[AnotherPage]].
\n"
+"
To directly include a file content from the repository, embrace its path with triple square brackets: [[[path/to/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]]].
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/index.html.php:3
#, php-format
@@ -3829,8 +3866,7 @@ msgid ""
"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 ."
+"úsala como referencia solamente si está seguro de que usted necesita específicamente esta información ."
#: IDF/gettexttemplates/idf/wiki/view.html.php:5
#, php-format
@@ -3840,8 +3876,7 @@ msgid ""
"by %%submitter%%."
msgstr ""
"Está viendo una revisión antigua de la página \n"
-"%%page.title%%. Esta revisión fue creada por "
-"%%submitter%%."
+"%%page.title%%. Esta revisión fue creada por %%submitter%%."
#: IDF/gettexttemplates/idf/wiki/view.html.php:10
msgid "Table of Content"
@@ -3888,43 +3923,41 @@ msgstr ""
"Los usuarios interesados recibirán una notificación por correo electrónico "
"cuando el ticket cambie."
-#: IDF/Issue.php:92 IDF/Review.php:95 IDF/Upload.php:93 IDF/WikiPage.php:94
+#: IDF/Issue.php:92 IDF/Review.php:95 IDF/Upload.php:99 IDF/WikiPage.php:94
msgid "labels"
msgstr "etiquetas"
#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
-#: IDF/Upload.php:112 IDF/WikiPage.php:106
+#: IDF/Upload.php:118 IDF/WikiPage.php:106
msgid "modification date"
msgstr "fecha de modificación"
-#: IDF/Issue.php:194 IDF/IssueComment.php:143
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
#, php-format
-msgid ""
-"Issue %3$d, %4$s"
-msgstr ""
-"Ticket %3$d, %4$s"
+msgid "Issue %3$d, %4$s"
+msgstr "Ticket %3$d, %4$s"
-#: IDF/Issue.php:196
+#: IDF/Issue.php:214
#, php-format
msgid "Creation of issue %d, by %s"
msgstr "Creación del ticket %d, por %s"
-#: IDF/Issue.php:206
+#: IDF/Issue.php:224
#, php-format
msgid "%s: Issue %d created - %s"
msgstr "%s: Ticket %d creado - %s"
-#: IDF/Issue.php:272
+#: IDF/Issue.php:290
#, php-format
msgid "Issue %s - %s (%s)"
msgstr "Ticket %s - %s (%s)"
-#: IDF/Issue.php:318
+#: IDF/Issue.php:336
#, php-format
msgid "Updated Issue %s - %s (%s)"
msgstr "Ticket actualizado %s - %s (%s)"
-#: IDF/IssueComment.php:51
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
msgid "issue"
msgstr "ticket"
@@ -3942,12 +3975,12 @@ msgstr "cambios"
msgid "Serialized array of the changes in the issue."
msgstr "Vector serializado con los cambios en los tickets."
-#: IDF/IssueComment.php:171
+#: IDF/IssueComment.php:180
#, php-format
msgid "Comment on issue %d, by %s"
msgstr "Comentario del ticket %d, por %s"
-#: IDF/IssueComment.php:182
+#: IDF/IssueComment.php:191
#, php-format
msgid "%s: Comment on issue %d - %s"
msgstr "%s: Comentario del ticket %d - %s"
@@ -3976,11 +4009,19 @@ msgstr "Imagen"
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:87
+#: IDF/Key.php:90
msgid "Invalid or unknown key data detected."
msgstr "Detectada clave de datos no válida o desconocida."
@@ -3994,124 +4035,131 @@ msgstr "El repositorio %s ya existe."
msgid "%s does not exist or is not writable."
msgstr "%s no existe o no se puede escribir."
-#: IDF/Plugin/SyncMonotone.php:86 IDF/Plugin/SyncMonotone.php:457
-#: IDF/Plugin/SyncMonotone.php:783
-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:107 IDF/Plugin/SyncMonotone.php:492
+msgid "\"mtn_repositories\" must be defined in your configuration file"
+msgstr ""
-#: IDF/Plugin/SyncMonotone.php:93 IDF/Plugin/SyncMonotone.php:447
-msgid "\"mtn_usher_conf\" does not exist or is not writable."
-msgstr "\"mtn_usher_conf\" no existe o no se puede escribir."
+#: 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:100
+#: IDF/Plugin/SyncMonotone.php:121
#, php-format
-msgid "Could not find mtn-post-push script \"%s\"."
-msgstr "No se pudo encontrar el script mtn-post-push \"%s\"."
+msgid "Could not find mtn-post-push script \"%s\""
+msgstr ""
-#: IDF/Plugin/SyncMonotone.php:135
+#: IDF/Plugin/SyncMonotone.php:155
#, php-format
-msgid "The configuration file %s is missing."
-msgstr "El archivo de configuración %s no se encuentra."
+msgid "The configuration file \"%s\" is missing"
+msgstr ""
-#: IDF/Plugin/SyncMonotone.php:144
+#: IDF/Plugin/SyncMonotone.php:164
#, php-format
-msgid "The project path %s already exists."
-msgstr "La ruta del proyecto %s ya existe."
+msgid "The project path \"%s\" already exists"
+msgstr ""
-#: IDF/Plugin/SyncMonotone.php:150
+#: IDF/Plugin/SyncMonotone.php:170
#, php-format
-msgid "The project path %s could not be created."
-msgstr "La ruta del proyecto %s no se puede crear."
+msgid "The project path \"%s\" could not be created"
+msgstr ""
-#: IDF/Plugin/SyncMonotone.php:187 IDF/Scm/Monotone/Stdio.php:87
+#: IDF/Plugin/SyncMonotone.php:208
#, php-format
-msgid "The key directory %s could not be created."
-msgstr "El directorio clave %s no puede ser creado."
+msgid "The key directory \"%s\" could not be created"
+msgstr ""
-#: IDF/Plugin/SyncMonotone.php:205
+#: 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:243
+#: 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:252 IDF/Plugin/SyncMonotone.php:414
+#: IDF/Plugin/SyncMonotone.php:275
#, php-format
-msgid "Could not create symlink \"%s\""
-msgstr "No se pudo crear el enlace simbólico \"%s\""
+msgid "Could not create symlink for configuration file \"%s\""
+msgstr ""
-#: IDF/Plugin/SyncMonotone.php:269
+#: 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:284 IDF/Plugin/SyncMonotone.php:489
+#: IDF/Plugin/SyncMonotone.php:309 IDF/Plugin/SyncMonotone.php:525
#, php-format
msgid "Could not parse usher configuration in \"%s\": %s"
msgstr "No se puede examinar la configuración usher en \"%s\": %s"
-#: IDF/Plugin/SyncMonotone.php:295
+#: 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"
-"\""
+"La configuración usher ya contiene una entrada para el servidor llamada "
+"\"%s\""
-#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510
+#: 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:366
+#: 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:389
+#: 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:406
+#: 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:465
+#: IDF/Plugin/SyncMonotone.php:446
#, php-format
-msgid "One or more paths underknees %s could not be deleted."
-msgstr "Una o más rutas %s no pueden ser eliminadas."
+msgid "Could not create symlink \"%s\""
+msgstr "No se pudo crear el enlace simbólico \"%s\""
-#: IDF/Plugin/SyncMonotone.php:477
+#: IDF/Plugin/SyncMonotone.php:500
#, php-format
-msgid "Could not delete client private key %s"
-msgstr "No se pudo eliminar la clave privada del cliente %s"
+msgid "One or more paths underneath %s could not be deleted"
+msgstr ""
-#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676
+#: 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 \"%s\": %s"
msgstr "No se pudo analizar read-permissions para el proyecto \"%s\": %s"
-#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699
+#: 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:617 IDF/Plugin/SyncMonotone.php:717
+#: 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\""
+msgstr "No se pudo escribir el fichero write-permissions para el proyecto \"%s\""
-#: IDF/Plugin/SyncMonotone.php:790
+#: 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:808
+#: IDF/Plugin/SyncMonotone.php:838
#, php-format
msgid "The command \"%s\" could not be executed."
msgstr "El comando \"%s\" no se pudo ejecutar."
@@ -4163,17 +4211,13 @@ 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"
+msgid "Review %3$d, %4$s"
+msgstr "Revisión %3$d, %4$s"
#: IDF/Review/Comment.php:141
#, php-format
msgid "Update of review %d, by %s"
-msgstr ""
-"Actualización de revisión %d, por %s"
+msgstr "Actualización de revisión %d, por %s"
#: IDF/Review/Comment.php:151
#, php-format
@@ -4208,23 +4252,28 @@ msgstr "%s: Creación de Revisión %d - %s"
msgid "New Code Review %s - %s (%s)"
msgstr "Nueva Revisión de Código %s - %s (%s)"
-#: IDF/Scm/Git.php:311 IDF/Scm/Mercurial.php:141
+#: 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:427 IDF/Scm/Mercurial.php:158
+#: 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:79
+#: 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:98
+#: 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\""
@@ -4289,26 +4338,30 @@ msgstr "La ruta es relativa al directorio de subidas."
msgid "file size in bytes"
msgstr "tamaño del archivo en bytes"
-#: IDF/Upload.php:100
+#: IDF/Upload.php:84
+msgid "MD5"
+msgstr ""
+
+#: IDF/Upload.php:106
msgid "number of downloads"
msgstr "número de descargas"
-#: IDF/Upload.php:189
+#: IDF/Upload.php:201
#, php-format
msgid "Download %2$d, %3$s"
msgstr "Descarga %2$d, %3$s"
-#: IDF/Upload.php:192
+#: IDF/Upload.php:204
#, php-format
msgid "Addition of download %d, by %s"
msgstr "Agregada la descarga %d, por %s"
-#: IDF/Upload.php:202
+#: IDF/Upload.php:214
#, php-format
msgid "%s: Download %d added - %s"
msgstr "%s: Descarga %d agregada - %s"
-#: IDF/Upload.php:244
+#: IDF/Upload.php:256
#, php-format
msgid "New download - %s (%s)"
msgstr "Nueva descarga - %s (%s)"
@@ -4329,12 +4382,12 @@ msgstr "Tamaño del Repositorio"
msgid "No projects were found."
msgstr "No se encontraron proyectos."
-#: IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:312
+#: IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:310
#, php-format
msgid "Update %s"
msgstr "Actualizar %s"
-#: IDF/Views/Admin.php:101 IDF/Views/Project.php:277
+#: IDF/Views/Admin.php:101 IDF/Views/Project.php:302
msgid "The project has been updated."
msgstr "El proyecto ha sido actualizado."
@@ -4450,11 +4503,11 @@ msgstr "%s Descargas"
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:295
+#: IDF/Views/Download.php:67 IDF/Views/Download.php:315
msgid "Uploaded"
msgstr "Subido"
-#: IDF/Views/Download.php:71 IDF/Views/Download.php:299
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:319
msgid "No downloads were found."
msgstr "No se encontraron descargas."
@@ -4477,17 +4530,17 @@ msgstr "Eliminar Descarga %s"
msgid "The file has been deleted."
msgstr "El archivo ha sido eliminado."
-#: IDF/Views/Download.php:223
+#: IDF/Views/Download.php:243
#, php-format
msgid "The file has been uploaded."
msgstr "El archivo ha sido subido."
-#: IDF/Views/Download.php:277
+#: IDF/Views/Download.php:297
#, php-format
msgid "%1$s Downloads with Label %2$s"
msgstr "%1$s Descargas con Etiqueta %2$s"
-#: IDF/Views/Download.php:287
+#: IDF/Views/Download.php:307
#, php-format
msgid "This table shows the downloads with label %s."
msgstr "Esta tabla muestra las descargas con la etiqueta %s."
@@ -4497,241 +4550,255 @@ msgstr "Esta tabla muestra las descargas con la etiqueta %s."
msgid "%s Open Issues"
msgstr "%s Tickets abiertos"
-#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:287 IDF/Views/User.php:75
+#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:379 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:138 IDF/Views/Issue.php:219
-#: IDF/Views/Issue.php:295 IDF/Views/Issue.php:382 IDF/Views/Issue.php:561
-#: IDF/Views/Issue.php:620 IDF/Views/Review.php:57 IDF/Views/User.php:81
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:217 IDF/Views/Issue.php:298
+#: IDF/Views/Issue.php:387 IDF/Views/Issue.php:539 IDF/Views/Issue.php:762
+#: IDF/Views/Issue.php:821 IDF/Views/Review.php:57 IDF/Views/User.php:81
msgid "Id"
msgstr "Id"
-#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:141 IDF/Views/Issue.php:223
-#: IDF/Views/Issue.php:298 IDF/Views/Issue.php:385 IDF/Views/Issue.php:564
-#: IDF/Views/Issue.php:623 IDF/Views/Review.php:60 IDF/Views/User.php:85
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:220 IDF/Views/Issue.php:302
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 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:145 IDF/Views/Issue.php:227
-#: IDF/Views/Issue.php:302 IDF/Views/Issue.php:389 IDF/Views/Issue.php:568
-#: IDF/Views/Issue.php:627
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:224 IDF/Views/Issue.php:306
+#: IDF/Views/Issue.php:394 IDF/Views/Issue.php:546 IDF/Views/Issue.php:769
+#: IDF/Views/Issue.php:828
msgid "No issues were found."
msgstr "No se han encontrado tickets."
-#: IDF/Views/Issue.php:112
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr ""
+
+#: IDF/Views/Issue.php:146
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:191
#, php-format
msgid "Watch List: Closed Issues for %s"
msgstr "Lista de mantenimiento: Tickets Cerrados por %s"
-#: IDF/Views/Issue.php:113
+#: IDF/Views/Issue.php:192
#, 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."
+"Esta tabla muestra los tickets cerrados en su lista de mantenimiento para el"
+" proyecto %s."
-#: IDF/Views/Issue.php:118
+#: IDF/Views/Issue.php:197
#, php-format
msgid "Watch List: Open Issues for %s"
msgstr "Lista mantenimiento: Tickets Abiertos por %s"
-#: IDF/Views/Issue.php:119
+#: IDF/Views/Issue.php:198
#, 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."
+"Esta tabla muestra los tickets abiertos en su lista de mantenimiento para el"
+" proyecto %s."
-#: IDF/Views/Issue.php:195
+#: IDF/Views/Issue.php:274
msgid "Watch List: Closed Issues"
msgstr "Lista mantenimiento: Tickets Cerrados"
-#: IDF/Views/Issue.php:196
+#: IDF/Views/Issue.php:275
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:201
+#: IDF/Views/Issue.php:280
msgid "Watch List: Open Issues"
msgstr "Lista mantenimiento: Tickets Abiertos"
-#: IDF/Views/Issue.php:202
+#: IDF/Views/Issue.php:281
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:221 IDF/Views/User.php:82
+#: IDF/Views/Issue.php:300 IDF/Views/User.php:82
msgid "Project"
msgstr "Proyecto"
-#: IDF/Views/Issue.php:254
+#: IDF/Views/Issue.php:341
#, php-format
-msgid "My Submitted %s Issues"
-msgstr "Mis tickets %s enviados"
+msgid "%s %s Submitted %s Issues"
+msgstr ""
-#: IDF/Views/Issue.php:258
+#: IDF/Views/Issue.php:345
#, php-format
-msgid "My Closed Submitted %s Issues"
-msgstr "Mis Tickets enviados y cerrados %s"
+msgid "%s %s Closed Submitted %s Issues"
+msgstr ""
-#: IDF/Views/Issue.php:262
+#: IDF/Views/Issue.php:349
#, php-format
-msgid "My Closed Working %s Issues"
-msgstr "Mis tickets en proceso cerrados %s"
+msgid "%s %s Closed Working %s Issues"
+msgstr ""
-#: IDF/Views/Issue.php:266
+#: IDF/Views/Issue.php:353
#, php-format
-msgid "My Working %s Issues"
-msgstr "Mis tickets en proceso %s"
+msgid "%s %s Working %s Issues"
+msgstr ""
-#: IDF/Views/Issue.php:321
+#: IDF/Views/Issue.php:414
msgid "Submit a new issue"
msgstr "Enviar nuevo Ticket"
-#: IDF/Views/Issue.php:337
+#: IDF/Views/Issue.php:430
#, php-format
msgid "Issue %d has been created."
msgstr "El Ticket %d ha sido creado."
-#: IDF/Views/Issue.php:366
+#: IDF/Views/Issue.php:487
#, php-format
-msgid "Search Issues - %s"
-msgstr "Buscar Tickets - %s"
+msgid "Search issues - %s"
+msgstr ""
-#: IDF/Views/Issue.php:378
+#: IDF/Views/Issue.php:489
+#, php-format
+msgid "Search closed issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:536
msgid "This table shows the found issues."
msgstr "Esta tabla muestra los tickets encontrados."
-#: IDF/Views/Issue.php:408
+#: IDF/Views/Issue.php:601
#, php-format
msgid "Issue %d: %s"
msgstr "Ticket %d: %s"
-#: IDF/Views/Issue.php:432
+#: IDF/Views/Issue.php:625
#, php-format
msgid "Issue %d has been updated."
msgstr "El Ticket %d ha sido actualizado."
-#: IDF/Views/Issue.php:521
+#: IDF/Views/Issue.php:715
#, php-format
msgid "View %s"
msgstr "Ver %s"
-#: IDF/Views/Issue.php:541
+#: IDF/Views/Issue.php:742
#, php-format
msgid "%s Closed Issues"
msgstr "%s Tickets cerrados"
-#: IDF/Views/Issue.php:551
+#: IDF/Views/Issue.php:752
msgid "This table shows the closed issues."
msgstr "Esta tabla muestra los tickets cerrados."
-#: IDF/Views/Issue.php:594
+#: IDF/Views/Issue.php:795
#, php-format
msgid "%1$s Issues with Label %2$s"
msgstr "%1$s Tickets con la Etiqueta %2$s"
-#: IDF/Views/Issue.php:597
+#: IDF/Views/Issue.php:798
#, 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:610
+#: IDF/Views/Issue.php:811
#, 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:660
+#: IDF/Views/Issue.php:934
msgid "The issue has been removed from your watch list."
msgstr "El tickets se ha eliminado de su lista."
-#: IDF/Views/Issue.php:663
+#: IDF/Views/Issue.php:937
msgid "The issue has been added to your watch list."
msgstr "El ticket ha sido añadido a su lista."
-#: IDF/Views/Issue.php:752
+#: IDF/Views/Issue.php:1035
msgid "On your watch list."
msgstr "En su lista."
-#: IDF/Views/Project.php:74
+#: IDF/Views/Project.php:95
msgid "Issues and Comments"
msgstr "Tickets y Comentarios"
-#: IDF/Views/Project.php:76
+#: IDF/Views/Project.php:99
msgid "Documents"
msgstr "Documentos"
-#: IDF/Views/Project.php:77
+#: IDF/Views/Project.php:101
msgid "Reviews and Patches"
msgstr "Revisiones y parches"
-#: IDF/Views/Project.php:153
+#: IDF/Views/Project.php:178
msgid "This table shows the project updates."
msgstr "Esta tabla muestra las actualizaciones del proyecto."
-#: IDF/Views/Project.php:164
+#: IDF/Views/Project.php:189
msgid "Change"
msgstr "Cambios"
-#: IDF/Views/Project.php:168
+#: IDF/Views/Project.php:193
msgid "No changes were found."
msgstr "No se encontraron cambios."
-#: IDF/Views/Project.php:269
+#: IDF/Views/Project.php:294
#, php-format
msgid "%s Project Summary"
msgstr "Resumen del Proyecto %s"
-#: IDF/Views/Project.php:304
+#: IDF/Views/Project.php:329
#, php-format
msgid "%s Issue Tracking Configuration"
msgstr "Configuración de Seguimiento de Tickets %s"
-#: IDF/Views/Project.php:313
+#: IDF/Views/Project.php:338
msgid "The issue tracking configuration has been saved."
msgstr "La configuración de seguimiento de Tickets se ha guardado."
-#: IDF/Views/Project.php:349
+#: IDF/Views/Project.php:375
#, php-format
msgid "%s Downloads Configuration"
msgstr "Configuración de descargas %s"
-#: IDF/Views/Project.php:358
+#: IDF/Views/Project.php:384
msgid "The downloads configuration has been saved."
msgstr "La configuración de las descargas se ha guardado."
-#: IDF/Views/Project.php:392
+#: IDF/Views/Project.php:418
#, php-format
msgid "%s Documentation Configuration"
msgstr "Configuración de documentación %s"
-#: IDF/Views/Project.php:401
+#: IDF/Views/Project.php:427
msgid "The documentation configuration has been saved."
msgstr "La configuración de la documentación ha sido guardada."
-#: IDF/Views/Project.php:435
+#: IDF/Views/Project.php:461
#, php-format
msgid "%s Project Members"
msgstr "Miembros del Proyecto %s"
-#: IDF/Views/Project.php:444
+#: IDF/Views/Project.php:470
msgid "The project membership has been saved."
msgstr "Los miembros del proyecto se han guardado."
-#: IDF/Views/Project.php:467
+#: IDF/Views/Project.php:493
#, php-format
msgid "%s Tabs Access Rights"
msgstr "Pestaña de permisos de acceso %s "
-#: IDF/Views/Project.php:481
+#: IDF/Views/Project.php:507
msgid "The project tabs access rights have been saved."
msgstr "La pestaña de permisos de acceso del proyecto se ha guardado."
-#: IDF/Views/Project.php:527
+#: IDF/Views/Project.php:553
#, php-format
msgid "%s Source"
msgstr "Fuente %s"
-#: IDF/Views/Project.php:541
+#: IDF/Views/Project.php:567
msgid "The project source configuration has been saved."
msgstr "La configuración de la fuente del proyecto se ha guardado"
@@ -4773,27 +4840,27 @@ msgstr "Ayuda de fuentes %s"
msgid "%s Invalid Revision"
msgstr "Revisión no válida %s "
-#: IDF/Views/Source.php:81
+#: IDF/Views/Source.php:82
#, php-format
msgid "%s Ambiguous Revision"
msgstr "Revisión ambigua %s"
-#: IDF/Views/Source.php:106
+#: 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:146 IDF/Views/Source.php:227 IDF/Views/Source.php:360
+#: IDF/Views/Source.php:147 IDF/Views/Source.php:228 IDF/Views/Source.php:356
#, php-format
msgid "%1$s %2$s Source Tree"
msgstr "Árbol de fuentes %2$s de %1$s"
-#: IDF/Views/Source.php:303
+#: IDF/Views/Source.php:304
#, php-format
msgid "%s Commit Details"
msgstr "Detalles del Commit %s"
-#: IDF/Views/Source.php:304
+#: IDF/Views/Source.php:305
#, php-format
msgid "%s Commit Details - %s"
msgstr "%s Detalles del Commit - %s"
@@ -4812,7 +4879,7 @@ msgstr "No te han asignado tickets, ¡Yeah!"
#: IDF/Views/User.php:89
msgid "All the issues you submitted are fixed, yeah!"
-msgstr "Todas los tickets enviados han sido resueltos, ¡Yeah!"
+msgstr "Todos los tickets que enviastes han sido resueltos, ¡Yeah!"
#: IDF/Views/User.php:121
msgid "Your personal information has been updated."
@@ -4884,30 +4951,30 @@ msgstr "%1$s Páginas de documentación con la etiqueta %2$s"
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:186
+#: IDF/Views/Wiki.php:184
#, php-format
msgid "The page %s has been created."
msgstr "La página %s se ha creado."
-#: IDF/Views/Wiki.php:273
+#: IDF/Views/Wiki.php:271
msgid "The old revision has been deleted."
msgstr "La antigua revisión ha sido eliminado."
-#: IDF/Views/Wiki.php:279
+#: IDF/Views/Wiki.php:277
#, php-format
msgid "Delete Old Revision of %s"
msgstr "Eliminar Antigua revisión de %s"
-#: IDF/Views/Wiki.php:324
+#: IDF/Views/Wiki.php:322
#, php-format
msgid "The page %s has been updated."
msgstr "La página %s se ha actualizado."
-#: IDF/Views/Wiki.php:362
+#: IDF/Views/Wiki.php:360
msgid "The documentation page has been deleted."
msgstr "La página de documentación se ha eliminado."
-#: IDF/Views/Wiki.php:370
+#: IDF/Views/Wiki.php:368
#, php-format
msgid "Delete Page %s"
msgstr "Eliminar Página %s"
@@ -4917,7 +4984,8 @@ msgid "Confirm Your Account Creation"
msgstr "Confirma la creación de tu cuenta"
#: IDF/Views.php:172
-msgid "Welcome! You can now participate in the life of your project of choice."
+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:198 IDF/Views.php:222 IDF/Views.php:263
@@ -5002,3 +5070,5 @@ msgstr "Nueva página de documentación %s - %s (%s)"
#, php-format
msgid "Documentation Page Changed %s - %s (%s)"
msgstr "Cambios página de documentación %s - %s (%s)"
+
+
diff --git a/src/IDF/locale/fr/idf.po b/src/IDF/locale/fr/idf.po
index dead4ac..8ade9b8 100644
--- a/src/IDF/locale/fr/idf.po
+++ b/src/IDF/locale/fr/idf.po
@@ -1,20 +1,24 @@
# 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.
-#
+#
+# Translators:
+# Benjamin Danon , 2011.
+# Jean-Philippe Fleury , 2011.
+# tommyd , 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: 2011-03-28 01:13+0200\n"
-"PO-Revision-Date: 2011-03-28 07:33+0000\n"
+"POT-Creation-Date: 2011-10-31 01:11+0100\n"
+"PO-Revision-Date: 2011-10-31 20:29+0000\n"
"Last-Translator: Delkia \n"
-"Language-Team: French <>\n"
-"Language: fr\n"
+"Language-Team: French (http://www.transifex.net/projects/p/indefero/team/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1)\n"
#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52 IDF/Review.php:65
@@ -23,8 +27,9 @@ msgid "project"
msgstr "projet"
#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65
-#: IDF/IssueFile.php:57 IDF/Review/Comment.php:69 IDF/Review.php:80
-#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79
+#: IDF/IssueFile.php:57 IDF/IssueRelation.php:69 IDF/Review/Comment.php:69
+#: IDF/Review.php:80 IDF/Upload.php:91 IDF/WikiPage.php:78
+#: IDF/WikiRevision.php:79
msgid "submitter"
msgstr "auteur"
@@ -39,9 +44,9 @@ msgid "changelog"
msgstr "changements"
#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79
-#: IDF/IssueFile.php:96 IDF/Review/Comment.php:90
+#: 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:106 IDF/WikiPage.php:100 IDF/WikiRevision.php:92
+#: IDF/Upload.php:112 IDF/WikiPage.php:100 IDF/WikiRevision.php:92
msgid "creation date"
msgstr "date de création"
@@ -63,6 +68,14 @@ msgstr "clef"
msgid "value"
msgstr "valeur"
+#: IDF/Diff.php:460
+msgid "Old"
+msgstr "Vieux"
+
+#: IDF/Diff.php:460
+msgid "New"
+msgstr "Nouveau"
+
#: IDF/EmailAddress.php:49 IDF/Key.php:49
msgid "user"
msgstr "utilisateur"
@@ -71,30 +84,33 @@ msgstr "utilisateur"
msgid "email"
msgstr "e-mail"
-#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:561
+#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:587
msgid "git"
msgstr "git"
-#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:562
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:588
msgid "Subversion"
msgstr "Subversion"
-#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:563
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:589
msgid "mercurial"
msgstr "mercurial"
-#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:564
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:590
msgid "monotone"
msgstr "monotone"
#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
-#: IDF/Views/Admin.php:66 IDF/Views/Admin.php:210
+#: IDF/Form/ProjectConf.php:38 IDF/Views/Admin.php:66 IDF/Views/Admin.php:210
msgid "Name"
msgstr "Nom"
#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77
-#: IDF/gettexttemplates/idf/index.html.php:6
-#: IDF/gettexttemplates/idf/main-menu.html.php:7
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/index.html.php:7
+#: IDF/gettexttemplates/idf/index.html.php:8
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
msgid "Private project"
msgstr "Projet privé"
@@ -117,7 +133,7 @@ msgstr "Petite description"
#: 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 d'une ligne du projet."
+msgstr "Une description d'une ligne du projet."
#: IDF/Form/Admin/ProjectCreate.php:77
msgid "Repository type"
@@ -174,17 +190,17 @@ msgid ""
"Only a remote repository available through HTTP or HTTPS is allowed. For "
"example \"http://somewhere.com/svn/trunk\"."
msgstr ""
-"Seulement les dépôts utilisant http ou http sont autorisés, par exemple : "
-"http://example.com/svn/trunk."
+"Seulement les dépôts utilisant http ou http sont autorisés, par "
+"exemple http://example.com/svn/trunk."
#: IDF/Form/Admin/ProjectCreate.php:201
msgid ""
"The master branch is empty or contains illegal characters, please use only "
"letters, digits, dashs and dots as separators."
msgstr ""
-"La branche principale contient des caractères non autorisés, il ne doit être "
-"composé que de lettres, de chiffres, du point d'exclamation (!) ou du point "
-"(.)."
+"La branche principale contient des caractères non autorisés, il ne doit être"
+" composé que de lettres, de chiffres, du point d'exclamation (!) ou du point"
+" (.)."
#: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101
msgid "This master branch is already used. Please select another one."
@@ -214,10 +230,10 @@ msgstr "Ce nom court est déjà utilisé, veuillez en sélectionner un autre."
#: IDF/Form/Admin/ProjectCreate.php:279 IDF/Form/Admin/ProjectDelete.php:78
#: IDF/Form/Admin/ProjectUpdate.php:121 IDF/Form/Admin/UserCreate.php:106
-#: IDF/Form/Admin/UserUpdate.php:191 IDF/Form/IssueCreate.php:263
-#: IDF/Form/IssueUpdate.php:232 IDF/Form/MembersConf.php:64
+#: 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:127
+#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:143
#: IDF/Form/TabsConf.php:98 IDF/Form/UpdateUpload.php:126
#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:216
#: IDF/Form/UserChangeEmail.php:80 IDF/Form/WikiCreate.php:167
@@ -229,10 +245,10 @@ msgstr "Ne peut pas sauvegarder le modèle depuis un formulaire invalide."
msgid ""
"Click on the Project Management tab to set the description of your project."
msgstr ""
-"Cliquez sur l'onglet Administration du projet pour définir la description du "
-"projet."
+"Cliquez sur l'onglet Administration du projet pour définir la description du"
+" projet."
-#: IDF/Form/Admin/ProjectCreate.php:362
+#: IDF/Form/Admin/ProjectCreate.php:363
msgid "This project is not available."
msgstr "Ce projet n'est pas disponible."
@@ -265,9 +281,9 @@ msgid ""
"The master branch is empty or contains illegal characters, please use only "
"letters, digits, dashes and dots as separators."
msgstr ""
-"La branche principale contient des caractères non autorisés, il ne doit être "
-"composé que de lettres, de chiffres, du point d'exclamation (!) ou du point "
-"(.)."
+"La branche principale contient des caractères non autorisés, il ne doit être"
+" composé que de lettres, de chiffres, du point d'exclamation (!) ou du point"
+" (.)."
#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38
#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40
@@ -285,8 +301,8 @@ 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."
+"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."
@@ -317,14 +333,14 @@ msgid ""
"key here!"
msgstr ""
"Copiez une clef publique SSH ou monotone. Faites bien attention à ne pas y "
-"mettre la clef privée !"
+"mettre la clef 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:420
-#: IDF/Form/UserAccount.php:429
+#: 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."
@@ -359,10 +375,11 @@ msgstr ""
msgid "Confirm password"
msgstr "Confirmation du mot de passe"
-#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:62
-#: IDF/Form/ReviewCreate.php:54 IDF/Form/UpdateUpload.php:51
-#: IDF/Form/Upload.php:49 IDF/Form/UserAccount.php:101
-#: IDF/Form/WikiCreate.php:70 IDF/Form/WikiUpdate.php:60
+#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php:66
+#: IDF/Form/ProjectConf.php:47 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiCreate.php:70
+#: IDF/Form/WikiUpdate.php:60
msgid "Description"
msgstr "Description"
@@ -372,7 +389,7 @@ msgstr "Nom d'utilisateur twitter"
#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120
msgid "Public email address"
-msgstr "Adesse email publique"
+msgstr "Adresse email publique"
#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130
msgid "Website URL"
@@ -387,8 +404,8 @@ msgid ""
"An image file with a width and height not larger than 60 pixels (bigger "
"images are scaled down)."
msgstr ""
-"Un fichier image avec une largeur et une hauteur inférieurs à 60 pixels (les "
-"images qui dépassent sont redimentionnées)."
+"Un fichier image avec une largeur et une hauteur inférieurs à 60 pixels (les"
+" images qui dépassent sont redimentionnées)."
#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152
msgid "Remove custom avatar"
@@ -431,13 +448,13 @@ 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:389
+#: 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 "
"avec cette extension."
-#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:452
+#: 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 donner de nouveau."
@@ -446,112 +463,162 @@ msgstr ""
msgid "Please enter one or more valid email addresses."
msgstr "Veuillez entrer une ou plusieurs adresse email valides."
-#: IDF/Form/IssueCreate.php:53 IDF/Form/IssueUpdate.php:45
+#: 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/Views/Download.php:65 IDF/Views/Download.php:293 IDF/Views/Issue.php:62
-#: IDF/Views/Issue.php:139 IDF/Views/Issue.php:220 IDF/Views/Issue.php:296
-#: IDF/Views/Issue.php:383 IDF/Views/Issue.php:562 IDF/Views/Issue.php:621
-#: IDF/Views/Review.php:58 IDF/Views/User.php:83 IDF/Views/Wiki.php:62
-#: IDF/Views/Wiki.php:107 IDF/Views/Wiki.php:148
+#: IDF/gettexttemplates/idf/issues/base.html.php:3 IDF/Views/Download.php:65
+#: IDF/Views/Download.php:313 IDF/Views/Issue.php:62 IDF/Views/Issue.php:218
+#: IDF/Views/Issue.php:299 IDF/Views/Issue.php:388 IDF/Views/Issue.php:540
+#: IDF/Views/Issue.php:763 IDF/Views/Issue.php:822 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:107
+#: IDF/Views/Wiki.php:148
msgid "Summary"
msgstr "Résumé"
-#: IDF/Form/IssueCreate.php:72 IDF/Form/IssueUpdate.php:65
+#: 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."
+msgstr "La variable de configuration \"upload_issue_path\" n'a pas été définie."
-#: IDF/Form/IssueCreate.php:82 IDF/Form/IssueUpdate.php:75
+#: IDF/Form/IssueCreate.php:86 IDF/Form/IssueUpdate.php:76
msgid "Attach a file"
msgstr "Attacher un fichier"
-#: IDF/Form/IssueCreate.php:95 IDF/Form/IssueUpdate.php:88
+#: 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:140 IDF/Views/Issue.php:222
-#: IDF/Views/Issue.php:297 IDF/Views/Issue.php:384 IDF/Views/Issue.php:563
-#: IDF/Views/Issue.php:622 IDF/Views/Review.php:59 IDF/Views/User.php:84
+#: IDF/Views/Issue.php:63 IDF/Views/Issue.php:219 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:389 IDF/Views/Issue.php:541 IDF/Views/Issue.php:764
+#: IDF/Views/Issue.php:823 IDF/Views/Review.php:59 IDF/Views/User.php:84
msgid "Status"
msgstr "Statut"
-#: IDF/Form/IssueCreate.php:104 IDF/Form/IssueUpdate.php:98
+#: IDF/Form/IssueCreate.php:108 IDF/Form/IssueUpdate.php:99
msgid "Owner"
msgstr "Propriétaire"
-#: IDF/Form/IssueCreate.php:150 IDF/Form/IssueUpdate.php:117
+#: 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:168 IDF/Form/IssueUpdate.php:164
#: IDF/Form/UpdateUpload.php:71 IDF/Form/Upload.php:70
#: IDF/Form/WikiCreate.php:93 IDF/Form/WikiUpdate.php:104
msgid "Labels"
msgstr "Étiquettes"
-#: IDF/Form/IssueCreate.php:192
+#: IDF/Form/IssueCreate.php:210
msgid "You cannot add a label with the \"Status\" prefix to an issue."
msgstr ""
-"Vous ne pouvez pas donner à un ticket une étiquette ayant le préfixe \"Status"
-"\"."
+"Vous ne pouvez pas donner à un ticket une étiquette ayant le préfixe "
+"\"Status\"."
-#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200
+#: IDF/Form/IssueCreate.php:211 IDF/Form/IssueCreate.php:218
#: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:120
#: IDF/Form/WikiCreate.php:151 IDF/Form/WikiUpdate.php:162
msgid "You provided an invalid label."
msgstr "Vous avez donné une étiquette invalide."
-#: IDF/Form/IssueCreate.php:199 IDF/Form/UpdateUpload.php:109
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
#: IDF/Form/Upload.php:119
#, php-format
msgid "You cannot provide more than 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:210 IDF/Form/IssueUpdate.php:147
+#: 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 problème."
-#: IDF/Form/IssueCreate.php:233 IDF/Form/ReviewCreate.php:159
+#: 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/IssueTrackingConf.php:80
-msgid ""
-"Define an issue template to hint to the reporter to provide certain "
-"information"
-msgstr ""
-"Définissez un modèle de ticket pour guider le rapporteur à fournir certaines "
-"informations."
+#: 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ée à"
+
+#: 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 un doublons de"
+
+#: 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 guider le rapporteur a fournir certaines "
+"informations."
+
+#: IDF/Form/IssueTrackingConf.php:106
msgid "Open issue status values"
msgstr "Valeurs des statuts des tickets ouverts"
-#: IDF/Form/IssueTrackingConf.php:97
+#: IDF/Form/IssueTrackingConf.php:114
msgid "Closed issue status values"
msgstr "Valeurs des statuts des tickets fermés"
-#: IDF/Form/IssueTrackingConf.php:106
+#: IDF/Form/IssueTrackingConf.php:123
msgid "Predefined issue labels"
msgstr "Étiquettes prédéfinies des tickets"
-#: IDF/Form/IssueTrackingConf.php:108
+#: 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 seront choisis "
-"automatiquement par défaut des prochains tickets. "
+"Les premières entrées \"Type\" et \"Priorité\" de cette liste seront choisis"
+" automatiquement par défaut des prochains tickets. "
-#: IDF/Form/IssueTrackingConf.php:116
+#: 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/IssueUpdate.php:55 IDF/Form/ReviewFileComment.php:45
+#: 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\"."
+msgstr ""
+"Vous pouvez définir des relations bidirectionnelles comme \"est lié à\" ou "
+"\"est bloqué par\"."
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
#: IDF/Form/WikiUpdate.php:82
msgid "Comment"
msgstr "Commentaire"
-#: IDF/Form/IssueUpdate.php:219
+#: IDF/Form/IssueUpdate.php:316
msgid "No changes were entered."
msgstr "Aucun changement n'a été entré."
@@ -559,8 +626,8 @@ msgstr "Aucun changement n'a été entré."
#, php-format
msgid "The following login is invalid: %s."
msgid_plural "The following logins are invalid: %s."
-msgstr[0] "L'identifiant suivant n'est pas valide : %s."
-msgstr[1] "Les identifiants suivants ne sont pas valides: %s."
+msgstr[0] "L'identifiant suivant n'est pas valide : %s."
+msgstr[1] "Les identifiants suivants ne sont pas valides : %s."
#: IDF/Form/Password.php:34
msgid "Your login or email"
@@ -569,8 +636,8 @@ msgstr "Votre identifiant ou email"
#: IDF/Form/Password.php:35
msgid "Provide either your login or your email to recover your password."
msgstr ""
-"Fournissez soit votre identifiant, soit votre email pour récupérer votre mot "
-"de passe."
+"Fournissez soit votre identifiant, soit votre email pour récupérer votre mot"
+" de passe."
#: IDF/Form/Password.php:49 IDF/Form/Password.php:64
msgid ""
@@ -591,11 +658,11 @@ msgstr "Votre clef 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."
+"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 clef de validation est invalide. Vous devriez "
-"peut-être faire directement un copier/coller depuis votre email de "
+"Nous sommes désolés mais cette clef de validation est invalide. Vous devriez"
+" peut-être faire directement un copier/coller depuis votre email de "
"validation."
#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100
@@ -643,6 +710,34 @@ msgstr ""
"Ce compte n'est pas actif. Veuillez contacter un administrateur de la forge "
"pour l'activer."
+#: IDF/Form/ProjectConf.php:42
+msgid "Short Description"
+msgstr "Description courte"
+
+#: IDF/Form/ProjectConf.php:58
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr "La variable de configuration \"upload_path\" n'a pas été défini."
+
+#: IDF/Form/ProjectConf.php:63
+msgid "Update the logo"
+msgstr "Mise à jour du logo"
+
+#: IDF/Form/ProjectConf.php:65
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr "Le logo doit être une image de 32 par 32 pixels."
+
+#: IDF/Form/ProjectConf.php:75
+msgid "Remove the current logo"
+msgstr "Retirer le logo actuel"
+
+#: IDF/Form/ProjectConf.php:111
+msgid "Could not determine the size of the uploaded picture."
+msgstr "Impossible de déterminer la taille de l'image téléchargée."
+
+#: IDF/Form/ProjectConf.php:115
+msgid "The picture must have a size of 32 by 32."
+msgstr "La photo doit avoir une taille de 32 par 32 pixels."
+
#: IDF/Form/Register.php:41
msgid "Your login"
msgstr "Votre identifiant"
@@ -671,10 +766,11 @@ 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."
+"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."
+"Nous savons que c'est inintéressant, mais vous devez accepter les conditions"
+" d'usage du service."
#: IDF/Form/Register.php:97
#, php-format
@@ -682,8 +778,8 @@ msgid ""
"The email \"%s\" is already used. If you need to, click on the help link to "
"recover your password."
msgstr ""
-"L'email \"%s\" est déjà utilisé. Si vous avez perdu votre mot de passe, vous "
-"pouvez le récupérer à l'aide de ce lien."
+"L'email \"%s\" est déjà utilisé. Si vous avez perdu votre mot de passe, vous"
+" pouvez le récupérer à l'aide de ce lien."
#: IDF/Form/Register.php:148
msgid "Confirm the creation of your account."
@@ -731,8 +827,8 @@ 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 "
-"valid."
+"Nous n'avons pas réussi à interpréter votre patch. Merci de fournir un patch"
+" valid."
#: IDF/Form/ReviewCreate.php:128
msgid "You provided an invalid commit."
@@ -746,13 +842,21 @@ msgstr "Patch initial à discuter."
msgid "General comment"
msgstr "Commentaire général"
-#: IDF/Form/ReviewFileComment.php:104
-msgid "You need to provide comments on at least one file."
-msgstr "Vous devez au moins apporter un commentaire à un fichier."
+#: 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 sur au "
+"moins un des fichiers."
-#: IDF/Form/ReviewFileComment.php:111
-msgid "You need to provide your general comment about the proposal."
-msgstr "Vous devez apporter un commentaire général sur la proposition."
+#: 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:56
msgid "Webhook URL"
@@ -764,43 +868,33 @@ msgid "Learn more about the post-commit web hooks."
msgstr "En savoir plus à propos des Webhooks post-commit."
#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
-#: 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/base-full.html.php:7
+#: 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:75
+#: IDF/Views/Project.php:97
msgid "Downloads"
msgstr "Téléchargements"
-#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:9
-#: IDF/gettexttemplates/idf/base-full.html~.php:9
-#: IDF/gettexttemplates/idf/base.html.php:9
-#: IDF/gettexttemplates/idf/base.html~.php:9
+#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.php:11
+#: 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:6
-#: IDF/gettexttemplates/idf/base-full.html~.php:6
-#: IDF/gettexttemplates/idf/base.html.php:6
-#: IDF/gettexttemplates/idf/base.html~.php:6
+#: IDF/gettexttemplates/idf/base-full.html.php:8
+#: 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:8
-#: IDF/gettexttemplates/idf/base-full.html~.php:8
-#: IDF/gettexttemplates/idf/base.html.php:8
-#: IDF/gettexttemplates/idf/base.html~.php:8
+#: IDF/gettexttemplates/idf/base-full.html.php:10
+#: IDF/gettexttemplates/idf/base.html.php:10
msgid "Source"
msgstr "Source"
-#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:7
-#: IDF/gettexttemplates/idf/base-full.html~.php:7
-#: IDF/gettexttemplates/idf/base.html.php:7
-#: IDF/gettexttemplates/idf/base.html~.php:7
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:9
+#: IDF/gettexttemplates/idf/base.html.php:9
#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
msgid "Issues"
msgstr "Tickets"
@@ -823,9 +917,9 @@ msgstr "Utilisateurs autorisés supplémentaires"
#: IDF/Form/Upload.php:59 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:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6
-#: IDF/Views/Download.php:64 IDF/Views/Download.php:292
+#: 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:312
msgid "File"
msgstr "Fichier"
@@ -867,7 +961,7 @@ msgid ""
"key here!"
msgstr ""
"Copiez une clef publique SSH ou monotone. Faites bien attention à ne pas y "
-"mettre la clef privée !"
+"mettre la clef privée !"
#: IDF/Form/UserAccount.php:171
msgid "Add a secondary mail address"
@@ -888,34 +982,35 @@ msgid ""
"change."
msgstr "Un email a été envoyé à \"%s\" pour valider le changement d'adresse."
-#: IDF/Form/UserAccount.php:334
+#: IDF/Form/UserAccount.php:341
msgid ""
"Please check the key as it does not appear to be a valid SSH public key."
msgstr ""
"Vérifiez s'il vous plaît la clef car elle ne semble pas être une clef "
"publique SSH valide."
-#: IDF/Form/UserAccount.php:354
+#: IDF/Form/UserAccount.php:363
msgid ""
-"Please check the key as it does not appear to be a valid monotone public key."
+"Please check the key as it does not appear to be a valid monotone public "
+"key."
msgstr ""
"Vérifiez s'il vous plaît la clef car elle ne semble pas être une clef "
"publique monotone valide."
-#: IDF/Form/UserAccount.php:362
+#: IDF/Form/UserAccount.php:371
msgid "Public key looks like neither an SSH nor monotone public key."
msgstr ""
"La clef publique ne ressemble ni à une clef publique SSH ni une clef "
"publique monotone."
-#: IDF/Form/UserAccount.php:374
+#: IDF/Form/UserAccount.php:383
msgid "You already have uploaded this key."
msgstr "Vous avez déjà cette clef SSH dans votre trousseau."
#: IDF/Form/UserChangeEmail.php:63
msgid ""
-"The validation key is not valid. Please copy/paste it from your confirmation "
-"email."
+"The validation key is not valid. Please copy/paste it from your confirmation"
+" email."
msgstr ""
"Nous sommes désolés mais cette clef de confirmation est invalide. Vous "
"devriez peut-être faire directement un copier/coller depuis votre email de "
@@ -927,7 +1022,8 @@ msgstr "Étiquettes prédéfinies des pages"
#: IDF/Form/WikiConf.php:58
msgid ""
-"Each documentation page may have at most one label with each of these classes"
+"Each documentation page may have at most one label with each of these "
+"classes"
msgstr ""
"Chaque page ne peut avoir qu'une seule étiquette pour chacune de ces classes"
@@ -953,7 +1049,7 @@ msgstr ""
"\n"
"# Détails\n"
"\n"
-"Ajoutez votre contenu ici. Vous pouvez avoir :\n"
+"Ajoutez votre contenu ici. Vous pouvez avoir :\n"
"\n"
"* du texte en **gras** ou *italique* ;\n"
"* des titres, paragraphes ou listes ;\n"
@@ -971,7 +1067,8 @@ msgstr "Titre"
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, chiffres et le tiret (-)."
+"Le nom de la page ne doit contenir que des lettres, chiffres et le tiret "
+"(-)."
#: IDF/Form/WikiCreate.php:71 IDF/Form/WikiUpdate.php:61
msgid "This one line description is displayed in the list of pages."
@@ -1044,20 +1141,18 @@ 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"
+"
Optionally, use an equals-sign to document the meaning of each status value.
\n"
msgstr ""
"\n"
-"
Instructions :
\n"
+"
Instructions :
\n"
"
Liste un status par ligne dans l'ordre désiré d'affichage.
\n"
-"
Vous pouvez aussi utiliser le signe = pour documenter la signification de "
-"chaque valeur.
\n"
+"
Vous pouvez aussi utiliser le signe = pour documenter la signification de chaque valeur.
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"
+"
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"
-"
Notes :
\n"
-"
Le propriétaire d'un projet peut faire tous les changements sur un "
-"projet, cela inclut la suppression d'autres propriétaires. Soyez donc "
-"prudent quand vous ajoutez un propriétaire.
\n"
-"
Un membre du projet ne va pas avoir accès à l'onglet d'administration "
-"mais aura plus d'options dans l'utilisation du site.
\n"
+"
Notes :
\n"
+"
Le propriétaire d'un projet peut faire tous les changements sur un projet, cela inclut la suppression d'autres propriétaires. Soyez donc prudent quand vous ajoutez un propriétaire.
\n"
+"
Un membre du projet ne va pas avoir accès à l'onglet d'administration mais aura plus d'options dans l'utilisation du site.
\n"
#: IDF/gettexttemplates/idf/admin/source.html.php:3
-msgid "You can find here the current repository configuration of your project."
+msgid ""
+"You can find here the current repository configuration of your project."
msgstr "Vous pouvez trouver ici la configuration du dépôt du projet."
#: IDF/gettexttemplates/idf/admin/source.html.php:4
@@ -1108,8 +1196,7 @@ msgid ""
"request is sent after each repository commit. If this field is empty,\n"
"notifications are disabled.\n"
"\n"
-"
Only properly-escaped HTTP URLs are supported, for "
-"example:
\n"
+"
Only properly-escaped HTTP URLs are supported, for example:
\n"
"\n"
"
\n"
"
http://domain.com/commit
\n"
@@ -1128,13 +1215,11 @@ msgid ""
"post-commit URL http://mydomain.com/%p/%r would send a request to\n"
"http://mydomain.com/my-project/123."
msgstr ""
-"
Le paramètre d'URL de webhook spécifie une URL sur laquelle une requête "
-"HTTP POST \n"
+"
Le paramètre d'URL de webhook spécifie une URL sur laquelle une requête HTTP POST \n"
"est envoyée après chaque commit sur un des dépôt. Si ce champ est vide,\n"
"les notifications sont désactivées.
\n"
"\n"
-"
Seules des URLS HTTP proprement échappées sont "
-"acceptées, par exemple :
\n"
+"
Seules des URLS HTTP proprement échappées sont acceptées, par exemple :
\n"
"\n"
"
\n"
"
http://domaine.com/commit
\n"
@@ -1142,16 +1227,14 @@ msgstr ""
"
\n"
"\n"
"
De plusl'URL peut contenir la mention \"%\", qui\n"
-"sera remplacée avec des valeurs spécifiques du projet pour chaque commit:"
-"p>\n"
+"sera remplacée avec des valeurs spécifiques du projet pour chaque commit :
\n"
"\n"
"
\n"
"
%p - nom du projet
\n"
"
%r - numéro de révision
\n"
"
\n"
"\n"
-"
Par exemple, un commit de la révision 123 sur le projet 'mon-projet' "
-"avec\n"
+"
Par exemple, un commit de la révision 123 sur le projet 'mon-projet' avec\n"
"l'URL de post-commit http://domaine.com/%p/%r enverrait une requête à\n"
"http://domaine.com/mon-project/123.
"
@@ -1160,44 +1243,58 @@ msgid ""
"The form contains some errors. Please correct them to update the source "
"configuration."
msgstr ""
-"Le formulaire contient des erreurs. Merci de les corriger pour mettre à jour "
-"la configuration du dépôt."
+"Le formulaire contient des erreurs. Merci de les corriger pour mettre à jour"
+" la configuration du dépôt."
#: IDF/gettexttemplates/idf/admin/source.html.php:27
msgid "Repository type:"
-msgstr "Type de dépôt :"
+msgstr "Type de dépôt :"
#: IDF/gettexttemplates/idf/admin/source.html.php:28
msgid "Repository access:"
-msgstr "Accès au dépôt :"
+msgstr "Accès au dépôt :"
#: IDF/gettexttemplates/idf/admin/source.html.php:29
msgid "Repository size:"
-msgstr "Taille des dépôts :"
+msgstr "Taille des dépôts :"
#: IDF/gettexttemplates/idf/admin/source.html.php:30
msgid "Post-commit authentication key:"
-msgstr "Clef d'authentification post-commit : "
+msgstr "Clef d'authentification post-commit : "
#: 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"
+"
The description of the project can be improved using the Markdown syntax.
\n"
msgstr ""
"\n"
-"
Instructions :
\n"
-"
La description du projet peut être enrichie en utilisant la syntaxe Markdown.
\n"
+"
Instructions :
\n"
+"
La description du projet peut être enrichie en utilisant 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. Merci de les corriger pour mettre à jour "
-"le résumé."
+"Le formulaire contient des erreurs. Merci de 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.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:6
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+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 ""
@@ -1208,12 +1305,9 @@ msgid ""
"password or SSH key."
msgstr ""
"\n"
-"Seuls les administrateurs et membres du projet ont accès au code source. \n"
-"Si vous faites la restriction de l'accès au code, l'accès anonyme n'est "
-"pas \n"
-"activé et les utilisateurs doivent s'authentifier avec leur mot de passe ou "
-"clef SSH."
+"Seuls les administrateurs et membres du projet ont accès au code source. \n"
+"Si vous faites la restriction de l'accès au code, l'accès anonyme n'est pas \n"
+"activé et les utilisateurs doivent s'authentifier avec leur mot de passe ou clef SSH."
#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
msgid ""
@@ -1229,11 +1323,11 @@ 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."
+"commas (','). If you do not want to send emails for a given type of changes,"
+" simply leave the corresponding field empty."
msgstr ""
-"Les emails de notifications seront envoyés depuis l'adresse "
-"%%from_email%%. Si vous envoyez les emails à une liste de "
+"Les emails de notifications seront envoyés depuis l'adresse "
+"%%from_email%%. Si vous envoyez les emails à une liste de "
"diffusion, vous devez probablement valider cette adresse email. Plusieurs "
"adresses email doivent être séparées par des virgules (','). Si vous ne "
"voulez pas envoyer d'emails pour un type de changement, laissez vide le "
@@ -1244,14 +1338,14 @@ 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. 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."
+"rights for the different tabs but the \"Open to all\" and \"Signed in "
+"users\" will default to authorized users only."
msgstr ""
"Si vous marquez un projet comme privé, seuls les membres du projet et les "
"administrateurs, associés aux utilisateurs supplémentaires autorisés, "
"pourront accéder au projet. Vous pourrez toujours définir un niveau "
-"supplémentaire de droits d'accès aux onglets mais les options \"Ouvert à tous"
-"\" et \"Utilisateurs authentifiés\" correspondront aux utilisateurs "
+"supplémentaire de droits d'accès aux onglets mais les options \"Ouvert à "
+"tous\" et \"Utilisateurs authentifiés\" correspondront aux utilisateurs "
"supplémentaires."
#: IDF/gettexttemplates/idf/admin/tabs.html.php:11
@@ -1268,8 +1362,8 @@ msgid ""
"The form contains some errors. Please correct them to update the access "
"rights."
msgstr ""
-"Le formulaire contient des erreurs. Merci de les corriger pour mettre à jour "
-"les droits d'accès."
+"Le formulaire contient des erreurs. Merci de les corriger pour mettre à jour"
+" les droits d'accès."
#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
msgid "Access Rights"
@@ -1283,12 +1377,10 @@ msgstr "Emails de notification"
#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
msgid "Instructions:"
-msgstr "Instructions :"
+msgstr "Instructions :"
#: 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 "
@@ -1297,36 +1389,32 @@ msgstr ""
"Connectez-vous ou créez votre compte pour soumettre "
"des tickets ou ajouter des commentaires"
-#: 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/base-full.html.php:6
+#: IDF/gettexttemplates/idf/base.html.php:6
msgid "Project Home"
-msgstr "Page d'Accueil"
+msgstr "Page d'accueil"
-#: IDF/gettexttemplates/idf/base-full.html.php:10
-#: IDF/gettexttemplates/idf/base-full.html~.php:10
-#: IDF/gettexttemplates/idf/base.html.php:10
-#: IDF/gettexttemplates/idf/base.html~.php:10
+#: IDF/gettexttemplates/idf/base-full.html.php:12
+#: 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:214
+#: IDF/Views/Download.php:234
msgid "New Download"
msgstr "Nouveau téléchargement"
#: 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 "
+"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 ?"
+"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
@@ -1340,7 +1428,6 @@ 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.orig.php:7
#: IDF/gettexttemplates/idf/issues/view.html.php:7
#: IDF/gettexttemplates/idf/wiki/delete.html.php:7
#: IDF/gettexttemplates/idf/wiki/delete.html.php:8
@@ -1358,20 +1445,18 @@ msgstr "Supprimer le fichier"
#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:8
+#: 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.orig.php:25
-#: IDF/gettexttemplates/idf/issues/view.html.php:25
+#: 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/index.html~.php:7
#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
#: IDF/gettexttemplates/idf/review/create.html.php:12
-#: IDF/gettexttemplates/idf/review/view.html.php:43
+#: 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
@@ -1385,39 +1470,36 @@ msgid "Cancel"
msgstr "Annuler"
#: IDF/gettexttemplates/idf/downloads/delete.html.php:8
-#: IDF/gettexttemplates/idf/downloads/view.html.php:13
+#: IDF/gettexttemplates/idf/downloads/view.html.php:14
msgid "Uploaded:"
-msgstr "Mis en ligne :"
+msgstr "Mis en ligne :"
#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:14
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:27
-#: IDF/gettexttemplates/idf/issues/view.html.php:27
-#: IDF/gettexttemplates/idf/review/view.html.php:26
+#: 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/delete.html.php:12
#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:9
#: IDF/gettexttemplates/idf/wiki/view.html.php:15
msgid "Updated:"
-msgstr "Mis à jour :"
+msgstr "Mis à jour :"
#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
-#: IDF/gettexttemplates/idf/downloads/view.html.php:15
+#: IDF/gettexttemplates/idf/downloads/view.html.php:16
#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
-#: IDF/gettexttemplates/idf/index.html.php:13
+#: IDF/gettexttemplates/idf/index.html.php:15
msgid "Downloads:"
-msgstr "Téléchargements :"
+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/view.html.php:16
+#: IDF/gettexttemplates/idf/downloads/view.html.php:17
#: 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:10
#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:15
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:20
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:31
-#: IDF/gettexttemplates/idf/issues/view.html.php:20
-#: IDF/gettexttemplates/idf/issues/view.html.php:31
+#: IDF/gettexttemplates/idf/issues/view.html.php:21
+#: IDF/gettexttemplates/idf/issues/view.html.php:33
#: 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
@@ -1429,11 +1511,11 @@ msgstr "Téléchargements :"
#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
#: IDF/IssueComment.php:157 IDF/WikiRevision.php:175
msgid "Labels:"
-msgstr "Étiquettes :"
+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 :"
+msgstr "Un nouveau fichier est disponible en téléchargement :"
#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4
#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:5
@@ -1455,22 +1537,22 @@ msgstr "Bonjour,"
#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:5
#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:5
msgid "Project:"
-msgstr "Projet :"
+msgstr "Projet :"
#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6
msgid "Submitted by:"
-msgstr "Soumis par :"
+msgstr "Soumis par :"
#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
msgid "Download:"
-msgstr "Téléchargement :"
+msgstr "Téléchargement :"
#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
-#: IDF/gettexttemplates/idf/review/view.html.php:30
+#: IDF/gettexttemplates/idf/review/view.html.php:31
#: IDF/gettexttemplates/idf/user/public.html.php:4
msgid "Description:"
-msgstr "Description :"
+msgstr "Description :"
#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3
msgid "Details"
@@ -1483,7 +1565,7 @@ msgstr "Voir les fichiers obsolètes."
#: IDF/gettexttemplates/idf/downloads/index.html.php:5
msgid "Number of files:"
-msgstr "Nombre de fichiers :"
+msgstr "Nombre de fichiers :"
#: IDF/gettexttemplates/idf/downloads/submit.html.php:3
msgid ""
@@ -1492,8 +1574,8 @@ msgid ""
"name."
msgstr ""
"Chaque fichier doit avoir un nom différent et ce nom ne peut pas être "
-"changé. Faites attention de bien mettre le numéro de révision dans le nom du "
-"fichier."
+"changé. Faites attention de bien mettre le numéro de révision dans le nom du"
+" fichier."
#: IDF/gettexttemplates/idf/downloads/submit.html.php:6
#, php-format
@@ -1525,36 +1607,40 @@ 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, "
+"Attention ! Ce fichier est marqué comme obsolète, "
"téléchargez ce fichier uniquement si vous avez 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 "Changements"
-#: IDF/gettexttemplates/idf/downloads/view.html.php:6
+#: 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. Merci de les corriger pour mettre en "
"ligne le fichier."
-#: IDF/gettexttemplates/idf/downloads/view.html.php:7
+#: IDF/gettexttemplates/idf/downloads/view.html.php:8
msgid "Update File"
msgstr "Mettre à jour le fichier"
-#: IDF/gettexttemplates/idf/downloads/view.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:11
+#: 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:10
+#: IDF/gettexttemplates/idf/downloads/view.html.php:11
#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:18
#: IDF/gettexttemplates/idf/wiki/update.html.php:9
#: IDF/gettexttemplates/idf/wiki/view.html.php:12
msgid "Trash"
msgstr "Poubelle"
-#: IDF/gettexttemplates/idf/downloads/view.html.php:12
+#: IDF/gettexttemplates/idf/downloads/view.html.php:13
msgid "Delete this file"
msgstr "Supprimer ce fichier"
@@ -1566,7 +1652,6 @@ msgstr "Nous sommes là, juste pour vous aider."
#: IDF/gettexttemplates/idf/faq-api.html.php:4
#: IDF/gettexttemplates/idf/faq.html.php:35
#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
-#: IDF/gettexttemplates/idf/gadmin/base.html~.php:3
#: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57
#: IDF/Views.php:47
msgid "Projects"
@@ -1576,27 +1661,27 @@ msgstr "Projets"
msgid ""
"
This is simple:
\n"
"\n"
-"
Write in the comments \"This is a duplicate of issue 123\", change 123 "
-"with the corresponding issue number.
\n"
+"
Write in the comments \"This is a duplicate of issue 123\", change 123 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"
+"
C'est simple :
\n"
"\n"
-"
Écrivez dans le commentaire \"Ceci est un doublon du ticket 123\", avec "
-"123 le numéro correspondant au ticket en question.
\n"
+"
Écrivez dans le commentaire \"Ceci est un doublon du ticket 123\", avec 123 le numéro correspondant au ticket en question.
\n"
"
Changez le statut du ticket vers Duplicate.
\n"
"
Soumettez les changements.
\n"
""
#: IDF/gettexttemplates/idf/faq.html.php:9
msgid ""
-"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+"You need to create an account on Gravatar, this takes about 5 minutes "
+"and is free."
msgstr ""
-"Vous devez créer un compte sur Gravatar"
-"a>, cela prend environ 5 minutes et c'est gratuit."
+"Vous devez créer un compte sur Gravatar, cela prend environ 5 minutes "
+"et c'est gratuit."
#: IDF/gettexttemplates/idf/faq.html.php:10
msgid ""
@@ -1605,9 +1690,9 @@ msgid ""
"desktop program to submit new tickets easily."
msgstr ""
"L'API (Interface de Programmation de l'Application) est utilisée pour "
-"communiquer avec InDefero depuis d'autres programmes. Par exemple, cela peut "
-"être utilisé pour créer une application \"desktop\" permettant de soumettre "
-"facilement de nouveaux tickets."
+"communiquer avec InDefero depuis d'autres programmes. Par exemple, cela peut"
+" être utilisé pour créer une application \"desktop\" permettant de soumettre"
+" facilement de nouveaux tickets."
#: IDF/gettexttemplates/idf/faq.html.php:11
#, php-format
@@ -1636,67 +1721,66 @@ msgstr "Qu'est-ce que l'API et comment l'utiliser ?"
#: IDF/gettexttemplates/idf/faq.html.php:17
msgid "Shift+h: This help page."
-msgstr "Shift+h : Cette page d'aide."
+msgstr "Shift+h : Cette page d'aide."
#: IDF/gettexttemplates/idf/faq.html.php:18
msgid "If you are in a project, you have the following shortcuts:"
-msgstr "Si vous êtes dans un projet, vous disposez des raccourcis suivants :"
+msgstr ""
+"Si vous êtes dans un projet, vous disposez des raccourcis suivants :"
#: IDF/gettexttemplates/idf/faq.html.php:19
msgid "Shift+u: Project updates."
-msgstr "Shift+u : Mises à jour du projet."
+msgstr "Shift+u : Mises à jour du projet."
#: IDF/gettexttemplates/idf/faq.html.php:20
msgid "Shift+d: Downloads."
-msgstr "Shift+d : Téléchargements."
+msgstr "Shift+d : Téléchargements."
#: IDF/gettexttemplates/idf/faq.html.php:21
msgid "Shift+o: Documentation."
-msgstr "Shift+o: Documentation."
+msgstr "Shift+o : Documentation."
#: IDF/gettexttemplates/idf/faq.html.php:22
msgid "Shift+a: Create a new issue."
-msgstr "Shift+a : Créer un nouveau ticket."
+msgstr "Shift+a : Créer un nouveau ticket."
#: IDF/gettexttemplates/idf/faq.html.php:23
msgid "Shift+i: List of open issues."
-msgstr "Shift+i : Liste des tickets ouverts."
+msgstr "Shift+i : Liste des tickets ouverts."
#: IDF/gettexttemplates/idf/faq.html.php:24
msgid "Shift+m: The issues you submitted."
-msgstr "Shift+m : Les tickets que vous avez soumis."
+msgstr "Shift+m : Les tickets que vous avez soumis."
#: IDF/gettexttemplates/idf/faq.html.php:25
msgid "Shift+w: The issues assigned to you."
-msgstr "Shift+w : Les tickets qui vous sont assignés."
+msgstr "Shift+w : Les tickets qui vous sont assignés."
#: IDF/gettexttemplates/idf/faq.html.php:26
msgid "Shift+s: Source."
-msgstr "Shift+s : Source."
+msgstr "Shift+s : Source."
#: IDF/gettexttemplates/idf/faq.html.php:27
msgid "You also have the standard access keys:"
-msgstr "Vous avez aussi les touches d'accès standard :"
+msgstr "Vous avez aussi les touches d'accès standard :"
#: IDF/gettexttemplates/idf/faq.html.php:28
msgid "Alt+1: Home."
-msgstr "Alt+1 : Accueil."
+msgstr "Alt+1 : Accueil."
#: IDF/gettexttemplates/idf/faq.html.php:29
msgid "Alt+2: Skip the menus."
-msgstr "Alt+2 : Allez au contenu."
+msgstr "Alt+2 : Allez au contenu."
#: IDF/gettexttemplates/idf/faq.html.php:30
msgid "Alt+4: Search (when available)."
-msgstr "Alt+4 : Chercher (si disponible)."
+msgstr "Alt+4 : Chercher (si disponible)."
#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
-#: IDF/gettexttemplates/idf/gadmin/base.html~.php:4
msgid "People"
msgstr "Utilisateurs"
#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
-#: IDF/gettexttemplates/idf/gadmin/base.html~.php:5
msgid "Usher"
msgstr "Usher"
@@ -1707,7 +1791,6 @@ msgstr "Vous avez ici accès à l'administration de la forge."
#: IDF/gettexttemplates/idf/gadmin/home.html.php:4
#: IDF/gettexttemplates/idf/project/home.html.php:3
#: IDF/gettexttemplates/idf/project/timeline.html.php:4
-#: IDF/gettexttemplates/idf/project/timeline.html~.php:4
msgid "Welcome"
msgstr "Bienvenue"
@@ -1736,8 +1819,8 @@ msgstr ""
#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
msgid ""
-"Once you have defined the repository type, you cannot change it"
-"strong>."
+"Once you have defined the repository type, you cannot change "
+"it."
msgstr ""
"Une fois que vous avez défini le type de dépôt, vous ne pouvez pas "
"le changer."
@@ -1745,14 +1828,11 @@ 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"
+"
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"
-"
Spécifiez chaque personne par son identifiant. Chaque personne doit avoir "
-"préalablement créé son compte.
Séparez les identifiants par des "
-"virgules ou des sauts de ligne.
\n"
+"
Spécifiez chaque personne par son identifiant. Chaque personne doit avoir préalablement créé son compte.
Séparez les identifiants par des virgules ou des sauts de ligne.
\n"
#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14
msgid ""
@@ -1773,7 +1853,7 @@ msgid ""
"Confirmation code to confirm the deletion of the project: \n"
"%%code%%."
msgstr ""
-"Code de confirmation pour supprimer ce projet :\n"
+"Code de confirmation pour supprimer ce projet :\n"
"%%code%%."
#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:5
@@ -1784,9 +1864,7 @@ msgid ""
"project will be deleted.\n"
msgstr ""
"\n"
-"Attention ! Supprimer un projet est une opération rapide "
-"qui a pour conséquence la suppression de toutes les données "
-"relatives au projet.\n"
+"Attention ! Supprimer un projet est une opération rapide qui a pour conséquence la suppression de toutes les données relatives au projet.\n"
#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10
msgid ""
@@ -1812,7 +1890,7 @@ msgid "Code reviews"
msgstr "Revues de code"
#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16
-#: IDF/Views/Project.php:73
+#: IDF/Views/Project.php:93
msgid "Commits"
msgstr "Commits"
@@ -1838,28 +1916,28 @@ msgstr "Statistiques de l'utilisation"
#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:4
msgid "Repositories:"
-msgstr "Dépôts :"
+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:16
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17
msgid "Attachments:"
-msgstr "Pièces jointes :"
+msgstr "Pièces jointes :"
#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7
msgid "Database:"
-msgstr "Base de données :"
+msgstr "Base de données :"
#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:8
msgid "Total Forge:"
-msgstr "Total forge:"
+msgstr "Total 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. Merci de les corriger pour mettre à jour "
-"le projet."
+"Le formulaire contient des erreurs. Merci de 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."
@@ -1928,7 +2006,7 @@ msgstr ""
"\n"
"Veuillez trouver ici les informations pour vous connecter :\n"
"\n"
-" Addresse : %%url%%\n"
+" Adresse : %%url%%\n"
" Identifiant : %%user.login%%\n"
" Mot de passe : %%password%%\n"
"\n"
@@ -1946,7 +2024,7 @@ msgstr "
Vous avez ici une vue d'ensemble des utilisateurs de la forge.
"
#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
msgid "Number of users:"
-msgstr "Nombre d'utilisateurs :"
+msgstr "Nombre d'utilisateurs :"
#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:3
msgid ""
@@ -1969,15 +2047,15 @@ msgstr ""
#: 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. Merci de les corriger pour mettre à jour "
-"l'utilisateur."
+"Le formulaire contient des erreurs. Merci de 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 :"
+msgstr "Identifiant :"
#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11
#: IDF/gettexttemplates/idf/user/myaccount.html.php:5
@@ -2005,9 +2083,13 @@ msgstr "adresse"
msgid "port"
msgstr "port"
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:5
+msgid "No connections found."
+msgstr "Pas de connexions trouvé."
+
#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3
msgid "current server status:"
-msgstr "statut serveur actuel : "
+msgstr "statut serveur actuel : "
#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:4
msgid "startup"
@@ -2019,14 +2101,14 @@ msgstr "éteint"
#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:6
msgid "reload server configuration:"
-msgstr "recharger la configuration du serveur:"
+msgstr "recharger la configuration du serveur :"
#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:7
msgid "reload"
msgstr "rechargé"
#: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
msgid "Status explanation"
msgstr "Explication du statut"
@@ -2064,46 +2146,50 @@ msgid "action"
msgstr "action"
#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+msgid "No monotone servers configured."
+msgstr "Pas de serveurs monotones configurés."
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
msgid "stop"
msgstr "arrêt"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
msgid "start"
msgstr "démarre"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
msgid "kill"
msgstr "tuer"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
msgid "active connections"
msgstr "connexions actives"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
msgid "remote server without open connections"
msgstr "serveur distant sans connexion actives"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
msgid "server with n open connections"
msgstr "serveur avec n connexions ouvertes"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
msgid "local server running, without open connections"
msgstr "serveur local en service, sans connexions actives"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
msgid "local server not running, waiting for connections"
msgstr "serveur local arrêté, en attente de connexions"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
+#: 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:16
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
msgid "local server not running, not accepting connections"
msgstr "serveur local arrêté, n'acceptant aucune connexion"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:18
msgid "usher is shut down, not running and not accepting connections"
msgstr "usher est éteint, arrêté et n'accepte aucune connexion"
@@ -2116,33 +2202,33 @@ msgstr "Flux personnel de %%user%% pour ce projet."
msgid "No projects managed with InDefero were found."
msgstr "Aucun projet supervisé avec InDefero n'a été trouvé."
-#: IDF/gettexttemplates/idf/index.html.php:7
+#: IDF/gettexttemplates/idf/index.html.php:9
msgid "Forge statistics"
msgstr "Statistiques de la forge"
-#: IDF/gettexttemplates/idf/index.html.php:8
-msgid "Projects:"
-msgstr "Projets :"
-
-#: IDF/gettexttemplates/idf/index.html.php:9
-msgid "Members:"
-msgstr "Membres :"
-
#: IDF/gettexttemplates/idf/index.html.php:10
-msgid "Issues:"
-msgstr "Ticket :"
+msgid "Projects:"
+msgstr "Projets :"
#: IDF/gettexttemplates/idf/index.html.php:11
-msgid "Commits:"
-msgstr "Commits :"
+msgid "Members:"
+msgstr "Membres :"
#: IDF/gettexttemplates/idf/index.html.php:12
-msgid "Documentations:"
-msgstr "Documentation :"
+msgid "Issues:"
+msgstr "Ticket :"
+
+#: IDF/gettexttemplates/idf/index.html.php:13
+msgid "Commits:"
+msgstr "Commits :"
#: IDF/gettexttemplates/idf/index.html.php:14
+msgid "Documentations:"
+msgstr "Documentation :"
+
+#: IDF/gettexttemplates/idf/index.html.php:16
msgid "Code reviews:"
-msgstr "Revues de code :"
+msgstr "Revues de code :"
#: IDF/gettexttemplates/idf/issues/attachment.html.php:3
#, php-format
@@ -2150,49 +2236,38 @@ 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:34
-#: IDF/gettexttemplates/idf/source/commit.html.php:22
-#: IDF/gettexttemplates/idf/source/commit.html~.php:22
+#: IDF/gettexttemplates/idf/review/view.html.php:35
+#: IDF/gettexttemplates/idf/source/commit.html.php:23
#: 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:6
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
+#: 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:7
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:9
+#: IDF/gettexttemplates/idf/source/mtn/file.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
msgid "Download this file"
msgstr "Télécharger ce fichier"
#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:26
-#: IDF/gettexttemplates/idf/issues/view.html.php:26
-#: IDF/gettexttemplates/idf/review/view.html.php:25
+#: IDF/gettexttemplates/idf/issues/view.html.php:28
+#: IDF/gettexttemplates/idf/review/view.html.php:26
#: IDF/gettexttemplates/idf/wiki/delete.html.php:11
#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:8
#: IDF/gettexttemplates/idf/wiki/view.html.php:14
msgid "Created:"
-msgstr "Créé :"
-
-#: IDF/gettexttemplates/idf/issues/base.html.php:3
-msgid "Open Issues"
-msgstr "Tickets ouverts"
+msgstr "Créé :"
#: IDF/gettexttemplates/idf/issues/base.html.php:4
-#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
-#: IDF/gettexttemplates/idf/issues/index.html.php:5
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:5
-#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
-#: IDF/gettexttemplates/idf/issues/search.html.php:3
-msgid "New Issue"
-msgstr "Nouveau ticket"
+msgid "All Issues"
+msgstr "Toutes les tickets"
#: IDF/gettexttemplates/idf/issues/base.html.php:5
msgid "My Issues"
@@ -2203,11 +2278,20 @@ 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:6
msgid "Search"
msgstr "Chercher"
-#: IDF/gettexttemplates/idf/issues/base.html.php:8
+#: IDF/gettexttemplates/idf/issues/base.html.php:9
msgid "Back to the issue"
msgstr "Retour au ticket"
@@ -2215,57 +2299,48 @@ msgstr "Retour au ticket"
#, php-format
msgid ""
"
"
#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3
msgid ""
"A new issue has been created and assigned\n"
"to you:"
-msgstr "Un nouveau ticket a été créé et vous a été attribué :"
+msgstr "Un nouveau ticket a été créé et vous a été attribué :"
#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:8
#: 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 :"
+msgstr "Rapporté par :"
#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17
+#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:18
msgid "Issue:"
-msgstr "Ticket :"
+msgstr "Ticket :"
#: 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 :"
+msgstr "Le ticket suivant a été mis à jour :"
#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4
#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4
@@ -2374,79 +2444,109 @@ msgstr "Par %%who%%, %%c.creation_dtime%%"
#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8
#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12
msgid "URL:"
-msgstr "URL :"
+msgstr "URL :"
#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11
msgid "Comments (last first):"
-msgstr "Commentaires (le dernier en premier) :"
+msgstr "Commentaires (le dernier en premier) :"
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3
+#: IDF/gettexttemplates/idf/issues/search.html.php:3
#, php-format
msgid ""
-"See the %%nb_submit_closed%% closed."
+"\n"
+"
"
+
+#: 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 ticket est vide. Vous pouvez créer votre premier "
+"ticket ici ."
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr "Non résolues: Par %%key%%"
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+msgid "Status Summary"
+msgstr "Résumé par status"
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+msgid "Unresolved: By Assignee"
+msgstr "Non résolues: Par assignation"
+
+#: 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/my-issues.html.php:4
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:4
#, php-format
-msgid ""
-"See the %%nb_owner_closed%% closed."
+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."
+msgstr[1] "Voir les %%nb_owner_closed%% fermés."
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:6
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:6
#: IDF/gettexttemplates/idf/user/dashboard.html.php:7
msgid "Submitted issues:"
-msgstr "Tickets soumis :"
+msgstr "Tickets soumis :"
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:7
#: IDF/gettexttemplates/idf/user/dashboard.html.php:6
msgid "Working issues:"
-msgstr "Tickets en cours:"
+msgstr "Tickets en cours "
-#: IDF/gettexttemplates/idf/issues/search.html.php:4
-msgid "Found issues:"
-msgstr "Tickets trouvés:"
-
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:3
#: 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.orig.php:4
#: 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%%"
+"Commentaire %%i%% par %%submitter%%, "
+"%%c.creation_dtime%%"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:5
#: 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.orig.php:6
#: 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 de commentaires que si vous "
-"pensez que ce ticket est toujours valide et qu'un travail supplémentaire est "
-"nécessaire pour corriger le problème."
+"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.orig.php:8
#: IDF/gettexttemplates/idf/issues/view.html.php:8
#, php-format
msgid "%%interested%% person"
@@ -2454,79 +2554,66 @@ msgid_plural "%%interested%% persons"
msgstr[0] "%%interested%% personne"
msgstr[1] "%%interested%% personnes"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:9
#: IDF/gettexttemplates/idf/issues/view.html.php:9
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:3
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:7
+#, 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.orig.php:10
-#: IDF/gettexttemplates/idf/issues/view.html.php:10
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:4
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:8
+#: 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.orig.php:11
-#: IDF/gettexttemplates/idf/issues/view.html.php:11
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:5
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:9
+#: IDF/gettexttemplates/idf/issues/view.html.php:12
msgid "Click here to view the previous closed issue"
msgstr "Cliquez ici pour voir le précédent ticket fermé"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:12
-#: IDF/gettexttemplates/idf/issues/view.html.php:12
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:6
-#: IDF/gettexttemplates/idf/issues/view.html.rej.php:10
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
msgid "Click here to view the previous open issue"
msgstr "Cliquez ici pour voir le précédent ticket ouvert"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:13
-#: IDF/gettexttemplates/idf/issues/view.html.php:13
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
msgid "Click here to view the next closed issue"
msgstr "Cliquez ici pour voir le prochain ticket fermé"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:14
-#: IDF/gettexttemplates/idf/issues/view.html.php:14
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
msgid "Click here to view the next open issue"
msgstr "Cliquez ici pour voir le ticket suivant ouvert"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:15
-#: IDF/gettexttemplates/idf/issues/view.html.php:15
+#: IDF/gettexttemplates/idf/issues/view.html.php:16
msgid "download"
msgstr "télécharger"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:16
-#: IDF/gettexttemplates/idf/issues/view.html.php:16
+#: IDF/gettexttemplates/idf/issues/view.html.php:17
msgid "view"
msgstr "vue"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:21
-#: IDF/gettexttemplates/idf/issues/view.html.php:21
-msgid "The form contains some errors. Please correct them to change the issue."
-msgstr ""
-"Le formulaire contient des erreurs. Merci de les corriger pour mettre à jour "
-"ce ticket."
-
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:23
#: 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. Merci de les corriger pour mettre à jour"
+" ce ticket."
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:25
msgid "Submit Changes"
msgstr "Soumettre les changements"
-#: IDF/gettexttemplates/idf/issues/view.html.orig.php:30
-#: IDF/gettexttemplates/idf/issues/view.html.php:30
+#: IDF/gettexttemplates/idf/issues/view.html.php:32
msgid "Followed by:"
-msgstr "Suivi par :"
+msgstr "Suivi par :"
#: IDF/gettexttemplates/idf/login_form.html.php:3
#, php-format
msgid ""
-"If you don't have an account yet, you can create one here."
+"If you don't have an account yet, you can create one here."
msgstr ""
-"Si vous n'avez pas encore de compte, vous pouvez en créer un içi."
+"Si vous n'avez pas encore de compte, vous pouvez en créer un ici."
#: IDF/gettexttemplates/idf/login_form.html.php:4
msgid "What is your account information?"
@@ -2546,7 +2633,7 @@ msgstr "Vous identifier"
#: IDF/gettexttemplates/idf/login_form.html.php:8
msgid "I lost my password!"
-msgstr "J'ai perdu mon mot de passe !"
+msgstr "J'ai perdu mon mot de passe !"
#: IDF/gettexttemplates/idf/login_form.html.php:9
msgid "Welcome."
@@ -2558,10 +2645,8 @@ 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%%."
+msgid "Welcome, %%user%%."
+msgstr "Bienvenue, %%user%%."
#: IDF/gettexttemplates/idf/main-menu.html.php:4
msgid "Sign Out"
@@ -2571,25 +2656,24 @@ msgstr "Se déconnecter"
msgid "Sign in or create your account"
msgstr "Identifiez-vous ou créez votre compte"
-#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42
+#: IDF/gettexttemplates/idf/main-menu.html.php:9 IDF/Views/Admin.php:42
msgid "Forge Management"
msgstr "Administration de la forge"
-#: IDF/gettexttemplates/idf/main-menu.html.php:9
+#: IDF/gettexttemplates/idf/main-menu.html.php:10
msgid "Help and accessibility features"
msgstr "Aide et accessibilité"
-#: IDF/gettexttemplates/idf/main-menu.html.php:10
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
#: 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:14
-#: IDF/gettexttemplates/idf/source/svn/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:4
#: IDF/gettexttemplates/idf/project/timeline.html.php:5
-#: IDF/gettexttemplates/idf/project/timeline.html~.php:5
msgid "Latest Updates"
msgstr "Dernières mises à jour"
@@ -2619,20 +2703,30 @@ msgid "Happy Crew"
msgstr "Équipe sympa"
#: IDF/gettexttemplates/idf/project/timeline.html.php:3
-#: 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:72
+#: IDF/Views/Project.php:90
msgid "All Updates"
msgstr "Mises à jour"
#: IDF/gettexttemplates/idf/project/timeline.html.php:7
-#: IDF/gettexttemplates/idf/project/timeline.html~.php:6
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/register/confirmation-email.txt.php:3
#, php-format
msgid ""
@@ -2697,7 +2791,7 @@ 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 :"
+msgstr "Email :"
#: IDF/gettexttemplates/idf/register/confirmation.html.php:6
msgid "Enable Your Account"
@@ -2706,14 +2800,13 @@ 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."
+"This is the last step, but just be sure to have the cookies "
+"enabled to log in afterwards."
msgstr ""
"C'est la dernière étape, mais assurez-vous que les cookies soient "
"activés dans votre navigateur pour vous connecter par la suite."
#: IDF/gettexttemplates/idf/register/index.html.php:3
-#: IDF/gettexttemplates/idf/register/index.html~.php:3
msgid ""
"Read the terms and conditions "
"– basically \"Please be nice, we respect you\"."
@@ -2729,37 +2822,33 @@ msgid ""
"login name and password."
msgstr ""
"Si vous avez perdu votre mot de passe, il n'est pas nécessaire de créer un "
-"nouveau compte. Cette page vous permet de retrouver "
+"nouveau compte. Cette page vous permet de retrouver "
"vos identifiants."
#: IDF/gettexttemplates/idf/register/index.html.php:5
-#: IDF/gettexttemplates/idf/register/index.html~.php:4
#, 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!"
+"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 !"
+"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
-#: IDF/gettexttemplates/idf/register/index.html~.php:5
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/gettexttemplates/idf/register/index.html~.php:6 IDF/Views.php:90
+#: IDF/gettexttemplates/idf/register/index.html.php:7 IDF/Views.php:90
msgid "Create Your Account"
msgstr "Créez votre compte"
#: IDF/gettexttemplates/idf/register/index.html.php:9
-#: IDF/gettexttemplates/idf/register/index.html~.php:8
msgid ""
"Be sure to provide a valid email address, as we are sending a validation "
"link by email."
@@ -2768,7 +2857,6 @@ msgstr ""
"enverrons un email de confirmation."
#: IDF/gettexttemplates/idf/register/index.html.php:10
-#: IDF/gettexttemplates/idf/register/index.html~.php:9
msgid "Did you know?"
msgstr "Le saviez-vous ?"
@@ -2788,8 +2876,8 @@ msgid ""
"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 clef de "
+"Utilisez votre logiciel de messagerie pour lire votre email de confirmation."
+" Vous pouvez cliquer sur le lien fourni ou copier/coller la clef de "
"confirmation dans le formulaire et le soumettre."
#: IDF/gettexttemplates/idf/register/inputkey.html.php:8
@@ -2815,51 +2903,46 @@ msgstr "Nouvelle revue de code"
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"
+"
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 ""
-"<p>Pour démarrer une revue de code vous devez fournir :</p>\n"
-"<ul>\n"
-"<li>La révision ou le commit de référence qui a servi de base à votre "
-"travail.</li>\n"
-"<li>Un patch qui décrit les changements par rapport à la référence."
-"</li>\n"
-"<li><strong>Vérifiez votre patch pour ne fournir aucun mot de "
-"passe ou information confidentielle !</strong></li>\n"
-"</ul>"
+"
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 qui décrit les changements 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."
+"The form contains some errors. Please correct them to submit the code "
+"review."
msgstr ""
"Le formulaire contient des erreurs. Merci de les corriger pour soumettre "
"votre 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."
+"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 de code suivante a été créée :"
+msgstr "La revue de code 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 de code :"
+msgstr "Revue de code :"
#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3
msgid "The following review has been updated:"
-msgstr "La revue de code suivante a été mise à jour :"
+msgstr "La revue de code suivante a été mise à jour :"
#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5
#, php-format
@@ -2867,34 +2950,18 @@ msgid ""
"By %%who%%, %%c.creation_dtime%%, on file:\n"
"%%c.cfile%%\n"
msgstr ""
-"Par %%who%%, %%c.creation_dtime%%, à propos du fichier :\n"
+"Par %%who%%, %%c.creation_dtime%%, à propos 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 dernier en premier) :"
+msgstr "Commentaires généraux (le dernier en premier) :"
#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15
msgid "Detailed file comments (last first):"
-msgstr "Commentaires des fichiers (le dernier en premier) :"
+msgstr "Commentaires des fichiers (le dernier en premier) :"
#: IDF/gettexttemplates/idf/review/view.html.php:3
-#: 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:4
-#, php-format
-msgid "%%nc%% comment"
-msgid_plural "%%nc%% comments"
-msgstr[0] "%%nc%% commentaire"
-msgstr[1] "%%nc%% commentaires"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:5
msgid ""
"Code review is a process in which\n"
"after or before changes are commited into the code repository,\n"
@@ -2912,7 +2979,7 @@ msgstr ""
"et essayer de garder un bon équilibre entre sérieux et humour dans vos "
"remarques.\n"
-#: IDF/gettexttemplates/idf/review/view.html.php:13
+#: IDF/gettexttemplates/idf/review/view.html.php:11
msgid ""
"\n"
"Proposing code for review is intimidating, you know\n"
@@ -2922,26 +2989,38 @@ msgid ""
"to propose more contributions.\n"
msgstr ""
"\n"
-"Proposer des changements pour revue est intimidant, vous "
-"savez que vous allez recevoirdes critiques. Comme participant à la revue, "
-"gardez une bonne ambiance et aidez le contributeur à "
-"apprendre la structure de votre code et vos exigences de qualité. "
-"Donnez-lui envie de proposer de nouvelles contributions.\n"
+"Proposer des changements pour revue est intimidant, vous savez que vous allez recevoir des critiques. Comme participant à la revue, gardez une bonne ambiance et aidez le contributeur à apprendre la structure de votre code et vos exigences de qualité. 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
+#, 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%%"
+"Comment %%i%% by %%who%%,"
+" %%c.creation_dtime%%"
msgstr ""
-"Commentaire %%i%% par %%who"
-"%%, %%c.creation_dtime%%"
+"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 changements proposés au fichier %%file%%:"
+"Vos commentaires sur les changements proposés au fichier "
+"%%file%% :"
#: IDF/gettexttemplates/idf/review/view.html.php:23
#, php-format
@@ -2955,60 +3034,48 @@ msgstr ""
"Le formulaire contient des erreurs. Merci de les corriger pour soumettre "
"votre revue de code."
-#: IDF/gettexttemplates/idf/review/view.html.php:27
-#: 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:28
-#: 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:29
-#: 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:31
-msgid "Reviewers:"
-msgstr "Participants :"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:32
-msgid "No reviewers at the moment."
-msgstr "Aucun participant à la revue pour le moment."
-
-#: IDF/gettexttemplates/idf/review/view.html.php:33
-msgid "Files:"
-msgstr "Fichiers :"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:35
-#: IDF/gettexttemplates/idf/source/commit.html.php:23
-#: 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:36
+#: 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
+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
+msgid "Commit:"
+msgstr "Commit :"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:30
+#: 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
+msgid "Download the corresponding diff file"
+msgstr "Télécharger le fichier diff correspondant"
+
#: IDF/gettexttemplates/idf/review/view.html.php:37
-msgid "Old"
-msgstr "Vieux"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:38
-msgid "New"
-msgstr "Nouveau"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:39
msgid "General Comments"
msgstr "Commentaires généraux"
-#: IDF/gettexttemplates/idf/review/view.html.php:42
+#: IDF/gettexttemplates/idf/review/view.html.php:40
msgid "Submit Code Review"
msgstr "Soumettre la revue de code"
@@ -3027,27 +3094,26 @@ 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:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
-#: IDF/Views/Project.php:163
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8
+#: IDF/Views/Project.php:188
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:8
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9
+#: 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 : "
+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"
@@ -3057,93 +3123,83 @@ msgstr "par"
#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:3
msgid "A new commit has been created:"
-msgstr "Une nouvelle révision du code a été créée :"
+msgstr "Une nouvelle révision du code 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 :"
+msgstr "Créé par :"
#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8
msgid "Created at:"
-msgstr "Créé le :"
+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 :"
+msgstr "Contenu :"
#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10
msgid "Commit details:"
-msgstr "Détails de la révision :"
+msgstr "Détails de la révision :"
#: IDF/gettexttemplates/idf/source/commit.html.php:4
-#: IDF/gettexttemplates/idf/source/commit.html~.php:4
msgid "Date:"
-msgstr "Date :"
+msgstr "Date :"
#: IDF/gettexttemplates/idf/source/commit.html.php:6
-#: IDF/gettexttemplates/idf/source/commit.html~.php:6
msgid "Branch:"
-msgstr "Branche :"
+msgstr "Branche :"
#: IDF/gettexttemplates/idf/source/commit.html.php:9
-#: IDF/gettexttemplates/idf/source/commit.html~.php:9
msgid "Parents:"
-msgstr "Parents :"
+msgstr "Parents :"
#: IDF/gettexttemplates/idf/source/commit.html.php:11
-#: IDF/gettexttemplates/idf/source/commit.html~.php:11
msgid "Message:"
-msgstr "Message :"
+msgstr "Message :"
#: IDF/gettexttemplates/idf/source/commit.html.php:12
-#: IDF/gettexttemplates/idf/source/commit.html~.php:12
#: IDF/gettexttemplates/idf/wiki/feedfragment.xml.php:3
#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:10
msgid "Changes:"
-msgstr "Changements :"
+msgstr "Changements :"
#: 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:17
-#: IDF/gettexttemplates/idf/source/commit.html~.php:14
-#: IDF/gettexttemplates/idf/source/commit.html~.php:17
+#: IDF/gettexttemplates/idf/source/commit.html.php:18
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
-#: IDF/gettexttemplates/idf/source/commit.html~.php:16
+msgid "copied"
+msgstr "copiés"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:17
msgid "added"
msgstr "ajouté"
-#: IDF/gettexttemplates/idf/source/commit.html.php:18
-#: IDF/gettexttemplates/idf/source/commit.html~.php:18
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
msgid "modified"
msgstr "modifié"
-#: IDF/gettexttemplates/idf/source/commit.html.php:19
-#: IDF/gettexttemplates/idf/source/commit.html~.php:19
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
msgid "properies changed"
msgstr "propriétés changées"
-#: IDF/gettexttemplates/idf/source/commit.html.php:20
-#: IDF/gettexttemplates/idf/source/commit.html~.php:20
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
msgid "removed"
msgstr "supprimé"
-#: IDF/gettexttemplates/idf/source/commit.html.php:21
-#: IDF/gettexttemplates/idf/source/commit.html~.php:21
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
msgid "File differences"
msgstr "Différences entre fichiers"
@@ -3154,7 +3210,7 @@ msgid ""
"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 : "
+"associé à différentes révisions valides - Choisissez en une : "
#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:5
msgid "Title"
@@ -3179,7 +3235,7 @@ 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%%"
+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
@@ -3209,10 +3265,10 @@ msgstr "filtrer par tag"
#: 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: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
+#: 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 "
@@ -3225,10 +3281,10 @@ msgstr ""
#: 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: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
+#: 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%%"
@@ -3237,10 +3293,10 @@ msgstr "Par %%cobject.author%%, %%cobject.title%%"
#: 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: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
+#: 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"
@@ -3251,29 +3307,27 @@ msgid ""
"the git software to manage the source\n"
"code."
msgstr ""
-"L'équipe de développement du projet %%project%% utilise Git "
-"pour gérer le code source."
+"L'équipe de développement du projet %%project%% 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."
+"more about SSH "
+"key authentication."
msgstr ""
-"Vous devez probablement fournir <a href=\"%%url%%\">votre clef SSH</"
-"a>. La synchronisation de votre clef SSH peut prendre quelques minutes. "
-"Vous pouvez en apprendre plus sur l'authentification <a href=\"http://www."
-"google.fr/search?\"\n"
-"\"q=authentification+clef+ssh+publique\">avec une clef SSH publique</"
-"a>."
+"Vous devez probablement fournir votre clef SSH. La synchronisation de votre clef SSH peut prendre quelques minutes. Vous pouvez en apprendre plus sur l'authentification avec une clef 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 faire le premier commit dans le dépôt, effectuez les étapes suivantes :"
+"Pour faire le premier commit dans le dépôt, effectuez les étapes "
+"suivantes :"
#: IDF/gettexttemplates/idf/source/git/help.html.php:8
#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7
@@ -3298,28 +3352,28 @@ msgstr "Première révision"
#: 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:9
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
-#: IDF/Views/Download.php:66 IDF/Views/Download.php:294
+#: 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:314
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:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12
msgid ":"
-msgstr " :"
+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: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:13
+#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14
msgid "or"
msgstr "ou"
@@ -3333,10 +3387,12 @@ msgstr ""
"pas dans le dépôt."
#: IDF/gettexttemplates/idf/source/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 :"
+msgstr "Les branches disponibles sont listées ci-dessous :"
#: IDF/gettexttemplates/idf/source/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"
@@ -3345,8 +3401,7 @@ msgid ""
"how to access your repository."
msgstr ""
"S'il s'agit d'un nouveau dépôt, la raison de cette erreur\n"
-"peut être que vous n'avez pas encore fait de commit et / ou envoyé aucun "
-"changement.Dans ce cas veuillez lire la page d'aide\n"
+"peut être que vous n'avez pas encore fait de commit et / ou envoyé aucun changement.Dans ce cas veuillez lire la page d'aide\n"
"sur comment accéder au dépôt. "
#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3
@@ -3356,8 +3411,8 @@ msgid ""
"the Mercurial software to manage the source\n"
"code."
msgstr ""
-"L'équipe de développement du projet %%project%% utilise Mercurial"
-"strong> pour gérer le code source."
+"L'équipe de développement du projet %%project%% 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
@@ -3374,6 +3429,14 @@ msgstr ""
msgid "Write Access Authentication"
msgstr "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 "La propriété %%prop%% est définie à %%val%%"
+
#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3
#, php-format
msgid ""
@@ -3381,32 +3444,22 @@ msgid ""
"the monotone software to manage the source\n"
"code."
msgstr ""
-"L'équipe de développement du projet %%project%% utilise Monotone"
-"strong> pour gérer le code source."
+"L'équipe de développement du projet %%project%% 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/file.html.php:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
+#: IDF/gettexttemplates/idf/source/svn/file.html.php:9
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14
msgid "Revision:"
-msgstr "Révision :"
+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/file.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
-msgid "Go to revision"
-msgstr "Voir révision"
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11
-msgid "Property"
-msgstr "Propriété"
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12
-msgid "set to:"
-msgstr "mise à :"
+#: 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
@@ -3415,20 +3468,29 @@ msgid ""
"the subversion software to manage the source\n"
"code."
msgstr ""
-"L'équipe de développement du projet %%project%% utilise Subversion"
-"strong> pour gérer le code source."
+"L'équipe de développement du projet %%project%% utilise "
+"Subversion pour gérer le code source."
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8
+#: 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 dans ce "
+"référentiel."
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9
msgid "Rev"
msgstr "Rev"
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
msgid "Branches:"
-msgstr "Branches :"
+msgstr "Branches :"
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
msgid "Tags:"
-msgstr "Tags :"
+msgstr "Tags :"
#: IDF/gettexttemplates/idf/user/changeemail-email.txt.php:3
#, php-format
@@ -3469,8 +3531,7 @@ msgstr ""
"\n"
"%%key%%\n"
"\n"
-"Si vous ne voulez pas changer votre adresse email,ignorez simplement ce "
-"message.\n"
+"Si vous ne voulez pas changer votre adresse email, ignorez simplement ce message.\n"
"Cordialement,\n"
"l'équipe de développement.\n"
@@ -3485,8 +3546,8 @@ msgid ""
"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 clef de "
+"Utilisez votre logiciel de messagerie pour lire votre email de vérification."
+" Vous pouvez cliquer sur le lien fourni ou copier/coller la clef de "
"vérification dans le formulaire et le soumettre."
#: IDF/gettexttemplates/idf/user/dashboard.html.php:3
@@ -3534,8 +3595,8 @@ msgstr "Clé d'API"
msgid ""
"Your API key will be regenerated automatically if you change your password."
msgstr ""
-"Votre clef d'API sera automatiquement régénérée si vous changez votre mot de "
-"passe."
+"Votre clef d'API sera automatiquement régénérée si vous changez votre mot de"
+" passe."
#: IDF/gettexttemplates/idf/user/myaccount.html.php:12
msgid "Update Your Account"
@@ -3572,8 +3633,8 @@ msgid ""
"API key is used to interact with this website using a program."
msgstr ""
"La clef d'API est utilisée pour communiquer avec le site en utilisant un "
-"programme externe et le mot de passe supplémentaire est utilisé pour accéder "
-"à certaines parties de l'infrastructure."
+"programme externe et le mot de passe supplémentaire est utilisé pour accéder"
+" à certaines parties de l'infrastructure."
#: IDF/gettexttemplates/idf/user/myaccount.html.php:20
msgid "Show API key and extra password"
@@ -3593,13 +3654,13 @@ 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."
+"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 ""
"Donnez votre identifiant ou votre adresse email. Si un utilisateur "
-"correspondant est trouvé, nous vous enverrons un email avec les informations "
-"nécessaire à la récupération de votre mot de passe."
+"correspondant est trouvé, nous vous enverrons un email avec les informations"
+" nécessaire à la récupération de votre mot de passe."
#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3
#, php-format
@@ -3630,10 +3691,7 @@ msgid ""
msgstr ""
"Bonjour %%user%%,\n"
"\n"
-"Vous avez perdu votre mot de passe et voulez le retrouver. Pour définir un "
-"nouveau mot de passe pour votre compte, vous devez juste suivre le lien "
-"suivant et un formulaire vous permettra de donner de nouveau un mot de "
-"passe :\n"
+"Vous avez perdu votre mot de passe et voulez le retrouver. Pour définir un nouveau mot de passe pour votre compte, vous devez juste suivre le lien suivant et un formulaire vous permettra de donner de nouveau un mot de passe :\n"
"\n"
"%%url%%\n"
"\n"
@@ -3645,9 +3703,7 @@ msgstr ""
"\n"
"%%key%%\n"
"\n"
-"Si vous n'êtes pas la personne ayant fait la demande de récupération de "
-"votre mot de passe, ignorez simplement cet email et votre mot de passe "
-"restera inchangé. \n"
+"Si vous n'êtes pas la personne ayant fait la demande de récupération de votre mot de passe, ignorez simplement cet email et votre mot de passe restera inchangé. \n"
"\n"
"Très cordialement,\n"
"l'équipe de développement.\n"
@@ -3661,8 +3717,8 @@ msgid ""
"Just after providing the confirmation key, you will be able to reset your "
"password and use this website fully."
msgstr ""
-"Juste après avoir fourni la clef de vérification, vous pourrez réinitialiser "
-"votre mot de passe et réutiliser complètement le site."
+"Juste après avoir fourni la clef de vérification, vous pourrez réinitialiser"
+" votre mot de passe et réutiliser complètement le site."
#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6
msgid "Reset Your Password"
@@ -3675,11 +3731,11 @@ msgstr "Vous regardez le profil public de %%member%%."
#: IDF/gettexttemplates/idf/user/public.html.php:5
msgid "Twitter:"
-msgstr "Twitter : "
+msgstr "Twitter : "
#: IDF/gettexttemplates/idf/user/public.html.php:6
msgid "Public Email:"
-msgstr "Email public :"
+msgstr "Email public :"
#: IDF/gettexttemplates/idf/user/public.html.php:7
msgid "Website:"
@@ -3687,11 +3743,11 @@ msgstr "Site internet : "
#: IDF/gettexttemplates/idf/user/public.html.php:8
msgid "Last time seen:"
-msgstr "Vu la dernière fois :"
+msgstr "Vu la dernière fois :"
#: IDF/gettexttemplates/idf/user/public.html.php:9
msgid "Member since:"
-msgstr "Membre depuis :"
+msgstr "Membre depuis :"
#: IDF/gettexttemplates/idf/wiki/base.html.php:3
msgid "List Pages"
@@ -3699,7 +3755,7 @@ msgstr "Liste des pages"
#: IDF/gettexttemplates/idf/wiki/base.html.php:4
#: IDF/gettexttemplates/idf/wiki/index.html.php:4
-#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:175
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:173
msgid "New Page"
msgstr "Nouvelle page"
@@ -3715,7 +3771,8 @@ msgstr "Prévisualisation de la page"
#: IDF/gettexttemplates/idf/wiki/create.html.php:4
msgid "The form contains some errors. Please correct them to create the page."
msgstr ""
-"Le formulaire contient des erreurs. Merci de les corriger pour créer la page."
+"Le formulaire contient des erreurs. Merci de les corriger pour créer la "
+"page."
#: IDF/gettexttemplates/idf/wiki/create.html.php:6
msgid "Create Page"
@@ -3724,8 +3781,7 @@ msgstr "Création d'une page"
#: IDF/gettexttemplates/idf/wiki/delete.html.php:3
#, php-format
msgid ""
-"You are looking at an old revision (%%oldrev.summary%%) of the "
-"page \n"
+"You are looking at an old revision (%%oldrev.summary%%) of the page \n"
"%%page.title%%. This revision was created\n"
"by %%submitter%%."
msgstr ""
@@ -3770,23 +3826,15 @@ msgstr "Supprimer la page"
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"
-"
To directly include a file content from the repository, embrace its path "
-"with triple square brackets: [[[path/to/file.txt]]].
Website addresses are automatically linked and you can link to another page in the documentation using double square brackets like that [[AnotherPage]].
\n"
+"
To directly include a file content from the repository, embrace its path with triple square brackets: [[[path/to/file.txt]]].
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 ""
+
+#: 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 a URL to which a HTTP POST\n"
+"request is sent after each repository commit. If this field is empty,\n"
+"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.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:6
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+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 ""
+"\n"
+"Only project members and admins have write access to the source. \n"
+"If you restrict the access to the source, anonymous access is \n"
+"not provided and the users must authenticate themselves with their \n"
+"password or SSH key."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+msgid ""
+"You can configure here the project tabs access rights and notification "
+"emails."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+#, php-format
+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 ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+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. 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:11
+msgid ""
+"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:12
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+msgid "Notification Email"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.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
+msgid "Project Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:12
+#: 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:234
+msgid "New Download"
+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/delete.html.php:7
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/view.html.php:8
+#: IDF/gettexttemplates/idf/wiki/view.html.php:9
+#, 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:7
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
+#: 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/create.html.php:7
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/update.html.php:7
+msgid "Cancel"
+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/delete.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/view.html.php:15
+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/index.html.php:15
+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/view.html.php:17
+#: 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: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/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/delete.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/view.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/WikiRevision.php:175
+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/issues/issue-created-email.txt.php:5
+#: 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/issues/issue-created-email.txt.php:6
+#: 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
+msgid "Submitted by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+msgid "Download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-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/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/submit.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/submit.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:8
+msgid "Submit File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:10
+#: 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/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/update.html.php:9
+#: IDF/gettexttemplates/idf/wiki/view.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.html.php:34
+msgid "Here we are, just to help you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:35
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+#: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57
+#: IDF/Views.php:47
+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\", change 123 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:9
+msgid ""
+"You need to create an account on Gravatar, this takes about 5 minutes "
+"and is free."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:10
+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:11
+#, php-format
+msgid "Learn more about the API."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:12
+#: IDF/gettexttemplates/idf/faq.html.php:16
+msgid "What are the keyboard shortcuts?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:13
+#: IDF/gettexttemplates/idf/faq.html.php:31
+msgid "How to mark an issue as duplicate?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:14
+#: IDF/gettexttemplates/idf/faq.html.php:32
+msgid "How can I display my head next to my comments?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:15
+#: IDF/gettexttemplates/idf/faq.html.php:33
+msgid "What is the API and how is it used?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:17
+msgid "Shift+h: This help page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:18
+msgid "If you are in a project, you have the following shortcuts:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:19
+msgid "Shift+u: Project updates."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:20
+msgid "Shift+d: Downloads."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:21
+msgid "Shift+o: Documentation."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:22
+msgid "Shift+a: Create a new issue."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:23
+msgid "Shift+i: List of open issues."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:24
+msgid "Shift+m: The issues you submitted."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:25
+msgid "Shift+w: The issues assigned to you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:26
+msgid "Shift+s: Source."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:27
+msgid "You also have the standard access keys:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:28
+msgid "Alt+1: Home."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:29
+msgid "Alt+2: Skip the menus."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:30
+msgid "Alt+4: Search (when available)."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+msgid "People"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "Usher"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/home.html.php:3
+msgid "You have here access to the administration of the forge."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/home.html.php:4
+#: IDF/gettexttemplates/idf/project/home.html.php:3
+#: IDF/gettexttemplates/idf/project/timeline.html.php:4
+msgid "Welcome"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Project List"
+msgstr "Lista de Projetos"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/index.html.php:5 IDF/Views/Admin.php:128
+msgid "Create Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+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."
+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/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:17
+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:201
+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:358
+msgid "Usher control"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+msgid "address"
+msgstr ""
+
+#: 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
+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
+msgid "server name"
+msgstr ""
+
+#: 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
+msgid "action"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+msgid "No monotone servers configured."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+msgid "stop"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+msgid "start"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+msgid "kill"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+msgid "active connections"
+msgstr ""
+
+#: 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
+msgid "server with n open connections"
+msgstr ""
+
+#: 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
+msgid "local server not running, waiting for connections"
+msgstr ""
+
+#: 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
+msgid "local server not running, not accepting connections"
+msgstr ""
+
+#: 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:4
+msgid "No projects managed with InDefero were found."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:9
+msgid "Forge statistics"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:10
+msgid "Projects:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:11
+msgid "Members:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:12
+msgid "Issues:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:13
+msgid "Commits:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:14
+msgid "Documentations:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:16
+msgid "Code reviews:"
+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/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
+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/delete.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/view.html.php:14
+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:6
+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 ""
+"
"
+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/summary.html.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+msgid "Status Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+msgid "Unresolved: By Assignee"
+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] ""
+
+#: 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] ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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] ""
+
+#: 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
+msgid "Click here to view the previous closed issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
+msgid "Click here to view the previous open issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
+msgid "Click here to view the next closed issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
+msgid "Click here to 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/login_form.html.php:3
+#, php-format
+msgid ""
+"If you don't have an account yet, you can create one here."
+msgstr ""
+
+#: 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 "Meu usuário é"
+
+#: 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 "Perdi minha senha!"
+
+#: 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 ""
+
+#: 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:9 IDF/Views/Admin.php:42
+msgid "Forge Management"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:10
+msgid "Help and accessibility features"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
+#: 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 "Ajuda"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:4
+#: IDF/gettexttemplates/idf/project/timeline.html.php:5
+msgid "Latest Updates"
+msgstr "Últimas Atualizações"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:5
+msgid "Featured Downloads"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project/home.html.php:6
+#: IDF/gettexttemplates/idf/project/home.html.php:8
+msgid "show more..."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project/home.html.php:7
+msgid "Featured Documentation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project/home.html.php:9
+msgid "Development Team"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project/home.html.php:10
+msgid "Admins"
+msgstr "Administradores"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:11
+msgid "Happy Crew"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:3
+msgid "Latest updates"
+msgstr "Últimas atualizações"
+
+#: 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/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 ""
+
+#: 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 "E-mail:"
+
+#: 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 to log in afterwards."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/register/index.html.php:3
+msgid ""
+"Read the terms and conditions "
+"– basically \"Please be nice, we respect you\"."
+msgstr ""
+
+#: 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. Just go here to 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:90
+msgid "Create Your Account"
+msgstr "Crie sua conta"
+
+#: 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.
\n"
+"
Check your patch does not provide any password or confidential information!
\n"
+"
"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html.php:3
+#, php-format
+msgid "%%ndiff%% diff"
+msgid_plural "%%ndiff%% diffs"
+msgstr[0] ""
+msgstr[1] ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:19
+#, php-format
+msgid "%%nc%% comment"
+msgid_plural "%%nc%% comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:20
+#, php-format
+msgid ""
+"Comment %%i%% by %%who%%,"
+" %%c.creation_dtime%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:21
+#, php-format
+msgid "Your comments on the changes in file %%file%%:"
+msgstr ""
+
+#: 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
+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
+msgid "Commit:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:30
+#: 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
+msgid "Download the corresponding diff file"
+msgstr ""
+
+#: 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:188
+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
+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
+msgid "Date:"
+msgstr "Data:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:6
+msgid "Branch:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:9
+msgid "Parents:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:11
+msgid "Message:"
+msgstr "Mensagem:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:12
+#: IDF/gettexttemplates/idf/wiki/feedfragment.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:10
+msgid "Changes:"
+msgstr ""
+
+#: 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
+msgid "full"
+msgstr ""
+
+#: 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
+msgid "added"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
+msgid "modified"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
+msgid "properies changed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
+msgid "removed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
+msgid "File differences"
+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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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:314
+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
+#, 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/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/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 ""
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.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/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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 "chave API"
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:11
+msgid ""
+"Your API key will be regenerated automatically if you change your password."
+msgstr ""
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:20
+msgid "Show API key and extra password"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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
+#: IDF/gettexttemplates/idf/wiki/index.html.php:4
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:173
+msgid "New Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:5
+msgid "Update This Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/create.html.php:3
+#: IDF/gettexttemplates/idf/wiki/update.html.php:3
+msgid "Preview of the Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/create.html.php:4
+msgid "The form contains some errors. Please correct them to create the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/create.html.php:6
+msgid "Create Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/delete.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 ""
+
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:6
+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/delete.html.php:9
+msgid "Delete Revision"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/view.html.php:17
+msgid "Old Revisions"
+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/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"
+"
To directly include a file content from the repository, embrace its path with triple square brackets: [[[path/to/file.txt]]].
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/index.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/index.html.php:5
+msgid "Number of pages:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:4
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:6
+msgid "Update Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:8
+#: IDF/gettexttemplates/idf/wiki/update.html.php:10
+#: IDF/gettexttemplates/idf/wiki/update.html.php:11
+msgid "Delete this page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/view.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/view.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/view.html.php:10
+msgid "Table of Content"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/view.html.php:11
+#: IDF/gettexttemplates/idf/wiki/view.html.php:13
+msgid "Delete this revision"
+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/WikiPage.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/Review.php:95 IDF/Upload.php:99 IDF/WikiPage.php:94
+msgid "labels"
+msgstr ""
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/WikiPage.php:106
+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
+#, php-format
+msgid "Creation of issue %d, by %s"
+msgstr ""
+
+#: IDF/Issue.php:224
+#, php-format
+msgid "%s: Issue %d created - %s"
+msgstr ""
+
+#: IDF/Issue.php:290
+#, php-format
+msgid "Issue %s - %s (%s)"
+msgstr ""
+
+#: IDF/Issue.php:336
+#, php-format
+msgid "Updated Issue %s - %s (%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/WikiRevision.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
+#, php-format
+msgid "Comment on issue %d, by %s"
+msgstr "Comentário sobre problema %d, por %s"
+
+#: IDF/IssueComment.php:191
+#, php-format
+msgid "%s: Comment on issue %d - %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 \"%s\": %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 \"%s\": %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:93
+msgid "private"
+msgstr "privado"
+
+#: IDF/Project.php:130
+#, php-format
+msgid "Project \"%s\" not found."
+msgstr "Projeto \"%s\" não encontrado."
+
+#: 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 %d, by %s"
+msgstr ""
+
+#: IDF/Review/Comment.php:151
+#, php-format
+msgid "%s: Updated review %d - %s"
+msgstr ""
+
+#: IDF/Review/Comment.php:216
+#, php-format
+msgid "Updated Code Review %s - %s (%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 %d, by %s"
+msgstr ""
+
+#: IDF/Review/Patch.php:163
+#, php-format
+msgid "%s: Creation of Review %d - %s"
+msgstr ""
+
+#: IDF/Review/Patch.php:204
+#, php-format
+msgid "New Code Review %s - %s (%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 "occurence"
+msgstr ""
+
+#: IDF/Search/Occ.php:49
+msgid "word"
+msgstr ""
+
+#: IDF/Search/Occ.php:75
+msgid "occurences"
+msgstr ""
+
+#: IDF/Search/Occ.php:81
+msgid "ponderated occurence"
+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:75
+msgid "Create this documentation page"
+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
+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
+#, php-format
+msgid "Addition of download %d, by %s"
+msgstr ""
+
+#: IDF/Upload.php:214
+#, php-format
+msgid "%s: Download %d added - %s"
+msgstr ""
+
+#: IDF/Upload.php:256
+#, php-format
+msgid "New download - %s (%s)"
+msgstr ""
+
+#: IDF/Views/Admin.php:60
+msgid "This table shows the projects in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:65
+msgid "Short Name"
+msgstr ""
+
+#: IDF/Views/Admin.php:67
+msgid "Repository Size"
+msgstr ""
+
+#: IDF/Views/Admin.php:73
+msgid "No projects were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:310
+#, php-format
+msgid "Update %s"
+msgstr ""
+
+#: IDF/Views/Admin.php:101 IDF/Views/Project.php:302
+msgid "The project has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:134
+msgid "The project has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:160
+#, php-format
+msgid "Delete %s Project"
+msgstr ""
+
+#: IDF/Views/Admin.php:167
+msgid "The project has been deleted."
+msgstr ""
+
+#: IDF/Views/Admin.php:197
+msgid "Not Validated User List"
+msgstr ""
+
+#: IDF/Views/Admin.php:205
+msgid "This table shows the users in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:209
+msgid "login"
+msgstr ""
+
+#: IDF/Views/Admin.php:212
+msgid "Admin"
+msgstr ""
+
+#: IDF/Views/Admin.php:214
+msgid "Last Login"
+msgstr ""
+
+#: IDF/Views/Admin.php:221
+msgid "No users were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:258
+msgid "You do not have the rights to update this user."
+msgstr ""
+
+#: IDF/Views/Admin.php:276
+msgid "The user has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:309
+#, php-format
+msgid "The user %s has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:316
+msgid "Add User"
+msgstr ""
+
+#: IDF/Views/Admin.php:332
+msgid "Usher management"
+msgstr ""
+
+#: IDF/Views/Admin.php:369
+msgid "Usher configuration has been reloaded"
+msgstr ""
+
+#: IDF/Views/Admin.php:373
+msgid "Usher has been shut down"
+msgstr ""
+
+#: IDF/Views/Admin.php:378
+msgid "Usher has been started up"
+msgstr ""
+
+#: IDF/Views/Admin.php:416
+#, php-format
+msgid "The server \"%s\" has been started"
+msgstr ""
+
+#: IDF/Views/Admin.php:420
+#, php-format
+msgid "The server \"%s\" has been stopped"
+msgstr ""
+
+#: IDF/Views/Admin.php:425
+#, php-format
+msgid "The server \"%s\" has been killed"
+msgstr ""
+
+#: IDF/Views/Admin.php:445
+#, php-format
+msgid "Open connections for \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:450
+#, php-format
+msgid "no connections for server \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:471
+msgid "Yes"
+msgstr "Sim"
+
+#: IDF/Views/Admin.php:471
+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:315
+msgid "Uploaded"
+msgstr ""
+
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:319
+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:243
+#, php-format
+msgid "The file has been uploaded."
+msgstr ""
+
+#: IDF/Views/Download.php:297
+#, php-format
+msgid "%1$s Downloads with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Download.php:307
+#, 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:379 IDF/Views/User.php:75
+msgid "This table shows the open issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:217 IDF/Views/Issue.php:298
+#: IDF/Views/Issue.php:387 IDF/Views/Issue.php:539 IDF/Views/Issue.php:762
+#: IDF/Views/Issue.php:821 IDF/Views/Review.php:57 IDF/Views/User.php:81
+msgid "Id"
+msgstr ""
+
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:220 IDF/Views/Issue.php:302
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 IDF/Views/Review.php:60 IDF/Views/User.php:85
+msgid "Last Updated"
+msgstr ""
+
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:224 IDF/Views/Issue.php:306
+#: IDF/Views/Issue.php:394 IDF/Views/Issue.php:546 IDF/Views/Issue.php:769
+#: IDF/Views/Issue.php:828
+msgid "No issues were found."
+msgstr ""
+
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr ""
+
+#: IDF/Views/Issue.php:146
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:191
+#, php-format
+msgid "Watch List: Closed Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:192
+#, php-format
+msgid "This table shows the closed issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:197
+#, php-format
+msgid "Watch List: Open Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:198
+#, php-format
+msgid "This table shows the open issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:274
+msgid "Watch List: Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:275
+msgid "This table shows the closed issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:280
+msgid "Watch List: Open Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:281
+msgid "This table shows the open issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:300 IDF/Views/User.php:82
+msgid "Project"
+msgstr ""
+
+#: IDF/Views/Issue.php:341
+#, php-format
+msgid "%s %s Submitted %s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:345
+#, php-format
+msgid "%s %s Closed Submitted %s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:349
+#, php-format
+msgid "%s %s Closed Working %s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:353
+#, php-format
+msgid "%s %s Working %s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:414
+msgid "Submit a new issue"
+msgstr ""
+
+#: IDF/Views/Issue.php:430
+#, php-format
+msgid "Issue %d has been created."
+msgstr ""
+
+#: IDF/Views/Issue.php:487
+#, php-format
+msgid "Search issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:489
+#, php-format
+msgid "Search closed issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:536
+msgid "This table shows the found issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:601
+#, php-format
+msgid "Issue %d: %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:625
+#, php-format
+msgid "Issue %d has been updated."
+msgstr ""
+
+#: IDF/Views/Issue.php:715
+#, php-format
+msgid "View %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:742
+#, php-format
+msgid "%s Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:752
+msgid "This table shows the closed issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:795
+#, php-format
+msgid "%1$s Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:798
+#, php-format
+msgid "%1$s Closed Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:811
+#, php-format
+msgid "This table shows the issues with label %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:934
+msgid "The issue has been removed from your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:937
+msgid "The issue has been added to your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:1035
+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:178
+msgid "This table shows the project updates."
+msgstr ""
+
+#: IDF/Views/Project.php:189
+msgid "Change"
+msgstr ""
+
+#: IDF/Views/Project.php:193
+msgid "No changes were found."
+msgstr ""
+
+#: IDF/Views/Project.php:294
+#, php-format
+msgid "%s Project Summary"
+msgstr ""
+
+#: IDF/Views/Project.php:329
+#, php-format
+msgid "%s Issue Tracking Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:338
+msgid "The issue tracking configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:375
+#, php-format
+msgid "%s Downloads Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:384
+msgid "The downloads configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:418
+#, php-format
+msgid "%s Documentation Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:427
+msgid "The documentation configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:461
+#, php-format
+msgid "%s Project Members"
+msgstr ""
+
+#: IDF/Views/Project.php:470
+msgid "The project membership has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:493
+#, php-format
+msgid "%s Tabs Access Rights"
+msgstr ""
+
+#: IDF/Views/Project.php:507
+msgid "The project tabs access rights have been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:553
+#, php-format
+msgid "%s Source"
+msgstr ""
+
+#: IDF/Views/Project.php:567
+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 %d has been created."
+msgstr ""
+
+#: IDF/Views/Review.php:140
+#, php-format
+msgid "Review %d: %s"
+msgstr ""
+
+#: IDF/Views/Review.php:160
+#, php-format
+msgid "Your code review %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:147 IDF/Views/Source.php:228 IDF/Views/Source.php:356
+#, php-format
+msgid "%1$s %2$s Source Tree"
+msgstr ""
+
+#: IDF/Views/Source.php:304
+#, php-format
+msgid "%s Commit Details"
+msgstr ""
+
+#: IDF/Views/Source.php:305
+#, php-format
+msgid "%s Commit Details - %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:106 IDF/Views/Wiki.php:147
+msgid "Page Title"
+msgstr ""
+
+#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149
+msgid "Updated"
+msgstr ""
+
+#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:153
+msgid "No documentation pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:90
+#, php-format
+msgid "Documentation Search - %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:101
+msgid "This table shows the pages found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:112
+msgid "No pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:131
+#, php-format
+msgid "%1$s Documentation Pages with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:141
+#, php-format
+msgid "This table shows the documentation pages with label %s."
+msgstr ""
+
+#: IDF/Views/Wiki.php:184
+#, php-format
+msgid "The page %s has been created."
+msgstr ""
+
+#: IDF/Views/Wiki.php:271
+msgid "The old revision has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:277
+#, php-format
+msgid "Delete Old Revision of %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:322
+#, php-format
+msgid "The page %s has been updated."
+msgstr ""
+
+#: IDF/Views/Wiki.php:360
+msgid "The documentation page has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:368
+#, php-format
+msgid "Delete Page %s"
+msgstr ""
+
+#: IDF/Views.php:126 IDF/Views.php:152
+msgid "Confirm Your Account Creation"
+msgstr "Confirme a criação de sua conta"
+
+#: IDF/Views.php:172
+msgid ""
+"Welcome! You can now participate in the life of your project of choice."
+msgstr ""
+
+#: IDF/Views.php:198 IDF/Views.php:222 IDF/Views.php:263
+msgid "Password Recovery"
+msgstr "Recuperação de Senha"
+
+#: IDF/Views.php:242
+msgid ""
+"Welcome back! Next time, you can use your broswer options to remember the "
+"password."
+msgstr ""
+
+#: IDF/Views.php:284
+msgid "Here to Help You!"
+msgstr ""
+
+#: IDF/Views.php:300
+msgid "InDefero API (Application Programming Interface)"
+msgstr "InDefero API (Application Programming Interface)"
+
+#: IDF/WikiPage.php:62
+msgid "title"
+msgstr "título"
+
+#: IDF/WikiPage.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/WikiPage.php:71
+msgid "A one line description of the page content."
+msgstr ""
+
+#: IDF/WikiPage.php:196 IDF/WikiRevision.php:167
+#, php-format
+msgid "%2$s, %3$s"
+msgstr ""
+
+#: IDF/WikiPage.php:198
+#, php-format
+msgid "Creation of page %s, by %s"
+msgstr "Criação da página %s, por %s"
+
+#: IDF/WikiPage.php:208
+#, php-format
+msgid "%s: Documentation page %s added - %s"
+msgstr "%s: Página de documentação %s adicionada - %s"
+
+#: IDF/WikiRevision.php:48
+msgid "page"
+msgstr "página"
+
+#: IDF/WikiRevision.php:66
+msgid "A one line description of the changes."
+msgstr ""
+
+#: IDF/WikiRevision.php:72
+msgid "content"
+msgstr "conteúdo"
+
+#: IDF/WikiRevision.php:189
+#, php-format
+msgid "Change of %s, by %s"
+msgstr ""
+
+#: IDF/WikiRevision.php:208
+#, php-format
+msgid "%s: Documentation page %s updated - %s"
+msgstr ""
+
+#: IDF/WikiRevision.php:262
+#, php-format
+msgid "New Documentation Page %s - %s (%s)"
+msgstr ""
+
+#: IDF/WikiRevision.php:268
+#, php-format
+msgid "Documentation Page Changed %s - %s (%s)"
+msgstr ""
+
+
diff --git a/src/IDF/locale/ru/idf.po b/src/IDF/locale/ru/idf.po
index 01686ae..a5e9bf5 100644
--- a/src/IDF/locale/ru/idf.po
+++ b/src/IDF/locale/ru/idf.po
@@ -1,188 +1,55 @@
# 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.
-#
+#
+# Translators:
+# Denis , 2011.
+# , 2011.
+# , 2011.
+# William MARTIN , 2011.
msgid ""
msgstr ""
"Project-Id-Version: Indefero\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-10 10:02+0100\n"
-"PO-Revision-Date: 2011-03-04 18:20+0000\n"
-"Last-Translator: tommyd \n"
-"Language-Team: Russian <>\n"
+"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
+"POT-Creation-Date: 2011-10-31 01:11+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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\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/IssueComment.php:51
-msgid "issue"
-msgstr "проблема"
-
-#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/FileComment.php:49
-#: IDF/Review/FileComment.php:69 IDF/Review/Comment.php:62
-msgid "comment"
-msgstr "комментарий"
-
-#: IDF/IssueComment.php:65 IDF/Upload.php:85 IDF/Commit.php:63
-#: IDF/IssueFile.php:57 IDF/Issue.php:67 IDF/WikiRevision.php:79
-#: IDF/Review.php:80 IDF/Review/Comment.php:69 IDF/WikiPage.php:78
-msgid "submitter"
-msgstr "отправитель"
-
-#: IDF/IssueComment.php:72 IDF/Upload.php:63 IDF/WikiRevision.php:85
-#: IDF/Review/Comment.php:75
-msgid "changes"
-msgstr "изменения"
-
-#: IDF/IssueComment.php:73
-msgid "Serialized array of the changes in the issue."
-msgstr "Сериализованный массив изменений в этой проблеме."
-
-#: IDF/IssueComment.php:79 IDF/Upload.php:106 IDF/Commit.php:100
-#: IDF/IssueFile.php:96 IDF/Issue.php:105 IDF/WikiRevision.php:92
-#: IDF/Review.php:108 IDF/Review/Patch.php:87 IDF/Review/FileComment.php:75
-#: IDF/Review/Comment.php:90 IDF/WikiPage.php:100
-msgid "creation date"
-msgstr "дата создания"
-
-#: IDF/IssueComment.php:143 IDF/Issue.php:194
-#, php-format
-msgid ""
-"Issue %3$d, %4$s"
-msgstr ""
-"Проблема %3$d"
-"a>, %4$s"
-
-#: IDF/IssueComment.php:151
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:6
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:11
-#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:3
-#: IDF/gettexttemplates/idf/review/view.html.php:40
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12
-#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:3
-#: IDF/gettexttemplates/idf/issues/view.html.php:17
-msgid "Summary:"
-msgstr "Краткое описание:"
-
-#: IDF/IssueComment.php:153
-#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:4
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:10
-#: IDF/gettexttemplates/idf/review/view.html.php:41
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:6
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:13
-#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:4
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:7
-#: IDF/gettexttemplates/idf/issues/view.html.php:18
-#: IDF/gettexttemplates/idf/issues/view.html.php:28
-msgid "Status:"
-msgstr "Статус:"
-
-#: IDF/IssueComment.php:155
-#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:5
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:14
-#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:5
-#: IDF/gettexttemplates/idf/issues/view.html.php:19
-#: IDF/gettexttemplates/idf/issues/view.html.php:29
-msgid "Owner:"
-msgstr "Владелец:"
-
-#: IDF/IssueComment.php:157 IDF/gettexttemplates/idf/wiki/delete.html.php:13
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:10
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:9
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
-#: IDF/gettexttemplates/idf/wiki/view.html.php:16
-#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:7
-#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:6
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:13
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:9
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:10
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:15
-#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:6
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
-#: IDF/gettexttemplates/idf/issues/view.html.php:20
-#: IDF/gettexttemplates/idf/issues/view.html.php:31
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
-#: IDF/gettexttemplates/idf/downloads/view.html.php:16
-#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
-#: IDF/WikiRevision.php:175
-msgid "Labels:"
-msgstr "Ярлыки:"
-
-#: IDF/IssueComment.php:171
-#, php-format
-msgid "Comment on issue %d, by %s"
-msgstr "Комментарий на проблему %d, %s"
-
-#: IDF/IssueComment.php:182
-#, php-format
-msgid "%s: Comment on issue %d - %s"
-msgstr "%s: Комментарий на проблему %d - %s"
-
-#: IDF/Upload.php:49 IDF/Commit.php:55 IDF/Conf.php:54 IDF/Search/Occ.php:69
-#: IDF/Issue.php:52 IDF/Review.php:65 IDF/WikiPage.php:54 IDF/Tag.php:52
+#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52 IDF/Review.php:65
+#: IDF/Search/Occ.php:69 IDF/Tag.php:52 IDF/Upload.php:49 IDF/WikiPage.php:54
msgid "project"
msgstr "проект"
-#: IDF/Upload.php:57 IDF/Commit.php:87 IDF/Issue.php:60
-#: IDF/WikiRevision.php:65 IDF/Review.php:73 IDF/Review/Patch.php:60
-#: IDF/WikiPage.php:70
+#: 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/WikiPage.php:78
+#: IDF/WikiRevision.php:79
+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/WikiPage.php:70
+#: IDF/WikiRevision.php:65
msgid "summary"
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
-msgid "file size in bytes"
-msgstr "размер файла в байтах"
-
-#: IDF/Upload.php:93 IDF/Issue.php:92 IDF/Review.php:95 IDF/WikiPage.php:94
-msgid "labels"
-msgstr "метки"
-
-#: IDF/Upload.php:100
-msgid "number of downloads"
-msgstr "количество файлов"
-
-#: IDF/Upload.php:112 IDF/IssueFile.php:102 IDF/Issue.php:111
-#: IDF/Review.php:114 IDF/WikiPage.php:106
-msgid "modification date"
-msgstr "дата модификации"
-
-#: IDF/Upload.php:189
-#, php-format
-msgid "Download %2$d, %3$s"
-msgstr "Загрузка %2$d, %3$s"
-
-#: IDF/Upload.php:192
-#, php-format
-msgid "Addition of download %d, by %s"
-msgstr "Добавление загрузки %d, %s"
-
-#: IDF/Upload.php:202
-#, php-format
-msgid "%s: Download %d added - %s"
-msgstr "%s: Файл %d добавлен - %s"
-
-#: IDF/Upload.php:244
-#, php-format
-msgid "New download - %s (%s)"
-msgstr "Новый файл - %s (%s)"
-
#: 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/WikiPage.php:100 IDF/WikiRevision.php:92
+msgid "creation date"
+msgstr "дата создания"
+
#: IDF/Commit.php:238
#, php-format
msgid "Commit %s, by %s"
@@ -193,6 +60,1006 @@ msgstr "Комит %s, %s"
msgid "New Commit %s - %s (%s)"
msgstr "Новый комит %s - %s (%s)"
+#: IDF/Conf.php:61 IDF/Gconf.php:73
+msgid "key"
+msgstr "ключ"
+
+#: IDF/Conf.php:67 IDF/Gconf.php:79
+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/ProjectCreate.php:38 IDF/Views/Project.php:587
+msgid "git"
+msgstr "git"
+
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:588
+msgid "Subversion"
+msgstr "Subversion"
+
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:589
+msgid "mercurial"
+msgstr "mercurial"
+
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:590
+msgid "monotone"
+msgstr "monotone"
+
+#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
+#: IDF/Form/ProjectConf.php:38 IDF/Views/Admin.php:66 IDF/Views/Admin.php:210
+msgid "Name"
+msgstr "Имя"
+
+#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/index.html.php:7
+#: IDF/gettexttemplates/idf/index.html.php:8
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
+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
+msgid "Repository type"
+msgstr "Тип репозитория"
+
+#: IDF/Form/Admin/ProjectCreate.php:85
+msgid "Remote Subversion repository"
+msgstr "Удаленная репозитория Subversion"
+
+#: IDF/Form/Admin/ProjectCreate.php:92 IDF/Form/SourceConf.php:40
+msgid "Repository username"
+msgstr "Логин репозитории"
+
+#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:47
+msgid "Repository password"
+msgstr "Пароль репозитории"
+
+#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/Admin/ProjectUpdate.php:59
+msgid "Master branch"
+msgstr "Основная ветка"
+
+#: IDF/Form/Admin/ProjectCreate.php:109 IDF/Form/Admin/ProjectUpdate.php:62
+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:114 IDF/Form/Admin/ProjectUpdate.php:68
+#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53
+msgid "Project owners"
+msgstr "Владельцы проекта"
+
+#: IDF/Form/Admin/ProjectCreate.php:123 IDF/Form/Admin/ProjectUpdate.php:76
+#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52
+msgid "Project members"
+msgstr "Участники проекта"
+
+#: IDF/Form/Admin/ProjectCreate.php:136
+msgid "Project template"
+msgstr "Шаблон проекта"
+
+#: IDF/Form/Admin/ProjectCreate.php:138
+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:185
+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:201
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashs and dots as separators."
+msgstr ""
+"Мастер бранч пустой или содержит недопустимые символы, пожалуйста, "
+"используйте только латинские буквы, цифры, дефисы и точки в качестве "
+"разделителей."
+
+#: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101
+msgid "This master branch is already used. Please select another one."
+msgstr "Этот мастер бранч уже используется. Пожалуйста, выберите другой."
+
+#: IDF/Form/Admin/ProjectCreate.php:222
+msgid ""
+"This shortname contains illegal characters, please use only letters, digits "
+"and dash (-)."
+msgstr ""
+"Краткое имя содержит недопустимые символы. Пожалуйста, используйте только "
+"буквы, цифры и дефис (-)."
+
+#: IDF/Form/Admin/ProjectCreate.php:225
+msgid "The shortname cannot start with the dash (-) character."
+msgstr "Краткое имя не может начинаться с прочерка (-)."
+
+#: IDF/Form/Admin/ProjectCreate.php:228
+msgid "The shortname cannot end with the dash (-) character."
+msgstr "Краткое имя не может заканчиваться прочером (-)."
+
+#: IDF/Form/Admin/ProjectCreate.php:233
+msgid "This shortname is already used. Please select another one."
+msgstr "Краткое имя уже используется. Пожалуйста, выберите другое."
+
+#: IDF/Form/Admin/ProjectCreate.php:279 IDF/Form/Admin/ProjectDelete.php:78
+#: IDF/Form/Admin/ProjectUpdate.php:121 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:98 IDF/Form/UpdateUpload.php:126
+#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:216
+#: IDF/Form/UserChangeEmail.php:80 IDF/Form/WikiCreate.php:167
+#: IDF/Form/WikiDelete.php:59 IDF/Form/WikiUpdate.php:178
+msgid "Cannot save the model from an invalid form."
+msgstr "Не удается сохранить модель из недействительной формы."
+
+#: IDF/Form/Admin/ProjectCreate.php:295
+msgid ""
+"Click on the Project Management tab to set the description of your project."
+msgstr ""
+"Кликните на закладку Управление проектом, чтобы задать описание Вашего "
+"проекта."
+
+#: IDF/Form/Admin/ProjectCreate.php:363
+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/ProjectUpdate.php:90
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashes and dots as separators."
+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:47 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiCreate.php:70
+#: IDF/Form/WikiUpdate.php:60
+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:211
+msgid "Staff"
+msgstr "Персонал"
+
+#: IDF/Form/Admin/UserUpdate.php:164
+msgid "If you give staff rights to a user, you really need to trust them."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:213
+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:313 IDF/Views/Issue.php:62 IDF/Views/Issue.php:218
+#: IDF/Views/Issue.php:299 IDF/Views/Issue.php:388 IDF/Views/Issue.php:540
+#: IDF/Views/Issue.php:763 IDF/Views/Issue.php:822 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:107
+#: IDF/Views/Wiki.php:148
+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:219 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:389 IDF/Views/Issue.php:541 IDF/Views/Issue.php:764
+#: IDF/Views/Issue.php:823 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:168 IDF/Form/IssueUpdate.php:164
+#: IDF/Form/UpdateUpload.php:71 IDF/Form/Upload.php:70
+#: IDF/Form/WikiCreate.php:93 IDF/Form/WikiUpdate.php:104
+msgid "Labels"
+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:120
+#: IDF/Form/WikiCreate.php:151 IDF/Form/WikiUpdate.php:162
+msgid "You provided an invalid label."
+msgstr "Вы ввели недопустимый ярлык."
+
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
+#: IDF/Form/Upload.php:119
+#, php-format
+msgid "You cannot provide more than 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
+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\"."
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
+#: IDF/Form/WikiUpdate.php:82
+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:42
+msgid "Short Description"
+msgstr "Краткое описание"
+
+#: IDF/Form/ProjectConf.php:58
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:63
+msgid "Update the logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:65
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:75
+msgid "Remove the current logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:111
+msgid "Could not determine the size of the uploaded picture."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:115
+msgid "The picture must have a size of 32 by 32."
+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
+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 \"%s\" is already used. If you need to, click on the help link to "
+"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
+msgid ""
+"This account has already been confirmed. Maybe should you try to recover "
+"your password using the help link."
+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:56
+msgid "Webhook URL"
+msgstr ""
+
+#: IDF/Form/SourceConf.php:58
+#, php-format
+msgid "Learn more about the post-commit web hooks."
+msgstr "Прочитать больше про post-commit web hooks."
+
+#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html.php:7
+#: 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:11
+#: 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:8
+#: 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:10
+#: IDF/gettexttemplates/idf/base.html.php:10
+msgid "Source"
+msgstr "Исходный код"
+
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:9
+#: 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:83
+msgid "Extra authorized users"
+msgstr "Дополнительные авторизованные пользователи"
+
+#: IDF/Form/Upload.php:59 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:312
+msgid "File"
+msgstr "Файл"
+
+#: IDF/Form/Upload.php:86
+msgid "For security reasons, you cannot upload a file with this extension."
+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:59
+msgid "Your mail"
+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
+msgid "Add a secondary mail address"
+msgstr "Добавить дополнительный e-mail"
+
+#: IDF/Form/UserAccount.php:173
+msgid "You will get a mail 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/WikiCreate.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/WikiCreate.php:57
+msgid "PageName"
+msgstr "ИмяСтраницы"
+
+#: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50
+msgid "Page title"
+msgstr "Заголовок страницы"
+
+#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56
+msgid ""
+"The page name must contains only letters, digits and the dash (-) character."
+msgstr "Имя страницы должно содержать только буквы, цифры и прочерк (-)."
+
+#: IDF/Form/WikiCreate.php:71 IDF/Form/WikiUpdate.php:61
+msgid "This one line description is displayed in the list of pages."
+msgstr "Это однострочное описание отображается в списке страниц ."
+
+#: IDF/Form/WikiCreate.php:80 IDF/Form/WikiUpdate.php:72
+msgid "Content"
+msgstr "Содержание"
+
+#: IDF/Form/WikiCreate.php:108 IDF/Form/WikiUpdate.php:119
+msgid "The title contains invalid characters."
+msgstr "Название содержит недопустимые символы."
+
+#: IDF/Form/WikiCreate.php:114 IDF/Form/WikiUpdate.php:125
+msgid "A page with this title already exists."
+msgstr "Страница с таким заголовком уже существует."
+
+#: IDF/Form/WikiCreate.php:150 IDF/Form/WikiUpdate.php:161
+#, php-format
+msgid "You cannot provide more than label from the %s class to a page."
+msgstr "Вы не может указать больше чем метки из %s класса страницы."
+
+#: IDF/Form/WikiCreate.php:200
+msgid "Initial page creation"
+msgstr "Создание первоначальной страницы"
+
+#: IDF/Form/WikiDelete.php:39
+msgid "Yes, I understand that the page and all its revisions will be deleted."
+msgstr "Да, я понимаю, что страница и все ее версии будут удалены."
+
+#: IDF/Form/WikiDelete.php:50
+msgid "You need to confirm the deletion."
+msgstr "Вам необходимо подтвердить удаление."
+
+#: IDF/Form/WikiUpdate.php:83
+msgid "One line to describe the changes you made."
+msgstr "Одна строка для описания внесенных изменений."
+
#: IDF/Gconf.php:60 IDF/Search/Occ.php:56
msgid "model class"
msgstr "класс модели"
@@ -201,115 +1068,537 @@ msgstr "класс модели"
msgid "model id"
msgstr "ID модели"
-#: IDF/Gconf.php:73 IDF/Conf.php:61
-msgid "key"
-msgstr "ключ"
+#: IDF/gettexttemplates/idf/admin/base.html.php:3
+msgid "Project Summary"
+msgstr "Краткое описание проекта"
-#: IDF/Gconf.php:79 IDF/Conf.php:67
-msgid "value"
-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
+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"
+"
При необходимости, используйте знак равенства для описания значение каждого статуса.
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"
+"
Замечание:
\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 a URL to which a HTTP POST\n"
+"request is sent after each repository commit. If this field is empty,\n"
+"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/source.html.php:30
+msgid "Post-commit authentication key:"
+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.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:6
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+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 ""
+"\n"
+"Only project members and admins have write access to the source. \n"
+"If you restrict the access to the source, anonymous access is \n"
+"not provided and the users must authenticate themselves with their \n"
+"password or SSH key."
+msgstr ""
+"\n"
+"Только участники и администраторы проекта имеют возможность изменять исходный код.\n"
+"Если Вы ограничили доступ к исходному коду, анонимный доступ закрыт. Для получения доступа к исходному коду пользователи должны авторизоваться используя пароль или SSH ключ."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+msgid ""
+"You can configure here the project tabs access rights and notification "
+"emails."
+msgstr ""
+"Вы можете настроить здесь права доступа к вкладкам проекта и уведомлений."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+#, php-format
+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%%. Если Вы отправляете письма на адрес "
+"рассылки возможно Вам понадобиться зарегистрировать этот адрес. Несколько "
+"адресов должны разделяться запятой (','). Если Вы не хотите отправлять "
+"сообщения на выбранное действие просто оставьте соотвествующее поле пустым."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+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. 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:11
+msgid ""
+"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:12
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+"Форма содержит ошибки. Пожалуйста исправте их чтобы обновить права доступа."
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr "Права доступа"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+msgid "Notification Email"
+msgstr "Уведомление по электронной почте"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr "Инструкции:"
+
+#: IDF/gettexttemplates/idf/base-full.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
+msgid "Project Home"
+msgstr "Проект"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:12
+#: 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:234
+msgid "New Download"
+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/delete.html.php:7
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/view.html.php:8
+#: IDF/gettexttemplates/idf/wiki/view.html.php:9
+#, 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:7
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
+#: 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/create.html.php:7
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/update.html.php:7
+msgid "Cancel"
+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/delete.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/view.html.php:15
+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/index.html.php:15
+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/view.html.php:17
+#: 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: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/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/delete.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/view.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/WikiRevision.php:175
+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/issues/issue-created-email.txt.php:5
+#: 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/issues/issue-created-email.txt.php:6
+#: 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
+msgid "Submitted by:"
+msgstr "Размещен:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+msgid "Download:"
+msgstr "Загрузить:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-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/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/submit.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/submit.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+"В описании Вы можете использовать Markdown "
+"синтаксис."
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr "Форма содержит ошибки. Пожалуйста исправте их чтобы отправить файл."
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:8
+msgid "Submit File"
+msgstr "Послать файл"
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:10
+#: 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/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/update.html.php:9
+#: IDF/gettexttemplates/idf/wiki/view.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.html.php:34
+msgid "Here we are, just to help you."
+msgstr "Мы здесь, чтобы помогать Вам."
-#: IDF/Views.php:47 IDF/gettexttemplates/idf/faq.html.php:35
-#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:35
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
#: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57
+#: IDF/Views.php:47
msgid "Projects"
msgstr "Проекты"
-#: IDF/Views.php:90 IDF/gettexttemplates/idf/register/index.html.php:6
-msgid "Create Your Account"
-msgstr "Создайте Ваш аккаунт"
-
-#: IDF/Views.php:126 IDF/Views.php:152
-msgid "Confirm Your Account Creation"
-msgstr "Подтвердите создание аккаунта"
-
-#: IDF/Views.php:172
-msgid "Welcome! You can now participate in the life of your project of choice."
-msgstr ""
-"Добро пожаловать! Теперь Вы можете учавствовать в жизни выбранного проекта."
-
-#: IDF/Views.php:198 IDF/Views.php:222 IDF/Views.php:263
-msgid "Password Recovery"
-msgstr "Восстановление пароля"
-
-#: IDF/Views.php:242
-msgid ""
-"Welcome back! Next time, you can use your broswer options to remember the "
-"password."
-msgstr ""
-"Рады Вас снова видеть! Следющий раз Вы можете использовать функцию "
-"сохранения пароля в Вашем браузере."
-
-#: IDF/Views.php:284
-msgid "Here to Help You!"
-msgstr "Здесь чтобы помогать Вам!"
-
-#: IDF/Views.php:300
-msgid "InDefero API (Application Programming Interface)"
-msgstr "InDefero API (Application Programming Interface)"
-
-#: IDF/Scm/Mercurial.php:138 IDF/Scm/Git.php:288
-#, php-format
-msgid "Folder %1$s not found in commit %2$s."
-msgstr ""
-
-#: IDF/Scm/Mercurial.php:155 IDF/Scm/Git.php:404
-#, php-format
-msgid "Not a valid tree: %s."
-msgstr ""
-
-#: IDF/Scm/Monotone/Stdio.php:79
-msgid "Monotone client key name or hash not in project conf."
-msgstr ""
-
-#: IDF/Scm/Monotone/Stdio.php:87 IDF/Plugin/SyncMonotone.php:187
-#, php-format
-msgid "The key directory %s could not be created."
-msgstr ""
-
-#: IDF/Scm/Monotone/Stdio.php:98
-#, php-format
-msgid "Could not write client key \"%s\""
-msgstr ""
-
-#: IDF/Scm/Git.php:237
-#, php-format
-msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s."
-msgstr "Неверное значение параметра %1$s: %2$s. Используйте %3$s."
-
-#: IDF/EmailAddress.php:49 IDF/Key.php:49
-msgid "user"
-msgstr "пользователь"
-
-#: IDF/EmailAddress.php:55
-#, fuzzy
-msgid "email"
-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\", change 123 "
-"with the corresponding issue number.
\n"
+"
Write in the comments \"This is a duplicate of issue 123\", change 123 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"
+"
Напишите в комментарии \"Это дубликат проблемы 123\", замените 123 на соответствующий номер проблемы.
\n"
"
Измените статус текущей проблемы на Дубликат.
\n"
"
Отправьте изменения.
"
#: IDF/gettexttemplates/idf/faq.html.php:9
msgid ""
-"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+"You need to create an account on Gravatar, this takes about 5 minutes "
+"and is free."
msgstr ""
-"Вам необходимо создать учетную запись на Gravatar, это займет около 5 минут и бесплатно."
+"Вам необходимо создать учетную запись на Gravatar, это займет около 5 минут и "
+"это бесплатно."
#: IDF/gettexttemplates/idf/faq.html.php:10
msgid ""
@@ -329,7 +1618,7 @@ msgstr "Узнать больше об API."
#: IDF/gettexttemplates/idf/faq.html.php:12
#: IDF/gettexttemplates/idf/faq.html.php:16
msgid "What are the keyboard shortcuts?"
-msgstr "Какие сочетания клавиш?"
+msgstr "Какие есть сочетания клавиш?"
#: IDF/gettexttemplates/idf/faq.html.php:13
#: IDF/gettexttemplates/idf/faq.html.php:31
@@ -339,13 +1628,12 @@ msgstr "Как пометить проблему как дублирующую?"
#: IDF/gettexttemplates/idf/faq.html.php:14
#: IDF/gettexttemplates/idf/faq.html.php:32
msgid "How can I display my head next to my comments?"
-msgstr "Как я могу вставить мое лицо рядом с моим комментариями?"
+msgstr "Как я могу вставить мое лицо рядом с моими комментариями?"
#: IDF/gettexttemplates/idf/faq.html.php:15
#: IDF/gettexttemplates/idf/faq.html.php:33
-#, fuzzy
msgid "What is the API and how is it used?"
-msgstr "Что такое API и как это использовать?"
+msgstr "Что такое API и как это используется?"
#: IDF/gettexttemplates/idf/faq.html.php:17
msgid "Shift+h: This help page."
@@ -353,7 +1641,7 @@ msgstr "Shift+h: Эта помощь."
#: IDF/gettexttemplates/idf/faq.html.php:18
msgid "If you are in a project, you have the following shortcuts:"
-msgstr "Если вы в проекте, у вас есть следующие ссылки:"
+msgstr "Находясь в проекте можете использовать следующие клавиши:"
#: IDF/gettexttemplates/idf/faq.html.php:19
msgid "Shift+u: Project updates."
@@ -403,10 +1691,938 @@ msgstr "Alt+2: Пропустить меню."
msgid "Alt+4: Search (when available)."
msgstr "Alt+4: Поиск (если доступен)."
-#: IDF/gettexttemplates/idf/faq.html.php:34
-#: IDF/gettexttemplates/idf/faq-api.html.php:3
-msgid "Here we are, just to help you."
-msgstr "Мы здесь, чтобы помогать Вам."
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+msgid "People"
+msgstr "Люди"
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "Usher"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/home.html.php:3
+msgid "You have here access to the administration of the forge."
+msgstr "Вы здесь имеете доступ к администрированию хранилища."
+
+#: IDF/gettexttemplates/idf/gadmin/home.html.php:4
+#: IDF/gettexttemplates/idf/project/home.html.php:3
+#: IDF/gettexttemplates/idf/project/timeline.html.php:4
+msgid "Welcome"
+msgstr "Добро пожаловать"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Project List"
+msgstr "Список проектов"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/index.html.php:5 IDF/Views/Admin.php:128
+msgid "Create Project"
+msgstr "Создать проект"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+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."
+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/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:17
+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:201
+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:358
+msgid "Usher control"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+msgid "address"
+msgstr ""
+
+#: 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
+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
+msgid "server name"
+msgstr "имя сервера"
+
+#: 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
+msgid "action"
+msgstr ""
+
+#: 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
+msgid "stop"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+msgid "start"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+msgid "kill"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+msgid "active connections"
+msgstr ""
+
+#: 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
+msgid "server with n open connections"
+msgstr ""
+
+#: 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
+msgid "local server not running, waiting for connections"
+msgstr ""
+
+#: 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
+msgid "local server not running, not accepting connections"
+msgstr ""
+
+#: 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:4
+msgid "No projects managed with InDefero were found."
+msgstr "Проектов под управлением InDefero не найдено."
+
+#: IDF/gettexttemplates/idf/index.html.php:9
+msgid "Forge statistics"
+msgstr "Статистика хранилища"
+
+#: IDF/gettexttemplates/idf/index.html.php:10
+msgid "Projects:"
+msgstr "Проектов:"
+
+#: IDF/gettexttemplates/idf/index.html.php:11
+msgid "Members:"
+msgstr "Участников:"
+
+#: IDF/gettexttemplates/idf/index.html.php:12
+msgid "Issues:"
+msgstr "Проблем:"
+
+#: IDF/gettexttemplates/idf/index.html.php:13
+msgid "Commits:"
+msgstr "Коммитов:"
+
+#: IDF/gettexttemplates/idf/index.html.php:14
+msgid "Documentations:"
+msgstr "Документаций:"
+
+#: IDF/gettexttemplates/idf/index.html.php:16
+msgid "Code reviews:"
+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/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
+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/delete.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/view.html.php:14
+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:6
+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
+#, php-format
+msgid ""
+"The issue tracker is empty. You can create your first issue here."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+msgid "Status Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+msgid "Unresolved: By Assignee"
+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
+msgid "Click here to view the previous closed issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
+msgid "Click here to view the previous open issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
+msgid "Click here to view the next closed issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
+msgid "Click here to 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/login_form.html.php:3
+#, php-format
+msgid ""
+"If you don't have an account yet, you can create one here."
+msgstr ""
+"Если у Вас еще нет учетной записи Вы можете создать ее здесь."
+
+#: 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:9 IDF/Views/Admin.php:42
+msgid "Forge Management"
+msgstr "Управление хранилищем"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:10
+msgid "Help and accessibility features"
+msgstr "Справка и специальные возможности"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
+#: 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: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
+#: IDF/gettexttemplates/idf/project/home.html.php:8
+msgid "show more..."
+msgstr "еще..."
+
+#: IDF/gettexttemplates/idf/project/home.html.php:7
+msgid "Featured Documentation"
+msgstr "Рекомендуемая документация"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:9
+msgid "Development Team"
+msgstr "Команда разработчиков"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:10
+msgid "Admins"
+msgstr "Администраторы"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:11
+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/register/confirmation-email.txt.php:3
#, php-format
@@ -437,110 +2653,37 @@ msgid ""
"Yours faithfully,\n"
"The development team.\n"
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
-#, fuzzy
-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:5
-#: IDF/gettexttemplates/idf/register/index.html.php:7
-#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
-#: 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/user/myaccount.html.php:13
-#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
-#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
-#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
-#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
-#: IDF/gettexttemplates/idf/wiki/create.html.php:7
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:10
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7
-#: IDF/gettexttemplates/idf/wiki/update.html.php:7
-#: IDF/gettexttemplates/idf/review/create.html.php:12
-#: IDF/gettexttemplates/idf/review/view.html.php:43
-#: IDF/gettexttemplates/idf/issues/create.html.php:14
-#: IDF/gettexttemplates/idf/issues/view.html.php:25
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
-#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:8
-msgid "Cancel"
-msgstr "Отмена"
-
-#: 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
-#: IDF/gettexttemplates/idf/downloads/submit.html.php:10
-msgid "Instructions"
-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/register/index.html.php:3
-msgid ""
-"Read the terms and conditions "
-"– basically \"Please be nice, we respect you\"."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/register/index.html.php:4
-#, 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:5
-#, fuzzy
-msgid "Oops, please check the provided login and email address to register."
-msgstr ""
-"Упс, пожалуйста, проверьте логин и адрес электронной почты для регистрации."
-
-#: IDF/gettexttemplates/idf/register/index.html.php:8
-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:9
-msgid "Did you know?"
-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
-#, fuzzy
msgid "Oops, please check the form for errors."
-msgstr "Упс, пожалуйста, проверьте форму на наличие ошибок."
-
-#: IDF/gettexttemplates/idf/register/confirmation.html.php:4
-#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
-#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
-#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
-msgid "Login:"
-msgstr "Логин:"
+msgstr ""
#: IDF/gettexttemplates/idf/register/confirmation.html.php:5
#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5
@@ -549,990 +2692,406 @@ msgstr "Эл. почта:"
#: IDF/gettexttemplates/idf/register/confirmation.html.php:6
msgid "Enable Your Account"
-msgstr "Включите Ваш аккаунт"
+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."
+"This is the last step, but just be sure to have the cookies "
+"enabled to log in afterwards."
msgstr ""
-"Это последний шаг, но убедитесь, что включены cookies чтобы "
-"войдите потом."
+"Это последний шаг, но убедитесь, что включены cookies чтобы"
+" войдите потом."
-#: IDF/gettexttemplates/idf/index.atom.php:3
-#, php-format
-msgid "Personal project feed for %%user%%."
-msgstr "Personal project feed for %%user%%."
-
-#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
+#: IDF/gettexttemplates/idf/register/index.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."
+"Read the terms and conditions "
+"– basically \"Please be nice, we respect you\"."
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.
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/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:16
-#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
-#: IDF/gettexttemplates/idf/index.html.php:5 IDF/Views/Admin.php:128
-msgid "Create Project"
-msgstr "Создать проект"
-
-#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
-#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:16
-msgid "Instructions:"
-msgstr "Инструкции:"
-
-#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3
+#: IDF/gettexttemplates/idf/register/index.html.php:4
#, php-format
msgid ""
-"Confirmation code to confirm the deletion of the project: \n"
-"%%code%%."
+"If you have just forgotten your login information, then there is no need to "
+"create a new account. Just go here to recover your "
+"login name and password."
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:14
-#: IDF/gettexttemplates/idf/base-full.html.php:5
-#: IDF/gettexttemplates/idf/admin/base.html.php:4
-#: IDF/gettexttemplates/idf/downloads/base.html.php:3
-#: IDF/gettexttemplates/idf/base.html.php:5 IDF/Views/Project.php:75
-#: IDF/Form/TabsConf.php:38
-msgid "Downloads"
-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:73
-msgid "Commits"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17
-#: IDF/gettexttemplates/idf/base-full.html.php:7
-#: IDF/gettexttemplates/idf/base.html.php:7 IDF/Form/TabsConf.php:42
-msgid "Issues"
-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-updated-email.txt.php:16
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11
-msgid "Attachments:"
-msgstr "Вложения:"
-
-#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6
-#: IDF/gettexttemplates/idf/index.html.php:13
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:10
-#: IDF/gettexttemplates/idf/downloads/view.html.php:15
-msgid "Downloads:"
-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:3
-#: IDF/gettexttemplates/idf/admin/members.html.php:3
-msgid ""
-"\n"
-"
Instructions:
\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"
-"
Разделяйте логины запятыми и/или новой строкой.
\n"
-
-#: 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:18
-#: IDF/gettexttemplates/idf/wiki/view.html.php:12
-#: IDF/gettexttemplates/idf/wiki/update.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:10
-msgid "Trash"
-msgstr "Мусор"
-
-#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21
-msgid "You will be asked to confirm."
-msgstr "Будет выдан запрос для подтвеждения."
-
-#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
-#: IDF/gettexttemplates/idf/main-menu.html.php:6
-msgid "Project List"
-msgstr "Список проектов"
-
-#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
-msgid "Change Project Details"
-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:4
-#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5
-msgid "Create 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
+#: IDF/gettexttemplates/idf/register/index.html.php:5
#, 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"
+"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/gadmin/users/index.html.php:3
-#, php-format
-msgid "See not validated users."
-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/gadmin/users/index.html.php:4
-msgid "
You have here an overview of the users registered in the forge.
"
-msgstr "
Обзор всех пользователей, зарегистрированных на сервере.
"
+#: IDF/gettexttemplates/idf/register/index.html.php:7 IDF/Views.php:90
+msgid "Create Your Account"
+msgstr "Создайте Вашу учетную запись"
-#: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5
-msgid "Number of users:"
-msgstr "Количество пользователей:"
-
-#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:3
+#: IDF/gettexttemplates/idf/register/index.html.php:9
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"
+"Be sure to provide a valid email address, as we are sending a validation "
+"link by email."
msgstr ""
-"Если вы хотите изменить адрес электронной почты\n"
-"пользователя, вы должны убедиться, что\n"
-"предоставляете действительный адрес."
+"Не забудьте указать действительный адрес электронной почты, т.к. на него "
+"будет оправлена ссылка для подтверждения регистрации."
-#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:6
+#: 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 ""
-"If you give the user staff rights, the user will be\n"
-"able to create new projects and update other non staff users.\n"
+"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/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: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/users/update.html.php:13
-#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4
-msgid "Update User"
-msgstr "Обновить пользователя"
-
-#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3
-#: IDF/Views/Admin.php:201
-msgid "User List"
-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:10
-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
+#: IDF/gettexttemplates/idf/register/inputkey.html.php:8
msgid ""
-"usher is shut down, all local servers are stopped and not accepting "
-"connections"
+"Just after providing the confirmation key, you will be able to set your "
+"password and start using this website fully."
msgstr ""
+"Сразу после предоставления ключа подтверждения вы сможете установить пароль "
+"и начать работу с этим сайтом в полном объеме."
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:3
-msgid "server name"
+#: 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.
\n"
+"
Check your patch does not provide any password or confidential information!
\n"
+"
"
msgstr ""
+"
Для начала аудита кода Вам необходимо указать:
\n"
+"
\n"
+"
Комит или ревизию исходного кода в репозитории над котором вы работали.
\n"
+"
Патч описывающий Ваши изменения с учетом исходного комита.
\n"
+"
Проверьте, что Вы не указали в патче какие-либо пароли или другую конфиденциальную информацияю!
\n"
+"
"
-#: 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
-msgid "action"
+#: 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/gadmin/usher/index.html.php:6
-msgid "stop"
+#: 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/gadmin/usher/index.html.php:7
-msgid "start"
-msgstr ""
+#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:3
+msgid "The following review has been created:"
+msgstr "Следующая рецензия была создана:"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
-msgid "kill"
-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/gadmin/usher/index.html.php:9
-msgid "active connections"
-msgstr ""
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3
+msgid "The following review has been updated:"
+msgstr "Следющая рецензия была обновлена:"
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11
-msgid "remote server without open connections"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12
-msgid "server with n open connections"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13
-msgid "local server running, without open connections"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14
-msgid "local server not running, waiting for connections"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15
-msgid "local server is about to stop, n connections still open"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:16
-msgid "local server not running, not accepting connections"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17
-msgid "usher is shut down, not running and not accepting connections"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
-msgid "address"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4
-msgid "port"
-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:358
-msgid "Usher control"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
-msgid "People"
-msgstr "Люди"
-
-#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
-msgid "Usher"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/gadmin/home.html.php:3
-msgid "You have here access to the administration of the forge."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/gadmin/home.html.php:4
-#: IDF/gettexttemplates/idf/project/timeline.html.php:4
-#: IDF/gettexttemplates/idf/project/home.html.php:3
-msgid "Welcome"
-msgstr "Добро пожаловать"
-
-#: IDF/gettexttemplates/idf/login_form.html.php:3
+#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5
#, php-format
msgid ""
-"If you don't have an account yet, you can create one here."
+"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/login_form.html.php:4
-msgid "What is your account information?"
+#: 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/login_form.html.php:5
-msgid "My login is"
-msgstr "Мой логин"
-
-#: IDF/gettexttemplates/idf/login_form.html.php:6
-msgid "My password is"
+#: 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"
+"Предложение кода для рецензирования пугает. Знайте, вы будете получать критику, поэтому, пожалуйста, как рецензент, воспринимать этот процесс с улыбкой, использовать его, чтобы помочь вашей команде узнать ваши стандарты кодирования и структуры кода и сделать так, что бы они продолжили участие в проекте .\n"
-#: 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/user/public.html.php:3
+#: IDF/gettexttemplates/idf/review/view.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html.php:3
#, php-format
-msgid "You are looking at the public profile of %%member%%."
-msgstr "Вы просматриваете публичный профиль %%member%%."
+msgid "%%ndiff%% diff"
+msgid_plural "%%ndiff%% diffs"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
-#: IDF/gettexttemplates/idf/user/public.html.php:4
-#: IDF/gettexttemplates/idf/review/view.html.php:30
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
-#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
-msgid "Description:"
-msgstr "Описание:"
+#: 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/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/user/changeemail-email.txt.php:3
+#: IDF/gettexttemplates/idf/review/view.html.php:20
#, 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"
+"Comment %%i%% by %%who%%,"
+" %%c.creation_dtime%%"
msgstr ""
+"Комментарий %%i%%%%who%%, %%c.creation_dtime%%"
-#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3
+#: IDF/gettexttemplates/idf/review/view.html.php:21
#, 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 ""
+msgid "Your comments on the changes in file %%file%%:"
+msgstr "Ваши комментарии на изменения в файле %%file%%:"
-#: IDF/gettexttemplates/idf/user/myaccount.html.php:6
-msgid "Key Management"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/user/myaccount.html.php:7
-msgid "Secondary Emails"
-msgstr ""
-
-#: 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
-#, fuzzy
-msgid "Your additional email addresses"
-msgstr "Подтвердите ваш новый адрес электронной почты."
-
-#: IDF/gettexttemplates/idf/user/myaccount.html.php:17
-#, fuzzy
-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/dashboard.html.php:3
+#: IDF/gettexttemplates/idf/review/view.html.php:23
#, php-format
-msgid "Update your account."
-msgstr "Изменить Ваш аккаунт."
+msgid "Sign in to participate in the review."
+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/dashboard.html.php:6
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7
-msgid "Working issues:"
-msgstr "Проблемы в работе:"
-
-#: IDF/gettexttemplates/idf/user/dashboard.html.php:7
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:6
-msgid "Submitted issues:"
-msgstr "Отправленные проблемы:"
-
-#: 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
+#: IDF/gettexttemplates/idf/review/view.html.php:24
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."
+"The form contains some errors. Please correct them to submit your review."
msgstr ""
-"Запустите ваше ПО для чтения электронной почты и откройте письмо с "
-"подтверждением. Либо нажмите непосредственно на ссылку подтверждения или "
-"скопируйте и вставьте проверочный ключ в форму и нажмите Отправить."
+"Форма содержит ошибки. Пожалуйста исправьте их чтобы отправить вашу "
+"рецензию."
-#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4
-msgid "Recover Your Password"
-msgstr "Восстановить пароль"
-
-#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:8
-#, fuzzy
-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/passrecovery-ask.html.php:3
-#, fuzzy
-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/wiki/create.html.php:3
-#: IDF/gettexttemplates/idf/wiki/update.html.php:3
-msgid "Preview of the Page"
-msgstr "Предпросмотр страницы"
-
-#: IDF/gettexttemplates/idf/wiki/create.html.php:4
-msgid "The form contains some errors. Please correct them to create the page."
-msgstr "Форма содержит ошибки. Пожалуйста исправтье их чтобы создать страницу."
-
-#: IDF/gettexttemplates/idf/wiki/create.html.php:5
-#: IDF/gettexttemplates/idf/wiki/update.html.php:5
-#: IDF/gettexttemplates/idf/issues/create.html.php:11
-#: IDF/gettexttemplates/idf/issues/create.html.php:13
-#: IDF/gettexttemplates/idf/issues/view.html.php:22
-#: IDF/gettexttemplates/idf/issues/view.html.php:24
-msgid "Preview"
-msgstr "Предпросмотр"
-
-#: IDF/gettexttemplates/idf/wiki/create.html.php:6
-msgid "Create Page"
-msgstr "Создать страницу"
-
-#: IDF/gettexttemplates/idf/wiki/delete.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 ""
-
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:6
-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/delete.html.php:7
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:8
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:4
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:5
-#: IDF/gettexttemplates/idf/wiki/view.html.php:8
-#: IDF/gettexttemplates/idf/wiki/view.html.php:9
-#: IDF/gettexttemplates/idf/issues/view.html.php:7
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
-#: IDF/gettexttemplates/idf/downloads/view.html.php:4
-#, php-format
-msgid "by %%submitter%%"
-msgstr "%%submitter%%"
-
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:9
-msgid "Delete Revision"
-msgstr "Удалить ревизию"
-
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:11
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:8
-#: IDF/gettexttemplates/idf/wiki/view.html.php:14
#: IDF/gettexttemplates/idf/review/view.html.php:25
-#: IDF/gettexttemplates/idf/issues/view.html.php:26
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
-msgid "Created:"
-msgstr "Создан:"
+msgid "How to Participate in a Code Review"
+msgstr "Как принять участие в рецензировании кода"
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:12
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:9
-#: IDF/gettexttemplates/idf/wiki/view.html.php:15
-#: IDF/gettexttemplates/idf/review/view.html.php:26
-#: IDF/gettexttemplates/idf/issues/view.html.php:27
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:14
-msgid "Updated:"
-msgstr "Обновлено:"
+#: IDF/gettexttemplates/idf/review/view.html.php:28
+#: IDF/gettexttemplates/idf/source/commit.html.php:5
+msgid "Author:"
+msgstr "Автор:"
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:14
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:11
-#: IDF/gettexttemplates/idf/wiki/view.html.php:17
-msgid "Old Revisions"
-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
+msgid "Commit:"
+msgstr "Комит:"
-#: 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"
-"
To directly include a file content from the repository, embrace its path "
-"with triple square brackets: [[[path/to/file.txt]]].
\n"
-msgstr ""
+#: IDF/gettexttemplates/idf/review/view.html.php:30
+#: IDF/gettexttemplates/idf/source/commit.html.php:8
+msgid "View corresponding source tree"
+msgstr "Просмотреть соответствующие дерево исходных текстов"
-#: IDF/gettexttemplates/idf/wiki/search.html.php:3
-#: IDF/gettexttemplates/idf/wiki/index.html.php:4
-#: IDF/gettexttemplates/idf/wiki/base.html.php:4 IDF/Views/Wiki.php:175
-msgid "New Page"
-msgstr "Новая страница"
+#: IDF/gettexttemplates/idf/review/view.html.php:32
+msgid "Reviewers:"
+msgstr "Рецензенты:"
-#: IDF/gettexttemplates/idf/wiki/search.html.php:4
-msgid "Pages found:"
-msgstr "Страниц найдено:"
+#: IDF/gettexttemplates/idf/review/view.html.php:33
+msgid "No reviewers at the moment."
+msgstr "Нет рецензентов в данный момент."
-#: IDF/gettexttemplates/idf/wiki/feedfragment.xml.php:3
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:10
-#: IDF/gettexttemplates/idf/source/commit.html.php:12
-#: IDF/gettexttemplates/idf/source/commit.html.rej.php:4
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:12
-msgid "Changes:"
-msgstr "Изменения:"
+#: IDF/gettexttemplates/idf/review/view.html.php:34
+msgid "Files:"
+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/review/view.html.php:36
+#: IDF/gettexttemplates/idf/source/commit.html.php:24
+msgid "Download the corresponding diff file"
+msgstr "Скачать соответствующий diff файл."
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:6
-msgid "Delete Page"
-msgstr "Удалить страницу"
+#: IDF/gettexttemplates/idf/review/view.html.php:37
+msgid "General Comments"
+msgstr "Общие комментарии"
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
-msgid "The following documentation page has been updated:"
-msgstr "Следующая страница документации была обновлена:"
+#: IDF/gettexttemplates/idf/review/view.html.php:40
+msgid "Submit Code Review"
+msgstr "Отправить рецензию на код"
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:4
-#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:4
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:4
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:8
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:4
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:5
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:5
-#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4
-msgid "Hello,"
-msgstr "Привет,"
+#: IDF/gettexttemplates/idf/source/base.html.php:3
+msgid "Source Tree"
+msgstr "Исходный код"
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:5
-#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:5
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:6
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:9
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:5
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:6
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:6
-#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:5
-msgid "Project:"
-msgstr "Проект: "
+#: IDF/gettexttemplates/idf/source/base.html.php:4
+msgid "Change Log"
+msgstr "История изменений"
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
-msgid "Updated by:"
-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:188
+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
+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/wiki/wiki-updated-email.txt.php:8
-#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:6
#: 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/wiki/wiki-updated-email.txt.php:13
-msgid "New content:"
-msgstr "Новое содержимое:"
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8
+msgid "Created at:"
+msgstr "Создан:"
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14
-#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9
-msgid "Documentation page:"
-msgstr "Страница документации:"
-
-#: IDF/gettexttemplates/idf/wiki/index.html.php:3
-#, php-format
-msgid "See the deprecated pages."
-msgstr "Смотреть устаревшие страницы."
-
-#: IDF/gettexttemplates/idf/wiki/index.html.php:5
-msgid "Number of pages:"
-msgstr "Количество страниц:"
-
-#: IDF/gettexttemplates/idf/wiki/view.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/view.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/view.html.php:10
-msgid "Table of Content"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/wiki/view.html.php:11
-#: IDF/gettexttemplates/idf/wiki/view.html.php:13
-msgid "Delete this revision"
-msgstr "Удалить эту ревизию"
-
-#: IDF/gettexttemplates/idf/wiki/update.html.php:4
-msgid "The form contains some errors. Please correct them to update the page."
-msgstr "Форма содержит ошибки. Пожалуйста исправте их чтобы обновить страницу."
-
-#: IDF/gettexttemplates/idf/wiki/update.html.php:6
-msgid "Update Page"
-msgstr "Обновить страницу"
-
-#: IDF/gettexttemplates/idf/wiki/update.html.php:8
-#: IDF/gettexttemplates/idf/wiki/update.html.php:10
-#: IDF/gettexttemplates/idf/wiki/update.html.php:11
-msgid "Delete this page"
-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:8
#: 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/wiki/base.html.php:3
-msgid "List Pages"
-msgstr "Список страниц"
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10
+msgid "Commit details:"
+msgstr "Детали комита:"
-#: IDF/gettexttemplates/idf/wiki/base.html.php:5
-msgid "Update This Page"
-msgstr "Обновить эту страницу"
+#: IDF/gettexttemplates/idf/source/commit.html.php:4
+msgid "Date:"
+msgstr "Дата:"
-#: IDF/gettexttemplates/idf/wiki/base.html.php:6
-#: IDF/gettexttemplates/idf/issues/base.html.php:7
-msgid "Search"
-msgstr "Искать"
+#: IDF/gettexttemplates/idf/source/commit.html.php:6
+msgid "Branch:"
+msgstr "Ветка:"
-#: 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."
+#: IDF/gettexttemplates/idf/source/commit.html.php:9
+msgid "Parents:"
msgstr ""
-#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5
-msgid "The following list shows all available branches:"
+#: IDF/gettexttemplates/idf/source/commit.html.php:11
+msgid "Message:"
+msgstr "Сообщение:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:12
+#: IDF/gettexttemplates/idf/wiki/feedfragment.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:10
+msgid "Changes:"
+msgstr "Изменения:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:13
+msgid "deleted"
msgstr ""
-#: IDF/gettexttemplates/idf/source/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."
+#: IDF/gettexttemplates/idf/source/commit.html.php:14
+#: IDF/gettexttemplates/idf/source/commit.html.php:18
+msgid "full"
+msgstr ""
+
+#: 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
+msgid "added"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
+msgid "modified"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
+msgid "properies changed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
+msgid "removed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
+msgid "File differences"
msgstr ""
#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:3
@@ -1562,404 +3121,74 @@ msgstr ""
msgid "Revision"
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:5
-#: IDF/gettexttemplates/idf/source/commit.html.php:7
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:7
-#: IDF/gettexttemplates/idf/review/view.html.php:28
-msgid "Commit:"
-msgstr "Комит:"
-
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8
-msgid "Created at:"
-msgstr "Создан:"
-
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10
-msgid "Commit details:"
-msgstr "Детали комита:"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:3
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:3
-#: IDF/gettexttemplates/idf/review/view.html.php:3
-#, php-format
-msgid "%%ndiff%% diff"
-msgid_plural "%%ndiff%% diffs"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:4
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:4
-msgid "Date:"
-msgstr "Дата:"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:5
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:5
-#: IDF/gettexttemplates/idf/review/view.html.php:27
-msgid "Author:"
-msgstr "Автор:"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:6
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:6
-msgid "Branch:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:8
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:8
-#: IDF/gettexttemplates/idf/review/view.html.php:29
-msgid "View corresponding source tree"
-msgstr "Просмотреть соответствующие дерево исходных текстов"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:9
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:9
-msgid "Parents:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:10
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:10
-#: IDF/gettexttemplates/idf/source/changelog.html.php:6
-msgid "View corresponding commit"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:11
-#: IDF/gettexttemplates/idf/source/commit.html.rej.php:3
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:11
-msgid "Message:"
-msgstr "Сообщение:"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:13
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:13
-msgid "deleted"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:14
-#: IDF/gettexttemplates/idf/source/commit.html.php:17
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:14
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:17
-msgid "full"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:15
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:15
-msgid "renamed"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:16
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:16
-msgid "added"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:18
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:18
-msgid "modified"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:19
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:19
-msgid "properies changed"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:20
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:20
-msgid "removed"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:21
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:21
-msgid "File differences"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:22
-#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:22
-#: IDF/gettexttemplates/idf/source/git/file.html.php:6
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
-#: IDF/gettexttemplates/idf/review/view.html.php:34
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
-msgid "Archive"
-msgstr "Архив"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:23
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:23
-#: IDF/gettexttemplates/idf/review/view.html.php:35
-msgid "Download the corresponding diff file"
-msgstr "Скачать соответствующий diff файл."
-
#: 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/mtn/branch_tag_list.html.php:3
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3
#: 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/mtn/branch_tag_list.html.php:4
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:4
#: 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 ""
+msgstr "фильтровать бранчи"
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:5
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:5
#: 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/mtn/branch_tag_list.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:6
#: 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 ""
+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
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:3
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:3
#: IDF/gettexttemplates/idf/source/git/file.html.php:3
#: IDF/gettexttemplates/idf/source/git/tree.html.php:3
-#, php-format
-msgid ""
-"Source at commit %%commit%% created %%"
-"cobject.date%%."
-msgstr ""
-"Исходный код в комите %%commit%% "
-"создан %%cobject.date%%."
-
+#: 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
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:4
-#: IDF/gettexttemplates/idf/source/mercurial/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
-#, php-format
-msgid "By %%cobject.author%%, %%cobject.title%%"
-msgstr "%%cobject.author%%, %%cobject.title%%"
-
+#: 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
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:5
-#: IDF/gettexttemplates/idf/source/mercurial/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/mtn/file.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:9
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
-#: IDF/gettexttemplates/idf/source/git/file.html.php:7
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
-msgid "Download this file"
-msgstr "Скачать этот файл"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
-#: IDF/Views/Download.php:64 IDF/Views/Download.php:292 IDF/Form/Upload.php:59
-msgid "File"
-msgstr "Файл"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7
-#: IDF/gettexttemplates/idf/source/changelog.html.php:3
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:7
-#: IDF/Views/Project.php:152
-msgid "Age"
-msgstr "Возраст"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8
-#: IDF/gettexttemplates/idf/source/changelog.html.php:4
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:8
-msgid "Message"
-msgstr "Сообщение"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:9
-#: IDF/Views/Download.php:66 IDF/Views/Download.php:294
-msgid "Size"
-msgstr "Размер"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:10
-msgid ":"
-msgstr ":"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:12
-msgid "Download this version"
-msgstr "Скачать эту версию"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:13
-msgid "or"
-msgstr "или"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:14
-#: IDF/gettexttemplates/idf/main-menu.html.php:10
-msgid "Help"
-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 ""
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6
-#: IDF/gettexttemplates/idf/source/git/help.html.php:7
-msgid "To make a first commit in the repository, perform the following steps:"
-msgstr ""
-"Чтобы сделать первый комит в репозиторий, выполните следующие действия:"
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/help.html.php:7
-#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7
-#: IDF/gettexttemplates/idf/source/git/help.html.php:8
-#, php-format
-msgid "Find here more details on how to access %%project%% source code."
-msgstr ""
-"Найти здесь более подробную информацию о том, как получить доступ к "
-"исходному коду проекта %%project%%."
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8
-#: IDF/gettexttemplates/idf/source/svn/help.html.php:8
-#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8
-#: IDF/gettexttemplates/idf/source/git/help.html.php:9
-msgid "Command-Line Access"
-msgstr "Доступ к командной строке"
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9
-#: IDF/gettexttemplates/idf/source/git/help.html.php:10
-msgid "First Commit"
-msgstr "Первый комит"
-
-#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
-#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3
-msgid "Revision:"
-msgstr "Ревизия:"
-
-#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
-#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4
-msgid "Go to revision"
-msgstr "Перейти к ревизии"
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11
-msgid "Property"
-msgstr "Собственность"
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12
-msgid "set to:"
-msgstr "установить в:"
-
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8
-msgid "Rev"
-msgstr "Рев"
-
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
-msgid "Branches:"
-msgstr "Бранчи:"
-
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18
-msgid "Tags:"
-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/help.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/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/svn/help.html.php:9
-#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9
-msgid "Write Access Authentication"
-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 ""
-
-#: 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:5
-#: IDF/gettexttemplates/idf/source/changelog.html.php:7
-#: IDF/Form/ReviewCreate.php:74
-msgid "Commit"
-msgstr "Комит"
-
-#: IDF/gettexttemplates/idf/source/base.html.php:6
-msgid "How To Get The Code"
-msgstr "Как получить код"
-
-#: IDF/gettexttemplates/idf/source/changelog.html.php:5
-msgid "Parent:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/changelog.html.php:8
-msgid "by"
-msgstr " "
-
#: IDF/gettexttemplates/idf/source/git/help.html.php:3
#, php-format
msgid ""
@@ -1968,877 +3197,674 @@ msgid ""
"code."
msgstr ""
"Команда проекта %%project%% использует\n"
-"git для управления исходными текстами."
+"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."
+"more about SSH "
+"key authentication."
msgstr ""
+"Возможно Вам потребуется указать ваш SSH ключ. "
+"Синхронизация ключа может занять некоторое время. Вы можете найти больше "
+"информации про авторизацию"
+" по SSH ключу."
-#: IDF/gettexttemplates/idf/main-menu.html.php:3
+#: 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:314
+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
#, 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:7
-#: IDF/gettexttemplates/idf/index.html.php:6
-#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77
-msgid "Private project"
-msgstr "Частный проект"
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42
-msgid "Forge Management"
-msgstr "Управление сервером"
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:9
-msgid "Help and accessibility features"
-msgstr "Справка и специальные возможности"
-
-#: IDF/gettexttemplates/idf/index.html.php:4
-msgid "No projects managed with InDefero were found."
-msgstr "Нет проектов управляемых InDefero найдено."
-
-#: IDF/gettexttemplates/idf/index.html.php:7
-#, fuzzy
-msgid "Forge statistics"
-msgstr "Статистика проекта"
-
-#: IDF/gettexttemplates/idf/index.html.php:8
-msgid "Projects:"
+"The branch or revision %%commit%% is not valid or does not exist\n"
+"in this repository."
msgstr ""
-#: IDF/gettexttemplates/idf/index.html.php:9
-msgid "Members:"
+#: IDF/gettexttemplates/idf/source/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/index.html.php:10
-msgid "Issues:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:11
-msgid "Commits:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:12
-msgid "Documentations:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:14
-msgid "Code reviews:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/base-full.html.php:3
-#: IDF/gettexttemplates/idf/base.html.php:3
+#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/invalid_revision.html.php:6
#, php-format
msgid ""
-"Sign in or create your account to create issues or "
-"add comments"
+"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/base-full.html.php:4
-#: IDF/gettexttemplates/idf/base.html.php:4
-msgid "Project Home"
-msgstr "Проект"
-
-#: IDF/gettexttemplates/idf/base-full.html.php:6
-#: IDF/gettexttemplates/idf/admin/base.html.php:5
-#: IDF/gettexttemplates/idf/base.html.php:6 IDF/Form/TabsConf.php:40
-msgid "Documentation"
-msgstr "Документация"
-
-#: IDF/gettexttemplates/idf/base-full.html.php:8
-#: IDF/gettexttemplates/idf/admin/base.html.php:7
-#: IDF/gettexttemplates/idf/base.html.php:8 IDF/Form/TabsConf.php:41
-msgid "Source"
-msgstr "Исходный код"
-
-#: IDF/gettexttemplates/idf/base-full.html.php:9
-#: IDF/gettexttemplates/idf/base.html.php:9 IDF/Form/TabsConf.php:39
-msgid "Code Review"
-msgstr "Аудит кода"
-
-#: IDF/gettexttemplates/idf/base-full.html.php:10
-#: IDF/gettexttemplates/idf/base.html.php:10
-msgid "Project Management"
-msgstr "Управление проектом"
-
-#: IDF/gettexttemplates/idf/review/create.html.php:3
-#, fuzzy
-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"
-"
Версии программного обеспечения и операционной системы.
\n"
-"
Любая информация, которая поможет разработчикам решить проблему.
\n"
-"
Не добавляйте никаких паролей или конфиденциальной информации!"
-"strong>
\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/create.html.php:11
-#: IDF/gettexttemplates/idf/review/index.html.php:3
-#: IDF/gettexttemplates/idf/review/base.html.php:4 IDF/Views/Review.php:83
-msgid "Start Code 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:4
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4
-#, php-format
-msgid "By %%who%%, %%c.creation_dtime%%:"
-msgstr "%%who%%, %%c.creation_dtime%%:"
-
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3
#, php-format
msgid ""
-"By %%who%%, %%c.creation_dtime%%, on file:\n"
-"%%c.cfile%%\n"
+"The team behind %%project%% is using\n"
+"the Mercurial software to manage the source\n"
+"code."
msgstr ""
-"By %%who%%, %%c.creation_dtime%%, on file:\n"
-"%%c.cfile%%\n"
+"Команда %%project%% использует Mercurial для управления "
+"исходным кодом."
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:11
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:7
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:8
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:8
-msgid "Reported by:"
-msgstr "Сообщил:"
-
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9
-msgid "URL:"
-msgstr "URL:"
-
-#: 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/review-updated-email.txt.php:16
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10
-msgid "Review:"
-msgstr "Рецензия:"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:4
+#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6
+#: IDF/gettexttemplates/idf/source/svn/help.html.php:6
#, php-format
-msgid "%%nc%% comment"
-msgid_plural "%%nc%% comments"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:5
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"
+"To get write access to the repository, you need to use your username and "
+"your extra password."
msgstr ""
-"Рецензирование кода - это процесс, при котором до или после комитов "
-"отправленых в репозиторий, разные люди обсуждают изменения в коде. Целью "
-"является улучшение качества кода и участия, таким образом, "
-"вы должны быть прагматичными при написании обзора. Правильно отметить номера "
-"строк (в старом или в новом файле) и попытаться сохранить хороший баланс "
-"между серьезностью и шуткой.\n"
+"Чтобы получить доступ на запись в репозиторий, вам необходимо использовать "
+"свое имя пользователя и дополнительный пароль."
-#: IDF/gettexttemplates/idf/review/view.html.php:13
+#: 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/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/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
+#, 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"
-"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 ""
+"To confirm that you want %%email%%\n"
+"to be your new email address, just follow this link:\n"
"\n"
-"Предложение кода для рецензирования пугает. Знайте, вы "
-"будете получать критику, поэтому, пожалуйста, как рецензент, "
-"воспринимать этот процесс с улыбкой, использовать его, "
-"чтобы помочь вашей команде узнать ваши стандарты кодирования и структуры "
-"кода и сделать так, что бы они продолжили участие в проекте"
-"strong> .\n"
-
-#: 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:22
-#: IDF/gettexttemplates/idf/issues/view.html.php:4
-#, php-format
-msgid ""
-"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%"
-msgstr ""
-"Комментированно %%i%% %%submitter%%, %%c."
-"creation_dtime%%"
-
-#: 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:31
-msgid "Reviewers:"
-msgstr "Рецензенты:"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:32
-msgid "No reviewers at the moment."
-msgstr "Нет рецензентов в данный момент."
-
-#: IDF/gettexttemplates/idf/review/view.html.php:33
-msgid "Files:"
-msgstr "Файлы:"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:36
-msgid "How to Participate in a Code Review"
-msgstr "Как принять участие в рецензировании кода"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:37
-msgid "Old"
-msgstr "Старый"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:38
-msgid "New"
-msgstr "Новый"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:39
-msgid "General Comments"
-msgstr "Общие комментарии"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:42
-msgid "Submit Code Review"
-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/review-created-email.txt.php:3
-msgid "The following review has been created:"
-msgstr "Следующая рецензия была создана:"
-
-#: IDF/gettexttemplates/idf/admin/members.html.php:13
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:15
-#: IDF/gettexttemplates/idf/admin/summary.html.php:8
-#: IDF/gettexttemplates/idf/admin/wiki.html.php:8
-#: IDF/gettexttemplates/idf/admin/source.html.php:31
-#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8
-#: IDF/gettexttemplates/idf/admin/downloads.html.php:8
-msgid "Save Changes"
-msgstr "Сохранить изменения"
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
-msgid ""
+"%%url%%\n"
"\n"
-"Only project members and admins have write access to the source. \n"
-"If you restrict the access to the source, anonymous access is \n"
-"not provided and the users must authenticate themselves with their \n"
-"password or SSH key."
+"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/admin/tabs.html.php:8
+#: 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 ""
-"You can configure here the project tabs access rights and notification "
-"emails."
+"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/admin/tabs.html.php:9
+#: 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 ""
-"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."
+"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/admin/tabs.html.php:10
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4
+msgid "Recover Your Password"
+msgstr "Восстановить пароль"
+
+#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:8
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. 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."
+"Just after providing the confirmation key, you will be able to reset your "
+"password and use this website fully."
msgstr ""
-"Если вы отметите проект как частный, только участники проекта и "
-"администраторы, а также дополнительные авторизованные пользователи будут "
-"иметь доступ к проекту. Вы по-прежнему сможете изменить права доступа для "
-"разных вкладок, но \"Открыто для всех\" и \"Зарегистрированные участники\" "
-"по умолчанию будет доступно только авторизованным пользователям."
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:11
+#: 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
+#: IDF/gettexttemplates/idf/wiki/index.html.php:4
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:173
+msgid "New Page"
+msgstr "Новая страница"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:5
+msgid "Update This Page"
+msgstr "Обновить эту страницу"
+
+#: IDF/gettexttemplates/idf/wiki/create.html.php:3
+#: IDF/gettexttemplates/idf/wiki/update.html.php:3
+msgid "Preview of the Page"
+msgstr "Предпросмотр страницы"
+
+#: IDF/gettexttemplates/idf/wiki/create.html.php:4
+msgid "The form contains some errors. Please correct them to create the page."
+msgstr ""
+"Форма содержит ошибки. Пожалуйста исправтье их чтобы создать страницу."
+
+#: IDF/gettexttemplates/idf/wiki/create.html.php:6
+msgid "Create Page"
+msgstr "Создать страницу"
+
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:3
+#, php-format
msgid ""
-"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."
+"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/admin/tabs.html.php:12
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:6
msgid ""
-"The form contains some errors. Please correct them to update the access "
-"rights."
+"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/admin/tabs.html.php:13
-msgid "Access Rights"
-msgstr "Права доступа"
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:9
+msgid "Delete Revision"
+msgstr "Удалить ревизию"
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
-msgid "Notification Email"
-msgstr "Уведомление по электронной почте"
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/view.html.php:17
+msgid "Old Revisions"
+msgstr "Старые ревизии"
-#: IDF/gettexttemplates/idf/admin/summary.html.php:3
+#: 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/edit-info.html.php:3
#, php-format
msgid ""
"\n"
"
Instructions:
\n"
-"
The description of the project can be improved using the Markdown syntax.
Website addresses are automatically linked and you can link to another page in the documentation using double square brackets like that [[AnotherPage]].
\n"
+"
To directly include a file content from the repository, embrace its path with triple square brackets: [[[path/to/file.txt]]].
\n"
-#: IDF/gettexttemplates/idf/admin/summary.html.php:7
+#: IDF/gettexttemplates/idf/wiki/index.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr "Смотреть устаревшие страницы."
+
+#: IDF/gettexttemplates/idf/wiki/index.html.php:5
+msgid "Number of pages:"
+msgstr "Количество страниц:"
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr "Страниц найдено:"
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:4
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+"Форма содержит ошибки. Пожалуйста исправте их чтобы обновить страницу."
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:6
+msgid "Update Page"
+msgstr "Обновить страницу"
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:8
+#: IDF/gettexttemplates/idf/wiki/update.html.php:10
+#: IDF/gettexttemplates/idf/wiki/update.html.php:11
+msgid "Delete this page"
+msgstr "Удалить эту страницу"
+
+#: IDF/gettexttemplates/idf/wiki/view.html.php:3
msgid ""
-"The form contains some errors. Please correct them to update the summary."
+"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/admin/wiki.html.php:3
-#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
-#: IDF/gettexttemplates/idf/admin/downloads.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"
-"
При необходимости, используйте знак равенства для описания значение "
-"каждого статуса.
\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 a URL to which a HTTP POST\n"
-"request is sent after each repository commit. If this field is empty,\n"
-"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/source.html.php:30
-msgid "Post-commit authentication key:"
-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/issues/create.html.php:3
-msgid ""
-"
When you submit the issue do not forget to provide the following "
-"information:
\n"
-"
\n"
-"
The steps to reproduce the problem.
\n"
-"
The version of the software and your operating system.
\n"
-"
Any information that can help the developers to solve the issue.
\n"
-"
Do not provide any password or confidential information!"
-"strong>
\n"
-"
"
-msgstr ""
-"
Когда вы отправляете проблему не забудьте указать следующую информацию: "
-"
\n"
-"
Шаги по воспроизведению проблемы.
\n"
-"
Версии программного обеспечения и операционной системы.
\n"
-"
Любая информация, которая поможет разработчикам решить проблему.
\n"
-"
Не добавляйте никаких паролей или конфиденциальной информации!"
-"strong>
\n"
-"
"
-
-#: IDF/gettexttemplates/idf/issues/create.html.php:10
-msgid "The form contains some errors. Please correct them to submit the issue."
-msgstr "Форма содержит ошибки. Пожалуйста исправте их чтобы добавить проблему."
-
-#: IDF/gettexttemplates/idf/issues/create.html.php:12
-msgid "Submit Issue"
-msgstr "Отправить проблему"
-
-#: IDF/gettexttemplates/idf/issues/create.html.php:15
-#: IDF/gettexttemplates/idf/issues/view.html.php:32
-msgid "Attach file"
-msgstr "Приложить файл"
-
-#: IDF/gettexttemplates/idf/issues/create.html.php:16
-#: IDF/gettexttemplates/idf/issues/create.html.php:17
-#: IDF/gettexttemplates/idf/issues/view.html.php:33
-#: IDF/gettexttemplates/idf/issues/view.html.php:34
-msgid "Attach another file"
-msgstr "Приложить еще один файл"
-
-#: IDF/gettexttemplates/idf/issues/search.html.php:3
-#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:5
-#: IDF/gettexttemplates/idf/issues/by-label.html.php:6
-#: IDF/gettexttemplates/idf/issues/index.html.php:5
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:5
-#: IDF/gettexttemplates/idf/issues/base.html.php:4
-msgid "New Issue"
-msgstr "Новая проблема"
-
-#: IDF/gettexttemplates/idf/issues/search.html.php:4
-msgid "Found issues:"
-msgstr "Найти проблему:"
-
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3
-msgid "The following issue has been updated:"
-msgstr "Следующая проблема была обновлена:"
-
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11
-msgid "Comments (last first):"
-msgstr "Комментарии (последние первыми):"
-
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12
-msgid "Issue:"
-msgstr "Проблема:"
-
-#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:3
-#: IDF/gettexttemplates/idf/issues/forge-watchlist.html.php:3
-#: IDF/gettexttemplates/idf/issues/index.html.php:3
+#: IDF/gettexttemplates/idf/wiki/view.html.php:5
#, php-format
msgid ""
-"
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 ""
+
+#: 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 a URL to which a HTTP POST\n"
+"request is sent after each repository commit. If this field is empty,\n"
+"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.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:6
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+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 ""
+"\n"
+"Only project members and admins have write access to the source. \n"
+"If you restrict the access to the source, anonymous access is \n"
+"not provided and the users must authenticate themselves with their \n"
+"password or SSH key."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+msgid ""
+"You can configure here the project tabs access rights and notification "
+"emails."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+#, php-format
+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 ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+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. 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:11
+msgid ""
+"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:12
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr "Pravice dostopa"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+msgid "Notification Email"
+msgstr "Potrditvena e-pošta"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:16
+#: 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/base-full.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
+msgid "Project Home"
+msgstr "Projekt"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:12
+#: 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:234
+msgid "New Download"
+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/delete.html.php:7
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/view.html.php:8
+#: IDF/gettexttemplates/idf/wiki/view.html.php:9
+#, 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:7
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
+#: 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/create.html.php:7
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/update.html.php:7
+msgid "Cancel"
+msgstr "Prekliči"
+
+#: 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/delete.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/view.html.php:15
+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/index.html.php:15
+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/view.html.php:17
+#: 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: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/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/delete.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/view.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/WikiRevision.php:175
+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/issues/issue-created-email.txt.php:5
+#: 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/issues/issue-created-email.txt.php:6
+#: 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
+msgid "Submitted by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+msgid "Download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-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/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/submit.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/submit.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:8
+msgid "Submit File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:10
+#: 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/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/update.html.php:9
+#: IDF/gettexttemplates/idf/wiki/view.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.html.php:34
+msgid "Here we are, just to help you."
+msgstr ""
-#: IDF/Views.php:47 IDF/gettexttemplates/idf/faq.html.php:35
-#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:35
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
#: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57
+#: IDF/Views.php:47
msgid "Projects"
msgstr "Projekti"
-#: IDF/Views.php:90 IDF/gettexttemplates/idf/register/index.html.php:6
-msgid "Create Your Account"
-msgstr "Ustvari Uporabniški Račun"
-
-#: IDF/Views.php:126 IDF/Views.php:152
-msgid "Confirm Your Account Creation"
-msgstr ""
-
-#: IDF/Views.php:172
-msgid "Welcome! You can now participate in the life of your project of choice."
-msgstr ""
-
-#: IDF/Views.php:198 IDF/Views.php:222 IDF/Views.php:263
-msgid "Password Recovery"
-msgstr "Ponastavitev gesla"
-
-#: IDF/Views.php:242
-msgid ""
-"Welcome back! Next time, you can use your broswer options to remember the "
-"password."
-msgstr ""
-
-#: IDF/Views.php:284
-msgid "Here to Help You!"
-msgstr "Tukaj da pomagamo!"
-
-#: IDF/Views.php:300
-msgid "InDefero API (Application Programming Interface)"
-msgstr ""
-
-#: IDF/Scm/Mercurial.php:138 IDF/Scm/Git.php:288
-#, php-format
-msgid "Folder %1$s not found in commit %2$s."
-msgstr ""
-
-#: IDF/Scm/Mercurial.php:155 IDF/Scm/Git.php:404
-#, php-format
-msgid "Not a valid tree: %s."
-msgstr ""
-
-#: IDF/Scm/Monotone/Stdio.php:79
-msgid "Monotone client key name or hash not in project conf."
-msgstr ""
-
-#: IDF/Scm/Monotone/Stdio.php:87 IDF/Plugin/SyncMonotone.php:187
-#, php-format
-msgid "The key directory %s could not be created."
-msgstr ""
-
-#: IDF/Scm/Monotone/Stdio.php:98
-#, php-format
-msgid "Could not write client key \"%s\""
-msgstr ""
-
-#: IDF/Scm/Git.php:237
-#, php-format
-msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s."
-msgstr ""
-
-#: IDF/EmailAddress.php:49 IDF/Key.php:49
-msgid "user"
-msgstr "uporabnik"
-
-#: IDF/EmailAddress.php:55
-#, fuzzy
-msgid "email"
-msgstr "E-naslov"
-
#: IDF/gettexttemplates/idf/faq.html.php:3
msgid ""
"
This is simple:
\n"
"\n"
-"
Write in the comments \"This is a duplicate of issue 123\", change 123 "
-"with the corresponding issue number.
\n"
+"
Write in the comments \"This is a duplicate of issue 123\", change 123 with the corresponding issue number.
\n"
"
Change the status of the current issue to Duplicate.
\n"
"
Submit the changes.
\n"
""
@@ -295,8 +1461,9 @@ msgstr ""
#: IDF/gettexttemplates/idf/faq.html.php:9
msgid ""
-"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+"You need to create an account on Gravatar, this takes about 5 minutes "
+"and is free."
msgstr ""
#: IDF/gettexttemplates/idf/faq.html.php:10
@@ -387,158 +1554,37 @@ msgstr ""
msgid "Alt+4: Search (when available)."
msgstr ""
-#: IDF/gettexttemplates/idf/faq.html.php:34
-#: IDF/gettexttemplates/idf/faq-api.html.php:3
-msgid "Here we are, just to help you."
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+msgid "People"
+msgstr "Ljudje"
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "Usher"
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"
+#: IDF/gettexttemplates/idf/gadmin/home.html.php:3
+msgid "You have here access to the administration of the forge."
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/gadmin/home.html.php:4
+#: IDF/gettexttemplates/idf/project/home.html.php:3
+#: IDF/gettexttemplates/idf/project/timeline.html.php:4
+msgid "Welcome"
+msgstr "Dobrodošel"
-#: IDF/gettexttemplates/idf/register/inputkey.html.php:4
-msgid "Confirm Your Account"
-msgstr "Potrdi Račun"
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Project List"
+msgstr "Seznam projektov"
-#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
-#: IDF/gettexttemplates/idf/register/index.html.php:7
-#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
-#: 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/user/myaccount.html.php:13
-#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
-#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
-#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
-#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
-#: IDF/gettexttemplates/idf/wiki/create.html.php:7
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:10
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7
-#: IDF/gettexttemplates/idf/wiki/update.html.php:7
-#: IDF/gettexttemplates/idf/review/create.html.php:12
-#: IDF/gettexttemplates/idf/review/view.html.php:43
-#: IDF/gettexttemplates/idf/issues/create.html.php:14
-#: IDF/gettexttemplates/idf/issues/view.html.php:25
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
-#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:8
-msgid "Cancel"
-msgstr "Prekliči"
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/index.html.php:5 IDF/Views/Admin.php:128
+msgid "Create Project"
+msgstr "Ustvari nov projekt"
-#: 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
-#: IDF/gettexttemplates/idf/downloads/submit.html.php:10
-msgid "Instructions"
-msgstr "Navodila"
-
-#: 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/register/index.html.php:3
-msgid ""
-"Read the terms and conditions "
-"– basically \"Please be nice, we respect you\"."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/register/index.html.php:4
-#, 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:5
-msgid "Oops, please check the provided login and email address to register."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/register/index.html.php:8
-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:9
-msgid "Did you know?"
-msgstr "Ali ste vedeli, da ..."
-
-#: 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:4
-#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
-#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
-#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
-msgid "Login:"
-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 "Omogoči Račun"
-
-#: 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 ""
-
-#: IDF/gettexttemplates/idf/index.atom.php:3
-#, php-format
-msgid "Personal project feed for %%user%%."
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+msgid "Change Project Details"
msgstr ""
#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
@@ -549,31 +1595,17 @@ msgstr ""
#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
msgid ""
-"Once you have defined the repository type, you cannot change it"
-"strong>."
+"Once you have defined the repository type, you cannot change "
+"it."
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"
+"
Specify each person by its login. Each person must have already registered with the given login.
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.
"
+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/summary.html.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+msgid "Status Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+msgid "Unresolved: By Assignee"
+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] ""
+msgstr[3] ""
+
+#: 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] ""
+msgstr[3] ""
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:6
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:7
+msgid "Submitted issues:"
+msgstr "Poslanih zadev:"
+
+#: IDF/gettexttemplates/idf/issues/userIssues.html.php:7
+#: IDF/gettexttemplates/idf/user/dashboard.html.php:6
+msgid "Working issues:"
+msgstr "Zadeve v nastajanju:"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:3
+#, php-format
+msgid "Reported by %%submitter%%, %%c.creation_dtime%%"
+msgstr ""
+
+#: 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 ""
+
+#: 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] ""
+msgstr[3] ""
+
+#: 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
+msgid "Click here to view the previous closed issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
+msgid "Click here to view the previous open issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
+msgid "Click here to view the next closed issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
+msgid "Click here to 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 "Shrani spremembe"
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:32
+msgid "Followed by:"
+msgstr ""
#: IDF/gettexttemplates/idf/login_form.html.php:3
#, php-format
msgid ""
-"If you don't have an account yet, you can create one here."
+"If you don't have an account yet, you can create one here."
msgstr ""
#: IDF/gettexttemplates/idf/login_form.html.php:4
@@ -993,36 +2355,761 @@ msgstr ""
msgid "It takes less than a minute to create your account."
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:3
#, php-format
-msgid "You are looking at the public profile of %%member%%."
+msgid "Welcome, %%user%%."
+msgstr ""
+"Dobrodošel, %%user%%."
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:4
+msgid "Sign Out"
+msgstr "Odjava"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:5
+msgid "Sign in or create your account"
+msgstr "Prijavi se ali pa ustvari uporabniški račun"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:9 IDF/Views/Admin.php:42
+msgid "Forge Management"
+msgstr "Nastavitve spletišča"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:10
+msgid "Help and accessibility features"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
+#: 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 "Pomoč"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:4
+#: IDF/gettexttemplates/idf/project/timeline.html.php:5
+msgid "Latest Updates"
+msgstr "Zadnje spremembe"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:5
+msgid "Featured Downloads"
+msgstr "Pomembni prenosi"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:6
+#: IDF/gettexttemplates/idf/project/home.html.php:8
+msgid "show more..."
+msgstr "Prikaži ostalo.."
+
+#: IDF/gettexttemplates/idf/project/home.html.php:7
+msgid "Featured Documentation"
+msgstr "Pomembna Dokumnetacija"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:9
+msgid "Development Team"
+msgstr "Razvojna skupina"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:10
+msgid "Admins"
+msgstr "Administratorji"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:11
+msgid "Happy Crew"
+msgstr "Ostali člani"
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:3
+msgid "Latest updates"
+msgstr "Zadnje spremembe"
+
+#: 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/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 ""
+
+#: 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 "Omogoči Račun"
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/register/index.html.php:3
+msgid ""
+"Read the terms and conditions "
+"– basically \"Please be nice, we respect you\"."
+msgstr ""
+
+#: 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. Just go here to 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:90
+msgid "Create Your Account"
+msgstr "Ustvari Uporabniški Račun"
+
+#: 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 "Ali ste vedeli, da ..."
+
+#: 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 "Potrdi Račun"
+
+#: 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.
\n"
+"
Check your patch does not provide any password or confidential information!
\n"
+"
"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html.php:3
+#, php-format
+msgid "%%ndiff%% diff"
+msgid_plural "%%ndiff%% diffs"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:19
+#, php-format
+msgid "%%nc%% comment"
+msgid_plural "%%nc%% comments"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:20
+#, php-format
+msgid ""
+"Comment %%i%% by %%who%%,"
+" %%c.creation_dtime%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:21
+#, php-format
+msgid "Your comments on the changes in file %%file%%:"
+msgstr ""
+
+#: 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
+msgid "Author:"
+msgstr "Avtor:"
+
+#: 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
+msgid "Commit:"
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:4
#: IDF/gettexttemplates/idf/review/view.html.php:30
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
-#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
-msgid "Description:"
-msgstr "Opis:"
-
-#: IDF/gettexttemplates/idf/user/public.html.php:5
-msgid "Twitter:"
+#: IDF/gettexttemplates/idf/source/commit.html.php:8
+msgid "View corresponding source tree"
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:6
-msgid "Public Email:"
+#: IDF/gettexttemplates/idf/review/view.html.php:32
+msgid "Reviewers:"
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:7
-msgid "Website:"
+#: IDF/gettexttemplates/idf/review/view.html.php:33
+msgid "No reviewers at the moment."
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:8
-msgid "Last time seen:"
+#: IDF/gettexttemplates/idf/review/view.html.php:34
+msgid "Files:"
+msgstr "Datoteke:"
+
+#: IDF/gettexttemplates/idf/review/view.html.php:36
+#: IDF/gettexttemplates/idf/source/commit.html.php:24
+msgid "Download the corresponding diff file"
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:9
-msgid "Member since:"
+#: 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 "Drevo izvorne kode"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:4
+msgid "Change Log"
+msgstr "Dnevnik sprememb"
+
+#: IDF/gettexttemplates/idf/source/base.html.php:6
+msgid "How To Get The Code"
+msgstr "Navodila za dostop"
+
+#: 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:188
+msgid "Age"
+msgstr "Starost"
+
+#: 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 "Sporočilo"
+
+#: 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
+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 "Vsebina:"
+
+#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10
+msgid "Commit details:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:4
+msgid "Date:"
+msgstr "Datum:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:6
+msgid "Branch:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:9
+msgid "Parents:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:11
+msgid "Message:"
+msgstr "Sporočilo:"
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:12
+#: IDF/gettexttemplates/idf/wiki/feedfragment.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:10
+msgid "Changes:"
+msgstr ""
+
+#: 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
+msgid "full"
+msgstr ""
+
+#: 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
+msgid "added"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
+msgid "modified"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
+msgid "properies changed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
+msgid "removed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
+msgid "File differences"
+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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 "Možnosti ukazne vrstice"
+
+#: IDF/gettexttemplates/idf/source/git/help.html.php:10
+#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9
+msgid "First Commit"
+msgstr "Prvi vnos"
+
+#: 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:314
+msgid "Size"
+msgstr "Velikost"
+
+#: 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
+#, 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/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/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 ""
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.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 "Revizija:"
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.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 ""
+
+#: 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 "Branža:"
+
+#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
+msgid "Tags:"
msgstr ""
#: IDF/gettexttemplates/idf/user/changeemail-email.txt.php:3
@@ -1050,32 +3137,31 @@ msgid ""
"The development team.\n"
msgstr ""
-#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3
-#, php-format
+#: 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 ""
-"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"
+"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
@@ -1122,9 +3208,8 @@ msgid "Your additional email addresses"
msgstr ""
#: IDF/gettexttemplates/idf/user/myaccount.html.php:17
-#, fuzzy
msgid "Delete this address"
-msgstr "Izbriši ta projekt"
+msgstr ""
#: IDF/gettexttemplates/idf/user/myaccount.html.php:18
msgid ""
@@ -1142,41 +3227,49 @@ msgstr ""
msgid "Show API key and extra password"
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/dashboard.html.php:6
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7
-msgid "Working issues:"
-msgstr "Zadeve v nastajanju:"
-
-#: IDF/gettexttemplates/idf/user/dashboard.html.php:7
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:6
-msgid "Submitted issues:"
-msgstr "Poslanih zadev:"
-
-#: 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
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3
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."
+"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 ""
#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4
@@ -1193,21 +3286,43 @@ msgstr ""
msgid "Reset Your Password"
msgstr ""
-#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3
-msgid ""
-"Oops, please check the provided login or email address to recover your "
-"password."
+#: IDF/gettexttemplates/idf/user/public.html.php:3
+#, php-format
+msgid "You are looking at the public profile of %%member%%."
msgstr ""
-#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4
-msgid "Recover My Password"
+#: IDF/gettexttemplates/idf/user/public.html.php:5
+msgid "Twitter:"
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."
+#: 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 "Vse strani"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:4
+#: IDF/gettexttemplates/idf/wiki/index.html.php:4
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:173
+msgid "New Page"
+msgstr "Nova stran"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:5
+msgid "Update This Page"
msgstr ""
#: IDF/gettexttemplates/idf/wiki/create.html.php:3
@@ -1219,15 +3334,6 @@ msgstr ""
msgid "The form contains some errors. Please correct them to create the page."
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/create.html.php:5
-#: IDF/gettexttemplates/idf/wiki/update.html.php:5
-#: IDF/gettexttemplates/idf/issues/create.html.php:11
-#: IDF/gettexttemplates/idf/issues/create.html.php:13
-#: IDF/gettexttemplates/idf/issues/view.html.php:22
-#: IDF/gettexttemplates/idf/issues/view.html.php:24
-msgid "Preview"
-msgstr "Predogled"
-
#: IDF/gettexttemplates/idf/wiki/create.html.php:6
msgid "Create Page"
msgstr "Nova stran"
@@ -1235,8 +3341,7 @@ msgstr "Nova stran"
#: IDF/gettexttemplates/idf/wiki/delete.html.php:3
#, php-format
msgid ""
-"You are looking at an old revision (%%oldrev.summary%%) of the "
-"page \n"
+"You are looking at an old revision (%%oldrev.summary%%) of the page \n"
"%%page.title%%. This revision was created\n"
"by %%submitter%%."
msgstr ""
@@ -1247,81 +3352,16 @@ msgid ""
"you will not be able to recover it."
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:7
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:8
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:4
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:5
-#: IDF/gettexttemplates/idf/wiki/view.html.php:8
-#: IDF/gettexttemplates/idf/wiki/view.html.php:9
-#: IDF/gettexttemplates/idf/issues/view.html.php:7
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
-#: IDF/gettexttemplates/idf/downloads/view.html.php:4
-#, php-format
-msgid "by %%submitter%%"
-msgstr ""
-
#: IDF/gettexttemplates/idf/wiki/delete.html.php:9
msgid "Delete Revision"
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:11
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:8
-#: IDF/gettexttemplates/idf/wiki/view.html.php:14
-#: IDF/gettexttemplates/idf/review/view.html.php:25
-#: IDF/gettexttemplates/idf/issues/view.html.php:26
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
-msgid "Created:"
-msgstr "Ustvarjeno:"
-
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:12
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:9
-#: IDF/gettexttemplates/idf/wiki/view.html.php:15
-#: IDF/gettexttemplates/idf/review/view.html.php:26
-#: IDF/gettexttemplates/idf/issues/view.html.php:27
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:14
-msgid "Updated:"
-msgstr "Zadnjič osveženo:"
-
#: IDF/gettexttemplates/idf/wiki/delete.html.php:14
#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:11
#: IDF/gettexttemplates/idf/wiki/view.html.php:17
msgid "Old Revisions"
msgstr ""
-#: 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"
-"
To directly include a file content from the repository, embrace its path "
-"with triple square brackets: [[[path/to/file.txt]]].
Website addresses are automatically linked and you can link to another page in the documentation using double square brackets like that [[AnotherPage]].
\n"
+"
To directly include a file content from the repository, embrace its path with triple square brackets: [[[path/to/file.txt]]].
\n"
msgstr ""
#: IDF/gettexttemplates/idf/wiki/index.html.php:3
@@ -1387,6 +3392,24 @@ msgstr ""
msgid "Number of pages:"
msgstr "Število strani:"
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:4
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:6
+msgid "Update Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:8
+#: IDF/gettexttemplates/idf/wiki/update.html.php:10
+#: IDF/gettexttemplates/idf/wiki/update.html.php:11
+msgid "Delete this page"
+msgstr ""
+
#: IDF/gettexttemplates/idf/wiki/view.html.php:3
msgid ""
"Attention! This page is marked as deprecated, \n"
@@ -1410,1269 +3433,100 @@ msgstr ""
msgid "Delete this revision"
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/update.html.php:4
-msgid "The form contains some errors. Please correct them to update the page."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/wiki/update.html.php:6
-msgid "Update Page"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/wiki/update.html.php:8
-#: IDF/gettexttemplates/idf/wiki/update.html.php:10
-#: IDF/gettexttemplates/idf/wiki/update.html.php:11
-msgid "Delete this page"
-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:8
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9
-msgid "Content:"
-msgstr "Vsebina:"
-
-#: IDF/gettexttemplates/idf/wiki/base.html.php:3
-msgid "List Pages"
-msgstr "Vse strani"
-
-#: IDF/gettexttemplates/idf/wiki/base.html.php:5
-msgid "Update This Page"
+#: 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/base.html.php:6
-#: IDF/gettexttemplates/idf/issues/base.html.php:7
-msgid "Search"
-msgstr "Iskanje"
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
+msgstr ""
-#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:3
+#: 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/WikiPage.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/Review.php:95 IDF/Upload.php:99 IDF/WikiPage.php:94
+msgid "labels"
+msgstr "oznake"
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/WikiPage.php:106
+msgid "modification date"
+msgstr "datum spremembe"
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
#, php-format
-msgid ""
-"The branch or revision %%commit%% is not valid or does not exist\n"
-"in this repository."
+msgid "Issue %3$d, %4$s"
msgstr ""
-#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5
-msgid "The following list shows all available branches:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:6
+#: IDF/Issue.php:214
#, 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."
+msgid "Creation of issue %d, by %s"
msgstr ""
-#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:3
+#: IDF/Issue.php:224
#, php-format
-msgid ""
-"The revision identifier %%commit%% is ambiguous and can be\n"
-"expanded to multiple valid revisions - please choose one:"
+msgid "%s: Issue %d created - %s"
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/commit-created-email.txt.php:3
-msgid "A new commit has been created:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:5
-#: IDF/gettexttemplates/idf/source/commit.html.php:7
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:7
-#: IDF/gettexttemplates/idf/review/view.html.php:28
-msgid "Commit:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8
-msgid "Created at:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10
-msgid "Commit details:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:3
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:3
-#: IDF/gettexttemplates/idf/review/view.html.php:3
+#: IDF/Issue.php:290
#, php-format
-msgid "%%ndiff%% diff"
-msgid_plural "%%ndiff%% diffs"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:4
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:4
-msgid "Date:"
-msgstr "Datum:"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:5
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:5
-#: IDF/gettexttemplates/idf/review/view.html.php:27
-msgid "Author:"
-msgstr "Avtor:"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:6
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:6
-msgid "Branch:"
+msgid "Issue %s - %s (%s)"
msgstr ""
-#: IDF/gettexttemplates/idf/source/commit.html.php:8
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:8
-#: IDF/gettexttemplates/idf/review/view.html.php:29
-msgid "View corresponding source tree"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:9
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:9
-msgid "Parents:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:10
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:10
-#: IDF/gettexttemplates/idf/source/changelog.html.php:6
-msgid "View corresponding commit"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:11
-#: IDF/gettexttemplates/idf/source/commit.html.rej.php:3
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:11
-msgid "Message:"
-msgstr "Sporočilo:"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:13
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:13
-msgid "deleted"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:14
-#: IDF/gettexttemplates/idf/source/commit.html.php:17
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:14
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:17
-msgid "full"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:15
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:15
-msgid "renamed"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:16
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:16
-msgid "added"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:18
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:18
-msgid "modified"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:19
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:19
-msgid "properies changed"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:20
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:20
-msgid "removed"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:21
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:21
-msgid "File differences"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:22
-#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:22
-#: IDF/gettexttemplates/idf/source/git/file.html.php:6
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
-#: IDF/gettexttemplates/idf/review/view.html.php:34
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
-msgid "Archive"
-msgstr "Arhiv"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:23
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:23
-#: IDF/gettexttemplates/idf/review/view.html.php:35
-msgid "Download the corresponding diff file"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3
+#: IDF/Issue.php:336
#, php-format
-msgid "%%cproject.name%%: Commit %%c.scm_id%%"
+msgid "Updated Issue %s - %s (%s)"
msgstr ""
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:3
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3
-#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:3
-msgid "Branches"
+#: 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/WikiRevision.php:85
+msgid "changes"
+msgstr "spremembe"
+
+#: IDF/IssueComment.php:73
+msgid "Serialized array of the changes in the issue."
msgstr ""
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:4
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:4
-#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:4
-msgid "filter branches"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:5
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:5
-#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:5
-msgid "Tags"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:6
-#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:6
-msgid "filter tags"
-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
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:3
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:3
-#: IDF/gettexttemplates/idf/source/git/file.html.php:3
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:3
+#: IDF/IssueComment.php:180
#, php-format
-msgid ""
-"Source at commit %%commit%% created %%"
-"cobject.date%%."
+msgid "Comment on issue %d, by %s"
msgstr ""
-#: 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
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:4
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:4
-#: IDF/gettexttemplates/idf/source/git/file.html.php:4
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:4
+#: IDF/IssueComment.php:191
#, php-format
-msgid "By %%cobject.author%%, %%cobject.title%%"
-msgstr ""
-
-#: 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
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:5
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:5
-#: IDF/gettexttemplates/idf/source/git/file.html.php:5
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:5
-msgid "Root"
-msgstr "Root"
-
-#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:9
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
-#: IDF/gettexttemplates/idf/source/git/file.html.php:7
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
-msgid "Download this file"
-msgstr "Prenesi to datoteko"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
-#: IDF/Views/Download.php:64 IDF/Views/Download.php:292 IDF/Form/Upload.php:59
-msgid "File"
-msgstr "Datoteka"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7
-#: IDF/gettexttemplates/idf/source/changelog.html.php:3
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:7
-#: IDF/Views/Project.php:152
-msgid "Age"
-msgstr "Starost"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8
-#: IDF/gettexttemplates/idf/source/changelog.html.php:4
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:8
-msgid "Message"
-msgstr "Sporočilo"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:9
-#: IDF/Views/Download.php:66 IDF/Views/Download.php:294
-msgid "Size"
-msgstr "Velikost"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:10
-msgid ":"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:12
-msgid "Download this version"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:13
-msgid "or"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:14
-#: IDF/gettexttemplates/idf/main-menu.html.php:10
-msgid "Help"
-msgstr "Pomoč"
-
-#: 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 ""
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6
-#: IDF/gettexttemplates/idf/source/git/help.html.php:7
-msgid "To make a first commit in the repository, perform the following steps:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/help.html.php:7
-#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7
-#: IDF/gettexttemplates/idf/source/git/help.html.php:8
-#, php-format
-msgid "Find here more details on how to access %%project%% source code."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8
-#: IDF/gettexttemplates/idf/source/svn/help.html.php:8
-#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8
-#: IDF/gettexttemplates/idf/source/git/help.html.php:9
-msgid "Command-Line Access"
-msgstr "Možnosti ukazne vrstice"
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9
-#: IDF/gettexttemplates/idf/source/git/help.html.php:10
-msgid "First Commit"
-msgstr "Prvi vnos"
-
-#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
-#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3
-msgid "Revision:"
-msgstr "Revizija:"
-
-#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
-#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4
-msgid "Go to revision"
-msgstr "Pojdi na revizijo"
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11
-msgid "Property"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12
-msgid "set to:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8
-msgid "Rev"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
-msgid "Branches:"
-msgstr "Branža:"
-
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18
-msgid "Tags:"
-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 ""
-
-#: IDF/gettexttemplates/idf/source/svn/help.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/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/svn/help.html.php:9
-#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9
-msgid "Write Access Authentication"
-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 ""
-
-#: IDF/gettexttemplates/idf/source/base.html.php:3
-msgid "Source Tree"
-msgstr "Drevo izvorne kode"
-
-#: IDF/gettexttemplates/idf/source/base.html.php:4
-msgid "Change Log"
-msgstr "Dnevnik sprememb"
-
-#: IDF/gettexttemplates/idf/source/base.html.php:5
-#: IDF/gettexttemplates/idf/source/changelog.html.php:7
-#: IDF/Form/ReviewCreate.php:74
-msgid "Commit"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/base.html.php:6
-msgid "How To Get The Code"
-msgstr "Navodila za dostop"
-
-#: IDF/gettexttemplates/idf/source/changelog.html.php:5
-msgid "Parent:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/changelog.html.php:8
-msgid "by"
-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 ""
-
-#: 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 ""
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:3
-#, php-format
-msgid ""
-"Welcome, %%user%%."
-msgstr ""
-"Dobrodošel, %%user%%"
-"strong>."
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:4
-msgid "Sign Out"
-msgstr "Odjava"
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:5
-msgid "Sign in or create your account"
-msgstr "Prijavi se ali pa ustvari uporabniški račun"
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:7
-#: IDF/gettexttemplates/idf/index.html.php:6
-#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77
-msgid "Private project"
-msgstr "Zaseben projekt"
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42
-msgid "Forge Management"
-msgstr "Nastavitve spletišča"
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:9
-msgid "Help and accessibility features"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:4
-msgid "No projects managed with InDefero were found."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:7
-#, fuzzy
-msgid "Forge statistics"
-msgstr "Statistika Projekta"
-
-#: IDF/gettexttemplates/idf/index.html.php:8
-msgid "Projects:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:9
-msgid "Members:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:10
-msgid "Issues:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:11
-msgid "Commits:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:12
-msgid "Documentations:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:14
-msgid "Code reviews:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/base-full.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:4
-#: IDF/gettexttemplates/idf/base.html.php:4
-msgid "Project Home"
-msgstr "Projekt"
-
-#: IDF/gettexttemplates/idf/base-full.html.php:6
-#: IDF/gettexttemplates/idf/admin/base.html.php:5
-#: IDF/gettexttemplates/idf/base.html.php:6 IDF/Form/TabsConf.php:40
-msgid "Documentation"
-msgstr "Dokumentacija"
-
-#: IDF/gettexttemplates/idf/base-full.html.php:8
-#: IDF/gettexttemplates/idf/admin/base.html.php:7
-#: IDF/gettexttemplates/idf/base.html.php:8 IDF/Form/TabsConf.php:41
-msgid "Source"
-msgstr "Izvorna koda"
-
-#: IDF/gettexttemplates/idf/base-full.html.php:9
-#: IDF/gettexttemplates/idf/base.html.php:9 IDF/Form/TabsConf.php:39
-msgid "Code Review"
-msgstr "Revizije Izvorne kode"
-
-#: IDF/gettexttemplates/idf/base-full.html.php:10
-#: IDF/gettexttemplates/idf/base.html.php:10
-msgid "Project Management"
-msgstr "Upravljanje Projekta"
-
-#: 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 ""
-
-#: 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/create.html.php:11
-#: IDF/gettexttemplates/idf/review/index.html.php:3
-#: IDF/gettexttemplates/idf/review/base.html.php:4 IDF/Views/Review.php:83
-msgid "Start Code 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:4
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4
-#, php-format
-msgid "By %%who%%, %%c.creation_dtime%%:"
-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 ""
-
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:11
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:7
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:8
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:8
-msgid "Reported by:"
-msgstr "Sporočil:"
-
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9
-msgid "URL:"
-msgstr "URL:"
-
-#: 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/review-updated-email.txt.php:16
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10
-msgid "Review:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:4
-#, php-format
-msgid "%%nc%% comment"
-msgid_plural "%%nc%% comments"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:5
-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 ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:13
-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 ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:20
-#, php-format
-msgid ""
-"Comment %%i%% by %%who%%, "
-"%%c.creation_dtime%%"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:21
-#, php-format
-msgid "Your comments on the changes in file %%file%%:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:22
-#: IDF/gettexttemplates/idf/issues/view.html.php:4
-#, php-format
-msgid ""
-"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%"
-msgstr ""
-
-#: 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:31
-msgid "Reviewers:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:32
-msgid "No reviewers at the moment."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:33
-msgid "Files:"
-msgstr "Datoteke:"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:36
-msgid "How to Participate in a Code Review"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:37
-msgid "Old"
-msgstr "Staro "
-
-#: IDF/gettexttemplates/idf/review/view.html.php:38
-msgid "New"
-msgstr "Novo"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:39
-msgid "General Comments"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:42
-msgid "Submit Code Review"
-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/review-created-email.txt.php:3
-msgid "The following review has been created:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/members.html.php:13
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:15
-#: IDF/gettexttemplates/idf/admin/summary.html.php:8
-#: IDF/gettexttemplates/idf/admin/wiki.html.php:8
-#: IDF/gettexttemplates/idf/admin/source.html.php:31
-#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8
-#: IDF/gettexttemplates/idf/admin/downloads.html.php:8
-msgid "Save Changes"
-msgstr "Shrani spremembe"
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
-msgid ""
-"\n"
-"Only project members and admins have write access to the source. \n"
-"If you restrict the access to the source, anonymous access is \n"
-"not provided and the users must authenticate themselves with their \n"
-"password or SSH key."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
-msgid ""
-"You can configure here the project tabs access rights and notification "
-"emails."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
-#, php-format
-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 ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
-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. 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:11
-msgid ""
-"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:12
-msgid ""
-"The form contains some errors. Please correct them to update the access "
-"rights."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
-msgid "Access Rights"
-msgstr "Pravice dostopa"
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
-msgid "Notification Email"
-msgstr "Potrditvena e-pošta"
-
-#: 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 ""
-
-#: 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/wiki.html.php:3
-#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
-#: IDF/gettexttemplates/idf/admin/downloads.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 ""
-
-#: 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 a URL to which a HTTP POST\n"
-"request is sent after each repository commit. If this field is empty,\n"
-"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.
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 ""
+
+#: 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 a URL to which a HTTP POST\n"
+"request is sent after each repository commit. If this field is empty,\n"
+"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.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:6
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+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 ""
+"\n"
+"Only project members and admins have write access to the source. \n"
+"If you restrict the access to the source, anonymous access is \n"
+"not provided and the users must authenticate themselves with their \n"
+"password or SSH key."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+msgid ""
+"You can configure here the project tabs access rights and notification "
+"emails."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+#, php-format
+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 ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+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. 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:11
+msgid ""
+"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:12
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+msgid "Notification Email"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.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
+msgid "Project Home"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/base-full.html.php:12
+#: 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:234
+msgid "New Download"
+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/delete.html.php:7
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/view.html.php:8
+#: IDF/gettexttemplates/idf/wiki/view.html.php:9
+#, 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:7
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
+#: 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/create.html.php:7
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/update.html.php:7
+msgid "Cancel"
+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/delete.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/view.html.php:15
+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/index.html.php:15
+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/view.html.php:17
+#: 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: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/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/delete.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/view.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/WikiRevision.php:175
+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/issues/issue-created-email.txt.php:5
+#: 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/issues/issue-created-email.txt.php:6
+#: 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
+msgid "Submitted by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+msgid "Download:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-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/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/submit.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/submit.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:8
+msgid "Submit File"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:10
+#: 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/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/update.html.php:9
+#: IDF/gettexttemplates/idf/wiki/view.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.html.php:34
+msgid "Here we are, just to help you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:35
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
+#: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57
+#: IDF/Views.php:47
+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\", change 123 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:9
+msgid ""
+"You need to create an account on Gravatar, this takes about 5 minutes "
+"and is free."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:10
+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:11
+#, php-format
+msgid "Learn more about the API."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:12
+#: IDF/gettexttemplates/idf/faq.html.php:16
+msgid "What are the keyboard shortcuts?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:13
+#: IDF/gettexttemplates/idf/faq.html.php:31
+msgid "How to mark an issue as duplicate?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:14
+#: IDF/gettexttemplates/idf/faq.html.php:32
+msgid "How can I display my head next to my comments?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:15
+#: IDF/gettexttemplates/idf/faq.html.php:33
+msgid "What is the API and how is it used?"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:17
+msgid "Shift+h: This help page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:18
+msgid "If you are in a project, you have the following shortcuts:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:19
+msgid "Shift+u: Project updates."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:20
+msgid "Shift+d: Downloads."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:21
+msgid "Shift+o: Documentation."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:22
+msgid "Shift+a: Create a new issue."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:23
+msgid "Shift+i: List of open issues."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:24
+msgid "Shift+m: The issues you submitted."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:25
+msgid "Shift+w: The issues assigned to you."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:26
+msgid "Shift+s: Source."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:27
+msgid "You also have the standard access keys:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:28
+msgid "Alt+1: Home."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:29
+msgid "Alt+2: Skip the menus."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/faq.html.php:30
+msgid "Alt+4: Search (when available)."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+msgid "People"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "Usher"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/home.html.php:3
+msgid "You have here access to the administration of the forge."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/home.html.php:4
+#: IDF/gettexttemplates/idf/project/home.html.php:3
+#: IDF/gettexttemplates/idf/project/timeline.html.php:4
+msgid "Welcome"
+msgstr "Hoşgeldiniz"
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Project List"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/index.html.php:5 IDF/Views/Admin.php:128
+msgid "Create Project"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+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."
+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/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:17
+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:201
+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:358
+msgid "Usher control"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3
+msgid "address"
+msgstr ""
+
+#: 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
+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
+msgid "server name"
+msgstr ""
+
+#: 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
+msgid "action"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6
+msgid "No monotone servers configured."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7
+msgid "stop"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8
+msgid "start"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9
+msgid "kill"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10
+msgid "active connections"
+msgstr ""
+
+#: 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
+msgid "server with n open connections"
+msgstr ""
+
+#: 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
+msgid "local server not running, waiting for connections"
+msgstr ""
+
+#: 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
+msgid "local server not running, not accepting connections"
+msgstr ""
+
+#: 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:4
+msgid "No projects managed with InDefero were found."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:9
+msgid "Forge statistics"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:10
+msgid "Projects:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:11
+msgid "Members:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:12
+msgid "Issues:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:13
+msgid "Commits:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:14
+msgid "Documentations:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/index.html.php:16
+msgid "Code reviews:"
+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/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
+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/delete.html.php:11
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:8
+#: IDF/gettexttemplates/idf/wiki/view.html.php:14
+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:6
+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
+#, php-format
+msgid ""
+"The issue tracker is empty. You can create your first issue here."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+msgid "Status Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+msgid "Unresolved: By Assignee"
+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] ""
+
+#: 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] ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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] ""
+
+#: 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
+msgid "Click here to view the previous closed issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
+msgid "Click here to view the previous open issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
+msgid "Click here to view the next closed issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
+msgid "Click here to 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/login_form.html.php:3
+#, php-format
+msgid ""
+"If you don't have an account yet, you can create one here."
+msgstr ""
+
+#: 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 "Giriş"
+
+#: IDF/gettexttemplates/idf/login_form.html.php:8
+msgid "I lost my password!"
+msgstr "Parolamı unuttum!"
+
+#: 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 ""
+
+#: 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:9 IDF/Views/Admin.php:42
+msgid "Forge Management"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:10
+msgid "Help and accessibility features"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
+#: 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:4
+#: IDF/gettexttemplates/idf/project/timeline.html.php:5
+msgid "Latest Updates"
+msgstr "Son Güncellemeler"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:5
+msgid "Featured Downloads"
+msgstr "Sunulan yüklemeler"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:6
+#: IDF/gettexttemplates/idf/project/home.html.php:8
+msgid "show more..."
+msgstr "Daha fazla göster..."
+
+#: IDF/gettexttemplates/idf/project/home.html.php:7
+msgid "Featured Documentation"
+msgstr "Sunulan Dokümanlar"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:9
+msgid "Development Team"
+msgstr "Geliştirme Ekibi"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:10
+msgid "Admins"
+msgstr "Yöneticiler"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:11
+msgid "Happy Crew"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project/timeline.html.php:3
+msgid "Latest updates"
+msgstr "Son güncellemeler"
+
+#: 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/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 ""
+
+#: 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 to log in afterwards."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/register/index.html.php:3
+msgid ""
+"Read the terms and conditions "
+"– basically \"Please be nice, we respect you\"."
+msgstr ""
+
+#: 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. Just go here to 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:90
+msgid "Create Your Account"
+msgstr "Yeni Hesap Oluştur"
+
+#: 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.
\n"
+"
Check your patch does not provide any password or confidential information!
\n"
+"
"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html.php:3
+#, php-format
+msgid "%%ndiff%% diff"
+msgid_plural "%%ndiff%% diffs"
+msgstr[0] ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:19
+#, php-format
+msgid "%%nc%% comment"
+msgid_plural "%%nc%% comments"
+msgstr[0] ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:20
+#, php-format
+msgid ""
+"Comment %%i%% by %%who%%,"
+" %%c.creation_dtime%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:21
+#, php-format
+msgid "Your comments on the changes in file %%file%%:"
+msgstr ""
+
+#: 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
+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
+msgid "Commit:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:30
+#: 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
+msgid "Download the corresponding diff file"
+msgstr ""
+
+#: 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:188
+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
+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
+msgid "Date:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:6
+msgid "Branch:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:9
+msgid "Parents:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:11
+msgid "Message:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:12
+#: IDF/gettexttemplates/idf/wiki/feedfragment.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:10
+msgid "Changes:"
+msgstr ""
+
+#: 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
+msgid "full"
+msgstr ""
+
+#: 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
+msgid "added"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
+msgid "modified"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
+msgid "properies changed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
+msgid "removed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
+msgid "File differences"
+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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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:314
+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
+#, 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/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/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 ""
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.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/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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:11
+msgid ""
+"Your API key will be regenerated automatically if you change your password."
+msgstr ""
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/user/myaccount.html.php:20
+msgid "Show API key and extra password"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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
+#: IDF/gettexttemplates/idf/wiki/index.html.php:4
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:173
+msgid "New Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:5
+msgid "Update This Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/create.html.php:3
+#: IDF/gettexttemplates/idf/wiki/update.html.php:3
+msgid "Preview of the Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/create.html.php:4
+msgid "The form contains some errors. Please correct them to create the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/create.html.php:6
+msgid "Create Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/delete.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 ""
+
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:6
+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/delete.html.php:9
+msgid "Delete Revision"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:14
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:11
+#: IDF/gettexttemplates/idf/wiki/view.html.php:17
+msgid "Old Revisions"
+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/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"
+"
To directly include a file content from the repository, embrace its path with triple square brackets: [[[path/to/file.txt]]].
\n"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/index.html.php:3
+#, php-format
+msgid "See the deprecated pages."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/index.html.php:5
+msgid "Number of pages:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:4
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:6
+msgid "Update Page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:8
+#: IDF/gettexttemplates/idf/wiki/update.html.php:10
+#: IDF/gettexttemplates/idf/wiki/update.html.php:11
+msgid "Delete this page"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/view.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/view.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/view.html.php:10
+msgid "Table of Content"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/view.html.php:11
+#: IDF/gettexttemplates/idf/wiki/view.html.php:13
+msgid "Delete this revision"
+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/WikiPage.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/Review.php:95 IDF/Upload.php:99 IDF/WikiPage.php:94
+msgid "labels"
+msgstr "etiketler"
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/WikiPage.php:106
+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 %d, by %s"
+msgstr ""
+
+#: IDF/Issue.php:224
+#, php-format
+msgid "%s: Issue %d created - %s"
+msgstr ""
+
+#: IDF/Issue.php:290
+#, php-format
+msgid "Issue %s - %s (%s)"
+msgstr ""
+
+#: IDF/Issue.php:336
+#, php-format
+msgid "Updated Issue %s - %s (%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/WikiRevision.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 %d, by %s"
+msgstr ""
+
+#: IDF/IssueComment.php:191
+#, php-format
+msgid "%s: Comment on issue %d - %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 \"%s\": %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 \"%s\": %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:93
+msgid "private"
+msgstr "özel"
+
+#: IDF/Project.php:130
+#, php-format
+msgid "Project \"%s\" not found."
+msgstr "\"%s\" isimli proje bulunamadı."
+
+#: 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 %d, by %s"
+msgstr ""
+
+#: IDF/Review/Comment.php:151
+#, php-format
+msgid "%s: Updated review %d - %s"
+msgstr ""
+
+#: IDF/Review/Comment.php:216
+#, php-format
+msgid "Updated Code Review %s - %s (%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 %d, by %s"
+msgstr ""
+
+#: IDF/Review/Patch.php:163
+#, php-format
+msgid "%s: Creation of Review %d - %s"
+msgstr ""
+
+#: IDF/Review/Patch.php:204
+#, php-format
+msgid "New Code Review %s - %s (%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 "occurence"
+msgstr ""
+
+#: IDF/Search/Occ.php:49
+msgid "word"
+msgstr ""
+
+#: IDF/Search/Occ.php:75
+msgid "occurences"
+msgstr ""
+
+#: IDF/Search/Occ.php:81
+msgid "ponderated occurence"
+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:75
+msgid "Create this documentation page"
+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
+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 %d, by %s"
+msgstr ""
+
+#: IDF/Upload.php:214
+#, php-format
+msgid "%s: Download %d added - %s"
+msgstr ""
+
+#: IDF/Upload.php:256
+#, php-format
+msgid "New download - %s (%s)"
+msgstr ""
+
+#: IDF/Views/Admin.php:60
+msgid "This table shows the projects in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:65
+msgid "Short Name"
+msgstr ""
+
+#: IDF/Views/Admin.php:67
+msgid "Repository Size"
+msgstr ""
+
+#: IDF/Views/Admin.php:73
+msgid "No projects were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:310
+#, php-format
+msgid "Update %s"
+msgstr ""
+
+#: IDF/Views/Admin.php:101 IDF/Views/Project.php:302
+msgid "The project has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:134
+msgid "The project has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:160
+#, php-format
+msgid "Delete %s Project"
+msgstr ""
+
+#: IDF/Views/Admin.php:167
+msgid "The project has been deleted."
+msgstr ""
+
+#: IDF/Views/Admin.php:197
+msgid "Not Validated User List"
+msgstr ""
+
+#: IDF/Views/Admin.php:205
+msgid "This table shows the users in the forge."
+msgstr ""
+
+#: IDF/Views/Admin.php:209
+msgid "login"
+msgstr ""
+
+#: IDF/Views/Admin.php:212
+msgid "Admin"
+msgstr ""
+
+#: IDF/Views/Admin.php:214
+msgid "Last Login"
+msgstr ""
+
+#: IDF/Views/Admin.php:221
+msgid "No users were found."
+msgstr ""
+
+#: IDF/Views/Admin.php:258
+msgid "You do not have the rights to update this user."
+msgstr ""
+
+#: IDF/Views/Admin.php:276
+msgid "The user has been updated."
+msgstr ""
+
+#: IDF/Views/Admin.php:309
+#, php-format
+msgid "The user %s has been created."
+msgstr ""
+
+#: IDF/Views/Admin.php:316
+msgid "Add User"
+msgstr ""
+
+#: IDF/Views/Admin.php:332
+msgid "Usher management"
+msgstr ""
+
+#: IDF/Views/Admin.php:369
+msgid "Usher configuration has been reloaded"
+msgstr ""
+
+#: IDF/Views/Admin.php:373
+msgid "Usher has been shut down"
+msgstr ""
+
+#: IDF/Views/Admin.php:378
+msgid "Usher has been started up"
+msgstr ""
+
+#: IDF/Views/Admin.php:416
+#, php-format
+msgid "The server \"%s\" has been started"
+msgstr ""
+
+#: IDF/Views/Admin.php:420
+#, php-format
+msgid "The server \"%s\" has been stopped"
+msgstr ""
+
+#: IDF/Views/Admin.php:425
+#, php-format
+msgid "The server \"%s\" has been killed"
+msgstr ""
+
+#: IDF/Views/Admin.php:445
+#, php-format
+msgid "Open connections for \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:450
+#, php-format
+msgid "no connections for server \"%s\""
+msgstr ""
+
+#: IDF/Views/Admin.php:471
+msgid "Yes"
+msgstr "Evet"
+
+#: IDF/Views/Admin.php:471
+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:315
+msgid "Uploaded"
+msgstr ""
+
+#: IDF/Views/Download.php:71 IDF/Views/Download.php:319
+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:243
+#, php-format
+msgid "The file has been uploaded."
+msgstr ""
+
+#: IDF/Views/Download.php:297
+#, php-format
+msgid "%1$s Downloads with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Download.php:307
+#, 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:379 IDF/Views/User.php:75
+msgid "This table shows the open issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:61 IDF/Views/Issue.php:217 IDF/Views/Issue.php:298
+#: IDF/Views/Issue.php:387 IDF/Views/Issue.php:539 IDF/Views/Issue.php:762
+#: IDF/Views/Issue.php:821 IDF/Views/Review.php:57 IDF/Views/User.php:81
+msgid "Id"
+msgstr ""
+
+#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:220 IDF/Views/Issue.php:302
+#: IDF/Views/Issue.php:390 IDF/Views/Issue.php:542 IDF/Views/Issue.php:765
+#: IDF/Views/Issue.php:824 IDF/Views/Review.php:60 IDF/Views/User.php:85
+msgid "Last Updated"
+msgstr ""
+
+#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:224 IDF/Views/Issue.php:306
+#: IDF/Views/Issue.php:394 IDF/Views/Issue.php:546 IDF/Views/Issue.php:769
+#: IDF/Views/Issue.php:828
+msgid "No issues were found."
+msgstr ""
+
+#: IDF/Views/Issue.php:113
+msgid "Not assigned"
+msgstr ""
+
+#: IDF/Views/Issue.php:146
+#, php-format
+msgid "Summary of tracked issues in %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:191
+#, php-format
+msgid "Watch List: Closed Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:192
+#, php-format
+msgid "This table shows the closed issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:197
+#, php-format
+msgid "Watch List: Open Issues for %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:198
+#, php-format
+msgid "This table shows the open issues in your watch list for %s project."
+msgstr ""
+
+#: IDF/Views/Issue.php:274
+msgid "Watch List: Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:275
+msgid "This table shows the closed issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:280
+msgid "Watch List: Open Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:281
+msgid "This table shows the open issues in your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:300 IDF/Views/User.php:82
+msgid "Project"
+msgstr ""
+
+#: IDF/Views/Issue.php:341
+#, php-format
+msgid "%s %s Submitted %s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:345
+#, php-format
+msgid "%s %s Closed Submitted %s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:349
+#, php-format
+msgid "%s %s Closed Working %s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:353
+#, php-format
+msgid "%s %s Working %s Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:414
+msgid "Submit a new issue"
+msgstr ""
+
+#: IDF/Views/Issue.php:430
+#, php-format
+msgid "Issue %d has been created."
+msgstr ""
+
+#: IDF/Views/Issue.php:487
+#, php-format
+msgid "Search issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:489
+#, php-format
+msgid "Search closed issues - %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:536
+msgid "This table shows the found issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:601
+#, php-format
+msgid "Issue %d: %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:625
+#, php-format
+msgid "Issue %d has been updated."
+msgstr ""
+
+#: IDF/Views/Issue.php:715
+#, php-format
+msgid "View %s"
+msgstr ""
+
+#: IDF/Views/Issue.php:742
+#, php-format
+msgid "%s Closed Issues"
+msgstr ""
+
+#: IDF/Views/Issue.php:752
+msgid "This table shows the closed issues."
+msgstr ""
+
+#: IDF/Views/Issue.php:795
+#, php-format
+msgid "%1$s Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:798
+#, php-format
+msgid "%1$s Closed Issues with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Issue.php:811
+#, php-format
+msgid "This table shows the issues with label %s."
+msgstr ""
+
+#: IDF/Views/Issue.php:934
+msgid "The issue has been removed from your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:937
+msgid "The issue has been added to your watch list."
+msgstr ""
+
+#: IDF/Views/Issue.php:1035
+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:178
+msgid "This table shows the project updates."
+msgstr ""
+
+#: IDF/Views/Project.php:189
+msgid "Change"
+msgstr ""
+
+#: IDF/Views/Project.php:193
+msgid "No changes were found."
+msgstr ""
+
+#: IDF/Views/Project.php:294
+#, php-format
+msgid "%s Project Summary"
+msgstr ""
+
+#: IDF/Views/Project.php:329
+#, php-format
+msgid "%s Issue Tracking Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:338
+msgid "The issue tracking configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:375
+#, php-format
+msgid "%s Downloads Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:384
+msgid "The downloads configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:418
+#, php-format
+msgid "%s Documentation Configuration"
+msgstr ""
+
+#: IDF/Views/Project.php:427
+msgid "The documentation configuration has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:461
+#, php-format
+msgid "%s Project Members"
+msgstr ""
+
+#: IDF/Views/Project.php:470
+msgid "The project membership has been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:493
+#, php-format
+msgid "%s Tabs Access Rights"
+msgstr ""
+
+#: IDF/Views/Project.php:507
+msgid "The project tabs access rights have been saved."
+msgstr ""
+
+#: IDF/Views/Project.php:553
+#, php-format
+msgid "%s Source"
+msgstr ""
+
+#: IDF/Views/Project.php:567
+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 %d has been created."
+msgstr ""
+
+#: IDF/Views/Review.php:140
+#, php-format
+msgid "Review %d: %s"
+msgstr ""
+
+#: IDF/Views/Review.php:160
+#, php-format
+msgid "Your code review %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:147 IDF/Views/Source.php:228 IDF/Views/Source.php:356
+#, php-format
+msgid "%1$s %2$s Source Tree"
+msgstr ""
+
+#: IDF/Views/Source.php:304
+#, php-format
+msgid "%s Commit Details"
+msgstr ""
+
+#: IDF/Views/Source.php:305
+#, php-format
+msgid "%s Commit Details - %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:106 IDF/Views/Wiki.php:147
+msgid "Page Title"
+msgstr ""
+
+#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149
+msgid "Updated"
+msgstr ""
+
+#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:153
+msgid "No documentation pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:90
+#, php-format
+msgid "Documentation Search - %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:101
+msgid "This table shows the pages found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:112
+msgid "No pages were found."
+msgstr ""
+
+#: IDF/Views/Wiki.php:131
+#, php-format
+msgid "%1$s Documentation Pages with Label %2$s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:141
+#, php-format
+msgid "This table shows the documentation pages with label %s."
+msgstr ""
+
+#: IDF/Views/Wiki.php:184
+#, php-format
+msgid "The page %s has been created."
+msgstr ""
+
+#: IDF/Views/Wiki.php:271
+msgid "The old revision has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:277
+#, php-format
+msgid "Delete Old Revision of %s"
+msgstr ""
+
+#: IDF/Views/Wiki.php:322
+#, php-format
+msgid "The page %s has been updated."
+msgstr ""
+
+#: IDF/Views/Wiki.php:360
+msgid "The documentation page has been deleted."
+msgstr ""
+
+#: IDF/Views/Wiki.php:368
+#, php-format
+msgid "Delete Page %s"
+msgstr ""
+
+#: IDF/Views.php:126 IDF/Views.php:152
+msgid "Confirm Your Account Creation"
+msgstr "Hesabınızın Oluşturulmasını Onaylayın"
+
+#: IDF/Views.php:172
+msgid ""
+"Welcome! You can now participate in the life of your project of choice."
+msgstr ""
+
+#: IDF/Views.php:198 IDF/Views.php:222 IDF/Views.php:263
+msgid "Password Recovery"
+msgstr ""
+
+#: IDF/Views.php:242
+msgid ""
+"Welcome back! Next time, you can use your broswer options to remember the "
+"password."
+msgstr ""
+
+#: IDF/Views.php:284
+msgid "Here to Help You!"
+msgstr ""
+
+#: IDF/Views.php:300
+msgid "InDefero API (Application Programming Interface)"
+msgstr ""
+
+#: IDF/WikiPage.php:62
+msgid "title"
+msgstr "başlık"
+
+#: IDF/WikiPage.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/WikiPage.php:71
+msgid "A one line description of the page content."
+msgstr ""
+
+#: IDF/WikiPage.php:196 IDF/WikiRevision.php:167
+#, php-format
+msgid "%2$s, %3$s"
+msgstr ""
+
+#: IDF/WikiPage.php:198
+#, php-format
+msgid "Creation of page %s, by %s"
+msgstr ""
+
+#: IDF/WikiPage.php:208
+#, php-format
+msgid "%s: Documentation page %s added - %s"
+msgstr ""
+
+#: IDF/WikiRevision.php:48
+msgid "page"
+msgstr "sayfa"
+
+#: IDF/WikiRevision.php:66
+msgid "A one line description of the changes."
+msgstr ""
+
+#: IDF/WikiRevision.php:72
+msgid "content"
+msgstr "içerik"
+
+#: IDF/WikiRevision.php:189
+#, php-format
+msgid "Change of %s, by %s"
+msgstr ""
+
+#: IDF/WikiRevision.php:208
+#, php-format
+msgid "%s: Documentation page %s updated - %s"
+msgstr ""
+
+#: IDF/WikiRevision.php:262
+#, php-format
+msgid "New Documentation Page %s - %s (%s)"
+msgstr ""
+
+#: IDF/WikiRevision.php:268
+#, php-format
+msgid "Documentation Page Changed %s - %s (%s)"
+msgstr ""
+
+
diff --git a/src/IDF/locale/zh_CN/idf.po b/src/IDF/locale/zh_CN/idf.po
index 6c67c41..6e4da0e 100644
--- a/src/IDF/locale/zh_CN/idf.po
+++ b/src/IDF/locale/zh_CN/idf.po
@@ -1,14 +1,15 @@
# 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.
-#
+#
+# Translators:
+# William MARTIN , 2011.
msgid ""
msgstr ""
"Project-Id-Version: Indefero\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-10 10:02+0100\n"
-"PO-Revision-Date: 2011-03-04 18:20+0000\n"
+"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n"
+"POT-Creation-Date: 2011-10-31 01:11+0100\n"
+"PO-Revision-Date: 2011-10-31 00:19+0000\n"
"Last-Translator: tommyd \n"
"Language-Team: LANGUAGE \n"
"MIME-Version: 1.0\n"
@@ -17,169 +18,35 @@ msgstr ""
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0\n"
-#: IDF/IssueComment.php:51
-msgid "issue"
-msgstr "问题"
-
-#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/FileComment.php:49
-#: IDF/Review/FileComment.php:69 IDF/Review/Comment.php:62
-msgid "comment"
-msgstr "评论"
-
-#: IDF/IssueComment.php:65 IDF/Upload.php:85 IDF/Commit.php:63
-#: IDF/IssueFile.php:57 IDF/Issue.php:67 IDF/WikiRevision.php:79
-#: IDF/Review.php:80 IDF/Review/Comment.php:69 IDF/WikiPage.php:78
-msgid "submitter"
-msgstr "上传者"
-
-#: IDF/IssueComment.php:72 IDF/Upload.php:63 IDF/WikiRevision.php:85
-#: IDF/Review/Comment.php:75
-msgid "changes"
-msgstr "修改"
-
-#: IDF/IssueComment.php:73
-msgid "Serialized array of the changes in the issue."
-msgstr ""
-
-#: IDF/IssueComment.php:79 IDF/Upload.php:106 IDF/Commit.php:100
-#: IDF/IssueFile.php:96 IDF/Issue.php:105 IDF/WikiRevision.php:92
-#: IDF/Review.php:108 IDF/Review/Patch.php:87 IDF/Review/FileComment.php:75
-#: IDF/Review/Comment.php:90 IDF/WikiPage.php:100
-msgid "creation date"
-msgstr "创建日期"
-
-#: IDF/IssueComment.php:143 IDF/Issue.php:194
-#, php-format
-msgid ""
-"Issue %3$d, %4$s"
-msgstr "问题 %3$d, %4$s"
-
-#: IDF/IssueComment.php:151
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:6
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:11
-#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:3
-#: IDF/gettexttemplates/idf/review/view.html.php:40
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12
-#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:3
-#: IDF/gettexttemplates/idf/issues/view.html.php:17
-msgid "Summary:"
-msgstr "摘要:"
-
-#: IDF/IssueComment.php:153
-#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:4
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:10
-#: IDF/gettexttemplates/idf/review/view.html.php:41
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:6
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:13
-#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:4
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:7
-#: IDF/gettexttemplates/idf/issues/view.html.php:18
-#: IDF/gettexttemplates/idf/issues/view.html.php:28
-msgid "Status:"
-msgstr "状态"
-
-#: IDF/IssueComment.php:155
-#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:5
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:14
-#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:5
-#: IDF/gettexttemplates/idf/issues/view.html.php:19
-#: IDF/gettexttemplates/idf/issues/view.html.php:29
-msgid "Owner:"
-msgstr "所有者"
-
-#: IDF/IssueComment.php:157 IDF/gettexttemplates/idf/wiki/delete.html.php:13
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:10
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:9
-#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:12
-#: IDF/gettexttemplates/idf/wiki/view.html.php:16
-#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:7
-#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:6
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:13
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:9
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:10
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:15
-#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:6
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:9
-#: IDF/gettexttemplates/idf/issues/view.html.php:20
-#: IDF/gettexttemplates/idf/issues/view.html.php:31
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:11
-#: IDF/gettexttemplates/idf/downloads/view.html.php:16
-#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7
-#: IDF/WikiRevision.php:175
-msgid "Labels:"
-msgstr "标签"
-
-#: IDF/IssueComment.php:171
-#, php-format
-msgid "Comment on issue %d, by %s"
-msgstr "评论 issue %d, 由 %s"
-
-#: IDF/IssueComment.php:182
-#, php-format
-msgid "%s: Comment on issue %d - %s"
-msgstr ""
-
-#: IDF/Upload.php:49 IDF/Commit.php:55 IDF/Conf.php:54 IDF/Search/Occ.php:69
-#: IDF/Issue.php:52 IDF/Review.php:65 IDF/WikiPage.php:54 IDF/Tag.php:52
+#: IDF/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52 IDF/Review.php:65
+#: IDF/Search/Occ.php:69 IDF/Tag.php:52 IDF/Upload.php:49 IDF/WikiPage.php:54
msgid "project"
msgstr "项目"
-#: IDF/Upload.php:57 IDF/Commit.php:87 IDF/Issue.php:60
-#: IDF/WikiRevision.php:65 IDF/Review.php:73 IDF/Review/Patch.php:60
-#: IDF/WikiPage.php:70
+#: 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/WikiPage.php:78
+#: IDF/WikiRevision.php:79
+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/WikiPage.php:70
+#: IDF/WikiRevision.php:65
msgid "summary"
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
-msgid "file size in bytes"
-msgstr ""
-
-#: IDF/Upload.php:93 IDF/Issue.php:92 IDF/Review.php:95 IDF/WikiPage.php:94
-msgid "labels"
-msgstr "标签"
-
-#: IDF/Upload.php:100
-msgid "number of downloads"
-msgstr "下载数量"
-
-#: IDF/Upload.php:112 IDF/IssueFile.php:102 IDF/Issue.php:111
-#: IDF/Review.php:114 IDF/WikiPage.php:106
-msgid "modification date"
-msgstr "修改日期"
-
-#: IDF/Upload.php:189
-#, php-format
-msgid "Download %2$d, %3$s"
-msgstr ""
-
-#: IDF/Upload.php:192
-#, php-format
-msgid "Addition of download %d, by %s"
-msgstr ""
-
-#: IDF/Upload.php:202
-#, php-format
-msgid "%s: Download %d added - %s"
-msgstr ""
-
-#: IDF/Upload.php:244
-#, php-format
-msgid "New download - %s (%s)"
-msgstr "上传 - %s (%s)"
-
#: 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/WikiPage.php:100 IDF/WikiRevision.php:92
+msgid "creation date"
+msgstr "创建日期"
+
#: IDF/Commit.php:238
#, php-format
msgid "Commit %s, by %s"
@@ -190,6 +57,931 @@ msgstr ""
msgid "New Commit %s - %s (%s)"
msgstr ""
+#: IDF/Conf.php:61 IDF/Gconf.php:73
+msgid "key"
+msgstr "键"
+
+#: IDF/Conf.php:67 IDF/Gconf.php:79
+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/ProjectCreate.php:38 IDF/Views/Project.php:587
+msgid "git"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:588
+msgid "Subversion"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:589
+msgid "mercurial"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:590
+msgid "monotone"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44
+#: IDF/Form/ProjectConf.php:38 IDF/Views/Admin.php:66 IDF/Views/Admin.php:210
+msgid "Name"
+msgstr "名字"
+
+#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77
+#: IDF/gettexttemplates/idf/base-full.html.php:5
+#: IDF/gettexttemplates/idf/base.html.php:5
+#: IDF/gettexttemplates/idf/index.html.php:7
+#: IDF/gettexttemplates/idf/index.html.php:8
+#: IDF/gettexttemplates/idf/main-menu.html.php:8
+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
+msgid "Repository type"
+msgstr "仓库类型"
+
+#: IDF/Form/Admin/ProjectCreate.php:85
+msgid "Remote Subversion repository"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:92 IDF/Form/SourceConf.php:40
+msgid "Repository username"
+msgstr "仓库用户名称"
+
+#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:47
+msgid "Repository password"
+msgstr "仓库用户密码"
+
+#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/Admin/ProjectUpdate.php:59
+msgid "Master branch"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:109 IDF/Form/Admin/ProjectUpdate.php:62
+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:114 IDF/Form/Admin/ProjectUpdate.php:68
+#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53
+msgid "Project owners"
+msgstr "项目所有者"
+
+#: IDF/Form/Admin/ProjectCreate.php:123 IDF/Form/Admin/ProjectUpdate.php:76
+#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52
+msgid "Project members"
+msgstr "项目成员"
+
+#: IDF/Form/Admin/ProjectCreate.php:136
+msgid "Project template"
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:138
+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:185
+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:201
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashs and dots as separators."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101
+msgid "This master branch is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:222
+msgid ""
+"This shortname contains illegal characters, please use only letters, digits "
+"and dash (-)."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:225
+msgid "The shortname cannot start with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:228
+msgid "The shortname cannot end with the dash (-) character."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:233
+msgid "This shortname is already used. Please select another one."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:279 IDF/Form/Admin/ProjectDelete.php:78
+#: IDF/Form/Admin/ProjectUpdate.php:121 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:98 IDF/Form/UpdateUpload.php:126
+#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:216
+#: IDF/Form/UserChangeEmail.php:80 IDF/Form/WikiCreate.php:167
+#: IDF/Form/WikiDelete.php:59 IDF/Form/WikiUpdate.php:178
+msgid "Cannot save the model from an invalid form."
+msgstr ""
+
+#: IDF/Form/Admin/ProjectCreate.php:295
+msgid ""
+"Click on the Project Management tab to set the description of your project."
+msgstr "在项目管理里管理项目描述"
+
+#: IDF/Form/Admin/ProjectCreate.php:363
+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/ProjectUpdate.php:90
+msgid ""
+"The master branch is empty or contains illegal characters, please use only "
+"letters, digits, dashes and dots as separators."
+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:47 IDF/Form/ReviewCreate.php:54
+#: IDF/Form/UpdateUpload.php:51 IDF/Form/Upload.php:49
+#: IDF/Form/UserAccount.php:101 IDF/Form/WikiCreate.php:70
+#: IDF/Form/WikiUpdate.php:60
+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:211
+msgid "Staff"
+msgstr "工作人员"
+
+#: IDF/Form/Admin/UserUpdate.php:164
+msgid "If you give staff rights to a user, you really need to trust them."
+msgstr ""
+
+#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:213
+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:313 IDF/Views/Issue.php:62 IDF/Views/Issue.php:218
+#: IDF/Views/Issue.php:299 IDF/Views/Issue.php:388 IDF/Views/Issue.php:540
+#: IDF/Views/Issue.php:763 IDF/Views/Issue.php:822 IDF/Views/Review.php:58
+#: IDF/Views/User.php:83 IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:107
+#: IDF/Views/Wiki.php:148
+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:219 IDF/Views/Issue.php:301
+#: IDF/Views/Issue.php:389 IDF/Views/Issue.php:541 IDF/Views/Issue.php:764
+#: IDF/Views/Issue.php:823 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:168 IDF/Form/IssueUpdate.php:164
+#: IDF/Form/UpdateUpload.php:71 IDF/Form/Upload.php:70
+#: IDF/Form/WikiCreate.php:93 IDF/Form/WikiUpdate.php:104
+msgid "Labels"
+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:120
+#: IDF/Form/WikiCreate.php:151 IDF/Form/WikiUpdate.php:162
+msgid "You provided an invalid label."
+msgstr ""
+
+#: IDF/Form/IssueCreate.php:217 IDF/Form/UpdateUpload.php:109
+#: IDF/Form/Upload.php:119
+#, php-format
+msgid "You cannot provide more than 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\"."
+msgstr ""
+
+#: IDF/Form/IssueUpdate.php:56 IDF/Form/ReviewFileComment.php:45
+#: IDF/Form/WikiUpdate.php:82
+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:42
+msgid "Short Description"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:58
+msgid "The \"upload_path\" configuration variable was not set."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:63
+msgid "Update the logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:65
+msgid "The logo must be a picture with a size of 32 by 32."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:75
+msgid "Remove the current logo"
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:111
+msgid "Could not determine the size of the uploaded picture."
+msgstr ""
+
+#: IDF/Form/ProjectConf.php:115
+msgid "The picture must have a size of 32 by 32."
+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
+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 \"%s\" is already used. If you need to, click on the help link to "
+"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
+msgid ""
+"This account has already been confirmed. Maybe should you try to recover "
+"your password using the help link."
+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:56
+msgid "Webhook URL"
+msgstr ""
+
+#: IDF/Form/SourceConf.php:58
+#, php-format
+msgid "Learn more about the post-commit web hooks."
+msgstr ""
+
+#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4
+#: IDF/gettexttemplates/idf/base-full.html.php:7
+#: 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:11
+#: 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:8
+#: 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:10
+#: IDF/gettexttemplates/idf/base.html.php:10
+msgid "Source"
+msgstr "源代码"
+
+#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:9
+#: 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:83
+msgid "Extra authorized users"
+msgstr "允许访问用户(客户列表)"
+
+#: IDF/Form/Upload.php:59 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:312
+msgid "File"
+msgstr "文件"
+
+#: IDF/Form/Upload.php:86
+msgid "For security reasons, you cannot upload a file with this extension."
+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:59
+msgid "Your mail"
+msgstr "你的Email"
+
+#: 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 mail address"
+msgstr ""
+
+#: IDF/Form/UserAccount.php:173
+msgid "You will get a mail 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/WikiCreate.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/WikiCreate.php:57
+msgid "PageName"
+msgstr "页面名称"
+
+#: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50
+msgid "Page title"
+msgstr "标题"
+
+#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56
+msgid ""
+"The page name must contains only letters, digits and the dash (-) character."
+msgstr "标题只能包含字母、数字和连接号(-)"
+
+#: IDF/Form/WikiCreate.php:71 IDF/Form/WikiUpdate.php:61
+msgid "This one line description is displayed in the list of pages."
+msgstr "描述显示在文档列表页面"
+
+#: IDF/Form/WikiCreate.php:80 IDF/Form/WikiUpdate.php:72
+msgid "Content"
+msgstr "内容"
+
+#: IDF/Form/WikiCreate.php:108 IDF/Form/WikiUpdate.php:119
+msgid "The title contains invalid characters."
+msgstr ""
+
+#: IDF/Form/WikiCreate.php:114 IDF/Form/WikiUpdate.php:125
+msgid "A page with this title already exists."
+msgstr ""
+
+#: IDF/Form/WikiCreate.php:150 IDF/Form/WikiUpdate.php:161
+#, php-format
+msgid "You cannot provide more than label from the %s class to a page."
+msgstr ""
+
+#: IDF/Form/WikiCreate.php:200
+msgid "Initial page creation"
+msgstr ""
+
+#: IDF/Form/WikiDelete.php:39
+msgid "Yes, I understand that the page and all its revisions will be deleted."
+msgstr ""
+
+#: IDF/Form/WikiDelete.php:50
+msgid "You need to confirm the deletion."
+msgstr ""
+
+#: IDF/Form/WikiUpdate.php:83
+msgid "One line to describe the changes you made."
+msgstr ""
+
#: IDF/Gconf.php:60 IDF/Search/Occ.php:56
msgid "model class"
msgstr ""
@@ -198,95 +990,482 @@ msgstr ""
msgid "model id"
msgstr ""
-#: IDF/Gconf.php:73 IDF/Conf.php:61
-msgid "key"
-msgstr "键"
+#: IDF/gettexttemplates/idf/admin/base.html.php:3
+msgid "Project Summary"
+msgstr "项目摘要"
-#: IDF/Gconf.php:79 IDF/Conf.php:67
-msgid "value"
-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
+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.
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"
+"
提示:
\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.
\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 a URL to which a HTTP POST\n"
+"request is sent after each repository commit. If this field is empty,\n"
+"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.html.php:4
+#: IDF/gettexttemplates/idf/index.html.php:6
+#: IDF/gettexttemplates/idf/main-menu.html.php:7
+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 ""
+"\n"
+"Only project members and admins have write access to the source. \n"
+"If you restrict the access to the source, anonymous access is \n"
+"not provided and the users must authenticate themselves with their \n"
+"password or SSH key."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
+msgid ""
+"You can configure here the project tabs access rights and notification "
+"emails."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
+#, php-format
+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 ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
+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. 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:11
+msgid ""
+"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:12
+msgid ""
+"The form contains some errors. Please correct them to update the access "
+"rights."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
+msgid "Access Rights"
+msgstr "访问权限"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
+msgid "Notification Email"
+msgstr "提醒Email"
+
+#: IDF/gettexttemplates/idf/admin/tabs.html.php:16
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:17
+#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:15
+msgid "Instructions:"
+msgstr "提示:"
+
+#: IDF/gettexttemplates/idf/base-full.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
+msgid "Project Home"
+msgstr "项目首页"
+
+#: IDF/gettexttemplates/idf/base-full.html.php:12
+#: 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:234
+msgid "New Download"
+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/delete.html.php:7
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:8
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:4
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:5
+#: IDF/gettexttemplates/idf/wiki/view.html.php:8
+#: IDF/gettexttemplates/idf/wiki/view.html.php:9
+#, 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:7
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
+#: 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/create.html.php:7
+#: IDF/gettexttemplates/idf/wiki/delete.html.php:10
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7
+#: IDF/gettexttemplates/idf/wiki/update.html.php:7
+msgid "Cancel"
+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/delete.html.php:12
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:9
+#: IDF/gettexttemplates/idf/wiki/view.html.php:15
+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/index.html.php:15
+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/view.html.php:17
+#: 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: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/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/delete.html.php:13
+#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:10
+#: IDF/gettexttemplates/idf/wiki/view.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/WikiRevision.php:175
+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/issues/issue-created-email.txt.php:5
+#: 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/issues/issue-created-email.txt.php:6
+#: 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
+msgid "Submitted by:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8
+msgid "Download:"
+msgstr "下载:"
+
+#: IDF/gettexttemplates/idf/downloads/download-created-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/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/submit.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/submit.html.php:6
+#, php-format
+msgid ""
+"You can use the Markdown syntax for the description."
+msgstr "你可以在描述中使用 Markdown 语法"
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:7
+msgid "The form contains some errors. Please correct them to submit the file."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:8
+msgid "Submit File"
+msgstr "提交文件"
+
+#: IDF/gettexttemplates/idf/downloads/submit.html.php:10
+#: 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/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/update.html.php:9
+#: IDF/gettexttemplates/idf/wiki/view.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.html.php:34
+msgid "Here we are, just to help you."
+msgstr ""
-#: IDF/Views.php:47 IDF/gettexttemplates/idf/faq.html.php:35
-#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
#: IDF/gettexttemplates/idf/faq-api.html.php:4
+#: IDF/gettexttemplates/idf/faq.html.php:35
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:3
#: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57
+#: IDF/Views.php:47
msgid "Projects"
msgstr "项目列表"
-#: IDF/Views.php:90 IDF/gettexttemplates/idf/register/index.html.php:6
-msgid "Create Your Account"
-msgstr "注册"
-
-#: IDF/Views.php:126 IDF/Views.php:152
-msgid "Confirm Your Account Creation"
-msgstr ""
-
-#: IDF/Views.php:172
-msgid "Welcome! You can now participate in the life of your project of choice."
-msgstr ""
-
-#: IDF/Views.php:198 IDF/Views.php:222 IDF/Views.php:263
-msgid "Password Recovery"
-msgstr "找回密码"
-
-#: IDF/Views.php:242
-msgid ""
-"Welcome back! Next time, you can use your broswer options to remember the "
-"password."
-msgstr "欢迎回来!接下来,你可以使用浏览器记住你的密码"
-
-#: IDF/Views.php:284
-msgid "Here to Help You!"
-msgstr "希望这些能帮到你"
-
-#: IDF/Views.php:300
-msgid "InDefero API (Application Programming Interface)"
-msgstr ""
-
-#: IDF/Scm/Mercurial.php:138 IDF/Scm/Git.php:288
-#, php-format
-msgid "Folder %1$s not found in commit %2$s."
-msgstr ""
-
-#: IDF/Scm/Mercurial.php:155 IDF/Scm/Git.php:404
-#, php-format
-msgid "Not a valid tree: %s."
-msgstr ""
-
-#: IDF/Scm/Monotone/Stdio.php:79
-msgid "Monotone client key name or hash not in project conf."
-msgstr ""
-
-#: IDF/Scm/Monotone/Stdio.php:87 IDF/Plugin/SyncMonotone.php:187
-#, php-format
-msgid "The key directory %s could not be created."
-msgstr ""
-
-#: IDF/Scm/Monotone/Stdio.php:98
-#, php-format
-msgid "Could not write client key \"%s\""
-msgstr ""
-
-#: IDF/Scm/Git.php:237
-#, php-format
-msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s."
-msgstr ""
-
-#: IDF/EmailAddress.php:49 IDF/Key.php:49
-msgid "user"
-msgstr "用户"
-
-#: IDF/EmailAddress.php:55
-#, fuzzy
-msgid "email"
-msgstr "Email"
-
#: IDF/gettexttemplates/idf/faq.html.php:3
msgid ""
"
This is simple:
\n"
"\n"
-"
Write in the comments \"This is a duplicate of issue 123\", change 123 "
-"with the corresponding issue number.
\n"
+"
Write in the comments \"This is a duplicate of issue 123\", change 123 with the corresponding issue number.
\n"
"
Change the status of the current issue to Duplicate.
\n"
"
Submit the changes.
\n"
""
@@ -294,8 +1473,9 @@ msgstr ""
#: IDF/gettexttemplates/idf/faq.html.php:9
msgid ""
-"You need to create an account on Gravatar, this takes about 5 minutes and is free."
+"You need to create an account on Gravatar, this takes about 5 minutes "
+"and is free."
msgstr ""
#: IDF/gettexttemplates/idf/faq.html.php:10
@@ -386,162 +1566,38 @@ msgstr ""
msgid "Alt+4: Search (when available)."
msgstr ""
-#: IDF/gettexttemplates/idf/faq.html.php:34
-#: IDF/gettexttemplates/idf/faq-api.html.php:3
-msgid "Here we are, just to help you."
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:4
+msgid "People"
+msgstr "用户列表"
+
+#: IDF/gettexttemplates/idf/gadmin/base.html.php:5
+msgid "Usher"
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"
+#: IDF/gettexttemplates/idf/gadmin/home.html.php:3
+msgid "You have here access to the administration of the forge."
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/gadmin/home.html.php:4
+#: IDF/gettexttemplates/idf/project/home.html.php:3
+#: IDF/gettexttemplates/idf/project/timeline.html.php:4
+msgid "Welcome"
+msgstr "欢迎"
-#: IDF/gettexttemplates/idf/register/inputkey.html.php:4
-msgid "Confirm Your Account"
-msgstr "确认你的账户"
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:6
+msgid "Project List"
+msgstr "项目列表"
-#: IDF/gettexttemplates/idf/register/inputkey.html.php:5
-#: IDF/gettexttemplates/idf/register/index.html.php:7
-#: IDF/gettexttemplates/idf/register/confirmation.html.php:7
-#: 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/user/myaccount.html.php:13
-#: IDF/gettexttemplates/idf/user/changeemail.html.php:5
-#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5
-#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7
-#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5
-#: IDF/gettexttemplates/idf/wiki/create.html.php:7
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:10
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7
-#: IDF/gettexttemplates/idf/wiki/update.html.php:7
-#: IDF/gettexttemplates/idf/review/create.html.php:12
-#: IDF/gettexttemplates/idf/review/view.html.php:43
-#: IDF/gettexttemplates/idf/issues/create.html.php:14
-#: IDF/gettexttemplates/idf/issues/view.html.php:25
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:7
-#: IDF/gettexttemplates/idf/downloads/submit.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:8
-msgid "Cancel"
-msgstr "取消"
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4
+#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16
+#: IDF/gettexttemplates/idf/index.html.php:5 IDF/Views/Admin.php:128
+msgid "Create Project"
+msgstr "创建项目"
-#: 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
-#: IDF/gettexttemplates/idf/downloads/submit.html.php:10
-msgid "Instructions"
-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/register/index.html.php:3
-msgid ""
-"Read the terms and conditions "
-"– basically \"Please be nice, we respect you\"."
-msgstr ""
-"阅读 注册协议 – jerry "
-"\"请善用此系统\"."
-
-#: IDF/gettexttemplates/idf/register/index.html.php:4
-#, 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:5
-#, fuzzy
-msgid "Oops, please check the provided login and email address to register."
-msgstr "注册失败,请检查一下你提供的账号和Email"
-
-#: IDF/gettexttemplates/idf/register/index.html.php:8
-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:9
-msgid "Did you know?"
-msgstr "你知道吗?"
-
-#: 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:4
-#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10
-#: IDF/gettexttemplates/idf/user/myaccount.html.php:4
-#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4
-msgid "Login:"
-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 ""
-
-#: IDF/gettexttemplates/idf/index.atom.php:3
-#, php-format
-msgid "Personal project feed for %%user%%."
-msgstr ""
+#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5
+msgid "Change Project Details"
+msgstr "修改项目摘要"
#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3
msgid ""
@@ -551,38 +1607,17 @@ msgstr ""
#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4
msgid ""
-"Once you have defined the repository type, you cannot change it"
-"strong>."
+"Once you have defined the repository type, you cannot change "
+"it."
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"
+"
Specify each person by its login. Each person must have already registered with the given login.
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.
"
+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/summary.html.php:4
+#, php-format
+msgid "Unresolved: By %%key%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:5
+msgid "Status Summary"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/summary.html.php:6
+msgid "Unresolved: By Assignee"
+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] ""
+
+#: 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] ""
+
+#: 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] "%%interested%% 人"
+
+#: 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
+msgid "Click here to view the previous closed issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:13
+msgid "Click here to view the previous open issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:14
+msgid "Click here to view the next closed issue"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/issues/view.html.php:15
+msgid "Click here to 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/login_form.html.php:3
#, php-format
msgid ""
-"If you don't have an account yet, you can create one here."
+"If you don't have an account yet, you can create one here."
msgstr ""
#: IDF/gettexttemplates/idf/login_form.html.php:4
@@ -1009,37 +2367,756 @@ msgstr ""
msgid "It takes less than a minute to create your account."
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:3
+#: IDF/gettexttemplates/idf/main-menu.html.php:3
#, php-format
-msgid "You are looking at the public profile of %%member%%."
-msgstr "你正在查看 %%member%% 的公开资料"
+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:9 IDF/Views/Admin.php:42
+msgid "Forge Management"
+msgstr "系统管理"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:10
+msgid "Help and accessibility features"
+msgstr "帮助和辅助功能"
+
+#: IDF/gettexttemplates/idf/main-menu.html.php:11
+#: 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: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
+#: IDF/gettexttemplates/idf/project/home.html.php:8
+msgid "show more..."
+msgstr "显示更多..."
+
+#: IDF/gettexttemplates/idf/project/home.html.php:7
+msgid "Featured Documentation"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/project/home.html.php:9
+msgid "Development Team"
+msgstr "开发团队"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:10
+msgid "Admins"
+msgstr "管理员"
+
+#: IDF/gettexttemplates/idf/project/home.html.php:11
+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/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 ""
+
+#: 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 to log in afterwards."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/register/index.html.php:3
+msgid ""
+"Read the terms and conditions "
+"– basically \"Please be nice, we respect you\"."
+msgstr ""
+"阅读 注册协议 – jerry "
+"\"请善用此系统\"."
+
+#: 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. Just go here to 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:90
+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.
\n"
+"
Check your patch does not provide any password or confidential information!
\n"
+"
"
+msgstr ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:18
+#: IDF/gettexttemplates/idf/source/commit.html.php:3
+#, php-format
+msgid "%%ndiff%% diff"
+msgid_plural "%%ndiff%% diffs"
+msgstr[0] ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:19
+#, php-format
+msgid "%%nc%% comment"
+msgid_plural "%%nc%% comments"
+msgstr[0] ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:20
+#, php-format
+msgid ""
+"Comment %%i%% by %%who%%,"
+" %%c.creation_dtime%%"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/review/view.html.php:21
+#, php-format
+msgid "Your comments on the changes in file %%file%%:"
+msgstr ""
+
+#: 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
+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
+msgid "Commit:"
+msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:4
#: IDF/gettexttemplates/idf/review/view.html.php:30
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:10
-#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:9
-msgid "Description:"
-msgstr "描述:"
-
-#: IDF/gettexttemplates/idf/user/public.html.php:5
-msgid "Twitter:"
+#: IDF/gettexttemplates/idf/source/commit.html.php:8
+msgid "View corresponding source tree"
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:6
-msgid "Public Email:"
+#: IDF/gettexttemplates/idf/review/view.html.php:32
+msgid "Reviewers:"
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:7
-msgid "Website:"
+#: IDF/gettexttemplates/idf/review/view.html.php:33
+msgid "No reviewers at the moment."
msgstr ""
-#: IDF/gettexttemplates/idf/user/public.html.php:8
-msgid "Last time seen:"
-msgstr "最近登录"
+#: IDF/gettexttemplates/idf/review/view.html.php:34
+msgid "Files:"
+msgstr "文件:"
-#: IDF/gettexttemplates/idf/user/public.html.php:9
-msgid "Member since:"
-msgstr "注册时间"
+#: IDF/gettexttemplates/idf/review/view.html.php:36
+#: IDF/gettexttemplates/idf/source/commit.html.php:24
+msgid "Download the corresponding diff file"
+msgstr ""
+
+#: 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:188
+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
+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
+msgid "Date:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:6
+msgid "Branch:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:9
+msgid "Parents:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:11
+msgid "Message:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:12
+#: IDF/gettexttemplates/idf/wiki/feedfragment.xml.php:3
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:10
+msgid "Changes:"
+msgstr ""
+
+#: 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
+msgid "full"
+msgstr ""
+
+#: 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
+msgid "added"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:19
+msgid "modified"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:20
+msgid "properies changed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:21
+msgid "removed"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/source/commit.html.php:22
+msgid "File differences"
+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 ""
+
+#: 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 ""
+
+#: 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 ""
+
+#: 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 " %%project%% 项目使用 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 ""
+
+#: 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 ""
+
+#: 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:314
+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
+#, 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/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/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 ""
+
+#: IDF/gettexttemplates/idf/source/svn/changelog.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/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%% 项目使用 subversion 管理源代码"
+
+#: 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
@@ -1066,32 +3143,31 @@ msgid ""
"The development team.\n"
msgstr ""
-#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3
-#, php-format
+#: 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 ""
-"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"
+"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
@@ -1138,9 +3214,8 @@ msgid "Your additional email addresses"
msgstr ""
#: IDF/gettexttemplates/idf/user/myaccount.html.php:17
-#, fuzzy
msgid "Delete this address"
-msgstr "删除此文件"
+msgstr ""
#: IDF/gettexttemplates/idf/user/myaccount.html.php:18
msgid ""
@@ -1158,41 +3233,49 @@ msgstr "扩展密码用于访问外部系统(如svn)和系统API"
msgid "Show API key and extra password"
msgstr "显示API key和扩展密码"
-#: 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/dashboard.html.php:6
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7
-msgid "Working issues:"
-msgstr "处理中的问题:"
-
-#: IDF/gettexttemplates/idf/user/dashboard.html.php:7
-#: IDF/gettexttemplates/idf/issues/my-issues.html.php:6
-msgid "Submitted issues:"
-msgstr "发布的问题:"
-
-#: 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
+#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3
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."
+"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 ""
#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4
@@ -1209,24 +3292,45 @@ msgstr ""
msgid "Reset Your Password"
msgstr "重置密码"
-#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3
-#, fuzzy
-msgid ""
-"Oops, please check the provided login or email address to recover your "
-"password."
-msgstr "出错了,请检查你提供的email或账号"
+#: 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/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."
+#: 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
+#: IDF/gettexttemplates/idf/wiki/index.html.php:4
+#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:173
+msgid "New Page"
+msgstr "新页面"
+
+#: IDF/gettexttemplates/idf/wiki/base.html.php:5
+msgid "Update This Page"
+msgstr "更新此页面"
+
#: IDF/gettexttemplates/idf/wiki/create.html.php:3
#: IDF/gettexttemplates/idf/wiki/update.html.php:3
msgid "Preview of the Page"
@@ -1236,15 +3340,6 @@ msgstr ""
msgid "The form contains some errors. Please correct them to create the page."
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/create.html.php:5
-#: IDF/gettexttemplates/idf/wiki/update.html.php:5
-#: IDF/gettexttemplates/idf/issues/create.html.php:11
-#: IDF/gettexttemplates/idf/issues/create.html.php:13
-#: IDF/gettexttemplates/idf/issues/view.html.php:22
-#: IDF/gettexttemplates/idf/issues/view.html.php:24
-msgid "Preview"
-msgstr "预览"
-
#: IDF/gettexttemplates/idf/wiki/create.html.php:6
msgid "Create Page"
msgstr "创建页面"
@@ -1252,8 +3347,7 @@ msgstr "创建页面"
#: IDF/gettexttemplates/idf/wiki/delete.html.php:3
#, php-format
msgid ""
-"You are looking at an old revision (%%oldrev.summary%%) of the "
-"page \n"
+"You are looking at an old revision (%%oldrev.summary%%) of the page \n"
"%%page.title%%. This revision was created\n"
"by %%submitter%%."
msgstr ""
@@ -1264,81 +3358,16 @@ msgid ""
"you will not be able to recover it."
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:7
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:8
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:4
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:5
-#: IDF/gettexttemplates/idf/wiki/view.html.php:8
-#: IDF/gettexttemplates/idf/wiki/view.html.php:9
-#: IDF/gettexttemplates/idf/issues/view.html.php:7
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:4
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:5
-#: IDF/gettexttemplates/idf/downloads/view.html.php:4
-#, php-format
-msgid "by %%submitter%%"
-msgstr ""
-
#: IDF/gettexttemplates/idf/wiki/delete.html.php:9
msgid "Delete Revision"
msgstr "删除版本"
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:11
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:8
-#: IDF/gettexttemplates/idf/wiki/view.html.php:14
-#: IDF/gettexttemplates/idf/review/view.html.php:25
-#: IDF/gettexttemplates/idf/issues/view.html.php:26
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:7
-msgid "Created:"
-msgstr "创建:"
-
-#: IDF/gettexttemplates/idf/wiki/delete.html.php:12
-#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:9
-#: IDF/gettexttemplates/idf/wiki/view.html.php:15
-#: IDF/gettexttemplates/idf/review/view.html.php:26
-#: IDF/gettexttemplates/idf/issues/view.html.php:27
-#: IDF/gettexttemplates/idf/downloads/delete.html.php:9
-#: IDF/gettexttemplates/idf/downloads/view.html.php:14
-msgid "Updated:"
-msgstr "更新:"
-
#: IDF/gettexttemplates/idf/wiki/delete.html.php:14
#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:11
#: IDF/gettexttemplates/idf/wiki/view.html.php:17
msgid "Old Revisions"
msgstr ""
-#: 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"
-"
To directly include a file content from the repository, embrace its path "
-"with triple square brackets: [[[path/to/file.txt]]].
Website addresses are automatically linked and you can link to another page in the documentation using double square brackets like that [[AnotherPage]].
\n"
+"
To directly include a file content from the repository, embrace its path with triple square brackets: [[[path/to/file.txt]]].
\n"
msgstr ""
#: IDF/gettexttemplates/idf/wiki/index.html.php:3
@@ -1404,6 +3398,24 @@ msgstr ""
msgid "Number of pages:"
msgstr "文档数目:"
+#: IDF/gettexttemplates/idf/wiki/search.html.php:4
+msgid "Pages found:"
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:4
+msgid "The form contains some errors. Please correct them to update the page."
+msgstr ""
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:6
+msgid "Update Page"
+msgstr "更新页面"
+
+#: IDF/gettexttemplates/idf/wiki/update.html.php:8
+#: IDF/gettexttemplates/idf/wiki/update.html.php:10
+#: IDF/gettexttemplates/idf/wiki/update.html.php:11
+msgid "Delete this page"
+msgstr ""
+
#: IDF/gettexttemplates/idf/wiki/view.html.php:3
msgid ""
"Attention! This page is marked as deprecated, \n"
@@ -1427,1280 +3439,102 @@ msgstr ""
msgid "Delete this revision"
msgstr ""
-#: IDF/gettexttemplates/idf/wiki/update.html.php:4
-msgid "The form contains some errors. Please correct them to update the page."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/wiki/update.html.php:6
-msgid "Update Page"
-msgstr "更新页面"
-
-#: IDF/gettexttemplates/idf/wiki/update.html.php:8
-#: IDF/gettexttemplates/idf/wiki/update.html.php:10
-#: IDF/gettexttemplates/idf/wiki/update.html.php:11
-msgid "Delete this page"
-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:8
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9
-msgid "Content:"
-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/base.html.php:3
-msgid "List Pages"
-msgstr "页面列表"
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3
+msgid "The following documentation page has been updated:"
+msgstr ""
-#: IDF/gettexttemplates/idf/wiki/base.html.php:5
-msgid "Update This Page"
-msgstr "更新此页面"
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7
+msgid "Updated by:"
+msgstr ""
-#: IDF/gettexttemplates/idf/wiki/base.html.php:6
-#: IDF/gettexttemplates/idf/issues/base.html.php:7
-msgid "Search"
-msgstr "搜索"
+#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13
+msgid "New content:"
+msgstr ""
-#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:3
+#: IDF/Issue.php:76
+msgid "owner"
+msgstr "所有者"
+
+#: IDF/Issue.php:84 IDF/WikiPage.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/Review.php:95 IDF/Upload.php:99 IDF/WikiPage.php:94
+msgid "labels"
+msgstr "标签"
+
+#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114
+#: IDF/Upload.php:118 IDF/WikiPage.php:106
+msgid "modification date"
+msgstr "修改日期"
+
+#: IDF/Issue.php:212 IDF/IssueComment.php:143
#, php-format
-msgid ""
-"The branch or revision %%commit%% is not valid or does not exist\n"
-"in this repository."
-msgstr ""
+msgid "Issue %3$d, %4$s"
+msgstr "问题 %3$d, %4$s"
-#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5
-msgid "The following list shows all available branches:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:6
+#: IDF/Issue.php:214
#, 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."
+msgid "Creation of issue %d, by %s"
msgstr ""
-#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:3
+#: IDF/Issue.php:224
#, php-format
-msgid ""
-"The revision identifier %%commit%% is ambiguous and can be\n"
-"expanded to multiple valid revisions - please choose one:"
-msgstr ""
+msgid "%s: Issue %d created - %s"
+msgstr "%s: Issue %d created - %s"
-#: 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/commit-created-email.txt.php:3
-msgid "A new commit has been created:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:5
-#: IDF/gettexttemplates/idf/source/commit.html.php:7
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:7
-#: IDF/gettexttemplates/idf/review/view.html.php:28
-msgid "Commit:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8
-msgid "Created at:"
-msgstr "创建于:"
-
-#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10
-msgid "Commit details:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:3
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:3
-#: IDF/gettexttemplates/idf/review/view.html.php:3
+#: IDF/Issue.php:290
#, php-format
-msgid "%%ndiff%% diff"
-msgid_plural "%%ndiff%% diffs"
-msgstr[0] ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:4
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:4
-msgid "Date:"
+msgid "Issue %s - %s (%s)"
msgstr ""
-#: IDF/gettexttemplates/idf/source/commit.html.php:5
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:5
-#: IDF/gettexttemplates/idf/review/view.html.php:27
-msgid "Author:"
-msgstr "作者:"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:6
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:6
-msgid "Branch:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:8
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:8
-#: IDF/gettexttemplates/idf/review/view.html.php:29
-msgid "View corresponding source tree"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:9
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:9
-msgid "Parents:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:10
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:10
-#: IDF/gettexttemplates/idf/source/changelog.html.php:6
-msgid "View corresponding commit"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:11
-#: IDF/gettexttemplates/idf/source/commit.html.rej.php:3
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:11
-msgid "Message:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:13
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:13
-msgid "deleted"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:14
-#: IDF/gettexttemplates/idf/source/commit.html.php:17
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:14
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:17
-msgid "full"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:15
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:15
-msgid "renamed"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:16
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:16
-msgid "added"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:18
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:18
-msgid "modified"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:19
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:19
-msgid "properies changed"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:20
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:20
-msgid "removed"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:21
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:21
-msgid "File differences"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:22
-#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:8
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:22
-#: IDF/gettexttemplates/idf/source/git/file.html.php:6
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:11
-#: IDF/gettexttemplates/idf/review/view.html.php:34
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:5
-msgid "Archive"
-msgstr "归档"
-
-#: IDF/gettexttemplates/idf/source/commit.html.php:23
-#: IDF/gettexttemplates/idf/source/commit.html.orig.php:23
-#: IDF/gettexttemplates/idf/review/view.html.php:35
-msgid "Download the corresponding diff file"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3
+#: IDF/Issue.php:336
#, php-format
-msgid "%%cproject.name%%: Commit %%c.scm_id%%"
+msgid "Updated Issue %s - %s (%s)"
msgstr ""
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:3
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3
-#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:3
-msgid "Branches"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:4
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:4
-#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:4
-msgid "filter branches"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:5
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:5
-#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:5
-msgid "Tags"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:6
-#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:6
-msgid "filter tags"
-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
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:3
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:3
-#: IDF/gettexttemplates/idf/source/git/file.html.php:3
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:3
-#, php-format
-msgid ""
-"Source at commit %%commit%% created %%"
-"cobject.date%%."
-msgstr ""
-
-#: 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
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:4
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:4
-#: IDF/gettexttemplates/idf/source/git/file.html.php:4
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:4
-#, php-format
-msgid "By %%cobject.author%%, %%cobject.title%%"
-msgstr ""
-
-#: 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
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:5
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:5
-#: IDF/gettexttemplates/idf/source/git/file.html.php:5
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:5
-msgid "Root"
-msgstr "Root"
-
-#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:9
-#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7
-#: IDF/gettexttemplates/idf/source/git/file.html.php:7
-#: IDF/gettexttemplates/idf/issues/attachment.html.php:6
-msgid "Download this file"
-msgstr "下载此文件"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:6
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:6
-#: IDF/Views/Download.php:64 IDF/Views/Download.php:292 IDF/Form/Upload.php:59
-msgid "File"
-msgstr "文件"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7
-#: IDF/gettexttemplates/idf/source/changelog.html.php:3
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:7
-#: IDF/Views/Project.php:152
-msgid "Age"
-msgstr "时间"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8
-#: IDF/gettexttemplates/idf/source/changelog.html.php:4
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:8
-msgid "Message"
-msgstr "消息"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:9
-#: IDF/Views/Download.php:66 IDF/Views/Download.php:294
-msgid "Size"
-msgstr "大小"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:10
-msgid ":"
-msgstr ":"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:12
-msgid "Download this version"
-msgstr "下载这个版本"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:13
-msgid "or"
-msgstr "或"
-
-#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14
-#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14
-#: IDF/gettexttemplates/idf/source/git/tree.html.php:14
-#: IDF/gettexttemplates/idf/main-menu.html.php:10
-msgid "Help"
-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 ""
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6
-#: IDF/gettexttemplates/idf/source/git/help.html.php:7
-msgid "To make a first commit in the repository, perform the following steps:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/help.html.php:7
-#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7
-#: IDF/gettexttemplates/idf/source/git/help.html.php:8
-#, php-format
-msgid "Find here more details on how to access %%project%% source code."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8
-#: IDF/gettexttemplates/idf/source/svn/help.html.php:8
-#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8
-#: IDF/gettexttemplates/idf/source/git/help.html.php:9
-msgid "Command-Line Access"
-msgstr "获取代码"
-
-#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9
-#: IDF/gettexttemplates/idf/source/git/help.html.php:10
-msgid "First Commit"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:10
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15
-#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3
-msgid "Revision:"
-msgstr "版本:"
-
-#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:11
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16
-#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4
-msgid "Go to revision"
-msgstr "切换版本"
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:6
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11
-msgid "Property"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/file.html.php:7
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12
-msgid "set to:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8
-msgid "Rev"
-msgstr "版本"
-
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17
-msgid "Branches:"
-msgstr "分支"
-
-#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18
-msgid "Tags:"
-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%% 项目使用 subversion 管理源代码"
-
-#: IDF/gettexttemplates/idf/source/svn/help.html.php:6
-#: IDF/gettexttemplates/idf/source/mercurial/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/svn/help.html.php:9
-#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9
-msgid "Write Access Authentication"
-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/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:5
-#: IDF/gettexttemplates/idf/source/changelog.html.php:7
-#: IDF/Form/ReviewCreate.php:74
-msgid "Commit"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/base.html.php:6
-msgid "How To Get The Code"
-msgstr "获取代码"
-
-#: IDF/gettexttemplates/idf/source/changelog.html.php:5
-msgid "Parent:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/source/changelog.html.php:8
-msgid "by"
-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%% 项目使用 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 ""
-
-#: 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:7
-#: IDF/gettexttemplates/idf/index.html.php:6
-#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77
-msgid "Private project"
-msgstr "私有项目"
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42
-msgid "Forge Management"
-msgstr "系统管理"
-
-#: IDF/gettexttemplates/idf/main-menu.html.php:9
-msgid "Help and accessibility features"
-msgstr "帮助和辅助功能"
-
-#: IDF/gettexttemplates/idf/index.html.php:4
-msgid "No projects managed with InDefero were found."
-msgstr "没有合适项目"
-
-#: IDF/gettexttemplates/idf/index.html.php:7
-#, fuzzy
-msgid "Forge statistics"
-msgstr "项目统计"
-
-#: IDF/gettexttemplates/idf/index.html.php:8
-msgid "Projects:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:9
-msgid "Members:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:10
-msgid "Issues:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:11
-msgid "Commits:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:12
-msgid "Documentations:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/index.html.php:14
-msgid "Code reviews:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/base-full.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:4
-#: IDF/gettexttemplates/idf/base.html.php:4
-msgid "Project Home"
-msgstr "项目首页"
-
-#: IDF/gettexttemplates/idf/base-full.html.php:6
-#: IDF/gettexttemplates/idf/admin/base.html.php:5
-#: IDF/gettexttemplates/idf/base.html.php:6 IDF/Form/TabsConf.php:40
-msgid "Documentation"
-msgstr "文档"
-
-#: IDF/gettexttemplates/idf/base-full.html.php:8
-#: IDF/gettexttemplates/idf/admin/base.html.php:7
-#: IDF/gettexttemplates/idf/base.html.php:8 IDF/Form/TabsConf.php:41
-msgid "Source"
-msgstr "源代码"
-
-#: IDF/gettexttemplates/idf/base-full.html.php:9
-#: IDF/gettexttemplates/idf/base.html.php:9 IDF/Form/TabsConf.php:39
-msgid "Code Review"
-msgstr "代码审核"
-
-#: IDF/gettexttemplates/idf/base-full.html.php:10
-#: IDF/gettexttemplates/idf/base.html.php:10
-msgid "Project Management"
-msgstr "管理"
-
-#: IDF/gettexttemplates/idf/review/create.html.php:3
-#, fuzzy
-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"
-"
如何发现此问题,怎么操作可以遇到此问题
\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/create.html.php:11
-#: IDF/gettexttemplates/idf/review/index.html.php:3
-#: IDF/gettexttemplates/idf/review/base.html.php:4 IDF/Views/Review.php:83
-msgid "Start Code 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:4
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4
-#, php-format
-msgid "By %%who%%, %%c.creation_dtime%%:"
-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 ""
-
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:11
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:7
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:8
-#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:8
-msgid "Reported by:"
-msgstr "报告人:"
-
-#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8
-#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9
-msgid "URL:"
-msgstr ""
-
-#: 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/review-updated-email.txt.php:16
-#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10
-msgid "Review:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:4
-#, php-format
-msgid "%%nc%% comment"
-msgid_plural "%%nc%% comments"
-msgstr[0] ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:5
-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 ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:13
-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 ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:20
-#, php-format
-msgid ""
-"Comment %%i%% by %%who%%, "
-"%%c.creation_dtime%%"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:21
-#, php-format
-msgid "Your comments on the changes in file %%file%%:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:22
-#: IDF/gettexttemplates/idf/issues/view.html.php:4
-#, php-format
-msgid ""
-"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%"
-msgstr ""
-"评论 %%i%% 由 %%submitter%%, 发表于 %%c."
-"creation_dtime%%"
-
-#: 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:31
-msgid "Reviewers:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:32
-msgid "No reviewers at the moment."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:33
-msgid "Files:"
-msgstr "文件:"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:36
-msgid "How to Participate in a Code Review"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:37
-msgid "Old"
-msgstr "旧"
-
-#: IDF/gettexttemplates/idf/review/view.html.php:38
-msgid "New"
-msgstr "新"
+#: IDF/IssueComment.php:51 IDF/IssueRelation.php:47
+msgid "issue"
+msgstr "问题"
-#: IDF/gettexttemplates/idf/review/view.html.php:39
-msgid "General Comments"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/review/view.html.php:42
-msgid "Submit Code Review"
-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/review-created-email.txt.php:3
-msgid "The following review has been created:"
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/members.html.php:13
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:15
-#: IDF/gettexttemplates/idf/admin/summary.html.php:8
-#: IDF/gettexttemplates/idf/admin/wiki.html.php:8
-#: IDF/gettexttemplates/idf/admin/source.html.php:31
-#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8
-#: IDF/gettexttemplates/idf/admin/downloads.html.php:8
-msgid "Save Changes"
-msgstr "保存更改"
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:3
-msgid ""
-"\n"
-"Only project members and admins have write access to the source. \n"
-"If you restrict the access to the source, anonymous access is \n"
-"not provided and the users must authenticate themselves with their \n"
-"password or SSH key."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:8
-msgid ""
-"You can configure here the project tabs access rights and notification "
-"emails."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:9
-#, php-format
-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 ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:10
-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. 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:11
-msgid ""
-"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:12
-msgid ""
-"The form contains some errors. Please correct them to update the access "
-"rights."
-msgstr ""
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:13
-msgid "Access Rights"
-msgstr "访问权限"
-
-#: IDF/gettexttemplates/idf/admin/tabs.html.php:14
-msgid "Notification Email"
-msgstr "提醒Email"
-
-#: 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"
-"
提示:
\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/wiki.html.php:3
-#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3
-#: IDF/gettexttemplates/idf/admin/downloads.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.
\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 a URL to which a HTTP POST\n"
-"request is sent after each repository commit. If this field is empty,\n"
-"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.
{/block}
diff --git a/src/IDF/templates/idf/issues/issue-created-email.txt b/src/IDF/templates/idf/issues/issue-created-email.txt
index cd635ae..df31528 100644
--- a/src/IDF/templates/idf/issues/issue-created-email.txt
+++ b/src/IDF/templates/idf/issues/issue-created-email.txt
@@ -1,7 +1,6 @@
{trans 'Hello,'}
-{blocktrans}A new issue has been created and assigned
-to you:{/blocktrans}
+{if $owns_issue}{blocktrans}A new issue has been created and assigned to you:{/blocktrans}{else}{blocktrans}A new issue has been created:{/blocktrans}{/if}
{$issue.id} - {$issue.summary|safe}
{trans 'Project:'} {$project.name|safe}
diff --git a/src/IDF/templates/idf/issues/issue-updated-email.txt b/src/IDF/templates/idf/issues/issue-updated-email.txt
index 3597dec..0e01534 100644
--- a/src/IDF/templates/idf/issues/issue-updated-email.txt
+++ b/src/IDF/templates/idf/issues/issue-updated-email.txt
@@ -1,6 +1,6 @@
{trans 'Hello,'}
-{blocktrans}The following issue has been updated:{/blocktrans}
+{if $owns_issue}{blocktrans}The following issue you are owning has been updated:{/blocktrans}{else}{blocktrans}The following issue has been updated:{/blocktrans}{/if}
{$issue.id} - {$issue.summary|safe}
{trans 'Project:'} {$project.name|safe}
diff --git a/src/IDF/templates/idf/issues/search.html b/src/IDF/templates/idf/issues/search.html
index 4c0b720..4ffce24 100644
--- a/src/IDF/templates/idf/issues/search.html
+++ b/src/IDF/templates/idf/issues/search.html
@@ -22,11 +22,11 @@
{$tag.class}:{$tag.name}{/blocktrans}
{else}
{* yes, this is duplicated from tags-cloud.html, but the code there cannot be easily overridden *}
-
+ {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}
+
{if $form.f.terms.errors}{$form.f.terms.fieldErrors}{/if}
{$form.f.terms|unsafe} {$form.f.terms.labelTag}
-{blocktrans}Read the terms and conditions – basically "Please be nice, we respect you".{/blocktrans}
+{blocktrans}Read the terms and conditions – basically "Please be nice, we respect you".{/blocktrans}
@@ -49,7 +49,7 @@
{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. Just go here to recover your login name and password.{/blocktrans}
+
{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}
+{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}
+
+{/block}
+{block javascript}
+
+{/block}
+
diff --git a/src/IDF/templates/idf/wiki/deletepage.html b/src/IDF/templates/idf/wiki/deletePage.html
similarity index 82%
rename from src/IDF/templates/idf/wiki/deletepage.html
rename to src/IDF/templates/idf/wiki/deletePage.html
index 57c99e6..acc21aa 100644
--- a/src/IDF/templates/idf/wiki/deletepage.html
+++ b/src/IDF/templates/idf/wiki/deletePage.html
@@ -1,5 +1,5 @@
{extends "idf/wiki/base.html"}
-{block docclass}yui-t3{assign $inView=true}{/block}
+{block docclass}yui-t3{assign $inPageView=true}{/block}
{block body}
{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
@@ -14,7 +14,7 @@ by {$submitter}.{/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}
{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}
Website addresses are automatically linked and you can link to another page in the documentation using double square brackets like that [[AnotherPage]].
-
To directly include a file content from the repository, embrace its path with triple square brackets: [[[path/to/file.txt]]].
+
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]]].
{/blocktrans}
diff --git a/src/IDF/templates/idf/wiki/feedfragment.xml b/src/IDF/templates/idf/wiki/feedfragment-page.xml
similarity index 97%
rename from src/IDF/templates/idf/wiki/feedfragment.xml
rename to src/IDF/templates/idf/wiki/feedfragment-page.xml
index d017437..6c0e625 100644
--- a/src/IDF/templates/idf/wiki/feedfragment.xml
+++ b/src/IDF/templates/idf/wiki/feedfragment-page.xml
@@ -1,4 +1,4 @@
-
+ {$title}{$url}:{$rev.id}
diff --git a/src/IDF/templates/idf/wiki/feedfragment-resource.xml b/src/IDF/templates/idf/wiki/feedfragment-resource.xml
new file mode 100644
index 0000000..2fddefb
--- /dev/null
+++ b/src/IDF/templates/idf/wiki/feedfragment-resource.xml
@@ -0,0 +1,11 @@
+
+ {$title}
+
+ {$url}:{$rev.id}
+ {$date}
+ {$rev.get_submitter()}
+
{/if}
{/block}
diff --git a/src/IDF/templates/idf/wiki/update.html b/src/IDF/templates/idf/wiki/updatePage.html
similarity index 92%
rename from src/IDF/templates/idf/wiki/update.html
rename to src/IDF/templates/idf/wiki/updatePage.html
index b489447..0533a7a 100644
--- a/src/IDF/templates/idf/wiki/update.html
+++ b/src/IDF/templates/idf/wiki/updatePage.html
@@ -57,8 +57,8 @@
{* float left is a fix for Firefox < 3.5 *}
- | {trans 'Cancel'}{if $isOwner or $isAdmin or $isMember}
-{aurl 'url', 'IDF_Views_Wiki::delete', array($project.shortname, $page.id)}
+ | {trans 'Cancel'}{if $isOwner or $isAdmin or $isMember}
+{aurl 'url', 'IDF_Views_Wiki::deletePage', array($project.shortname, $page.id)}
{trans 'Delete this page'}{/if}
{* float left is a fix for Firefox < 3.5 *}
+ | {trans 'Cancel'}{if $isOwner or $isAdmin or $isMember}
+{aurl 'url', 'IDF_Views_Wiki::deleteResource', array($project.shortname, $resource.id)}
+{trans 'Delete this resource'}{/if}
+
+
+
+
+{/block}
diff --git a/src/IDF/templates/idf/wiki/view.html b/src/IDF/templates/idf/wiki/viewPage.html
similarity index 78%
rename from src/IDF/templates/idf/wiki/view.html
rename to src/IDF/templates/idf/wiki/viewPage.html
index bacb131..43a2cf4 100644
--- a/src/IDF/templates/idf/wiki/view.html
+++ b/src/IDF/templates/idf/wiki/viewPage.html
@@ -1,11 +1,11 @@
{extends "idf/wiki/base.html"}
{block extraheader}
-{if $oldrev}{/if}
+{if !$rev.is_head}{/if}
{/block}
-{block docclass}yui-t3{assign $inView=true}{/block}
+{block docclass}yui-t3{assign $inPageView=true}{/block}
{block body}
{if $deprecated}{* deprecated page *}
@@ -14,8 +14,8 @@
use it as reference only if you are sure you need these specific information.{/blocktrans}