From 4477b07bc6ddfb3a52a25250e6ac63ab77b1904c Mon Sep 17 00:00:00 2001 From: William MARTIN Date: Wed, 23 Feb 2011 16:22:27 +0100 Subject: [PATCH 01/11] Rewrite a string to better handle i18n --- src/IDF/templates/idf/login_form.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/IDF/templates/idf/login_form.html b/src/IDF/templates/idf/login_form.html index 9377d45..c7e8edb 100644 --- a/src/IDF/templates/idf/login_form.html +++ b/src/IDF/templates/idf/login_form.html @@ -29,7 +29,7 @@ document.getElementById('id_login').focus() {block context}

{trans 'Welcome.'}

-

{trans 'If you don\'t have an account yet, you can create one'} {trans 'here'}

-

{trans 'It takes less than a minute to create your account'}

-
+{aurl 'url', 'IDF_Views::register', array()} +

{blocktrans}If you don't have an account yet, you can create one here.{/blocktrans}

+

{trans 'It takes less than a minute to create your account.'}

{/block} From 3e238bea0b723cf74e6d688bcf6dfbb3ddb0c2ab Mon Sep 17 00:00:00 2001 From: William MARTIN Date: Wed, 23 Feb 2011 18:12:29 +0100 Subject: [PATCH 02/11] Enhancement of the invalid revision handler Show the list of available branch --- src/IDF/Views/Source.php | 4 ++++ src/IDF/templates/idf/source/invalid_revision.html | 10 ++++++++++ 2 files changed, 14 insertions(+) diff --git a/src/IDF/Views/Source.php b/src/IDF/Views/Source.php index 472d710..f92a2d5 100644 --- a/src/IDF/Views/Source.php +++ b/src/IDF/Views/Source.php @@ -56,11 +56,15 @@ class IDF_Views_Source public function invalidRevision($request, $match) { $title = sprintf(__('%s Invalid Revision'), (string) $request->project); + $scm = IDF_Scm::get($request->project); + $branches = $scm->getBranches(); + $commit = $match[2]; $params = array( 'page_title' => $title, 'title' => $title, 'commit' => $commit, + 'branches' => $branches, ); return Pluf_Shortcuts_RenderToResponse('idf/source/invalid_revision.html', $params, $request); diff --git a/src/IDF/templates/idf/source/invalid_revision.html b/src/IDF/templates/idf/source/invalid_revision.html index 4c0e966..c253a35 100644 --- a/src/IDF/templates/idf/source/invalid_revision.html +++ b/src/IDF/templates/idf/source/invalid_revision.html @@ -5,6 +5,16 @@

{blocktrans}The revision {$commit} is not valid or does not exist in this repository.{/blocktrans}

+

{blocktrans}List of available branch are listed below :{/blocktrans}

+ + {if $isOwner or $isMember} {aurl 'url', 'IDF_Views_Source::help', array($project.shortname)}

{blocktrans}If this is a new repository, the reason for this error From 2130b327df20b0b67b6b452f92856f7e70bc9822 Mon Sep 17 00:00:00 2001 From: William MARTIN Date: Wed, 23 Feb 2011 18:24:49 +0100 Subject: [PATCH 03/11] Fix issue 616 Patch from Patrick Georgi --- src/IDF/Form/UserAccount.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/IDF/Form/UserAccount.php b/src/IDF/Form/UserAccount.php index d09417d..d99923e 100644 --- a/src/IDF/Form/UserAccount.php +++ b/src/IDF/Form/UserAccount.php @@ -79,6 +79,7 @@ class IDF_Form_UserAccount extends Pluf_Form 'widget' => 'Pluf_Form_Widget_PasswordInput', 'help_text' => Pluf_Template::markSafe(__('Leave blank if you do not want to change your password.').'
'.__('Your password must be hard for other people to find it, but easy for you to remember.')), 'widget_attrs' => array( + 'autocomplete' => 'off', 'maxlength' => 50, 'size' => 15, ), @@ -89,6 +90,7 @@ class IDF_Form_UserAccount extends Pluf_Form 'initial' => '', 'widget' => 'Pluf_Form_Widget_PasswordInput', 'widget_attrs' => array( + 'autocomplete' => 'off', 'maxlength' => 50, 'size' => 15, ), From cdedaa460418d02f576188a1f0dc30cfbd632e9c Mon Sep 17 00:00:00 2001 From: William MARTIN Date: Wed, 23 Feb 2011 20:20:02 +0100 Subject: [PATCH 04/11] Fix issue 591 Improve render of issue tag list --- src/IDF/templates/idf/issues/index.html | 9 ++++++--- www/media/idf/css/style.css | 14 ++++++++++++++ 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/src/IDF/templates/idf/issues/index.html b/src/IDF/templates/idf/issues/index.html index 0412cb7..b47d980 100644 --- a/src/IDF/templates/idf/issues/index.html +++ b/src/IDF/templates/idf/issues/index.html @@ -13,8 +13,11 @@ {blocktrans}

Open issues: {$open}

Closed issues: {$closed}

{/blocktrans} {assign $class = ''}{assign $i = 0} -

{foreach $project.getTagCloud($cloud) as $label} +

{foreach $project.getTagCloud($cloud) as $label} {aurl 'url', 'IDF_Views_Issue::listLabel', array($project.shortname, $label.id, 'open')} -{if $class != $label.class}{if $i != 0}
{/if}{$label.class}: {/if} -{$label.name},{assign $class = $label.class}{assign $i = $i + 1}{/foreach}

+{if $class != $label.class}
{$label.class}
{assign $i = 0}{/if} +
{$label.name},
+{assign $class = $label.class} +{assign $i = $i + 1} +{/foreach}

{/block} diff --git a/www/media/idf/css/style.css b/www/media/idf/css/style.css index b8fa632..8ea1d8e 100644 --- a/www/media/idf/css/style.css +++ b/www/media/idf/css/style.css @@ -203,6 +203,20 @@ span.px-header-title a, span.px-header-title a:link, span.px-header-title a:visi /** * Issue */ +#issue-tags dl { + margin: 0; +} + +#issue-tags dt { + margin-top: .5em; + font-weight: bold; +} + +#issue-tags dd { + margin: 0; + display: inline; +} + a.issue-c { text-decoration: line-through; } From 6f1bb309d490ee7d9b56ddbd73e75557fd7cfc35 Mon Sep 17 00:00:00 2001 From: William MARTIN Date: Wed, 23 Feb 2011 22:35:43 +0100 Subject: [PATCH 05/11] Apply the UI enhancement of issue tags cloud to wiki and download part too. --- src/IDF/Views/Download.php | 4 +--- src/IDF/Views/Issue.php | 3 +-- src/IDF/Views/Wiki.php | 2 -- src/IDF/templates/idf/downloads/index.html | 9 ++------- src/IDF/templates/idf/issues/index.html | 10 ++-------- src/IDF/templates/idf/tags-cloud.html | 8 ++++++++ src/IDF/templates/idf/wiki/index.html | 9 ++------- www/media/idf/css/style.css | 6 +++--- 8 files changed, 19 insertions(+), 32 deletions(-) create mode 100644 src/IDF/templates/idf/tags-cloud.html diff --git a/src/IDF/Views/Download.php b/src/IDF/Views/Download.php index 972f286..49f8187 100644 --- a/src/IDF/Views/Download.php +++ b/src/IDF/Views/Download.php @@ -71,12 +71,10 @@ class IDF_Views_Download $pag->no_results_text = __('No downloads were found.'); $pag->sort_order = array('creation_dtime', 'DESC'); $pag->setFromRequest($request); - $tags = $prj->getTagCloud('downloads'); return Pluf_Shortcuts_RenderToResponse('idf/downloads/index.html', array( 'page_title' => $title, 'downloads' => $pag, - 'tags' => $tags, 'deprecated' => count($ids), 'dlabel' => $dtag, ), @@ -370,4 +368,4 @@ function IDF_Views_Download_SummaryAndLabels($field, $down, $extra='') function IDF_Views_Download_Size($field, $down) { return Pluf_Utils::prettySize($down->$field); -} \ No newline at end of file +} diff --git a/src/IDF/Views/Issue.php b/src/IDF/Views/Issue.php index 2f43f6a..75f569a 100644 --- a/src/IDF/Views/Issue.php +++ b/src/IDF/Views/Issue.php @@ -71,8 +71,7 @@ class IDF_Views_Issue 'page_title' => $title, 'open' => $open, 'closed' => $closed, - 'issues' => $pag, - 'cloud' => 'issues'); + 'issues' => $pag); if ($api) return $params; return Pluf_Shortcuts_RenderToResponse('idf/issues/index.html', $params, $request); diff --git a/src/IDF/Views/Wiki.php b/src/IDF/Views/Wiki.php index cd68cb2..c6b17b9 100644 --- a/src/IDF/Views/Wiki.php +++ b/src/IDF/Views/Wiki.php @@ -67,12 +67,10 @@ class IDF_Views_Wiki $pag->no_results_text = __('No documentation pages were found.'); $pag->sort_order = array('title', 'ASC'); $pag->setFromRequest($request); - $tags = $prj->getTagCloud('wiki'); return Pluf_Shortcuts_RenderToResponse('idf/wiki/index.html', array( 'page_title' => $title, 'pages' => $pag, - 'tags' => $tags, 'deprecated' => count($ids), 'dlabel' => $dtag, ), diff --git a/src/IDF/templates/idf/downloads/index.html b/src/IDF/templates/idf/downloads/index.html index d5805aa..f5b6c4b 100644 --- a/src/IDF/templates/idf/downloads/index.html +++ b/src/IDF/templates/idf/downloads/index.html @@ -9,13 +9,8 @@ {/block} {block context}

{trans 'Number of files:'} {$downloads.nb_items}

-{assign $class = ''}{assign $i = 0} -{if !$label or $label.id != $dlabel.id} -

{foreach $tags as $lab} -{aurl 'url', 'IDF_Views_Download::listLabel', array($project.shortname, $lab.id)} -{if $class != $lab.class}{if $i != 0}
{/if}{$lab.class}: {/if} -{$lab.name},{assign $i = $i + 1}{assign $class = $lab.class}{/foreach}

-{/if} +{assign $cloud = 'downloads'} +{include 'idf/tags-cloud.html'} {if $deprecated > 0} {aurl 'url', 'IDF_Views_Download::listLabel', array($project.shortname, $dlabel.id)}

{blocktrans}See the deprecated files.{/blocktrans}

diff --git a/src/IDF/templates/idf/issues/index.html b/src/IDF/templates/idf/issues/index.html index b47d980..ac1e1fb 100644 --- a/src/IDF/templates/idf/issues/index.html +++ b/src/IDF/templates/idf/issues/index.html @@ -12,12 +12,6 @@ {aurl 'closed_url', 'IDF_Views_Issue::listStatus', array($project.shortname, 'closed')} {blocktrans}

Open issues: {$open}

Closed issues: {$closed}

{/blocktrans} -{assign $class = ''}{assign $i = 0} -
{foreach $project.getTagCloud($cloud) as $label} -{aurl 'url', 'IDF_Views_Issue::listLabel', array($project.shortname, $label.id, 'open')} -{if $class != $label.class}
{$label.class}
{assign $i = 0}{/if} -
{$label.name},
-{assign $class = $label.class} -{assign $i = $i + 1} -{/foreach}

+{assign $cloud = 'issues'} +{include 'idf/tags-cloud.html'} {/block} diff --git a/src/IDF/templates/idf/tags-cloud.html b/src/IDF/templates/idf/tags-cloud.html new file mode 100644 index 0000000..cdf375e --- /dev/null +++ b/src/IDF/templates/idf/tags-cloud.html @@ -0,0 +1,8 @@ +{assign $class = ''}{assign $i = 0} +
{foreach $project.getTagCloud($cloud) as $label} +{aurl 'url', 'IDF_Views_Issue::listLabel', array($project.shortname, $label.id, 'open')} +{if $class != $label.class}
{$label.class}
{assign $i = 0}{/if} +
{$label.name},
+{assign $class = $label.class} +{assign $i = $i + 1} +{/foreach}

diff --git a/src/IDF/templates/idf/wiki/index.html b/src/IDF/templates/idf/wiki/index.html index d6dee59..af6cdec 100644 --- a/src/IDF/templates/idf/wiki/index.html +++ b/src/IDF/templates/idf/wiki/index.html @@ -9,13 +9,8 @@ {/block} {block context}

{trans 'Number of pages:'} {$pages.nb_items}

-{assign $class = ''}{assign $i = 0} -{if !$label or $label.id != $dlabel.id} -

{foreach $tags as $lab} -{aurl 'url', 'IDF_Views_Wiki::listLabel', array($project.shortname, $lab.id)} -{if $class != $lab.class}{if $i != 0}
{/if}{$lab.class}: {/if} -{$lab.name},{assign $i = $i + 1}{assign $class = $lab.class}{/foreach}

-{/if} +{assign $cloud = 'wiki'} +{include 'idf/tags-cloud.html'} {if $deprecated > 0} {aurl 'url', 'IDF_Views_Wiki::listLabel', array($project.shortname, $dlabel.id)}

{blocktrans}See the deprecated pages.{/blocktrans}

diff --git a/www/media/idf/css/style.css b/www/media/idf/css/style.css index 8ea1d8e..ff0ce44 100644 --- a/www/media/idf/css/style.css +++ b/www/media/idf/css/style.css @@ -203,16 +203,16 @@ span.px-header-title a, span.px-header-title a:link, span.px-header-title a:visi /** * Issue */ -#issue-tags dl { +#tagscloud dl { margin: 0; } -#issue-tags dt { +#tagscloud dt { margin-top: .5em; font-weight: bold; } -#issue-tags dd { +#tagscloud dd { margin: 0; display: inline; } From bc54b663e04057c82f9bce7912202fb6fa0138c3 Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Wed, 23 Feb 2011 23:04:47 +0100 Subject: [PATCH 06/11] Improve the english a bit and make the previous error message cleaner --- src/IDF/templates/idf/source/invalid_revision.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/IDF/templates/idf/source/invalid_revision.html b/src/IDF/templates/idf/source/invalid_revision.html index c253a35..ded55fd 100644 --- a/src/IDF/templates/idf/source/invalid_revision.html +++ b/src/IDF/templates/idf/source/invalid_revision.html @@ -2,10 +2,10 @@ {block docclass}yui-t2{assign $inError=true}{/block} {block body} -

{blocktrans}The revision {$commit} is not valid or does not exist +

{blocktrans}The branch or revision {$commit} is not valid or does not exist in this repository.{/blocktrans}

-

{blocktrans}List of available branch are listed below :{/blocktrans}

+

{blocktrans}The following list shows all available branches:{/blocktrans}

    {foreach $branches as $branch => $path} {aurl 'url', 'IDF_Views_Source::treeBase', array($project.shortname, $branch)} From f2c4faf0543cd52323e10ddc132c2388064afd8b Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Wed, 23 Feb 2011 23:49:19 +0100 Subject: [PATCH 07/11] * update pot and po files with latest strings from source and tx * finalize German translation (again) --- src/IDF/locale/cs/idf.po | 6953 +++++++++++++++---------------- src/IDF/locale/de/idf.po | 7638 ++++++++++++++++++----------------- src/IDF/locale/es_ES/idf.po | 7393 ++++++++++++++++----------------- src/IDF/locale/fr/idf.po | 7631 +++++++++++++++++----------------- src/IDF/locale/idf.pot | 6780 +++++++++++++++---------------- src/IDF/locale/ru/idf.po | 7221 ++++++++++++++++----------------- src/IDF/locale/sl/idf.po | 6922 +++++++++++++++---------------- src/IDF/locale/zh_CN/idf.po | 6967 ++++++++++++++++---------------- 8 files changed, 28827 insertions(+), 28678 deletions(-) diff --git a/src/IDF/locale/cs/idf.po b/src/IDF/locale/cs/idf.po index 2c6dfef..2041c2b 100644 --- a/src/IDF/locale/cs/idf.po +++ b/src/IDF/locale/cs/idf.po @@ -7,183 +7,44 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-23 16:05+0100\n" +"POT-Creation-Date: 2011-02-23 23:36+0100\n" "PO-Revision-Date: 2011-02-23 00:05+0000\n" "Last-Translator: Delkia \n" "Language-Team: Czech <>\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" -#: IDF/IssueComment.php:51 -msgid "issue" -msgstr "předmět k řešení" - -#: 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 "komentář" - -#: 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 "odesílatel" - -#: IDF/IssueComment.php:72 IDF/Upload.php:63 IDF/WikiRevision.php:85 -#: IDF/Review/Comment.php:75 -msgid "changes" -msgstr "změny" - -#: IDF/IssueComment.php:73 -msgid "Serialized array of the changes in the issue." -msgstr "Serializované pole změn předmětů k řešení." - -#: IDF/IssueComment.php: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 "datum vytvoření" - -#: IDF/IssueComment.php:143 IDF/Issue.php:194 -#, php-format -msgid "" -"Issue %3$d, %4$s" -msgstr "" -"předmět " -"k řešení %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 "Souhrn:" - -#: 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 "Status:" - -#: 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 "Vlastník:" - -#: 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 "Nálepky:" - -#: IDF/IssueComment.php:171 -#, php-format -msgid "Comment on issue %d, by %s" -msgstr "" -"Komentář k předmětu k řešení č. %d, %s" - -#: IDF/IssueComment.php:182 -#, php-format -msgid "%s: Comment on issue %d - %s" -msgstr "%s: komentář k předmětu %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 "projekt" -#: 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/Review/Comment.php:69 IDF/Review.php:80 +#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79 +msgid "submitter" +msgstr "odesílatel" + +#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60 +#: IDF/Review.php:73 IDF/Upload.php:57 IDF/WikiPage.php:70 +#: IDF/WikiRevision.php:65 msgid "summary" msgstr "souhrn" -#: IDF/Upload.php:70 -msgid "file" -msgstr "soubor" - -#: IDF/Upload.php:71 -msgid "The path is relative to the upload path." -msgstr "Cesta je relativní k adresáři nahrávaných souborů." - -#: IDF/Upload.php:78 -msgid "file size in bytes" -msgstr "velikost souboru v bytech" - -#: IDF/Upload.php:93 IDF/Issue.php:92 IDF/Review.php:95 IDF/WikiPage.php:94 -msgid "labels" -msgstr "nálepky" - -#: IDF/Upload.php:100 -msgid "number of downloads" -msgstr "počet stažení" - -#: IDF/Upload.php:112 IDF/IssueFile.php:102 IDF/Issue.php:111 -#: IDF/Review.php:114 IDF/WikiPage.php:106 -msgid "modification date" -msgstr "datum změny" - -#: IDF/Upload.php:189 -#, php-format -msgid "Download %2$d, %3$s" -msgstr "Stáhnout %2$d, %3$s" - -#: IDF/Upload.php:192 -#, php-format -msgid "Addition of download %d, by %s" -msgstr "Soubor %d přidán, kým - %s" - -#: IDF/Upload.php:202 -#, php-format -msgid "%s: Download %d added - %s" -msgstr "%s: Soubor %d přidán - %s" - -#: IDF/Upload.php:244 -#, php-format -msgid "New download - %s (%s)" -msgstr "Nové stažení - %s (%s)" - #: IDF/Commit.php:93 msgid "changelog" msgstr "seznam změn" +#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79 +#: IDF/IssueFile.php:96 IDF/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 +msgid "creation date" +msgstr "datum vytvoření" + #: IDF/Commit.php:238 #, php-format msgid "Commit %s, by %s" @@ -194,6 +55,801 @@ msgstr "Commit %s, %s" msgid "New Commit %s - %s (%s)" msgstr "Nový commit %s - %s (%s)" +#: IDF/Conf.php:61 IDF/Gconf.php:73 +msgid "key" +msgstr "klíč" + +#: IDF/Conf.php:67 IDF/Gconf.php:79 +msgid "value" +msgstr "hodnota" + +#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:540 +msgid "git" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:541 +msgid "Subversion" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:542 +msgid "mercurial" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:543 +msgid "monotone" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 +#: 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/index.html.php:6 +#: IDF/gettexttemplates/idf/main-menu.html.php:7 +msgid "Private project" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:62 +msgid "Shortname" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:64 +msgid "" +"It must be unique for each project and composed only of letters, digits and " +"dash (-) like \"my-project\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 +msgid "Short description" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51 +#: IDF/Project.php:79 +msgid "A one line description of the project." +msgstr "Jednořádkový popis projektu." + +#: IDF/Form/Admin/ProjectCreate.php:77 +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 throught http or https are allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 +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:263 +#: IDF/Form/IssueUpdate.php:232 IDF/Form/MembersConf.php:64 +#: IDF/Form/Password.php:76 IDF/Form/Register.php:114 +#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:125 +#: IDF/Form/TabsConf.php:98 IDF/Form/UpdateUpload.php:126 +#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:180 +#: 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:362 +msgid "This project is not available." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:41 +msgid "Confirmation code" +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:46 +msgid "I have made a backup of all the important data of this project." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:55 +msgid "" +"The confirmation code does not match. Please provide a valid confirmation " +"code to delete the project." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:63 +msgid "Sorry, you really need to backup your data before deletion." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 +#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40 +msgid "First name" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 +#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49 +msgid "Last name" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:56 +msgid "Login" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 +msgid "" +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is directly sent 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 IDF/Form/UserAccount.php:166 +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:402 +#, php-format +msgid "The email \"%s\" is already used." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 +#, php-format +msgid "The login \"%s\" can only contain letters and digits." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 +#, php-format +msgid "The login \"%s\" is already used, please find another one." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:78 +msgid "Password" +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "Leave blank if you do not want to change the password." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "" +"The password must be hard for other people to find it, 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: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 +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 him." +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 his 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/Upload.php:86 +#: IDF/Form/UserAccount.php:369 +msgid "For security reason, you cannot upload a file with this extension." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:425 +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:53 IDF/Form/IssueUpdate.php:45 +#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:71 +#: 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 +msgid "Summary" +msgstr "" + +#: IDF/Form/IssueCreate.php:72 IDF/Form/IssueUpdate.php:65 +#: IDF/Form/ReviewCreate.php:83 +msgid "The \"upload_issue_path\" configuration variable was not set." +msgstr "" + +#: IDF/Form/IssueCreate.php:82 IDF/Form/IssueUpdate.php:75 +msgid "Attach a file" +msgstr "" + +#: IDF/Form/IssueCreate.php:95 IDF/Form/IssueUpdate.php:88 +#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:81 +#: 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 +msgid "Status" +msgstr "" + +#: IDF/Form/IssueCreate.php:104 IDF/Form/IssueUpdate.php:98 +msgid "Owner" +msgstr "" + +#: IDF/Form/IssueCreate.php:150 IDF/Form/IssueUpdate.php:117 +#: 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:192 +msgid "You cannot add a label with the \"Status\" prefix to an issue." +msgstr "" + +#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 +#: 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:199 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:210 IDF/Form/IssueUpdate.php:147 +msgid "You need to provide a description of the issue." +msgstr "" + +#: IDF/Form/IssueCreate.php:233 IDF/Form/ReviewCreate.php:159 +msgid "You provided an invalid status." +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:80 +msgid "" +"Define an issue template to hint the reporter to provide certain information" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:89 +msgid "Open issue status values" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:97 +msgid "Closed issue status values" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:106 +msgid "Predefined issue labels" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:108 +msgid "" +"The first \"Type:\" and \"Priority:\" entries found in this list are " +"automatically chosen as defaults for new issues." +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:116 +msgid "Each issue may have at most one label with each of these classes" +msgstr "" + +#: IDF/Form/IssueUpdate.php:55 IDF/Form/ReviewFileComment.php:45 +#: IDF/Form/WikiUpdate.php:82 +msgid "Comment" +msgstr "" + +#: IDF/Form/IssueUpdate.php:219 +msgid "No changes were entered." +msgstr "" + +#: IDF/Form/MembersConf.php:104 +#, php-format +msgid "The following login is invalid: %s." +msgid_plural "The following logins are invalid: %s." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: IDF/Form/Password.php:34 +msgid "Your login or email" +msgstr "" + +#: IDF/Form/Password.php:35 +msgid "Provide either your login or your email to recover your password." +msgstr "" + +#: IDF/Form/Password.php:49 IDF/Form/Password.php:64 +msgid "" +"Sorry, we cannot find a user with this email address or login. Feel free to " +"try again." +msgstr "" + +#: IDF/Form/Password.php:100 +msgid "Password Recovery - InDefero" +msgstr "" + +#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39 +#: IDF/Form/UserChangeEmail.php:36 +msgid "Your verification key" +msgstr "" + +#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89 +msgid "" +"We are sorry but this validation key is not valid. Maybe you should directly " +"copy/paste it from your validation email." +msgstr "" + +#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100 +msgid "" +"Sorry, but this verification key has expired, please restart the password " +"recovery sequence. For security reasons, the verification key is only valid " +"24h." +msgstr "" + +#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108 +#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72 +msgid "Cannot save an invalid form." +msgstr "" + +#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69 +#: IDF/Form/UserAccount.php:77 +msgid "Your password" +msgstr "" + +#: IDF/Form/PasswordReset.php:48 IDF/Form/RegisterConfirmation.php:72 +#: 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/Register.php:41 +msgid "Your login" +msgstr "" + +#: 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 spams 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:99 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need, click on the help link to " +"recover your password." +msgstr "" + +#: IDF/Form/Register.php:150 +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: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:102 +msgid "You need to provide comments on at least one file." +msgstr "" + +#: IDF/Form/ReviewFileComment.php:109 +msgid "You need to provide your general comment about the proposal." +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.orig.php:5 +#: IDF/gettexttemplates/idf/base-full.html.php:5 +#: IDF/gettexttemplates/idf/base.html.orig.php:5 +#: IDF/gettexttemplates/idf/base.html.php:5 +#: IDF/gettexttemplates/idf/downloads/base.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14 +#: IDF/Views/Project.php:75 +msgid "Downloads" +msgstr "" + +#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.orig.php:9 +#: IDF/gettexttemplates/idf/base-full.html.php:9 +#: IDF/gettexttemplates/idf/base.html.orig.php:9 +#: IDF/gettexttemplates/idf/base.html.php:9 +msgid "Code Review" +msgstr "" + +#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:6 +#: IDF/gettexttemplates/idf/base-full.html.php:6 +#: IDF/gettexttemplates/idf/base.html.orig.php:6 +#: IDF/gettexttemplates/idf/base.html.php:6 +msgid "Documentation" +msgstr "" + +#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:8 +#: IDF/gettexttemplates/idf/base-full.html.php:8 +#: IDF/gettexttemplates/idf/base.html.orig.php:8 +#: IDF/gettexttemplates/idf/base.html.php:8 +msgid "Source" +msgstr "" + +#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.orig.php:7 +#: IDF/gettexttemplates/idf/base-full.html.php:7 +#: IDF/gettexttemplates/idf/base.html.orig.php:7 +#: IDF/gettexttemplates/idf/base.html.php:7 +#: 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:6 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6 +#: IDF/Views/Download.php:64 IDF/Views/Download.php:292 +msgid "File" +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:209 +msgid "Confirm your new email address." +msgstr "" + +#: IDF/Form/UserAccount.php:212 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" + +#: IDF/Form/UserAccount.php:314 +msgid "" +"Please check the key as it does not appear to be a valid SSH public key." +msgstr "" + +#: IDF/Form/UserAccount.php:334 +msgid "" +"Please check the key as it does not appear to be a valid monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:342 +msgid "Public key looks neither like a SSH nor monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:354 +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 "třída modelu" @@ -202,82 +858,454 @@ msgstr "třída modelu" msgid "model id" msgstr "id modelu" -#: IDF/Gconf.php:73 IDF/Conf.php:61 -msgid "key" -msgstr "klíč" +#: IDF/gettexttemplates/idf/admin/base.html.php:3 +msgid "Project Summary" +msgstr "" -#: IDF/Gconf.php:79 IDF/Conf.php:67 -msgid "value" -msgstr "hodnota" +#: 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 "" + +#: IDF/gettexttemplates/idf/admin/downloads.html.php:8 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8 +#: IDF/gettexttemplates/idf/admin/members.html.php:13 +#: IDF/gettexttemplates/idf/admin/source.html.php:31 +#: IDF/gettexttemplates/idf/admin/summary.html.php:8 +#: IDF/gettexttemplates/idf/admin/tabs.html.php:15 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:8 +msgid "Save Changes" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/members.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/update.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 "" + +#: IDF/gettexttemplates/idf/admin/members.html.php:8 +#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 +msgid "" +"\n" +"

    Notes:

    \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 "" + +#: 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" +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/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.orig.php:3 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.orig.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.orig.php:4 +#: IDF/gettexttemplates/idf/base-full.html.php:4 +#: IDF/gettexttemplates/idf/base.html.orig.php:4 +#: IDF/gettexttemplates/idf/base.html.php:4 +msgid "Project Home" +msgstr "" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:10 +#: IDF/gettexttemplates/idf/base-full.html.php:10 +#: IDF/gettexttemplates/idf/base.html.orig.php:10 +#: IDF/gettexttemplates/idf/base.html.php:10 +msgid "Project Management" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/base.html.php:4 +#: IDF/gettexttemplates/idf/downloads/index.html.php:4 +#: IDF/Views/Download.php:214 +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:8 +#: 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:25 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: 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/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +#: 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:13 +msgid "Uploaded:" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:27 +#: IDF/gettexttemplates/idf/review/view.html.php:26 +#: 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:15 +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:12 +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:16 +#: 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:20 +#: IDF/gettexttemplates/idf/issues/view.html.php:31 +#: 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:30 +#: 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 "Changes" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:6 +msgid "The form contains some errors. Please correct them to update the file." +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:7 +msgid "Update File" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:11 +msgid "Remove this file" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:10 +#: 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:12 +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:45 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:45 msgid "Projects" msgstr "Projekty" -#: IDF/Views.php:88 IDF/gettexttemplates/idf/register/index.html.php:6 -msgid "Create Your Account" -msgstr "Vytvořte si účet" - -#: IDF/Views.php:124 IDF/Views.php:150 -msgid "Confirm Your Account Creation" -msgstr "Potvrďte vytvoření Vašeho účtu" - -#: IDF/Views.php:170 -msgid "Welcome! You can now participate in the life of your project of choice." -msgstr "Vítejte! Nyní se můžete účastnit života projektu dle vašeho výběru." - -#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 -msgid "Password Recovery" -msgstr "Obnova hesla" - -#: IDF/Views.php:240 -msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." -msgstr "" -"Vítejte zpět! Příště můžete použít nastavení prohlížeče pro zapamatování " -"hesla." - -#: IDF/Views.php:282 -msgid "Here to Help You!" -msgstr "Zde k Vaší pomoci!" - -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" -msgstr "InDefero API (aplikační programátorský interface)" - -#: IDF/Scm/Mercurial.php:140 IDF/Scm/Git.php:234 -#, php-format -msgid "Folder %1$s not found in commit %2$s." -msgstr "" - -#: IDF/Scm/Mercurial.php:157 IDF/Scm/Git.php:352 -#, 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:183 -#, php-format -msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." -msgstr "" - #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

    This is simple:

    \n" @@ -383,158 +1411,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 "Oups, 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:12 -#: 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 "Oups, 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 "Oups, 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 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 @@ -557,19 +1464,6 @@ msgid "" "

    Separate the logins with commas and/or new lines.

    \n" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 -#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 -#: IDF/gettexttemplates/idf/admin/members.html.php:8 -msgid "" -"\n" -"

    Notes:

    \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 "" - #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14 msgid "" "The form contains some errors. Please correct them to create the project." @@ -579,18 +1473,6 @@ msgstr "" 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 #, php-format msgid "" @@ -623,15 +1505,6 @@ msgstr "" 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 "" @@ -641,12 +1514,6 @@ msgstr "" 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 "" @@ -670,18 +1537,11 @@ 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 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 msgid "Attachments:" msgstr "Přílohy:" -#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 -#: IDF/gettexttemplates/idf/index.html.php:12 -#: 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 "" @@ -690,16 +1550,6 @@ msgstr "" 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 "" - #: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13 msgid "" "The form contains some errors. Please correct them to update the project." @@ -719,35 +1569,29 @@ msgstr "" 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" +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 -msgid "Change Project Details" +#: 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: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 "" @@ -800,6 +1644,13 @@ msgstr "" 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" @@ -809,14 +1660,21 @@ msgstr "" msgid "Administrative" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13 -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4 -msgid "Update User" +#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 +msgid "Configured servers" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" +#: 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/control.html.php:3 @@ -919,972 +1777,9 @@ msgstr "" 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 "Vítejte" - -#: IDF/gettexttemplates/idf/login_form.html.php:3 -#, fuzzy -msgid "What is your account information?" -msgstr "Jaký je váš login?" - -#: IDF/gettexttemplates/idf/login_form.html.php:4 -msgid "My login is" -msgstr "Můj login je" - -#: IDF/gettexttemplates/idf/login_form.html.php:5 -#, fuzzy -msgid "My password is" -msgstr "moje heslo je" - -#: IDF/gettexttemplates/idf/login_form.html.php:6 -msgid "Sign in" -msgstr "Přihlásit" - -#: IDF/gettexttemplates/idf/login_form.html.php:7 -msgid "I lost my password!" -msgstr "Ztratil jsem heslo!" - -#: IDF/gettexttemplates/idf/login_form.html.php:8 -#, fuzzy -msgid "Welcome." -msgstr "Vítejte" - -#: IDF/gettexttemplates/idf/login_form.html.php:9 -msgid "If you don't have an account yet, you can create one" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:10 -#, fuzzy -msgid "here" -msgstr "Ostatní" - -#: IDF/gettexttemplates/idf/login_form.html.php:11 -msgid "It takes less than a minute to create your account" -msgstr "" - -#: IDF/gettexttemplates/idf/user/public.html.php:3 +#: IDF/gettexttemplates/idf/index.atom.php:3 #, php-format -msgid "You are looking at the public profile of %%member%%." -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:" -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 -#, 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/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/myaccount.html.php:6 -msgid "Key Management" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:7 -msgid "Extra password" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 -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:9 -msgid "API key" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 -msgid "" -"Your API key will be regenerated automatically if you change your password." -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 -msgid "Update Your Account" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 -msgid "Your Current Public Keys" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 -msgid "Delete this key" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 -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:16 -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:17 -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 -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/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 again 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 -msgid "" -"Oups, 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 "Náhled" - -#: 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 "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" -"

    Instructions:

    \n" -"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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/search.html.php:3 -#: IDF/gettexttemplates/idf/wiki/index.html.php:4 -#: IDF/gettexttemplates/idf/wiki/base.html.php:4 IDF/Views/Wiki.php:177 -msgid "New Page" -msgstr "" - -#: IDF/gettexttemplates/idf/wiki/search.html.php:4 -msgid "Pages found:" -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 -msgid "Changes:" -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/wiki-updated-email.txt.php:3 -msgid "The following documentation page has been updated:" -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 "Ahoj," - -#: 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 "Projekt:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7 -msgid "Updated by:" -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 -msgid "Created by:" -msgstr "" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13 -msgid "New content:" -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 "" - -#: 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 -msgid "Content:" -msgstr "" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:3 -msgid "List Pages" -msgstr "" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:5 -msgid "Update This Page" -msgstr "" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:6 -#: IDF/gettexttemplates/idf/issues/base.html.php:7 -msgid "Search" -msgstr "Hledat" - -#: IDF/gettexttemplates/idf/source/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/invalid_revision.html.php:5 -#, 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/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/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/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/review/view.html.php:3 -#, php-format -msgid "%%ndiff%% diff" -msgid_plural "%%ndiff%% diffs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:4 -msgid "Date:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:5 -#: IDF/gettexttemplates/idf/review/view.html.php:27 -msgid "Author:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:6 -msgid "Branch:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:8 -#: IDF/gettexttemplates/idf/review/view.html.php:29 -msgid "View corresponding source tree" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:9 -msgid "Parents:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:10 -#: IDF/gettexttemplates/idf/source/changelog.html.php:6 -msgid "View corresponding commit" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:11 -msgid "Message:" -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:17 -msgid "full" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:15 -msgid "renamed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:16 -msgid "added" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:18 -msgid "modified" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:19 -msgid "properies changed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:20 -msgid "removed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.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/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/review/view.html.php:35 -msgid "Download the corresponding diff file" -msgstr "" - -#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 -#, php-format -msgid "%%cproject.name%%: Commit %%c.scm_id%%" -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 "" - -#: 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:294 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:296 -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 authentification." -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" +msgid "Personal project feed for %%user%%." msgstr "" #: IDF/gettexttemplates/idf/index.html.php:4 @@ -1919,372 +1814,90 @@ msgstr "Doporučená dokumentace" msgid "Code reviews:" msgstr "Náhled" -#: IDF/gettexttemplates/idf/base-full.html.php:3 -#: IDF/gettexttemplates/idf/base.html.php:3 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 +#, php-format +msgid "Attachment to issue %%issue.id%%" +msgstr "Příloha k předmětu %%issue.id%%" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 +#: IDF/gettexttemplates/idf/review/view.html.php:34 +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +msgid "Archive" +msgstr "Archív" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:6 +#: IDF/gettexttemplates/idf/source/git/file.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:9 +msgid "Download this file" +msgstr "Stáhnout tento soubor" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:7 +#: IDF/gettexttemplates/idf/issues/view.html.php:26 +#: IDF/gettexttemplates/idf/review/view.html.php:25 +#: 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 "Vytvořeno:" + +#: IDF/gettexttemplates/idf/issues/base.html.php:3 +msgid "Open Issues" +msgstr "Otevřené předmět k řešení" + +#: 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 "Nový předmět k řešení" + +#: IDF/gettexttemplates/idf/issues/base.html.php:5 +msgid "My Issues" +msgstr "Moje předmět k řešení" + +#: IDF/gettexttemplates/idf/issues/base.html.php:6 +msgid "My watch list" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/base.html.php:7 +#: IDF/gettexttemplates/idf/wiki/base.html.php:6 +msgid "Search" +msgstr "Hledat" + +#: IDF/gettexttemplates/idf/issues/base.html.php:8 +msgid "Back to the issue" +msgstr "Zpátky k předmětu" + +#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 #, php-format msgid "" -"Sign in or create your account to create issues or " -"add comments" +"

    Open issues: %%open%%

    \n" +"

    Closed issues: %%closed%%

    \n" msgstr "" +"

    Otevřené předměty k řešení: " +"%%open%%

    \n" +"

    Zavřené předměty k řešení: " +"%%closed%%

    \n" -#: IDF/gettexttemplates/idf/base-full.html.php:4 -#: IDF/gettexttemplates/idf/base.html.php:4 -msgid "Project Home" -msgstr "" +#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 +msgid "Label:" +msgstr "Nálepka:" -#: 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 -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" -"
    • Ensure your patch does not contain any passwords 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 "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.

    " -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/by-label.html.php:8 +msgid "Completion:" +msgstr "Doplňování:" #: IDF/gettexttemplates/idf/issues/create.html.php:3 msgid "" @@ -2314,6 +1927,15 @@ msgstr "" "Formulář obsahuje nějaké chyby. Prosím opravte je a poté odešlete předmět k " "řešení." +#: 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 +#: IDF/gettexttemplates/idf/wiki/create.html.php:5 +#: IDF/gettexttemplates/idf/wiki/update.html.php:5 +msgid "Preview" +msgstr "Náhled" + #: IDF/gettexttemplates/idf/issues/create.html.php:12 msgid "Submit Issue" msgstr "Odeslat předmět k řešení" @@ -2330,65 +1952,52 @@ msgstr "Přiložit soubor" msgid "Attach another file" msgstr "Přiložit další soubor" -#: 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 "Nový předmět k řešení" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/view.html.php:17 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:40 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:6 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:11 +#: IDF/IssueComment.php:151 +msgid "Summary:" +msgstr "Souhrn:" -#: IDF/gettexttemplates/idf/issues/search.html.php:4 -msgid "Found issues:" -msgstr "Nalezené předměty k řešení:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:13 +#: IDF/gettexttemplates/idf/issues/view.html.php:18 +#: IDF/gettexttemplates/idf/issues/view.html.php:28 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:6 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:10 +#: IDF/gettexttemplates/idf/review/view.html.php:41 IDF/IssueComment.php:153 +msgid "Status:" +msgstr "Status:" -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 -msgid "The following issue has been updated:" -msgstr "Následující předmět k řešení byl aktualizován:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:5 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:19 +#: IDF/gettexttemplates/idf/issues/view.html.php:29 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:5 +#: IDF/IssueComment.php:155 +msgid "Owner:" +msgstr "Vlastník:" -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 -msgid "Comments (last first):" -msgstr "Komentář (poslední jako první):" - -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 -#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 -msgid "Issue:" -msgstr "Předmět k řešení:" - -#: 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/issues/project-watchlist.html.php:3 #, php-format msgid "" "

    Open issues: %%open%%

    \n" "

    Closed issues: %%closed%%

    " msgstr "" -"

    Otevřené předměty k řešení: %%" -"open%%

    \n" -"

    Zavřené předměty k řešení: %%" -"closed%%

    " - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 -#, php-format -msgid "" -"

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" -msgstr "" -"

    Otevřené předměty k řešení: %%" -"open%%

    \n" -"

    Zavřené předměty k řešení: %%" -"closed%%

    \n" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" -msgstr "Nálepka:" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 -msgid "Completion:" -msgstr "Doplňování:" +"

    Otevřené předměty k řešení: " +"%%open%%

    \n" +"

    Zavřené předměty k řešení: " +"%%closed%%

    " #: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3 msgid "" @@ -2396,11 +2005,89 @@ msgid "" "to you:" msgstr "Nový předmět k řešení byl vytvořen a vám přiřazen:" +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php: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 "Nahlášeno kým:" + +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 +msgid "Issue:" +msgstr "Předmět k řešení:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 +msgid "The following issue has been updated:" +msgstr "Následující předmět k řešení byl aktualizován:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 +#, php-format +msgid "By %%who%%, %%c.creation_dtime%%:" +msgstr "Kým %%who%%, %%c.creation_dtime%%:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12 +msgid "URL:" +msgstr "URL:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 +msgid "Comments (last first):" +msgstr "Komentář (poslední jako první):" + +#: IDF/gettexttemplates/idf/issues/my-issues.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/my-issues.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/my-issues.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/my-issues.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/search.html.php:4 +msgid "Found issues:" +msgstr "Nalezené předměty 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." @@ -2467,63 +2154,79 @@ msgstr "" msgid "Followed by:" msgstr "" -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 +#: IDF/gettexttemplates/idf/login_form.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/my-issues.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/attachment.html.php:3 -#, php-format -msgid "Attachment to issue %%issue.id%%" -msgstr "Příloha k předmětu %%issue.id%%" - -#: IDF/gettexttemplates/idf/issues/base.html.php:3 -msgid "Open Issues" -msgstr "Otevřené předmět k řešení" - -#: IDF/gettexttemplates/idf/issues/base.html.php:5 -msgid "My Issues" -msgstr "Moje předmět k řešení" - -#: IDF/gettexttemplates/idf/issues/base.html.php:6 -msgid "My watch list" +"If you don't have an account yet, you can create one here." msgstr "" -#: IDF/gettexttemplates/idf/issues/base.html.php:8 -msgid "Back to the issue" -msgstr "Zpátky k předmětu" +#: IDF/gettexttemplates/idf/login_form.html.php:4 +#, fuzzy +msgid "What is your account information?" +msgstr "Jaký je váš login?" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" -msgstr "Poslední změny" +#: IDF/gettexttemplates/idf/login_form.html.php:5 +msgid "My login is" +msgstr "Můj login je" + +#: IDF/gettexttemplates/idf/login_form.html.php:6 +#, fuzzy +msgid "My password is" +msgstr "moje heslo je" + +#: IDF/gettexttemplates/idf/login_form.html.php:7 +msgid "Sign in" +msgstr "Přihlásit" + +#: IDF/gettexttemplates/idf/login_form.html.php:8 +msgid "I lost my password!" +msgstr "Ztratil jsem heslo!" + +#: IDF/gettexttemplates/idf/login_form.html.php:9 +#, fuzzy +msgid "Welcome." +msgstr "Vítejte" + +#: 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: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/main-menu.html.php:10 +#: 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 +msgid "Help" +msgstr "" -#: IDF/gettexttemplates/idf/project/timeline.html.php:5 #: 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/timeline.html.php:6 -msgid "Filter by type" -msgstr "" - #: IDF/gettexttemplates/idf/project/home.html.php:5 msgid "Featured Downloads" msgstr "Doporučené soubory ke stažení" @@ -2549,108 +2252,1089 @@ msgstr "Administrátoři" msgid "Happy Crew" msgstr "Šťastný team" -#: 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?" +#: IDF/gettexttemplates/idf/project/timeline.html.php:3 +msgid "Latest updates" +msgstr "Poslední změny" + +#: IDF/gettexttemplates/idf/project/timeline.html.php:6 +msgid "Filter by type" msgstr "" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 #, php-format msgid "" -"Instead of deleting the file, you could mark it as " -"deprecated." +"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/downloads/delete.html.php:6 -msgid "Delete File" +#: 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 "Oups, please check the form for errors." msgstr "" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:8 -#: IDF/gettexttemplates/idf/downloads/view.html.php:13 -msgid "Uploaded:" +#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 +msgid "Email:" msgstr "" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 +#: 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 "" -"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." +"This is the last step, but just be sure to have the cookies enabled to log in afterwards." msgstr "" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 +#: 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 "" -"You can use the Markdown syntax for the description." +"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/downloads/submit.html.php:7 -msgid "The form contains some errors. Please correct them to submit the file." +#: IDF/gettexttemplates/idf/register/index.html.php:5 +msgid "Oups, please check the provided login and email address to register." msgstr "" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 -msgid "Submit File" -msgstr "" +#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:88 +msgid "Create Your Account" +msgstr "Vytvořte si účet" -#: 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:4 -#: IDF/gettexttemplates/idf/downloads/base.html.php:4 -#: IDF/Views/Download.php:216 -msgid "New Download" -msgstr "" - -#: IDF/gettexttemplates/idf/downloads/index.html.php:5 -msgid "Number of files:" -msgstr "" - -#: IDF/gettexttemplates/idf/downloads/view.html.php:3 +#: IDF/gettexttemplates/idf/register/index.html.php:8 msgid "" -"Attention! This file is marked as deprecated, download it " -"only if you are sure you need this specific version." +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:5 -msgid "Changes" +#: IDF/gettexttemplates/idf/register/index.html.php:9 +msgid "Did you know?" msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:6 -msgid "The form contains some errors. Please correct them to update the file." +#: 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 "Oups, we found an error in the form." msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:7 -msgid "Update File" +#: IDF/gettexttemplates/idf/register/inputkey.html.php:4 +msgid "Confirm Your Account" msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:9 -#: IDF/gettexttemplates/idf/downloads/view.html.php:11 -msgid "Remove this file" +#: 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/downloads/view.html.php:12 -msgid "Delete this file" +#: 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/downloads/download-created-email.txt.php:3 -msgid "A new file is available for download:" +#: IDF/gettexttemplates/idf/review/base-full.html.php:3 +#: IDF/gettexttemplates/idf/review/base.html.php:3 +msgid "Open Reviews" msgstr "" -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6 -msgid "Submitted by:" +#: 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/downloads/download-created-email.txt.php:8 -msgid "Download:" +#: 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" +"
    • Ensure your patch does not contain any passwords 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 +#: 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: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: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:27 +#: IDF/gettexttemplates/idf/source/commit.html.php:5 +msgid "Author:" +msgstr "" + +#: 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 +msgid "Commit:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:29 +#: IDF/gettexttemplates/idf/source/commit.html.php:8 +msgid "View corresponding source tree" +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:35 +#: IDF/gettexttemplates/idf/source/commit.html.php:23 +msgid "Download the corresponding diff file" +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/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:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/Views/Project.php:152 +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:8 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9 +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:17 +msgid "full" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +msgid "renamed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +msgid "added" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +msgid "modified" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +msgid "properies changed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +msgid "removed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +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: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 "" +"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: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 "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: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 +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 authentification." +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:9 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10 +#: IDF/Views/Download.php:66 IDF/Views/Download.php:294 +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:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13 +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 +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:13 +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 +#, fuzzy +msgid "The following list shows all available branches:" +msgstr "Následující předmět k řešení byl aktualizován:" + +#: 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." +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/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:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15 +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:11 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16 +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/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/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/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 "Extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +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:9 +msgid "API key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "Update Your Account" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +msgid "Your Current Public Keys" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Delete this key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +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:16 +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:17 +msgid "Show API key and extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 +msgid "" +"Oups, 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 again 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:175 +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" +"

    Instructions:

    \n" +"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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 "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:93 IDF/WikiPage.php:94 +msgid "labels" +msgstr "nálepky" + +#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114 +#: IDF/Upload.php:112 IDF/WikiPage.php:106 +msgid "modification date" +msgstr "datum změny" + +#: IDF/Issue.php:194 IDF/IssueComment.php:143 +#, php-format +msgid "" +"Issue %3$d, %4$s" +msgstr "" +"předmět " +"k řešení %3$d, %4$s" + +#: IDF/Issue.php:196 +#, php-format +msgid "Creation of issue %d, by %s" +msgstr "Vytvoření předmět %d, by %s" + +#: IDF/Issue.php:206 +#, php-format +msgid "%s: Issue %d created - %s" +msgstr "%s: Předmět %d vytvořen - %s" + +#: IDF/Issue.php:272 +#, php-format +msgid "Issue %s - %s (%s)" +msgstr "Předmět k řešení %s - %s (%s)" + +#: IDF/Issue.php:318 +#, php-format +msgid "Updated Issue %s - %s (%s)" +msgstr "Předmět aktualizován %s - %s (%s)" + +#: IDF/IssueComment.php:51 +msgid "issue" +msgstr "předmět k řešení" + +#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62 +#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69 +msgid "comment" +msgstr "komentář" + +#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63 +#: IDF/WikiRevision.php:85 +msgid "changes" +msgstr "změny" + +#: IDF/IssueComment.php:73 +msgid "Serialized array of the changes in the issue." +msgstr "Serializované pole změn předmětů k řešení." + +#: IDF/IssueComment.php:171 +#, php-format +msgid "Comment on issue %d, by %s" +msgstr "" +"Komentář k předmětu k řešení č. %d, %s" + +#: IDF/IssueComment.php:182 +#, php-format +msgid "%s: Comment on issue %d - %s" +msgstr "%s: komentář k předmětu %d - %s" + #: IDF/IssueFile.php:64 msgid "file name" msgstr "jméno souboru" @@ -2675,1506 +3359,28 @@ msgstr "obrázek" msgid "Other" msgstr "Ostatní" -#: IDF/Project.php:62 IDF/Tag.php:66 -msgid "name" -msgstr "jméno" +#: IDF/Key.php:49 +msgid "user" +msgstr "uživatel" -#: IDF/Project.php:69 -msgid "short name" -msgstr "krátké jméno" - -#: IDF/Project.php:70 -msgid "" -"Used in the url to access the project, must be short with only letters and " -"numbers." -msgstr "" -"Používáné v url k projektu, musí být krátké a obsahovat pouze písmena a " -"čísla." - -#: IDF/Project.php:78 -msgid "short description" -msgstr "krátký popis" - -#: IDF/Project.php:79 IDF/Form/Admin/ProjectCreate.php:70 -#: IDF/Form/Admin/ProjectUpdate.php:51 -msgid "A one line description of the project." -msgstr "Jednořádkový popis projektu." - -#: IDF/Project.php:86 IDF/Review/Patch.php:74 -msgid "description" -msgstr "popis" - -#: IDF/Project.php:87 -msgid "The description can be extended using the markdown syntax." -msgstr "Popis může být rozšířen pomocí markdown syntaxe." - -#: IDF/Project.php:93 -msgid "private" -msgstr "soukromé" - -#: IDF/Project.php:130 -#, php-format -msgid "Project \"%s\" not found." -msgstr "Projekt \"%s\" nenalezen." - -#: 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/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:196 -#, php-format -msgid "Creation of issue %d, by %s" -msgstr "Vytvoření předmět %d, by %s" - -#: IDF/Issue.php:206 -#, php-format -msgid "%s: Issue %d created - %s" -msgstr "%s: Předmět %d vytvořen - %s" - -#: IDF/Issue.php:272 -#, php-format -msgid "Issue %s - %s (%s)" -msgstr "Předmět k řešení %s - %s (%s)" - -#: IDF/Issue.php:318 -#, php-format -msgid "Updated Issue %s - %s (%s)" -msgstr "Předmět aktualizován %s - %s (%s)" - -#: 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:108 IDF/Views/Wiki.php:149 -msgid "Page Title" -msgstr "" - -#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:109 IDF/Views/Wiki.php:150 -#: IDF/Views/Download.php:65 IDF/Views/Download.php:295 IDF/Views/Issue.php:62 -#: IDF/Views/Issue.php:140 IDF/Views/Issue.php:221 IDF/Views/Issue.php:297 -#: IDF/Views/Issue.php:384 IDF/Views/Issue.php:563 IDF/Views/Issue.php:622 -#: IDF/Views/User.php:83 IDF/Views/Review.php:58 IDF/Form/Upload.php:40 -#: IDF/Form/ReviewCreate.php:45 IDF/Form/IssueUpdate.php:45 -#: IDF/Form/IssueCreate.php:53 IDF/Form/UpdateUpload.php:42 -#: IDF/Form/ReviewFileComment.php:71 -msgid "Summary" -msgstr "" - -#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:110 IDF/Views/Wiki.php:151 -msgid "Updated" -msgstr "" - -#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:155 -msgid "No documentation pages were found." -msgstr "" - -#: IDF/Views/Wiki.php:92 -#, php-format -msgid "Documentation Search - %s" -msgstr "" - -#: IDF/Views/Wiki.php:103 -msgid "This table shows the pages found." -msgstr "" - -#: IDF/Views/Wiki.php:114 -msgid "No pages were found." -msgstr "" - -#: IDF/Views/Wiki.php:133 -#, php-format -msgid "%1$s Documentation Pages with Label %2$s" -msgstr "" - -#: IDF/Views/Wiki.php:143 -#, php-format -msgid "This table shows the documentation pages with label %s." -msgstr "" - -#: IDF/Views/Wiki.php:188 -#, php-format -msgid "The page %s has been created." -msgstr "" - -#: IDF/Views/Wiki.php:275 -msgid "The old revision has been deleted." -msgstr "" - -#: IDF/Views/Wiki.php:281 -#, php-format -msgid "Delete Old Revision of %s" -msgstr "" - -#: IDF/Views/Wiki.php:314 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 -#, php-format -msgid "Update %s" -msgstr "" - -#: IDF/Views/Wiki.php:326 -#, php-format -msgid "The page %s has been updated." -msgstr "" - -#: IDF/Views/Wiki.php:364 -msgid "The documentation page has been deleted." -msgstr "" - -#: IDF/Views/Wiki.php:372 -#, php-format -msgid "Delete Page %s" -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:77 -#, php-format -msgid "%s Ambiguous Revision" -msgstr "" - -#: IDF/Views/Source.php:102 -#, php-format -msgid "%1$s %2$s Change Log" -msgstr "" - -#: IDF/Views/Source.php:142 IDF/Views/Source.php:223 IDF/Views/Source.php:355 -#, php-format -msgid "%1$s %2$s Source Tree" -msgstr "" - -#: IDF/Views/Source.php:299 -#, php-format -msgid "%s Commit Details" -msgstr "" - -#: IDF/Views/Source.php:300 -#, php-format -msgid "%s Commit Details - %s" -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:297 -msgid "Uploaded" -msgstr "" - -#: IDF/Views/Download.php:71 IDF/Views/Download.php:301 -msgid "No downloads were found." -msgstr "" - -#: IDF/Views/Download.php:96 -#, php-format -msgid "Download %s" -msgstr "" - -#: IDF/Views/Download.php:113 -#, php-format -msgid "The file %2$s has been updated." -msgstr "" - -#: IDF/Views/Download.php:146 -#, php-format -msgid "Delete Download %s" -msgstr "" - -#: IDF/Views/Download.php:179 -msgid "The file has been deleted." -msgstr "" - -#: IDF/Views/Download.php:225 -#, php-format -msgid "The file has been uploaded." -msgstr "" - -#: IDF/Views/Download.php:279 -#, php-format -msgid "%1$s Downloads with Label %2$s" -msgstr "%1$s soubory ke stažení s nálepkou %2$s" - -#: IDF/Views/Download.php:289 -#, php-format -msgid "This table shows the downloads with label %s." -msgstr "" -"Tato tabulka ukazuje soubory ke stažení s nálepkou problémy k řešení %s." - -#: IDF/Views/Project.php:72 -msgid "All Updates" -msgstr "" - -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" -msgstr "" - -#: IDF/Views/Project.php:76 -msgid "Documents" -msgstr "" - -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" -msgstr "" - -#: IDF/Views/Project.php:142 -msgid "This table shows the project updates." -msgstr "" - -#: IDF/Views/Project.php:153 -msgid "Change" -msgstr "" - -#: IDF/Views/Project.php:157 -msgid "No changes were found." -msgstr "" - -#: IDF/Views/Project.php:248 -#, php-format -msgid "%s Project Summary" -msgstr "" - -#: IDF/Views/Project.php:256 IDF/Views/Admin.php:101 -msgid "The project has been updated." -msgstr "" - -#: IDF/Views/Project.php:283 -#, php-format -msgid "%s Issue Tracking Configuration" -msgstr "" - -#: IDF/Views/Project.php:292 -msgid "The issue tracking configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:328 -#, php-format -msgid "%s Downloads Configuration" -msgstr "" - -#: IDF/Views/Project.php:337 -msgid "The downloads configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:371 -#, php-format -msgid "%s Documentation Configuration" -msgstr "" - -#: IDF/Views/Project.php:380 -msgid "The documentation configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:414 -#, php-format -msgid "%s Project Members" -msgstr "" - -#: IDF/Views/Project.php:423 -msgid "The project membership has been saved." -msgstr "" - -#: IDF/Views/Project.php:446 -#, php-format -msgid "%s Tabs Access Rights" -msgstr "" - -#: IDF/Views/Project.php:460 -msgid "The project tabs access rights have been saved." -msgstr "" - -#: IDF/Views/Project.php:506 -#, php-format -msgid "%s Source" -msgstr "" - -#: IDF/Views/Project.php:520 -msgid "The project source configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:540 IDF/Form/Admin/ProjectCreate.php:38 -msgid "git" -msgstr "" - -#: IDF/Views/Project.php:541 IDF/Form/Admin/ProjectCreate.php:39 -msgid "Subversion" -msgstr "" - -#: IDF/Views/Project.php:542 IDF/Form/Admin/ProjectCreate.php:40 -msgid "mercurial" -msgstr "" - -#: IDF/Views/Project.php:543 IDF/Form/Admin/ProjectCreate.php:41 -msgid "monotone" -msgstr "" - -#: IDF/Views/Issue.php:41 -#, php-format -msgid "%s Open Issues" -msgstr "%s otevřené problémy k řešení" - -#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:288 IDF/Views/User.php:75 -msgid "This table shows the open issues." -msgstr "" - -#: IDF/Views/Issue.php:61 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/User.php:81 IDF/Views/Review.php:57 -msgid "Id" -msgstr "" - -#: IDF/Views/Issue.php:63 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/User.php:84 IDF/Views/Review.php:59 -#: IDF/Form/ReviewCreate.php:103 IDF/Form/IssueUpdate.php:88 -#: IDF/Form/IssueCreate.php:95 IDF/Form/ReviewFileComment.php:81 -msgid "Status" -msgstr "" - -#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:142 IDF/Views/Issue.php:224 -#: IDF/Views/Issue.php:299 IDF/Views/Issue.php:386 IDF/Views/Issue.php:565 -#: IDF/Views/Issue.php:624 IDF/Views/User.php:85 IDF/Views/Review.php:60 -msgid "Last Updated" -msgstr "" - -#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:146 IDF/Views/Issue.php:228 -#: IDF/Views/Issue.php:303 IDF/Views/Issue.php:390 IDF/Views/Issue.php:569 -#: IDF/Views/Issue.php:628 -msgid "No issues were found." -msgstr "Nebyly nalezeny žádné problémy k řešení." - -#: IDF/Views/Issue.php:113 -#, php-format -msgid "Watch List: Closed Issues for %s" -msgstr "" - -#: IDF/Views/Issue.php:114 -#, php-format -msgid "This table shows the closed issues in your watch list for %s project." -msgstr "" - -#: IDF/Views/Issue.php:119 -#, php-format -msgid "Watch List: Open Issues for %s" -msgstr "" - -#: IDF/Views/Issue.php:120 -#, php-format -msgid "This table shows the open issues in your watch list for %s project." -msgstr "" - -#: IDF/Views/Issue.php:196 -msgid "Watch List: Closed Issues" -msgstr "" - -#: IDF/Views/Issue.php:197 -msgid "This table shows the closed issues in your watch list." -msgstr "" - -#: IDF/Views/Issue.php:202 -msgid "Watch List: Open Issues" -msgstr "" - -#: IDF/Views/Issue.php:203 -msgid "This table shows the open issues in your watch list." -msgstr "" - -#: IDF/Views/Issue.php:222 IDF/Views/User.php:82 -msgid "Project" -msgstr "" - -#: IDF/Views/Issue.php:255 -#, php-format -msgid "My Submitted %s Issues" -msgstr "Mé odeslané %s problémy k řešení" - -#: IDF/Views/Issue.php:259 -#, php-format -msgid "My Closed Submitted %s Issues" -msgstr "Mé uzavřené odeslané %s problémy k řešení" - -#: IDF/Views/Issue.php:263 -#, php-format -msgid "My Closed Working %s Issues" -msgstr "Mé uzavřené %s problémy k řešení" - -#: IDF/Views/Issue.php:267 -#, php-format -msgid "My Working %s Issues" -msgstr "Mé pracovní %s problémy k řešení" - -#: IDF/Views/Issue.php:322 -msgid "Submit a new issue" -msgstr "Odeslat nový předmět k řešení." - -#: IDF/Views/Issue.php:338 -#, php-format -msgid "Issue %d has been created." -msgstr "Předmět k řešení č. %d byl vytvořen." - -#: IDF/Views/Issue.php:367 -#, php-format -msgid "Search Issues - %s" -msgstr "Prohledat předměty k řešení - %s" - -#: IDF/Views/Issue.php:379 -msgid "This table shows the found issues." -msgstr "Tato tabulka ukazuje nalezené předměty k řešení." - -#: IDF/Views/Issue.php:409 -#, php-format -msgid "Issue %d: %s" -msgstr "Předmět k řešení č. %d: %s" - -#: IDF/Views/Issue.php:433 -#, php-format -msgid "Issue %d has been updated." -msgstr "Předmět k řešení č. %d byl aktualizován." - -#: IDF/Views/Issue.php:522 -#, php-format -msgid "View %s" -msgstr "Zobrazit %s" - -#: IDF/Views/Issue.php:542 -#, php-format -msgid "%s Closed Issues" -msgstr "%s uzavřený předmět k řešení" - -#: IDF/Views/Issue.php:552 -msgid "This table shows the closed issues." -msgstr "Tato tabulka ukazuje uzavřené předměty k řešení." - -#: IDF/Views/Issue.php:595 -#, php-format -msgid "%1$s Issues with Label %2$s" -msgstr "%1$s předmět k řešení s nálepkou %2$s" - -#: IDF/Views/Issue.php:598 -#, php-format -msgid "%1$s Closed Issues with Label %2$s" -msgstr "%1$s uzavřený předmět k řešení s nálepkou %2$s" - -#: IDF/Views/Issue.php:611 -#, php-format -msgid "This table shows the issues with label %s." -msgstr "Tato tabulka ukazuje předměty k řešení s nálepkou %s." - -#: IDF/Views/Issue.php:661 -msgid "The issue has been removed from your watch list." -msgstr "Předmět řešení byl odebrán z vašeho seznamu ke sledování." - -#: IDF/Views/Issue.php:664 -msgid "The issue has been added to your watch list." -msgstr "Předměty k řešení byl přidán do vašeho seznamu ke sledování." - -#: IDF/Views/Issue.php:753 -msgid "On your watch list." -msgstr "Na vašem sledovacím seznamu." - -#: 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:132 -msgid "Your Account" -msgstr "" - -#: IDF/Views/User.php:155 -msgid "The public key has been deleted." -msgstr "" - -#: IDF/Views/User.php:178 -msgid "Confirm The Email Change" -msgstr "" - -#: IDF/Views/User.php:203 -#, php-format -msgid "Your new email address \"%s\" has been validated. Thank you!" -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/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:66 IDF/Views/Admin.php:210 -#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 -msgid "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: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:211 IDF/Form/Admin/UserUpdate.php:161 -msgid "Staff" -msgstr "" - -#: IDF/Views/Admin.php:212 -msgid "Admin" -msgstr "" - -#: IDF/Views/Admin.php:213 IDF/Form/Admin/UserUpdate.php:172 -msgid "Active" -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 "Ano" - -#: IDF/Views/Admin.php:471 -msgid "No" -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:70 IDF/Form/Upload.php:49 -#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/ReviewCreate.php:54 -#: IDF/Form/UserAccount.php:99 IDF/Form/IssueCreate.php:62 -#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 -msgid "Description" -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:93 IDF/Form/Upload.php:70 -#: IDF/Form/IssueUpdate.php:117 IDF/Form/IssueCreate.php:150 -#: IDF/Form/WikiUpdate.php:104 IDF/Form/UpdateUpload.php:71 -msgid "Labels" -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:151 IDF/Form/Upload.php:120 -#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 -#: IDF/Form/WikiUpdate.php:162 IDF/Form/UpdateUpload.php:110 -msgid "You provided an invalid label." -msgstr "" - -#: IDF/Form/WikiCreate.php:167 IDF/Form/Upload.php:148 -#: IDF/Form/Admin/UserCreate.php:106 IDF/Form/Admin/ProjectCreate.php:279 -#: IDF/Form/Admin/ProjectDelete.php:78 IDF/Form/Admin/UserUpdate.php:191 -#: IDF/Form/Admin/ProjectUpdate.php:121 IDF/Form/Password.php:76 -#: IDF/Form/ReviewCreate.php:187 IDF/Form/Register.php:114 -#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 -#: IDF/Form/UserAccount.php:178 IDF/Form/IssueCreate.php:263 -#: IDF/Form/MembersConf.php:64 IDF/Form/WikiUpdate.php:178 -#: IDF/Form/UpdateUpload.php:126 IDF/Form/TabsConf.php:98 -#: IDF/Form/UserChangeEmail.php:80 IDF/Form/ReviewFileComment.php:125 -msgid "Cannot save the model from an invalid form." -msgstr "" - -#: IDF/Form/WikiCreate.php:200 -msgid "Initial page creation" -msgstr "" - -#: IDF/Form/Upload.php:86 IDF/Form/Admin/UserUpdate.php:301 -#: IDF/Form/UserAccount.php:367 -msgid "For security reason, you cannot upload a file with this extension." -msgstr "" - -#: IDF/Form/Upload.php:119 IDF/Form/IssueCreate.php:199 -#: IDF/Form/UpdateUpload.php:109 -#, php-format -msgid "You cannot provide more than label from the %s class to an issue." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 -#: IDF/Form/UserAccount.php:40 IDF/Form/RegisterConfirmation.php:50 -msgid "First name" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 -#: IDF/Form/UserAccount.php:49 IDF/Form/RegisterConfirmation.php:59 -msgid "Last name" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:56 -msgid "Login" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 -msgid "" -"The login must be between 3 and 15 characters long and contains only letters " -"and digits." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 -msgid "Email" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:71 -msgid "" -"Double check the email address as the password is directly sent 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:159 -msgid "Add a public key" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:164 -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:400 -#, php-format -msgid "The email \"%s\" is already used." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 -#, php-format -msgid "The login \"%s\" can only contain letters and digits." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 -#, php-format -msgid "The login \"%s\" is already used, please find another one." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:62 -msgid "Shortname" -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:64 -msgid "" -"It must be unique for each project and composed only of letters, digits and " -"dash (-) like \"my-project\"." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 -msgid "Short description" -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php: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 throught http or https are allowed. For " -"example \"http://somewhere.com/svn/trunk\"." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 -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:295 -msgid "" -"Click on the Project Management tab to set the description of your project." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:362 -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/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 find it, but easy for the user " -"to remember." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:89 -msgid "Confirm password" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:108 -msgid "Twitter username" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:118 -msgid "Public email address" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:128 -msgid "Website URL" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:138 -msgid "Upload custom avatar" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:145 -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:150 -msgid "Remove custom avatar" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:154 -msgid "Tick this to delete the custom avatar." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:164 -msgid "If you give staff rights to a user, you really need to trust him." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:176 -msgid "" -"If the user is not getting the confirmation email or is abusing the system, " -"you can directly enable or disable his 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:316 IDF/Form/UserAccount.php:423 -msgid "The passwords do not match. Please give them again." -msgstr "" - -#: IDF/Form/Password.php:34 -msgid "Your login or email" -msgstr "" - -#: IDF/Form/Password.php:35 -msgid "Provide either your login or your email to recover your password." -msgstr "" - -#: IDF/Form/Password.php:49 IDF/Form/Password.php:64 -msgid "" -"Sorry, we cannot find a user with this email address or login. Feel free to " -"try again." -msgstr "" - -#: IDF/Form/Password.php:100 -msgid "Password Recovery - InDefero" -msgstr "" - -#: IDF/Form/PasswordReset.php:39 IDF/Form/PasswordInputKey.php:36 -#: IDF/Form/UserChangeEmail.php:36 -msgid "Your verification key" -msgstr "" - -#: IDF/Form/PasswordReset.php:45 IDF/Form/UserAccount.php:77 -#: IDF/Form/RegisterConfirmation.php:69 -msgid "Your password" -msgstr "" - -#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80 -#: IDF/Form/RegisterConfirmation.php:72 -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/UserAccount.php:88 -#: IDF/Form/RegisterConfirmation.php:80 -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/PasswordReset.php:89 IDF/Form/PasswordInputKey.php:50 -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/PasswordReset.php:100 IDF/Form/PasswordInputKey.php:61 -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/PasswordReset.php:108 IDF/Form/PasswordInputKey.php:76 -#: IDF/Form/RegisterInputKey.php:72 IDF/Form/RegisterConfirmation.php:137 -msgid "Cannot save an invalid form." -msgstr "" - -#: IDF/Form/ReviewCreate.php:83 IDF/Form/IssueUpdate.php:65 -#: IDF/Form/IssueCreate.php:72 -msgid "The \"upload_issue_path\" configuration variable was not set." -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:159 IDF/Form/IssueCreate.php:233 -msgid "You provided an invalid status." -msgstr "" - -#: IDF/Form/ReviewCreate.php:202 -msgid "Initial patch to be reviewed." -msgstr "" - -#: IDF/Form/Register.php:41 -msgid "Your login" -msgstr "" - -#: 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 spams 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:99 -#, php-format -msgid "" -"The email \"%s\" is already used. If you need, click on the help link to " -"recover your password." -msgstr "" - -#: IDF/Form/Register.php:150 -msgid "Confirm the creation of your account." -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/IssueUpdate.php:55 IDF/Form/WikiUpdate.php:82 -#: IDF/Form/ReviewFileComment.php:45 -msgid "Comment" -msgstr "" - -#: IDF/Form/IssueUpdate.php:75 IDF/Form/IssueCreate.php:82 -msgid "Attach a file" -msgstr "" - -#: IDF/Form/IssueUpdate.php:98 IDF/Form/IssueCreate.php:104 -msgid "Owner" -msgstr "" - -#: IDF/Form/IssueUpdate.php:147 IDF/Form/IssueCreate.php:210 -msgid "You need to provide a description of the issue." -msgstr "" - -#: IDF/Form/IssueUpdate.php:219 -msgid "No changes were entered." -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/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:207 -msgid "Confirm your new email address." -msgstr "" - -#: IDF/Form/UserAccount.php:210 -#, php-format -msgid "" -"A validation email has been sent to \"%s\" to validate the email address " -"change." -msgstr "" - -#: IDF/Form/UserAccount.php:312 -msgid "" -"Please check the key as it does not appear to be a valid SSH public key." -msgstr "" - -#: IDF/Form/UserAccount.php:332 -msgid "" -"Please check the key as it does not appear to be a valid monotone public key." -msgstr "" - -#: IDF/Form/UserAccount.php:340 -msgid "Public key looks neither like a SSH nor monotone public key." -msgstr "" - -#: IDF/Form/UserAccount.php:352 -msgid "You already have uploaded this key." -msgstr "" - -#: IDF/Form/RegisterInputKey.php:36 IDF/Form/RegisterConfirmation.php:40 -msgid "Your confirmation key" -msgstr "" - -#: IDF/Form/RegisterInputKey.php:50 IDF/Form/RegisterConfirmation.php:99 -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/IssueCreate.php:192 -msgid "You cannot add a label with the \"Status\" prefix to an issue." -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:80 -msgid "" -"Define an issue template to hint the reporter to provide certain information" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:89 -msgid "Open issue status values" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:97 -msgid "Closed issue status values" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:106 -msgid "Predefined issue labels" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:108 -msgid "" -"The first \"Type:\" and \"Priority:\" entries found in this list are " -"automatically chosen as defaults for new issues." -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:116 -msgid "Each issue may have at most one label with each of these classes" -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/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/WikiUpdate.php:83 -msgid "One line to describe the changes you made." -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/UserChangeEmail.php:63 -msgid "" -"The validation key is not valid. Please copy/paste it from your confirmation " -"email." -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/ReviewFileComment.php:56 -msgid "General comment" -msgstr "" - -#: IDF/Form/ReviewFileComment.php:102 -msgid "You need to provide comments on at least one file." -msgstr "" - -#: IDF/Form/ReviewFileComment.php:109 -msgid "You need to provide your general comment about the proposal." -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/Field/EmailList.php:45 -msgid "Please enter one or more valid email addresses." -msgstr "" - -#: IDF/WikiRevision.php:48 -msgid "page" -msgstr "stránka" - -#: IDF/WikiRevision.php:66 -msgid "A one line description of the changes." -msgstr "Jednořádkový popis změn." - -#: IDF/WikiRevision.php:72 -msgid "content" -msgstr "obsah" - -#: IDF/WikiRevision.php:167 IDF/WikiPage.php:196 -#, php-format -msgid "%2$s, %3$s" -msgstr "%2$s, %3$s" - -#: IDF/WikiRevision.php:189 -#, php-format -msgid "Change of %s, by %s" -msgstr "Změněno %s, kým %s" - -#: IDF/WikiRevision.php:208 -#, php-format -msgid "%s: Documentation page %s updated - %s" -msgstr "%s: Dokumentační stránka %s aktualizována - %s" - -#: IDF/WikiRevision.php:262 -#, php-format -msgid "New Documentation Page %s - %s (%s)" -msgstr "Nová dokumentační stránka %s - %s (%s)" - -#: IDF/WikiRevision.php:268 -#, php-format -msgid "Documentation Page Changed %s - %s (%s)" -msgstr "Dokumentační stránka změněna %s - %s (%s)" - -#: IDF/Review/Patch.php:52 -msgid "review" -msgstr "" - -#: IDF/Review/Patch.php:67 -msgid "commit" -msgstr "" - -#: IDF/Review/Patch.php:80 IDF/Review/Comment.php:55 -msgid "patch" -msgstr "" - -#: IDF/Review/Patch.php:151 IDF/Review/Comment.php:139 -#, php-format -msgid "" -"Review %3$d, %4$s" -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/Review/Comment.php:83 -msgid "vote" -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" +#: IDF/Key.php:55 +msgid "public key" msgstr "" -#: IDF/Review/Comment.php:216 -#, php-format -msgid "Updated Code Review %s - %s (%s)" +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." msgstr "" -#: IDF/Plugin/SyncSvn.php:81 IDF/Plugin/SyncMercurial.php:78 +#: 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:86 IDF/Plugin/SyncMonotone.php:457 #: IDF/Plugin/SyncMonotone.php:783 msgid "\"mtn_repositories\" must be defined in your configuration file." @@ -4204,6 +3410,11 @@ msgstr "" msgid "The project path %s could not be created." msgstr "" +#: IDF/Plugin/SyncMonotone.php:187 IDF/Scm/Monotone/Stdio.php:87 +#, php-format +msgid "The key directory %s could not be created." +msgstr "" + #: IDF/Plugin/SyncMonotone.php:205 #, php-format msgid "Could not parse key information: %s" @@ -4289,40 +3500,134 @@ msgstr "" msgid "The command \"%s\" could not be executed." msgstr "" -#: IDF/Plugin/SyncMercurial.php:142 -#, php-format -msgid "%s does not exist or is not writable." -msgstr "" +#: IDF/Project.php:62 IDF/Tag.php:66 +msgid "name" +msgstr "jméno" -#: IDF/Timeline/Paginator.php:49 -msgid "Today" -msgstr "" +#: IDF/Project.php:69 +msgid "short name" +msgstr "krátké jméno" -#: IDF/WikiPage.php:62 -msgid "title" -msgstr "nadpis" - -#: IDF/WikiPage.php:63 +#: IDF/Project.php:70 msgid "" -"The title of the page must only contain letters, digits or the dash " -"character. For example: My-new-Wiki-Page." +"Used in the url to access the project, must be short with only letters and " +"numbers." msgstr "" -"Nadpis musí obsahovat pouze písmena, čísla nebo pomlčku. Např. Moje-nova-" -"WiKi-Stranka." +"Používáné v url k projektu, musí být krátké a obsahovat pouze písmena a " +"čísla." -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." -msgstr "Jednořádkový popis obsahu stránky." +#: IDF/Project.php:78 +msgid "short description" +msgstr "krátký popis" -#: IDF/WikiPage.php:198 +#: IDF/Project.php:86 IDF/Review/Patch.php:74 +msgid "description" +msgstr "popis" + +#: IDF/Project.php:87 +msgid "The description can be extended using the markdown syntax." +msgstr "Popis může být rozšířen pomocí markdown syntaxe." + +#: IDF/Project.php:93 +msgid "private" +msgstr "soukromé" + +#: IDF/Project.php:130 #, php-format -msgid "Creation of page %s, by %s" -msgstr "Stránka %s, vytvořena %s" +msgid "Project \"%s\" not found." +msgstr "Projekt \"%s\" nenalezen." -#: IDF/WikiPage.php:208 +#: 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 "%s: Documentation page %s added - %s" -msgstr "%s: Stránka dokumentace %s přidána - %s" +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:183 +#, php-format +msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." +msgstr "" + +#: IDF/Scm/Git.php:234 IDF/Scm/Mercurial.php:140 +#, php-format +msgid "Folder %1$s not found in commit %2$s." +msgstr "" + +#: IDF/Scm/Git.php:352 IDF/Scm/Mercurial.php:157 +#, 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:98 +#, 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" @@ -4340,17 +3645,9 @@ msgstr "lcname" msgid "Lower case version of the name for fast searching." msgstr "Jméno souboru s malými písmenky pro rychlé vyhledávání." -#: IDF/Key.php:49 -msgid "user" -msgstr "uživatel" - -#: IDF/Key.php:55 -msgid "public key" -msgstr "" - -#: IDF/Key.php:87 -msgid "Invalid or unknown key data detected." -msgstr "" +#: IDF/Template/Markdown.php:74 +msgid "Create this documentation page" +msgstr "Vytvořit tuto dokumentační stránku" #: IDF/Template/ShowUser.php:51 msgid "Anonymous" @@ -4360,9 +3657,735 @@ msgstr "Anonym" msgid "Me" msgstr "Já" -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" -msgstr "Vytvořit tuto dokumentační stránku" +#: IDF/Timeline/Paginator.php:49 +msgid "Today" +msgstr "" + +#: IDF/Upload.php:70 +msgid "file" +msgstr "soubor" + +#: IDF/Upload.php:71 +msgid "The path is relative to the upload path." +msgstr "Cesta je relativní k adresáři nahrávaných souborů." + +#: IDF/Upload.php:78 +msgid "file size in bytes" +msgstr "velikost souboru v bytech" + +#: IDF/Upload.php:100 +msgid "number of downloads" +msgstr "počet stažení" + +#: IDF/Upload.php:189 +#, php-format +msgid "Download %2$d, %3$s" +msgstr "Stáhnout %2$d, %3$s" + +#: IDF/Upload.php:192 +#, php-format +msgid "Addition of download %d, by %s" +msgstr "Soubor %d přidán, kým - %s" + +#: IDF/Upload.php:202 +#, php-format +msgid "%s: Download %d added - %s" +msgstr "%s: Soubor %d přidán - %s" + +#: IDF/Upload.php:244 +#, php-format +msgid "New download - %s (%s)" +msgstr "Nové stažení - %s (%s)" + +#: 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:312 +#, php-format +msgid "Update %s" +msgstr "" + +#: IDF/Views/Admin.php:101 IDF/Views/Project.php:256 +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 "Ano" + +#: 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:295 +msgid "Uploaded" +msgstr "" + +#: IDF/Views/Download.php:71 IDF/Views/Download.php:299 +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:223 +#, php-format +msgid "The file has been uploaded." +msgstr "" + +#: IDF/Views/Download.php:277 +#, php-format +msgid "%1$s Downloads with Label %2$s" +msgstr "%1$s soubory ke stažení s nálepkou %2$s" + +#: IDF/Views/Download.php:287 +#, php-format +msgid "This table shows the downloads with label %s." +msgstr "" +"Tato tabulka ukazuje soubory ke stažení s nálepkou problémy k řešení %s." + +#: IDF/Views/Issue.php:41 +#, php-format +msgid "%s Open Issues" +msgstr "%s otevřené problémy k řešení" + +#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:287 IDF/Views/User.php:75 +msgid "This table shows the open issues." +msgstr "" + +#: 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 +msgid "Id" +msgstr "" + +#: 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 +msgid "Last Updated" +msgstr "" + +#: 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 +msgid "No issues were found." +msgstr "Nebyly nalezeny žádné problémy k řešení." + +#: IDF/Views/Issue.php:112 +#, php-format +msgid "Watch List: Closed Issues for %s" +msgstr "" + +#: IDF/Views/Issue.php:113 +#, php-format +msgid "This table shows the closed issues in your watch list for %s project." +msgstr "" + +#: IDF/Views/Issue.php:118 +#, php-format +msgid "Watch List: Open Issues for %s" +msgstr "" + +#: IDF/Views/Issue.php:119 +#, php-format +msgid "This table shows the open issues in your watch list for %s project." +msgstr "" + +#: IDF/Views/Issue.php:195 +msgid "Watch List: Closed Issues" +msgstr "" + +#: IDF/Views/Issue.php:196 +msgid "This table shows the closed issues in your watch list." +msgstr "" + +#: IDF/Views/Issue.php:201 +msgid "Watch List: Open Issues" +msgstr "" + +#: IDF/Views/Issue.php:202 +msgid "This table shows the open issues in your watch list." +msgstr "" + +#: IDF/Views/Issue.php:221 IDF/Views/User.php:82 +msgid "Project" +msgstr "" + +#: IDF/Views/Issue.php:254 +#, php-format +msgid "My Submitted %s Issues" +msgstr "Mé odeslané %s problémy k řešení" + +#: IDF/Views/Issue.php:258 +#, php-format +msgid "My Closed Submitted %s Issues" +msgstr "Mé uzavřené odeslané %s problémy k řešení" + +#: IDF/Views/Issue.php:262 +#, php-format +msgid "My Closed Working %s Issues" +msgstr "Mé uzavřené %s problémy k řešení" + +#: IDF/Views/Issue.php:266 +#, php-format +msgid "My Working %s Issues" +msgstr "Mé pracovní %s problémy k řešení" + +#: IDF/Views/Issue.php:321 +msgid "Submit a new issue" +msgstr "Odeslat nový předmět k řešení." + +#: IDF/Views/Issue.php:337 +#, php-format +msgid "Issue %d has been created." +msgstr "Předmět k řešení č. %d byl vytvořen." + +#: IDF/Views/Issue.php:366 +#, php-format +msgid "Search Issues - %s" +msgstr "Prohledat předměty k řešení - %s" + +#: IDF/Views/Issue.php:378 +msgid "This table shows the found issues." +msgstr "Tato tabulka ukazuje nalezené předměty k řešení." + +#: IDF/Views/Issue.php:408 +#, php-format +msgid "Issue %d: %s" +msgstr "Předmět k řešení č. %d: %s" + +#: IDF/Views/Issue.php:432 +#, php-format +msgid "Issue %d has been updated." +msgstr "Předmět k řešení č. %d byl aktualizován." + +#: IDF/Views/Issue.php:521 +#, php-format +msgid "View %s" +msgstr "Zobrazit %s" + +#: IDF/Views/Issue.php:541 +#, php-format +msgid "%s Closed Issues" +msgstr "%s uzavřený předmět k řešení" + +#: IDF/Views/Issue.php:551 +msgid "This table shows the closed issues." +msgstr "Tato tabulka ukazuje uzavřené předměty k řešení." + +#: IDF/Views/Issue.php:594 +#, php-format +msgid "%1$s Issues with Label %2$s" +msgstr "%1$s předmět k řešení s nálepkou %2$s" + +#: IDF/Views/Issue.php:597 +#, php-format +msgid "%1$s Closed Issues with Label %2$s" +msgstr "%1$s uzavřený předmět k řešení s nálepkou %2$s" + +#: IDF/Views/Issue.php:610 +#, php-format +msgid "This table shows the issues with label %s." +msgstr "Tato tabulka ukazuje předměty k řešení s nálepkou %s." + +#: IDF/Views/Issue.php:660 +msgid "The issue has been removed from your watch list." +msgstr "Předmět řešení byl odebrán z vašeho seznamu ke sledování." + +#: IDF/Views/Issue.php:663 +msgid "The issue has been added to your watch list." +msgstr "Předměty k řešení byl přidán do vašeho seznamu ke sledování." + +#: IDF/Views/Issue.php:752 +msgid "On your watch list." +msgstr "Na vašem sledovacím seznamu." + +#: IDF/Views/Project.php:72 +msgid "All Updates" +msgstr "" + +#: IDF/Views/Project.php:74 +msgid "Issues and Comments" +msgstr "" + +#: IDF/Views/Project.php:76 +msgid "Documents" +msgstr "" + +#: IDF/Views/Project.php:77 +msgid "Reviews and Patches" +msgstr "" + +#: IDF/Views/Project.php:142 +msgid "This table shows the project updates." +msgstr "" + +#: IDF/Views/Project.php:153 +msgid "Change" +msgstr "" + +#: IDF/Views/Project.php:157 +msgid "No changes were found." +msgstr "" + +#: IDF/Views/Project.php:248 +#, php-format +msgid "%s Project Summary" +msgstr "" + +#: IDF/Views/Project.php:283 +#, php-format +msgid "%s Issue Tracking Configuration" +msgstr "" + +#: IDF/Views/Project.php:292 +msgid "The issue tracking configuration has been saved." +msgstr "" + +#: IDF/Views/Project.php:328 +#, php-format +msgid "%s Downloads Configuration" +msgstr "" + +#: IDF/Views/Project.php:337 +msgid "The downloads configuration has been saved." +msgstr "" + +#: IDF/Views/Project.php:371 +#, php-format +msgid "%s Documentation Configuration" +msgstr "" + +#: IDF/Views/Project.php:380 +msgid "The documentation configuration has been saved." +msgstr "" + +#: IDF/Views/Project.php:414 +#, php-format +msgid "%s Project Members" +msgstr "" + +#: IDF/Views/Project.php:423 +msgid "The project membership has been saved." +msgstr "" + +#: IDF/Views/Project.php:446 +#, php-format +msgid "%s Tabs Access Rights" +msgstr "" + +#: IDF/Views/Project.php:460 +msgid "The project tabs access rights have been saved." +msgstr "" + +#: IDF/Views/Project.php:506 +#, php-format +msgid "%s Source" +msgstr "" + +#: IDF/Views/Project.php:520 +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:81 +#, php-format +msgid "%s Ambiguous Revision" +msgstr "" + +#: IDF/Views/Source.php:106 +#, php-format +msgid "%1$s %2$s Change Log" +msgstr "" + +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#, php-format +msgid "%1$s %2$s Source Tree" +msgstr "" + +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" +msgstr "" + +#: IDF/Views/Source.php:304 +#, 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:132 +msgid "Your Account" +msgstr "" + +#: IDF/Views/User.php:155 +msgid "The public key has been deleted." +msgstr "" + +#: IDF/Views/User.php:178 +msgid "Confirm The Email Change" +msgstr "" + +#: IDF/Views/User.php:203 +#, 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:186 +#, php-format +msgid "The page %s has been created." +msgstr "" + +#: IDF/Views/Wiki.php:273 +msgid "The old revision has been deleted." +msgstr "" + +#: IDF/Views/Wiki.php:279 +#, php-format +msgid "Delete Old Revision of %s" +msgstr "" + +#: IDF/Views/Wiki.php:324 +#, php-format +msgid "The page %s has been updated." +msgstr "" + +#: IDF/Views/Wiki.php:362 +msgid "The documentation page has been deleted." +msgstr "" + +#: IDF/Views/Wiki.php:370 +#, php-format +msgid "Delete Page %s" +msgstr "" + +#: IDF/Views.php:124 IDF/Views.php:150 +msgid "Confirm Your Account Creation" +msgstr "Potvrďte vytvoření Vašeho účtu" + +#: IDF/Views.php:170 +msgid "Welcome! You can now participate in the life of your project of choice." +msgstr "Vítejte! Nyní se můžete účastnit života projektu dle vašeho výběru." + +#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 +msgid "Password Recovery" +msgstr "Obnova hesla" + +#: IDF/Views.php:240 +msgid "" +"Welcome back! Next time, you can use your broswer options to remember the " +"password." +msgstr "" +"Vítejte zpět! Příště můžete použít nastavení prohlížeče pro zapamatování " +"hesla." + +#: IDF/Views.php:282 +msgid "Here to Help You!" +msgstr "Zde k Vaší pomoci!" + +#: IDF/Views.php:298 +msgid "InDefero API (Application Programming Interface)" +msgstr "InDefero API (aplikační programátorský interface)" + +#: IDF/WikiPage.php:62 +msgid "title" +msgstr "nadpis" + +#: 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 "" +"Nadpis musí obsahovat pouze písmena, čísla nebo pomlčku. Např. Moje-nova-" +"WiKi-Stranka." + +#: IDF/WikiPage.php:71 +msgid "A one line description of the page content." +msgstr "Jednořádkový popis obsahu stránky." + +#: IDF/WikiPage.php:196 IDF/WikiRevision.php:167 +#, php-format +msgid "%2$s, %3$s" +msgstr "%2$s, %3$s" + +#: IDF/WikiPage.php:198 +#, php-format +msgid "Creation of page %s, by %s" +msgstr "Stránka %s, vytvořena %s" + +#: IDF/WikiPage.php:208 +#, php-format +msgid "%s: Documentation page %s added - %s" +msgstr "%s: Stránka dokumentace %s přidána - %s" + +#: IDF/WikiRevision.php:48 +msgid "page" +msgstr "stránka" + +#: IDF/WikiRevision.php:66 +msgid "A one line description of the changes." +msgstr "Jednořádkový popis změn." + +#: IDF/WikiRevision.php:72 +msgid "content" +msgstr "obsah" + +#: IDF/WikiRevision.php:189 +#, php-format +msgid "Change of %s, by %s" +msgstr "Změněno %s, kým %s" + +#: IDF/WikiRevision.php:208 +#, php-format +msgid "%s: Documentation page %s updated - %s" +msgstr "%s: Dokumentační stránka %s aktualizována - %s" + +#: IDF/WikiRevision.php:262 +#, php-format +msgid "New Documentation Page %s - %s (%s)" +msgstr "Nová dokumentační stránka %s - %s (%s)" + +#: IDF/WikiRevision.php:268 +#, php-format +msgid "Documentation Page Changed %s - %s (%s)" +msgstr "Dokumentační stránka změněna %s - %s (%s)" + +#, fuzzy +#~ msgid "here" +#~ msgstr "Ostatní" #~ msgid "Do you have a password?" #~ msgstr "Máte heslo?" diff --git a/src/IDF/locale/de/idf.po b/src/IDF/locale/de/idf.po index 018c5fc..7c05ad5 100644 --- a/src/IDF/locale/de/idf.po +++ b/src/IDF/locale/de/idf.po @@ -7,181 +7,44 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-23 16:05+0100\n" +"POT-Creation-Date: 2011-02-23 23:36+0100\n" "PO-Revision-Date: 2011-02-23 00:05+0000\n" "Last-Translator: Delkia \n" "Language-Team: German <>\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: IDF/IssueComment.php:51 -msgid "issue" -msgstr "Ticket" - -#: 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 "Kommentar" - -#: 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 "Absender" - -#: IDF/IssueComment.php:72 IDF/Upload.php:63 IDF/WikiRevision.php:85 -#: IDF/Review/Comment.php:75 -msgid "changes" -msgstr "Änderungen" - -#: IDF/IssueComment.php:73 -msgid "Serialized array of the changes in the issue." -msgstr "Serialisierte Liste von Änderungen im Ticket" - -#: IDF/IssueComment.php: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 "Erstellt am" - -#: IDF/IssueComment.php:143 IDF/Issue.php:194 -#, php-format -msgid "" -"Issue %3$d, %4$s" -msgstr "" -"Ticket %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 "Zusammenfassung:" - -#: 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 "Status:" - -#: 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 "Besitzer:" - -#: 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 "Labels:" - -#: IDF/IssueComment.php:171 -#, php-format -msgid "Comment on issue %d, by %s" -msgstr "Kommentar zum Ticket %d, von %s" - -#: IDF/IssueComment.php:182 -#, php-format -msgid "%s: Comment on issue %d - %s" -msgstr "%s: Kommentar zum Ticket %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 "Projekt" -#: 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/Review/Comment.php:69 IDF/Review.php:80 +#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79 +msgid "submitter" +msgstr "Absender" + +#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60 +#: IDF/Review.php:73 IDF/Upload.php:57 IDF/WikiPage.php:70 +#: IDF/WikiRevision.php:65 msgid "summary" msgstr "Zusammenfassung" -#: IDF/Upload.php:70 -msgid "file" -msgstr "Datei" - -#: IDF/Upload.php:71 -msgid "The path is relative to the upload path." -msgstr "Der Pfad ist relativ zum Upload-Pfad." - -#: IDF/Upload.php:78 -msgid "file size in bytes" -msgstr "Dateigröße in Bytes" - -#: IDF/Upload.php:93 IDF/Issue.php:92 IDF/Review.php:95 IDF/WikiPage.php:94 -msgid "labels" -msgstr "Labels" - -#: IDF/Upload.php:100 -msgid "number of downloads" -msgstr "Anzahl der Downloads" - -#: IDF/Upload.php:112 IDF/IssueFile.php:102 IDF/Issue.php:111 -#: IDF/Review.php:114 IDF/WikiPage.php:106 -msgid "modification date" -msgstr "Änderungsdatum" - -#: IDF/Upload.php:189 -#, php-format -msgid "Download %2$d, %3$s" -msgstr "Download %2$d, %3$s" - -#: IDF/Upload.php:192 -#, php-format -msgid "Addition of download %d, by %s" -msgstr "Hinzufügen von Download %d, von %s" - -#: IDF/Upload.php:202 -#, php-format -msgid "%s: Download %d added - %s" -msgstr "%s: Download %d hinzugefügt - %s" - -#: IDF/Upload.php:244 -#, php-format -msgid "New download - %s (%s)" -msgstr "Neuer Download - %s (%s)" - #: IDF/Commit.php:93 msgid "changelog" msgstr "Änderungen" +#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79 +#: IDF/IssueFile.php:96 IDF/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 +msgid "creation date" +msgstr "Erstellt am" + #: IDF/Commit.php:238 #, php-format msgid "Commit %s, by %s" @@ -192,6 +55,900 @@ msgstr "Revision %s, von %s" msgid "New Commit %s - %s (%s)" msgstr "Neue Revision %s - %s (%s)" +#: IDF/Conf.php:61 IDF/Gconf.php:73 +msgid "key" +msgstr "Schlüssel" + +#: IDF/Conf.php:67 IDF/Gconf.php:79 +msgid "value" +msgstr "Wert" + +#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:540 +msgid "git" +msgstr "git" + +#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:541 +msgid "Subversion" +msgstr "Subversion" + +#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:542 +msgid "mercurial" +msgstr "mercurial" + +#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:543 +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 +msgid "Name" +msgstr "Name" + +#: 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 +msgid "Private project" +msgstr "Privates Projekt" + +#: IDF/Form/Admin/ProjectCreate.php:62 +msgid "Shortname" +msgstr "Kurzname" + +#: IDF/Form/Admin/ProjectCreate.php:64 +msgid "" +"It must be unique for each project and composed only of letters, digits and " +"dash (-) like \"my-project\"." +msgstr "" +"Er muss das Projekt eindeutig identifizieren und darf nur aus Buchstaben " +"(ohne Umlaute), Ziffern und dem Bindestrich (-) bestehen, zum Beispiel " +"\"mein-projekt\"" + +#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 +msgid "Short description" +msgstr "Kurzbeschreibung" + +#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51 +#: IDF/Project.php:79 +msgid "A one line description of the project." +msgstr "Einzeilige Beschreibung des Projektes." + +#: IDF/Form/Admin/ProjectCreate.php:77 +msgid "Repository type" +msgstr "Depot-Typ" + +#: IDF/Form/Admin/ProjectCreate.php:85 +msgid "Remote Subversion repository" +msgstr "Entferntes Subversion-Depot" + +#: IDF/Form/Admin/ProjectCreate.php:92 IDF/Form/SourceConf.php:40 +msgid "Repository username" +msgstr "Depot-Nutzername" + +#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:47 +msgid "Repository password" +msgstr "Depot-Passwort" + +#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/Admin/ProjectUpdate.php:59 +msgid "Master branch" +msgstr "Hauptzweig" + +#: 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 "" +"Dies sollte ein weltweit eindeutiger Bezeichner für Dein Projekt sein. Eine " +"umgekehrte DNS-Notation wie \"com.my-domain.my-projekt\" ist eine gute Idee." + +#: IDF/Form/Admin/ProjectCreate.php:114 IDF/Form/Admin/ProjectUpdate.php:68 +#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53 +msgid "Project owners" +msgstr "Projekt-Eigentümer" + +#: 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 "Projekt-Mitglieder" + +#: IDF/Form/Admin/ProjectCreate.php:136 +msgid "Project template" +msgstr "Projekt-Vorlage" + +#: 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 "" +"Benutze das vorgegebene Projekt, um ein neues zu initialisieren. " +"Zugriffsrechte und allgemeine Konfiguration werden von der Projekt-Vorlage " +"übernommen." + +#: IDF/Form/Admin/ProjectCreate.php:185 +msgid "" +"Only a remote repository available throught http or https are allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" +"Nur ein entferntes Depot, welches durch http or https verfügbar ist, ist " +"erlaubt. Beispiel: \"http://somewhere.com/svn/trunk\"." + +#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashs and dots as separators." +msgstr "" +"Der Hauptzweig ist leer oder enthält ungültige Zeichen. Bitte verwende nur " +"Buchstaben, Ziffern, Bindestriche und Punkte als Trenner." + +#: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101 +msgid "This master branch is already used. Please select another one." +msgstr "Der Hauptzweig wird bereits verwendet. Bitte wähle einen anderen." + +#: IDF/Form/Admin/ProjectCreate.php:222 +msgid "" +"This shortname contains illegal characters, please use only letters, digits " +"and dash (-)." +msgstr "" +"Der Kurzname enthält ungültige Zeichen. Bitte verwende nur Buchstaben (ohne " +"Umlaute), Ziffern und den Bindestrich." + +#: IDF/Form/Admin/ProjectCreate.php:225 +msgid "The shortname cannot start with the dash (-) character." +msgstr "Der Kurzname darf nicht mit einem Bindestrich (-) beginnen." + +#: IDF/Form/Admin/ProjectCreate.php:228 +msgid "The shortname cannot end with the dash (-) character." +msgstr "Der Kurzname darf nicht mit einem Bindestrich (-) enden." + +#: IDF/Form/Admin/ProjectCreate.php:233 +msgid "This shortname is already used. Please select another one." +msgstr "" +"Der gewählte Kurzname wird bereits verwendet. Bitte wähle einen anderen." + +#: IDF/Form/Admin/ProjectCreate.php: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/Password.php:76 IDF/Form/Register.php:114 +#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:125 +#: IDF/Form/TabsConf.php:98 IDF/Form/UpdateUpload.php:126 +#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:180 +#: 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 "Kann kein Modell von einer ungültigen Maske speichern." + +#: IDF/Form/Admin/ProjectCreate.php:295 +msgid "" +"Click on the Project Management tab to set the description of your project." +msgstr "" +"Klicke auf den Projekt-Management-Reiter, um eine Beschreibung Deines " +"Projektes zu setzen." + +#: IDF/Form/Admin/ProjectCreate.php:362 +msgid "This project is not available." +msgstr "Das Projekt ist nicht verfügbar." + +#: IDF/Form/Admin/ProjectDelete.php:41 +msgid "Confirmation code" +msgstr "Bestätigungs-Code" + +#: IDF/Form/Admin/ProjectDelete.php:46 +msgid "I have made a backup of all the important data of this project." +msgstr "" +"Ich habe ein Backup aller wichtiger Informationen dieses Projektes gemacht." + +#: IDF/Form/Admin/ProjectDelete.php:55 +msgid "" +"The confirmation code does not match. Please provide a valid confirmation " +"code to delete the project." +msgstr "" +"Der Bestätigungscode stimmt nicht. Bitte gib einen gültigen Bestätigungscode " +"ein, um das Projekt zu löschen." + +#: IDF/Form/Admin/ProjectDelete.php:63 +msgid "Sorry, you really need to backup your data before deletion." +msgstr "" +"Entschuldigung, Du solltest wirklich Deine Daten vor dem Löschen sichern." + +#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 +#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40 +msgid "First name" +msgstr "Vorname" + +#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 +#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49 +msgid "Last name" +msgstr "Nachname" + +#: IDF/Form/Admin/UserCreate.php:56 +msgid "Login" +msgstr "Anmelde-Name" + +#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 +msgid "" +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." +msgstr "" +"Der Anmeldename muss zwischen 3 und 15 Zeichen lang sein und darf nur " +"Buchstaben und Zahlen beinhalten." + +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "E-Mail" + +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is directly sent to the user." +msgstr "" +"Überprüfe nochmals die E-Mail-Adresse, da das Passwort direkt an den " +"Benutzer gesendet wird." + +#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 +#: IDF/Form/UserAccount.php:66 +msgid "Language" +msgstr "Sprache" + +#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161 +msgid "Add a public key" +msgstr "Öffentlichen Schlüssel hinzufügen" + +#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:166 +msgid "" +"Paste a SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" +"Füge einen öffentlichen SSH- oder monotone-Schlüssel hier ein. Pass auf, " +"dass Du nicht versehentlich Deinen privaten Schlüssel hier hineinkopierst!" + +#: IDF/Form/Admin/UserCreate.php:157 +msgid "Your details to access your forge." +msgstr "Die Informationen, um auf Deine Forge zuzugreifen." + +#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:402 +#, php-format +msgid "The email \"%s\" is already used." +msgstr "Die E-Mail \"%s\" wird bereits genutzt." + +#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 +#, php-format +msgid "The login \"%s\" can only contain letters and digits." +msgstr "Der Anmeldename \"%s\" darf nur Buchstaben und Zahlen beinhalten." + +#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 +#, php-format +msgid "The login \"%s\" is already used, please find another one." +msgstr "" +"Der Anmeldename \"%s\" wird bereits benutzt, bitte finde einen anderen." + +#: IDF/Form/Admin/UserUpdate.php:78 +msgid "Password" +msgstr "Passwort" + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "Leave blank if you do not want to change the password." +msgstr "Lass das Feld leer, wenn Du das Passwort nicht ändern möchtest." + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "" +"The password must be hard for other people to find it, but easy for the user " +"to remember." +msgstr "" +"Das Passwort sollte für andere Leute schwer zu finden, aber für den Nutzer " +"einfach zu erinnern sein." + +#: IDF/Form/Admin/UserUpdate.php:89 +msgid "Confirm password" +msgstr "Passwort bestätigen" + +#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php: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 +msgid "Description" +msgstr "Beschreibung" + +#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110 +msgid "Twitter username" +msgstr "Twitter-Nutzername" + +#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120 +msgid "Public email address" +msgstr "Öffentlichen E-Mail-Adresse" + +#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130 +msgid "Website URL" +msgstr "Website-Adresse" + +#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140 +msgid "Upload custom avatar" +msgstr "Eigenes Benutzerbild hochladen" + +#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147 +msgid "" +"An image file with a width and height not larger than 60 pixels (bigger " +"images are scaled down)." +msgstr "" +"Eine Bilddatei mit einer Breit und einer Höhe von maximal 60 Pixeln (größere " +"Bilder werden kleiner skaliert)." + +#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152 +msgid "Remove custom avatar" +msgstr "Eigenes Benutzerbild entfernen" + +#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156 +msgid "Tick this to delete the custom avatar." +msgstr "Markieren, um das eigene Benutzerbild zu löschen." + +#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:211 +msgid "Staff" +msgstr "Stab" + +#: IDF/Form/Admin/UserUpdate.php:164 +msgid "If you give staff rights to a user, you really need to trust him." +msgstr "" +"Wenn Du diesen Nutzer zum Stab hinzufügst, solltest Du ihm wirklich trauen." + +#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:213 +msgid "Active" +msgstr "Aktiv" + +#: IDF/Form/Admin/UserUpdate.php:176 +msgid "" +"If the user is not getting the confirmation email or is abusing the system, " +"you can directly enable or disable his account here." +msgstr "" +"Wenn der Nutzer keine Bestätigungs-E-Mail erhält oder das System " +"missbraucht, kannst Du sein Konto hier direkt aktivieren oder deaktivieren." + +#: IDF/Form/Admin/UserUpdate.php:274 +msgid "--- is not a valid first name." +msgstr "--- ist kein gültiger Vorname" + +#: IDF/Form/Admin/UserUpdate.php:290 +msgid "" +"A user with this email already exists, please provide another email address." +msgstr "" +"Ein Nutzer mit dieser E-Mail-Adresse existiert bereits, bitte gib eine " +"andere E-Mail-Adresse an." + +#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/Upload.php:86 +#: IDF/Form/UserAccount.php:369 +msgid "For security reason, you cannot upload a file with this extension." +msgstr "" +"Aus Sicherheitsgründen kannst Du keine Dateien mit dieser Erweiterung " +"hochladen." + +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:425 +msgid "The passwords do not match. Please give them again." +msgstr "Die Passwörter stimmen nicht überein. Bitte gib sie erneut ein." + +#: IDF/Form/Field/EmailList.php:45 +msgid "Please enter one or more valid email addresses." +msgstr "Bitte gib eine oder mehrere gültige E-Mail-Adressen ein." + +#: IDF/Form/IssueCreate.php:53 IDF/Form/IssueUpdate.php:45 +#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:71 +#: 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 +msgid "Summary" +msgstr "Zusammenfassung" + +#: IDF/Form/IssueCreate.php:72 IDF/Form/IssueUpdate.php:65 +#: IDF/Form/ReviewCreate.php:83 +msgid "The \"upload_issue_path\" configuration variable was not set." +msgstr "Die Konfigurationsvariable \"upload_issue_path\" ist nicht gesetzt." + +#: IDF/Form/IssueCreate.php:82 IDF/Form/IssueUpdate.php:75 +msgid "Attach a file" +msgstr "Datei anhängen" + +#: IDF/Form/IssueCreate.php:95 IDF/Form/IssueUpdate.php:88 +#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:81 +#: 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 +msgid "Status" +msgstr "Status" + +#: IDF/Form/IssueCreate.php:104 IDF/Form/IssueUpdate.php:98 +msgid "Owner" +msgstr "Eigentümer" + +#: IDF/Form/IssueCreate.php:150 IDF/Form/IssueUpdate.php:117 +#: IDF/Form/UpdateUpload.php:71 IDF/Form/Upload.php:70 +#: IDF/Form/WikiCreate.php:93 IDF/Form/WikiUpdate.php:104 +msgid "Labels" +msgstr "Marken" + +#: IDF/Form/IssueCreate.php:192 +msgid "You cannot add a label with the \"Status\" prefix to an issue." +msgstr "" +"Du kannst keine Marke mit dem Präfix \"Status\" zu einem Ticket hinzufügen." + +#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 +#: 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 "Du hast eine ungültige Marke angegeben." + +#: IDF/Form/IssueCreate.php:199 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 "" +"Du kannst nicht mehr als eine Marke von der %s-Klasse zu einem Ticket " +"hinzufügen." + +#: IDF/Form/IssueCreate.php:210 IDF/Form/IssueUpdate.php:147 +msgid "You need to provide a description of the issue." +msgstr "Bitte füge eine Beschreibung des Problems an." + +#: IDF/Form/IssueCreate.php:233 IDF/Form/ReviewCreate.php:159 +msgid "You provided an invalid status." +msgstr "Du hast einen ungültigen Status angegeben." + +#: IDF/Form/IssueTrackingConf.php:80 +msgid "" +"Define an issue template to hint the reporter to provide certain information" +msgstr "" +"Definiere eine Ticket-Vorlage, um dem Ersteller Hinweise auf benötigte " +"Informationen zu geben" + +#: IDF/Form/IssueTrackingConf.php:89 +msgid "Open issue status values" +msgstr "Statuswerte für offene Tickets" + +#: IDF/Form/IssueTrackingConf.php:97 +msgid "Closed issue status values" +msgstr "Statuswerte für geschlossene Tickets" + +#: IDF/Form/IssueTrackingConf.php:106 +msgid "Predefined issue labels" +msgstr "Vordefinierte Ticket-Marken" + +#: IDF/Form/IssueTrackingConf.php:108 +msgid "" +"The first \"Type:\" and \"Priority:\" entries found in this list are " +"automatically chosen as defaults for new issues." +msgstr "" +"Die ersten \"Type:\"- und \"Priority:\"-Einträge, die in dieser Liste " +"gefunden werden, werden automatisch als Standardwerte für neue Tickets " +"übernommen." + +#: IDF/Form/IssueTrackingConf.php:116 +msgid "Each issue may have at most one label with each of these classes" +msgstr "Jedes Ticket darf maximal eine Marke von jeder dieser Klassen haben" + +#: IDF/Form/IssueUpdate.php:55 IDF/Form/ReviewFileComment.php:45 +#: IDF/Form/WikiUpdate.php:82 +msgid "Comment" +msgstr "Kommentar" + +#: IDF/Form/IssueUpdate.php:219 +msgid "No changes were entered." +msgstr "Keine Änderung festgestellt." + +#: IDF/Form/MembersConf.php:104 +#, php-format +msgid "The following login is invalid: %s." +msgid_plural "The following logins are invalid: %s." +msgstr[0] "Der folgende Anmeldename ist ungültig: %s." +msgstr[1] "Die folgenden Anmeldenamen sind ungültig: %s." + +#: IDF/Form/Password.php:34 +msgid "Your login or email" +msgstr "Dein Anmeldename oder E-Mail" + +#: IDF/Form/Password.php:35 +msgid "Provide either your login or your email to recover your password." +msgstr "" +"Gib bitte entweder Deinen Anmeldenamen oder Deine E-Mail an, um Dein " +"Passwort wiederherzustellen." + +#: IDF/Form/Password.php:49 IDF/Form/Password.php:64 +msgid "" +"Sorry, we cannot find a user with this email address or login. Feel free to " +"try again." +msgstr "" +"Entschuldigung, aber wir können keinen Benutzer mit dieser E-Mail-Adresse " +"oder diesen Anmeldenamen finden. Probier es ruhig noch einmal." + +#: IDF/Form/Password.php:100 +msgid "Password Recovery - InDefero" +msgstr "Passwortwiederherstellung - InDefero" + +#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39 +#: IDF/Form/UserChangeEmail.php:36 +msgid "Your verification key" +msgstr "Dein Validierungsschlüssel" + +#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89 +msgid "" +"We are sorry but this validation key is not valid. Maybe you should directly " +"copy/paste it from your validation email." +msgstr "" +"Dieser Validierungsschlüssel ist leider nicht gültig. Du kannst versuchen, " +"ihn aus der E-Mail zu kopieren." + +#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100 +msgid "" +"Sorry, but this verification key has expired, please restart the password " +"recovery sequence. For security reasons, the verification key is only valid " +"24h." +msgstr "" +"Dieser Validierungsschlüssel ist nicht mehr gültig, bitte fordere erneut ein " +"neues Kennwort an. Aus Sicherheitsgründen gilt ein Validierungsschlüssel nur " +"für 24 Stunden." + +#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108 +#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72 +msgid "Cannot save an invalid form." +msgstr "Kann keine ungültige Maske speichern." + +#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69 +#: IDF/Form/UserAccount.php:77 +msgid "Your password" +msgstr "Dein Passwort" + +#: IDF/Form/PasswordReset.php:48 IDF/Form/RegisterConfirmation.php:72 +#: IDF/Form/UserAccount.php:80 +msgid "" +"Your password must be hard for other people to find it, but easy for you to " +"remember." +msgstr "" +"Dein Passwort muss für andere Leute schwer zu erraten, aber für Dich leicht " +"zu merken sein." + +#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80 +#: IDF/Form/UserAccount.php:89 +msgid "Confirm your password" +msgstr "Bestätige Dein Passwort" + +#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122 +msgid "The two passwords must be the same." +msgstr "Beide Passwortangaben müssen identisch sein." + +#: IDF/Form/PasswordReset.php:77 +msgid "" +"This account is not active. Please contact the forge administrator to " +"activate it." +msgstr "" +"Das Benutzerkonto ist nicht aktiv. Bitte kontaktiere den Administrator für " +"die Freischaltung." + +#: IDF/Form/Register.php:41 +msgid "Your login" +msgstr "Dein Anmeldename" + +#: IDF/Form/Register.php:53 +msgid "Your email" +msgstr "Deine E-Mail-Adresse" + +#: IDF/Form/Register.php:55 +msgid "We will never send you any unsolicited emails. We hate spams too!" +msgstr "" +"Wir werden Ihnen nie unangeforderte E-Mails zusenden. Wir hassen Spam " +"ebenfalls." + +#: IDF/Form/Register.php:60 +msgid "I agree to the terms and conditions." +msgstr "Ich stimme den Nutzungbedingungen zu." + +#: IDF/Form/Register.php:88 +msgid "" +"We know, this is boring, but you need to agree with the terms and conditions." +msgstr "Ja, es ist nervig, aber Du musst den Nutzungsbedingungen zustimmen." + +#: IDF/Form/Register.php:99 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need, click on the help link to " +"recover your password." +msgstr "" +"Die E-Mailadresse \"%s\" ist bereits registriert. Die Hilfefunktion " +"ermöglicht, das Passwort zurückzusetzen." + +#: IDF/Form/Register.php:150 +msgid "Confirm the creation of your account." +msgstr "Bestätige die Erstellung deines Accounts." + +#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36 +msgid "Your confirmation key" +msgstr "Dein Bestätigungs-Schlüssel" + +#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50 +msgid "" +"We are sorry but this confirmation key is not valid. Maybe you should " +"directly copy/paste it from your confirmation email." +msgstr "" +"Dieser Validierungsschlüssel ist leider nicht gültig. Du kannst versuchen, " +"ihn aus der E-Mail zu kopieren." + +#: IDF/Form/RegisterConfirmation.php:110 +msgid "" +"This account has already been confirmed. Maybe should you try to recover " +"your password using the help link." +msgstr "" +"Dieses Konto wurde bereits bestätigt. Vielleicht möchtest Du versuchen, Dein " +"Passwort über den Hilfe-Link wiederherzustellen?" + +#: IDF/Form/ReviewCreate.php:74 +#: IDF/gettexttemplates/idf/source/base.html.php:5 +#: IDF/gettexttemplates/idf/source/changelog.html.php:7 +msgid "Commit" +msgstr "Revision" + +#: IDF/Form/ReviewCreate.php:92 +msgid "Patch" +msgstr "Patch" + +#: IDF/Form/ReviewCreate.php:119 +msgid "We were not able to parse your patch. Please provide a valid patch." +msgstr "" +"Dein Patch konnte nicht analysiert werden. Bitte gib ein gültiges Patch an." + +#: IDF/Form/ReviewCreate.php:128 +msgid "You provided an invalid commit." +msgstr "Du hast eine ungültige Revision angegeben." + +#: IDF/Form/ReviewCreate.php:202 +msgid "Initial patch to be reviewed." +msgstr "Initiales, zu begutachtendes Patch." + +#: IDF/Form/ReviewFileComment.php:56 +msgid "General comment" +msgstr "Allgemeiner Kommentar" + +#: IDF/Form/ReviewFileComment.php:102 +msgid "You need to provide comments on at least one file." +msgstr "Du musst Kommentare zu mindestens einer Datei angeben." + +#: IDF/Form/ReviewFileComment.php:109 +msgid "You need to provide your general comment about the proposal." +msgstr "Du musst einen allgemeinen Kommentar zu Deinem Vorschlag angeben." + +#: IDF/Form/SourceConf.php:56 +msgid "Webhook URL" +msgstr "Web-Hook-URL" + +#: IDF/Form/SourceConf.php:58 +#, php-format +msgid "Learn more about the post-commit web hooks." +msgstr "Erfahre mehr über die post-commit Web-Hooks." + +#: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:5 +#: IDF/gettexttemplates/idf/base-full.html.php:5 +#: IDF/gettexttemplates/idf/base.html.orig.php:5 +#: IDF/gettexttemplates/idf/base.html.php:5 +#: IDF/gettexttemplates/idf/downloads/base.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14 +#: IDF/Views/Project.php:75 +msgid "Downloads" +msgstr "Downloads" + +#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.orig.php:9 +#: IDF/gettexttemplates/idf/base-full.html.php:9 +#: IDF/gettexttemplates/idf/base.html.orig.php:9 +#: IDF/gettexttemplates/idf/base.html.php:9 +msgid "Code Review" +msgstr "Code-Besprechung" + +#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:6 +#: IDF/gettexttemplates/idf/base-full.html.php:6 +#: IDF/gettexttemplates/idf/base.html.orig.php:6 +#: IDF/gettexttemplates/idf/base.html.php:6 +msgid "Documentation" +msgstr "Dokumentation" + +#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:8 +#: IDF/gettexttemplates/idf/base-full.html.php:8 +#: IDF/gettexttemplates/idf/base.html.orig.php:8 +#: IDF/gettexttemplates/idf/base.html.php:8 +msgid "Source" +msgstr "Quellcode" + +#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.orig.php:7 +#: IDF/gettexttemplates/idf/base-full.html.php:7 +#: IDF/gettexttemplates/idf/base.html.orig.php:7 +#: IDF/gettexttemplates/idf/base.html.php:7 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17 +msgid "Issues" +msgstr "Tickets" + +#: IDF/Form/TabsConf.php:50 +msgid "Open to all" +msgstr "Für alle offen" + +#: IDF/Form/TabsConf.php:51 +msgid "Signed in users" +msgstr "Angemeldete Benutzer" + +#: IDF/Form/TabsConf.php:54 +msgid "Closed" +msgstr "Geschlossen" + +#: IDF/Form/TabsConf.php:83 +msgid "Extra authorized users" +msgstr "Weitere autorisierte Benutzer" + +#: 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 +msgid "File" +msgstr "Datei" + +#: IDF/Form/UploadConf.php:53 +msgid "Predefined download labels" +msgstr "Vordefinierte Marken für Downloads" + +#: IDF/Form/UploadConf.php:62 +msgid "Each download may have at most one label with each of these classes" +msgstr "Jeder Download darf maximal eine Marke von jeder dieser Klassen haben" + +#: IDF/Form/UserAccount.php:59 +msgid "Your mail" +msgstr "Deine E-Mail-Adresse" + +#: IDF/Form/UserAccount.php:61 +msgid "" +"If you change your email address, an email will be sent to the new address " +"to confirm it." +msgstr "" +"Falls Du Deine E-Mail-Adresse änderst, wird eine E-Mail zur Bestätigung an " +"die neue Adresse versandt." + +#: IDF/Form/UserAccount.php:80 +msgid "Leave blank if you do not want to change your password." +msgstr "Leer lassen, falls Du Dein Passwort nicht ändern willst." + +#: IDF/Form/UserAccount.php:209 +msgid "Confirm your new email address." +msgstr "Bestätigung der neuen E-Mail-Adresse" + +#: IDF/Form/UserAccount.php:212 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" +"Eine Validierungs-E-Mail wurde an \"%s\" versandt, um die Adressänderung zu " +"überprüfen." + +#: IDF/Form/UserAccount.php:314 +msgid "" +"Please check the key as it does not appear to be a valid SSH public key." +msgstr "" +"Bitte überprüfe den Schlüssel, er scheint kein gültiger öffentlicher SSH-" +"Schlüssel zu sein." + +#: IDF/Form/UserAccount.php:334 +msgid "" +"Please check the key as it does not appear to be a valid monotone public key." +msgstr "" +"Bitte überprüfe den Schlüssel, er scheint kein gültiger öffentlicher " +"monotone-Schlüssel zu sein." + +#: IDF/Form/UserAccount.php:342 +msgid "Public key looks neither like a SSH nor monotone public key." +msgstr "" +"Der öffentliche Schlüssel sieht weder wie ein öffentlicher SSH- noch ein " +"öffentlichen monotone-Schlüssel aus." + +#: IDF/Form/UserAccount.php:354 +msgid "You already have uploaded this key." +msgstr "Du hast diesen Schlüssel bereits hochgeladen." + +#: IDF/Form/UserChangeEmail.php:63 +msgid "" +"The validation key is not valid. Please copy/paste it from your confirmation " +"email." +msgstr "" +"Der Validierungsschlüssel ist ungültig. Bitte kopiere ihn von Deiner " +"Bestätigungs-E-Mail hier hinein." + +#: IDF/Form/WikiConf.php:49 +msgid "Predefined documentation page labels" +msgstr "Vordefinierte Marken für Dokumentations-Seiten" + +#: IDF/Form/WikiConf.php:58 +msgid "" +"Each documentation page may have at most one label with each of these classes" +msgstr "" +"Jede Dokumentations-Seite darf maximal eine Marke von jeder dieser Klassen " +"haben" + +#: IDF/Form/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 "" +"# Einführung\n" +"\n" +"Füge Deinen Inhalt hier ein.\n" +"\n" +"\n" +"# Details\n" +"\n" +"Füge Deinen Inhalt hier ein. Formatiere Deinen Inhalt mit:\n" +"\n" +"* Text in **Fettschrift** oder *kursiv*.\n" +"* Überschriften, Absätzen und Listen.\n" +"* Links auf andere [[WikiSeiten]].\n" + +#: IDF/Form/WikiCreate.php:57 +msgid "PageName" +msgstr "Seitenname" + +#: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50 +msgid "Page title" +msgstr "Seitentitel" + +#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56 +msgid "" +"The page name must contains only letters, digits and the dash (-) character." +msgstr "" +"Der Seitenname darf nur aus Buchstaben, Ziffern und dem Bindestrich bestehen." + +#: IDF/Form/WikiCreate.php:71 IDF/Form/WikiUpdate.php:61 +msgid "This one line description is displayed in the list of pages." +msgstr "Diese einzeilige Beschreibung wird in der Seitenübersicht angezeigt." + +#: IDF/Form/WikiCreate.php:80 IDF/Form/WikiUpdate.php:72 +msgid "Content" +msgstr "Inhalt" + +#: IDF/Form/WikiCreate.php:108 IDF/Form/WikiUpdate.php:119 +msgid "The title contains invalid characters." +msgstr "Der Titel beinhaltet ungültige Zeichen." + +#: IDF/Form/WikiCreate.php:114 IDF/Form/WikiUpdate.php:125 +msgid "A page with this title already exists." +msgstr "Eine Seite mit diesem Titel existiert bereits." + +#: 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 "" +"Du darfst nicht mehr als eine Marke von der %s-Klasse zu einer Seite " +"hinzufügen." + +#: IDF/Form/WikiCreate.php:200 +msgid "Initial page creation" +msgstr "Initiale Seiten-Erzeugung" + +#: IDF/Form/WikiDelete.php:39 +msgid "Yes, I understand that the page and all its revisions will be deleted." +msgstr "" +"Ja, ich habe verstanden, dass die Seite und all ihre Versionen gelöscht " +"werden." + +#: IDF/Form/WikiDelete.php:50 +msgid "You need to confirm the deletion." +msgstr "Du musst die Löschung bestätigen." + +#: IDF/Form/WikiUpdate.php:83 +msgid "One line to describe the changes you made." +msgstr "Einzeilige Beschreibung der durchgeführten Änderungen." + #: IDF/Gconf.php:60 IDF/Search/Occ.php:56 msgid "model class" msgstr "Modell-Klasse" @@ -200,85 +957,551 @@ msgstr "Modell-Klasse" msgid "model id" msgstr "Modell-ID" -#: IDF/Gconf.php:73 IDF/Conf.php:61 -msgid "key" -msgstr "Schlüssel" +#: IDF/gettexttemplates/idf/admin/base.html.php:3 +msgid "Project Summary" +msgstr "Projekt-Zusammenfassung" -#: IDF/Gconf.php:79 IDF/Conf.php:67 -msgid "value" -msgstr "Wert" +#: IDF/gettexttemplates/idf/admin/base.html.php:6 +msgid "Issue Tracking" +msgstr "Ticketverfolgung" + +#: IDF/gettexttemplates/idf/admin/base.html.php:8 +msgid "Project Members" +msgstr "Projektmitglieder" + +#: IDF/gettexttemplates/idf/admin/base.html.php:9 +msgid "Tabs Access and Notifications" +msgstr "Zugriffsrechte und Benachrichtigungen" + +#: IDF/gettexttemplates/idf/admin/downloads.html.php:3 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:3 +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" +"

    Anletung:

    \n" +"

    Füge einen Statuswert pro Zeile in der gewünschten Reihenfolge hinzu.\n" +"

    Füge optional nach einem Istgleich-Zeichen (=) eine kurze Beschreibung " +"ein, um die Bedeutung des Statuswerts zu beschreiben.

    \n" + +#: IDF/gettexttemplates/idf/admin/downloads.html.php:8 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8 +#: IDF/gettexttemplates/idf/admin/members.html.php:13 +#: IDF/gettexttemplates/idf/admin/source.html.php:31 +#: IDF/gettexttemplates/idf/admin/summary.html.php:8 +#: IDF/gettexttemplates/idf/admin/tabs.html.php:15 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:8 +msgid "Save Changes" +msgstr "Änderungen speichern" + +#: IDF/gettexttemplates/idf/admin/members.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/update.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" +"

    Anleitung:

    \n" +"

    Gib jede Person mit ihrem Anmeldenamen ein. Jede Person muss sich bereits " +"mit dem angegebenen Namen registriert haben.

    \n" +"

    Trenne die Anmeldenamen durch Kommas und / oder neue Zeilen.

    \n" + +#: IDF/gettexttemplates/idf/admin/members.html.php:8 +#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 +msgid "" +"\n" +"

    Notes:

    \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" +"

    Hinweise:

    \n" +"

    Ein Projekteigentümer kann jedwede Änderung an diesem Projekt vornehmen, " +"inklusive dem Enfernen von anderen Projekteigentümern. Deshalb solltest Du " +"mit der Vergabe von Eigentumsrechten vorsichtig sein.

    \n" +"

    Ein Projektmitglied hat keinen Zugriff auf die Administrationsebene, aber " +"hat bei der Benutzung des Projektes mehr verfügbare Optionen.

    \n" + +#: IDF/gettexttemplates/idf/admin/source.html.php:3 +msgid "You can find here the current repository configuration of your project." +msgstr "Hier findest Du die derzeitige Depot-Konfiguration Deines Projektes." + +#: IDF/gettexttemplates/idf/admin/source.html.php:4 +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 "" +"

    Die Web-Hook-Adresse gibt eine URL an, zu welcher eine HTTP POST-\n" +"Anfrage nach jeder neuen Revision eines Depot ausgelöst wird.\n" +"Wenn dieses Feld leer ist, sind diese Art von Benachrichtigungen\n" +"deaktiviert.

    \n" +"\n" +"

    Nur korrekt maskierte HTTP-URLs werden unterstützt, zum " +"Beispiel:

    \n" +"\n" +"
      \n" +"
    • http://domain.com/commit
    • \n" +"
    • http://domain.com/commit?my%20param
    • \n" +"
    \n" +"\n" +"

    Zusätzlich darf die URL die folgenden Platzhalter beinhalten, welche\n" +"für jede Revision mit den spezifischen Projektwerten ersetzt werden:

    \n" +"\n" +"
      \n" +"
    • %p - Projektname
    • \n" +"
    • %r - Revisionsnummer
    • \n" +"
    \n" +"\n" +"

    Beispiel: Wenn die Revision 123 für das Projekt 'mein-projekt' zum Depot\n" +"gesandt wird und als post-commit-URL http://meine-domain.com/%p/%r " +"eingestellt\n" +"ist, würde eine Anfrage an http://meine-domain.com/mein-projekt/123 gesendet." +"

    " + +#: IDF/gettexttemplates/idf/admin/source.html.php:26 +msgid "" +"The form contains some errors. Please correct them to update the source " +"configuration." +msgstr "" +"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die " +"Quellcode-Konfiguration zu aktualisieren." + +#: IDF/gettexttemplates/idf/admin/source.html.php:27 +msgid "Repository type:" +msgstr "Depot-Typ:" + +#: IDF/gettexttemplates/idf/admin/source.html.php:28 +msgid "Repository access:" +msgstr "Depot-Zugriff:" + +#: IDF/gettexttemplates/idf/admin/source.html.php:29 +msgid "Repository size:" +msgstr "Depot-Größe:" + +#: IDF/gettexttemplates/idf/admin/source.html.php:30 +msgid "Post-commit authentication key:" +msgstr "Post-commit Authentifizierungs-Schlüssel:" + +#: IDF/gettexttemplates/idf/admin/summary.html.php:3 +#, php-format +msgid "" +"\n" +"

    Instructions:

    \n" +"

    The description of the project can be improved using the Markdown syntax.

    \n" +msgstr "" +"\n" +"

    Anleitung:

    \n" +"

    Die Beschreibung des Projektes kann durch die Benutzung der Markdown-Syntax vereinfacht werden.

    \n" + +#: IDF/gettexttemplates/idf/admin/summary.html.php:7 +msgid "" +"The form contains some errors. Please correct them to update the summary." +msgstr "" +"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die " +"Projektzusammenfassung zu aktualisieren." + +#: IDF/gettexttemplates/idf/admin/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" +"Nur Projektmitglieder und Administratoren haben Schreibzugriff auf den " +"Quellcode.
    \n" +"Wenn Du den Zugriff auf den Quellcode beschränkst, wird kein anonymer " +"Zugriff
    \n" +"angeboten und die Nutzer müssen sich mit ihrem Passwort oder " +"öffentlichen
    \n" +"Schlüssel authentifizieren." + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:8 +msgid "" +"You can configure here the project tabs access rights and notification " +"emails." +msgstr "" +"Hier kannst Du den Zugriff auf die Projektfunktionen und die Benachrichtungs-" +"E-Mails konfigurieren." + +#: 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 "" +"Benachrichtungs-E-Mails werden mit der Absenderadresse %%from_email" +"%% versandt. Wenn Du die E-Mail zu einer Mailingliste senden " +"möchtest, musst Du eventuell diese E-Mail-Adresse dort registrieren. Mehrere " +"E-Mail-Adressen müssen durch Kommas (',') voneinander getrennt werden. Wenn " +"Du keine E-Mails für einen bestimmten Änderungstyp versenden möchtest, lasse " +"das entsprechende Feld einfach leer." + +#: 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 "" +"Wenn Du ein Projekt als privat markierst, haben nur Projektmitglieder und " +"Administratoren zusammen mit den von Dir extra authorisierten Nutzern " +"Zugriff darauf. Du kannst weiterhin zusätzliche Zugriffsrechte für bestimmte " +"Projektfunktionen vergeben, aber die Einstellungen \"Für alle offen\" und " +"\"Angemeldete Benutzer\" werden standardmäßig nur authorisierte Benutzer " +"berücksichtigen." + +#: IDF/gettexttemplates/idf/admin/tabs.html.php: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 "" +"Gib für jede Person ihren Anmeldenamen ein. Jede Person muss sich bereits " +"mit diesem Namen angemeldet haben. Trenne die Anmeldenamen durch Kommas " +"und / oder neue Zeilen." + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:12 +msgid "" +"The form contains some errors. Please correct them to update the access " +"rights." +msgstr "" +"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die " +"Zugriffsberechtigungen zu aktualisieren." + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:13 +msgid "Access Rights" +msgstr "Zugriffsberechtigungen" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:14 +msgid "Notification Email" +msgstr "Benachrichtigungs-E-Mail" + +#: 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 "Anweisungen:" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:3 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.orig.php:3 +#: IDF/gettexttemplates/idf/base.html.php:3 +#, php-format +msgid "" +"Sign in or create your account to create issues or " +"add comments" +msgstr "" +"Melde Dich an oder lege ein Konto an, um Tickets " +"oder Kommentare hinzuzufügen" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:4 +#: IDF/gettexttemplates/idf/base-full.html.php:4 +#: IDF/gettexttemplates/idf/base.html.orig.php:4 +#: IDF/gettexttemplates/idf/base.html.php:4 +msgid "Project Home" +msgstr "Projekt-Startseite" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:10 +#: IDF/gettexttemplates/idf/base-full.html.php:10 +#: IDF/gettexttemplates/idf/base.html.orig.php:10 +#: IDF/gettexttemplates/idf/base.html.php:10 +msgid "Project Management" +msgstr "Projekt-Management" + +#: IDF/gettexttemplates/idf/downloads/base.html.php:4 +#: IDF/gettexttemplates/idf/downloads/index.html.php:4 +#: IDF/Views/Download.php:214 +msgid "New Download" +msgstr "Neuer Download" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:3 +msgid "" +"Attention! If you want to delete a specific version of your " +"software, maybe, someone is depending on this specific version to run his " +"systems. Are you sure, you will not affect anybody when removing this file?" +msgstr "" +"Achtung! Möglicherweise benötigt noch jemand diese Version " +"und kann nicht mehr darauf zugreifen, wenn sie gelöscht wird. Bist Du " +"sicher, dass niemand durch die Löschung beeinträchtigt wird?" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 +#, php-format +msgid "" +"Instead of deleting the file, you could mark it as " +"deprecated." +msgstr "" +"Statt die Datei zu löschen, könntest Du sie als veraltet " +"markieren." + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:5 +#: IDF/gettexttemplates/idf/downloads/view.html.php:4 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:4 +#: IDF/gettexttemplates/idf/issues/view.html.php:7 +#: IDF/gettexttemplates/idf/wiki/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 "von %%submitter%%" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:6 +msgid "Delete File" +msgstr "Lösche Datei" + +#: 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/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:25 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: 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/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +#: 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 "Abbrechen" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:8 +#: IDF/gettexttemplates/idf/downloads/view.html.php:13 +msgid "Uploaded:" +msgstr "Hochgeladen:" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:27 +#: IDF/gettexttemplates/idf/review/view.html.php:26 +#: 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 "Aktualisiert:" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:10 +#: IDF/gettexttemplates/idf/downloads/view.html.php:15 +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:12 +msgid "Downloads:" +msgstr "Downloads:" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:11 +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/downloads/view.html.php:16 +#: 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:20 +#: IDF/gettexttemplates/idf/issues/view.html.php:31 +#: 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 "Labels:" + +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3 +msgid "A new file is available for download:" +msgstr "Eine neue Datei ist bereit zum Herunterladen:" + +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4 +#: IDF/gettexttemplates/idf/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 "Hallo," + +#: 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 "Eingesandt von:" + +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8 +msgid "Download:" +msgstr "Download:" + +#: 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/user/public.html.php:4 +msgid "Description:" +msgstr "Beschreibung:" + +#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3 +msgid "Details" +msgstr "Details" + +#: IDF/gettexttemplates/idf/downloads/index.html.php:3 +#, php-format +msgid "See the deprecated files." +msgstr "Zeige die veralteten Dateien." + +#: IDF/gettexttemplates/idf/downloads/index.html.php:5 +msgid "Number of files:" +msgstr "Anzahl der Dateien:" + +#: IDF/gettexttemplates/idf/downloads/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 "" +"Jede Datei muss einen unterscheidbaren Namen haben und Dateiinhalte\n" +"können nicht geändert werden, also stelle sicher, dass Du Versionsnummern\n" +"in jedem Dateinamen verwendest." + +#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 +#, php-format +msgid "" +"You can use the Markdown syntax for the description." +msgstr "" +"Du kannst die Markdown-Syntax für die Beschreibung " +"nutzen." + +#: IDF/gettexttemplates/idf/downloads/submit.html.php:7 +msgid "The form contains some errors. Please correct them to submit the file." +msgstr "" +"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Datei " +"einzusenden." + +#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 +msgid "Submit File" +msgstr "Datei einsenden" + +#: 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 "Anleitung" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:3 +msgid "" +"Attention! This file is marked as deprecated, download it " +"only if you are sure you need this specific version." +msgstr "" +"Achtung! Diese Datei ist als veraltet markiert. Lade sie " +"nur herunter, falls Du genau diese Version benötigst." + +#: IDF/gettexttemplates/idf/downloads/view.html.php:5 +msgid "Changes" +msgstr "Änderungen" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:6 +msgid "The form contains some errors. Please correct them to update the file." +msgstr "" +"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Datei " +"zu aktualisieren." + +#: IDF/gettexttemplates/idf/downloads/view.html.php:7 +msgid "Update File" +msgstr "Datei aktualisieren" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:11 +msgid "Remove this file" +msgstr "Entferne diese Datei" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:10 +#: 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 "Mülleimer" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:12 +msgid "Delete this file" +msgstr "Lösche diese Datei" + +#: IDF/gettexttemplates/idf/faq-api.html.php:3 +#: IDF/gettexttemplates/idf/faq.html.php:34 +msgid "Here we are, just to help you." +msgstr "Wir sind hier, um Dir zu helfen." -#: IDF/Views.php:45 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:45 msgid "Projects" msgstr "Projekte" -#: IDF/Views.php:88 IDF/gettexttemplates/idf/register/index.html.php:6 -msgid "Create Your Account" -msgstr "Erstelle Deinen Account" - -#: IDF/Views.php:124 IDF/Views.php:150 -msgid "Confirm Your Account Creation" -msgstr "Bestätige die Erstellung Deines Accounts" - -#: IDF/Views.php:170 -msgid "Welcome! You can now participate in the life of your project of choice." -msgstr "" -"Willkommen! Du kannst nun am Leben eines Projektes Deiner Wahl teilhaben." - -#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 -msgid "Password Recovery" -msgstr "Passwort-Wiederherstellung" - -#: IDF/Views.php:240 -msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." -msgstr "" -"Willkommen zurück! Beim nächsten Mal kannst Du Deine Browsereinstellungen " -"nutzen, um Dich automatisch einzuloggen." - -#: IDF/Views.php:282 -msgid "Here to Help You!" -msgstr "Hier, um dir zu helfen!" - -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" -msgstr "InDefero API (Application Programming Interface)" - -#: IDF/Scm/Mercurial.php:140 IDF/Scm/Git.php:234 -#, php-format -msgid "Folder %1$s not found in commit %2$s." -msgstr "Verzeichnis %1$s in Revision %2$s nicht gefunden." - -#: IDF/Scm/Mercurial.php:157 IDF/Scm/Git.php:352 -#, php-format -msgid "Not a valid tree: %s." -msgstr "Kein gültiger Quellcode-Baum: %s." - -#: IDF/Scm/Monotone/Stdio.php:79 -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:87 IDF/Plugin/SyncMonotone.php:187 -#, 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:98 -#, php-format -msgid "Could not write client key \"%s\"" -msgstr "Konnte Client-Schlüssel \"%s\" nicht schreiben." - -#: IDF/Scm/Git.php:183 -#, php-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." - #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

    This is simple:

    \n" @@ -398,202 +1621,38 @@ msgstr "Alt+2: Die Menüs übergehen." msgid "Alt+4: Search (when available)." msgstr "Alt+4: Suche (wenn verfügbar)." -#: IDF/gettexttemplates/idf/faq.html.php:34 -#: IDF/gettexttemplates/idf/faq-api.html.php:3 -msgid "Here we are, just to help you." -msgstr "Wir sind hier, um Dir zu helfen." +#: IDF/gettexttemplates/idf/gadmin/base.html.php:4 +msgid "People" +msgstr "Personen" -#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 -#, php-format -msgid "" -"Hello,\n" -"\n" -"You have requested the creation of an account to\n" -"participate in the life of a software project.\n" -"\n" -"To confirm the account please follow this link:\n" -"\n" -"%%url%%\n" -"\n" -"Alternatively, go to this page:\n" -"\n" -"%%urlik%%\n" -"\n" -"and provide the following confirmation key:\n" -"\n" -"%%key%%\n" -"\n" -"If you are not interested any longer in taking\n" -"part in the life of the software project or if\n" -"you can't remember having requested the creation\n" -"of an account, please excuse us and simply ignore\n" -"this email. \n" -"\n" -"Yours faithfully,\n" -"The development team.\n" -msgstr "" -"Hallo,\n" -"\n" -"Du hast die Anlage eines Kontos angeforder, um an dem Leben\n" -"eines Softwareprojektes teilhaben zu können.\n" -"\n" -"Um Dein Konto zu bestätigen, folge bitte dem folgenden Link:\n" -"\n" -"%%url%%\n" -"\n" -"Alternativ gehe zu dieser Seite:\n" -"\n" -"%%urlik%%\n" -"\n" -"und gib den folgenden Validierungs-Schlüssel ein:\n" -"\n" -"%%key%%\n" -"\n" -"Wenn Du nicht mehr länger an diesem Software-Projekt\n" -"interessiert bist oder wenn Du Dich nicht daran erinnern\n" -"kannst, dieses Konto erstellen zu wollen, entschuldige\n" -"und ignoriere einfach diese E-Mail.\n" -"\n" -"Mit freundlichen Grüßen,\n" -"Das Entwickler-Team.\n" +#: IDF/gettexttemplates/idf/gadmin/base.html.php:5 +msgid "Usher" +msgstr "Usher" -#: 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 "Oups, we found an error in the form." -msgstr "Wir haben einen Fehler in der Maske gefunden." +#: IDF/gettexttemplates/idf/gadmin/home.html.php:3 +msgid "You have here access to the administration of the forge." +msgstr "Hier hast Du Zugriff auf die Administration der Forge." -#: IDF/gettexttemplates/idf/register/inputkey.html.php:4 -msgid "Confirm Your Account" -msgstr "Bestätige Dein Konto" +#: 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 "Willkommen" -#: 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:12 -#: 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 "Abbrechen" +#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3 +#: IDF/gettexttemplates/idf/main-menu.html.php:6 +msgid "Project List" +msgstr "Projektliste" -#: 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 "Anleitung" +#: 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 "Projekt anlegen" -#: IDF/gettexttemplates/idf/register/inputkey.html.php:7 -msgid "" -"Use your email software to read your emails and open your confirmation " -"email. Either click directly on the confirmation link or copy/paste the " -"confirmation key in the box and submit the form." -msgstr "" -"Benutze Deine E-Mail-Software, um Deine E-Mails zu lesen und öffne die " -"Bestätigungs-E-Mail. Klicke dann entweder direkt auf den Bestätigungs-Link " -"oder kopiere den Bestätigungsschlüssel direkt in das Eingabefeld hinein und " -"sende das Formular ab." - -#: IDF/gettexttemplates/idf/register/inputkey.html.php:8 -msgid "" -"Just after providing the confirmation key, you will be able to set your " -"password and start using this website fully." -msgstr "" -"Direkt nachdem Du den Bestätigungsschlüssel angegeben hast, bist Du in der " -"Lage, Dein Passwort zu setzen und diese Webseite voll zu nutzen." - -#: IDF/gettexttemplates/idf/register/index.html.php:3 -msgid "" -"Read the terms and conditions " -"– basically \"Please be nice, we respect you\"." -msgstr "" -"Lies die Geschäftsbedingungen " -"– kurz zusammengefast \"Bitte sei nett, wir respektieren Dich\"." - -#: IDF/gettexttemplates/idf/register/index.html.php:4 -#, php-format -msgid "" -"With your account, you will able to participate in the life of all the " -"projects hosted here. Participating in a software project must be fun, so if " -"you have troubles, you can let us know about your issues " -"at anytime!" -msgstr "" -"Durch Dein Konto 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:5 -msgid "Oups, 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:8 -msgid "" -"Be sure to provide a valid email address, as we are sending a validation " -"link by email." -msgstr "" -"Bitte gib eine gültige E-Mail-Adresse an, da wir einen Bestätigungs-Link an " -"diese Adresse versenden." - -#: IDF/gettexttemplates/idf/register/index.html.php:9 -msgid "Did you know?" -msgstr "Wusstest Du?" - -#: 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 "Oups, please check the form for errors." -msgstr "Bitte überprüfe die Maske auf Fehler." - -#: 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 "Benutzername:" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 -msgid "Email:" -msgstr "E-Mail:" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:6 -msgid "Enable Your Account" -msgstr "Aktiviere Dein Konto" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 -msgid "" -"This is the last step, but just be sure to have the cookies enabled to log in afterwards." -msgstr "" -"Dies ist der letzte Schritt, aber bitte stelle sicher, dass Du " -"Cookies aktiviert hast, um Dich im folgenden anzumelden." - -#: IDF/gettexttemplates/idf/index.atom.php:3 -#, php-format -msgid "Personal project feed for %%user%%." -msgstr "Persönlicher Projekt-Feed für %%user%%." +#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 +msgid "Change Project Details" +msgstr "Projektdetails ändern" #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3 msgid "" @@ -624,26 +1683,6 @@ msgstr "" "bereits mit diesen Namen angemeldet haben.

    \n" "

    Trenne die Anmeldenamen durch Kommas und / oder neue Zeilen.

    \n" -#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 -#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 -#: IDF/gettexttemplates/idf/admin/members.html.php:8 -msgid "" -"\n" -"

    Notes:

    \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" -"

    Hinweise:

    \n" -"

    Ein Projekteigentümer kann jedwede Änderung an diesem Projekt vornehmen, " -"inklusive dem Enfernen von anderen Projekteigentümern. Deshalb solltest Du " -"mit der Vergabe von Eigentumsrechten vorsichtig sein.

    \n" -"

    Ein Projektmitglied hat keinen Zugriff auf die Administrationsebene, aber " -"hat bei der Benutzung des Projektes mehr verfügbare Optionen.

    \n" - #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14 msgid "" "The form contains some errors. Please correct them to create the project." @@ -657,18 +1696,6 @@ msgstr "" "Gib mindestens einen Eigentümer für das Projekt ein oder benutze eine " "Projektvorlage." -#: 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 "Projekt anlegen" - -#: 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 "Anweisungen:" - #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3 #, php-format msgid "" @@ -709,15 +1736,6 @@ msgstr "Bereich" msgid "Number" msgstr "Zahl" -#: 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 "Downloads" - #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15 msgid "Code reviews" msgstr "Code-Besprechungen" @@ -727,12 +1745,6 @@ msgstr "Code-Besprechungen" msgid "Commits" msgstr "Revisionen" -#: 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 "Tickets" - #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18 msgid "Documentation pages" msgstr "Dokumentations-Seiten" @@ -756,18 +1768,11 @@ msgid "Repositories:" msgstr "Depots:" #: 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 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 msgid "Attachments:" msgstr "Anhänge:" -#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 -#: IDF/gettexttemplates/idf/index.html.php:12 -#: IDF/gettexttemplates/idf/downloads/delete.html.php:10 -#: IDF/gettexttemplates/idf/downloads/view.html.php:15 -msgid "Downloads:" -msgstr "Downloads:" - #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7 msgid "Database:" msgstr "Datenbank:" @@ -776,21 +1781,6 @@ msgstr "Datenbank:" msgid "Total Forge:" msgstr "Forge insgesamt:" -#: 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" -"

    Anleitung:

    \n" -"

    Gib jede Person mit ihrem Anmeldenamen ein. Jede Person muss sich bereits " -"mit dem angegebenen Namen registriert haben.

    \n" -"

    Trenne die Anmeldenamen durch Kommas und / oder neue Zeilen.

    \n" - #: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13 msgid "" "The form contains some errors. Please correct them to update the project." @@ -812,25 +1802,24 @@ msgstr "Projekt aktualisieren" msgid "Delete this project" msgstr "Lösche dieses Projekt" -#: 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 "Mülleimer" - #: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21 msgid "You will be asked to confirm." msgstr "Es wird eine Bestätigung verlangt." -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3 -#: IDF/gettexttemplates/idf/main-menu.html.php:6 -msgid "Project List" -msgstr "Projektliste" +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" +msgstr "Nutzerliste" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 -msgid "Change Project Details" -msgstr "Projektdetails ändern" +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13 +msgid "Update User" +msgstr "Nutzer aktualisieren" + +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5 +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4 +msgid "Create User" +msgstr "Nutzer anlegen" #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3 msgid "The form contains some errors. Please correct them to create the user." @@ -838,11 +1827,6 @@ msgstr "" "Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um den " "Nutzer zu erstellen." -#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4 -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5 -msgid "Create User" -msgstr "Nutzer anlegen" - #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6 msgid "The user password will be sent by email to the user." msgstr "" @@ -919,6 +1903,13 @@ msgstr "" "Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um den " "Nutzer zu aktualisieren." +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:4 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:4 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4 +msgid "Login:" +msgstr "Benutzername:" + #: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11 #: IDF/gettexttemplates/idf/user/myaccount.html.php:5 msgid "Public Profile" @@ -928,15 +1919,22 @@ msgstr "Öffentliches Profil" msgid "Administrative" msgstr "Administratives" -#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13 -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4 -msgid "Update User" -msgstr "Nutzer aktualisieren" +#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 +msgid "Configured servers" +msgstr "Konfigurierte Server" -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" -msgstr "Nutzerliste" +#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4 +#: IDF/Views/Admin.php:358 +msgid "Usher control" +msgstr "Usher-Kontrolle" + +#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3 +msgid "address" +msgstr "Adresse" + +#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4 +msgid "port" +msgstr "Port" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3 msgid "current server status:" @@ -1041,1604 +2039,123 @@ msgid "usher is shut down, not running and not accepting connections" msgstr "" "Usher ist heruntergefahren, läuft nicht und akzeptiert keine Verbindungen" -#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3 -msgid "address" -msgstr "Adresse" - -#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4 -msgid "port" -msgstr "Port" - -#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 -msgid "Configured servers" -msgstr "Konfigurierte Server" - -#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4 -#: IDF/Views/Admin.php:358 -msgid "Usher control" -msgstr "Usher-Kontrolle" - -#: IDF/gettexttemplates/idf/gadmin/base.html.php:4 -msgid "People" -msgstr "Personen" - -#: IDF/gettexttemplates/idf/gadmin/base.html.php:5 -msgid "Usher" -msgstr "Usher" - -#: IDF/gettexttemplates/idf/gadmin/home.html.php:3 -msgid "You have here access to the administration of the forge." -msgstr "Hier hast Du Zugriff auf die Administration der Forge." - -#: 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 "Willkommen" - -#: IDF/gettexttemplates/idf/login_form.html.php:3 -#, fuzzy -msgid "What is your account information?" -msgstr "Wie ist Dein Anmeldename?" - -#: IDF/gettexttemplates/idf/login_form.html.php:4 -msgid "My login is" -msgstr "Mein Anmeldename ist" - -#: IDF/gettexttemplates/idf/login_form.html.php:5 -#, fuzzy -msgid "My password is" -msgstr "mein Passwort ist" - -#: IDF/gettexttemplates/idf/login_form.html.php:6 -msgid "Sign in" -msgstr "Anmelden" - -#: IDF/gettexttemplates/idf/login_form.html.php:7 -msgid "I lost my password!" -msgstr "Ich habe mein Passwort vergessen!" - -#: IDF/gettexttemplates/idf/login_form.html.php:8 -#, fuzzy -msgid "Welcome." -msgstr "Willkommen" - -#: IDF/gettexttemplates/idf/login_form.html.php:9 -msgid "If you don't have an account yet, you can create one" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:10 -#, fuzzy -msgid "here" -msgstr "Andere" - -#: IDF/gettexttemplates/idf/login_form.html.php:11 -#, fuzzy -msgid "It takes less than a minute to create your account" -msgstr "Anmelden oder Konto erstellen" - -#: IDF/gettexttemplates/idf/user/public.html.php:3 +#: IDF/gettexttemplates/idf/index.atom.php:3 #, php-format -msgid "You are looking at the public profile of %%member%%." -msgstr "Du siehst Dir das öffentliche Profil von %%member%% an." - -#: IDF/gettexttemplates/idf/user/public.html.php: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 "Beschreibung:" - -#: IDF/gettexttemplates/idf/user/public.html.php:5 -msgid "Twitter:" -msgstr "Twitter:" - -#: IDF/gettexttemplates/idf/user/public.html.php:6 -msgid "Public Email:" -msgstr "Öffentliche E-Mail:" - -#: IDF/gettexttemplates/idf/user/public.html.php:7 -msgid "Website:" -msgstr "Webseite:" - -#: IDF/gettexttemplates/idf/user/public.html.php:8 -msgid "Last time seen:" -msgstr "Zuletzt gesehen:" - -#: IDF/gettexttemplates/idf/user/public.html.php:9 -msgid "Member since:" -msgstr "Mitglied seit:" - -#: IDF/gettexttemplates/idf/user/changeemail-email.txt.php:3 -#, php-format -msgid "" -"Hello %%user%%,\n" -"\n" -"To confirm that you want %%email%%\n" -"to be your new email address, just follow this link:\n" -"\n" -"%%url%%\n" -"\n" -"Alternatively, go to this page:\n" -"\n" -"%%urlik%%\n" -"\n" -"and provide the following verification key:\n" -"\n" -"%%key%%\n" -"\n" -"If you do not want to change your email address, \n" -"just ignore this message.\n" -"\n" -"Yours faithfully,\n" -"The development team.\n" -msgstr "" -"Hallo %%user%%,\n" -"\n" -"Um zu bestätigen, dass %%email%% Deine neue E-Mail-Adresse\n" -"sein soll, folge bitte einfach diesem Link:\n" -"\n" -"%%url%%\n" -"\n" -"Alternativ gehe zu dieser Seite:\n" -"\n" -"%%urlik%%\n" -"\n" -"und gib den folgenden Validierungs-Schlüssel ein:\n" -"\n" -"%%key%%\n" -"\n" -"Wenn Du Deine E-Mail-Adresse nicht ändern möchtest,\n" -"ignoriere diese E-Mail einfach.\n" -"\n" -"Mit freundlichen Grüßen,\n" -"Das Entwickler-Team.\n" - -#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3 -#, php-format -msgid "" -"Hello %%user%%,\n" -"\n" -"You lost your password and wanted to recover it.\n" -"To provide a new password for your account, you\n" -"just have to follow the provided link. You will\n" -"get a simple form to provide a new password.\n" -"\n" -"%%url%%\n" -"\n" -"Alternatively, go to this page:\n" -"\n" -"%%urlik%%\n" -"\n" -"and provide the following verification key:\n" -"\n" -"%%key%%\n" -"\n" -"If you are not the one who requested to reset\n" -"your password, simply ignore this email, your\n" -"password will not be changed.\n" -"\n" -"Yours faithfully,\n" -"The development team.\n" -msgstr "" -"Hallo %%user%%,\n" -"\n" -"Du hast Dein Passwort verloren und möchtest es wiederherstellen.\n" -"Um ein neues Passwort für Dein Konto anzugeben, musst Du lediglich\n" -"dem folgenden Link folgen. Sie führt zu einer einfachen Eingabemaske,\n" -"mit der Du ein neues Passwort setzen kannst.\n" -"\n" -"%%url%%\n" -"\n" -"Alternativ gehe zu dieser Seite:\n" -"\n" -"%%urlik%%\n" -"\n" -"und gib den folgenden Validierungs-Schlüssel ein:\n" -"\n" -"%%key%%\n" -"\n" -"Wenn Du nicht derjenige bist, der das Zurücksetzen des Passworts\n" -"angefragt hat, ignoriere einfach diese E-Mail. Dein Passwort wird\n" -"in diesem Fall nicht geändert.\n" -"\n" -"Mit freundlichen Grüßen,\n" -"Das Entwickler-Team.\n" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:6 -msgid "Key Management" -msgstr "Schlüsselverwaltung" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:7 -msgid "Extra password" -msgstr "Extra-Passwort" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 -msgid "" -"This password is used to access some of the external systems managed by our " -"infrastructure. It will be regenerated if you change your password." -msgstr "" -"Dieses Passwort wird genutzt, um auf einige externe Systeme unserer " -"Infrastruktur zuzugreifen. Es wird neu erzeugt, wenn Du Dein Passwort " -"änderst." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 -msgid "API key" -msgstr "API-Schlüssel" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 -msgid "" -"Your API key will be regenerated automatically if you change your password." -msgstr "" -"Dein API-Schlüssel wird automatisch neu erzeugt, wenn Du Dein Passwort " -"änderst." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 -msgid "Update Your Account" -msgstr "Aktualisiere Deinen Account" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 -msgid "Your Current Public Keys" -msgstr "Deine derzeitigen öffentlichen Schlüssel" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 -msgid "Delete this key" -msgstr "Lösche diesen Schlüssel" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 -msgid "" -"If possible, use your real name. By using your real name, people will have " -"more trust in your comments and remarks." -msgstr "" -"Wenn möglich, nutze Deinen realen Namen. Dadurch wird deinen Kommentaren und " -"Bemerkungen mehr Vertrauen geschenkt." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 -msgid "" -"The extra password is used to access some of the external systems and the " -"API key is used to interact with this website using a program." -msgstr "" -"Das Extra-Passwort wird genutzt, um auf einige externe Systeme zuzugreifen. " -"Der API-Schlüssel wird benötigt, damit andere Programme mit dieser Webseite " -"interagieren können." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 -msgid "Show API key and extra password" -msgstr "Zeige API-Schlüssel und Extra-Passwort" - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:3 -#, php-format -msgid "Update your account." -msgstr "Aktualisiere Dein Konto." - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:4 -#, php-format -msgid "See your public profile." -msgstr "Zeige Dein öffentliches Profil." - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:5 -#, php-format -msgid "See your forge issue watch list." -msgstr "" -"Zeige Deine Forge-weite Ticket-Beobachtungliste." - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:6 -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7 -msgid "Working issues:" -msgstr "Tickets in Bearbeitung:" - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:7 -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:6 -msgid "Submitted issues:" -msgstr "Eingereichte Tickets:" - -#: IDF/gettexttemplates/idf/user/changeemail.html.php:4 -msgid "Confirm Your New Email Address" -msgstr "Bestätige deine neue Email-Adresse" - -#: IDF/gettexttemplates/idf/user/changeemail.html.php:7 -#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:7 -msgid "" -"Use your email software to read your emails and open your verification " -"email. Either click directly on the verification link or copy/paste the " -"verification key in the box and submit the form." -msgstr "" -"Benutze Deine E-Mail-Software um Deine E-Mails zu lesen und Deine " -"Validierungs-E-Mail zu öffnen. Klicke dann entweder direkt auf den " -"Validierungs-Link oder kopiere den Validierungsschlüssel aus der E-Mail in " -"das Eingabefeld und sende das Formular ab." - -#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4 -msgid "Recover Your Password" -msgstr "Passwort wiederherstellen" - -#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:8 -msgid "" -"Just after providing the confirmation key, you will be able to reset your " -"password and use again this website fully." -msgstr "" -"Kurz nachdem Du den Bestätigungscode eingegeben hast, wirst Du Dein Passwort " -"zurücksetzen und diese Webseite wieder voll nutzen können." - -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 -msgid "Reset Your Password" -msgstr "Passwort zurücksetzen" - -#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 -msgid "" -"Oups, please check the provided login or email address to recover your " -"password." -msgstr "" -"Bitte überprüfe den angegebenen Anmeldenamen oder E-Mail-Adresse, um Dein " -"Passwort zurückzusetzen." - -#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4 -msgid "Recover My Password" -msgstr "Mein Passwort wiederherstellen" - -#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6 -msgid "" -"Provide either your login or email address, if a corresponding user is found " -"in the database, we will send you an email with the details on how to reset " -"your password." -msgstr "" -"Gib entweder Deinen Anmeldenamen oder Deine E-Mail-Adresse an. Wenn ein " -"entsprechender Benutzer in der Datenbank gefunden wird, schicken wir Dir " -"eine E-Mail mit Informationen, wie Du Dein Passwort zurücksetzen kannst." - -#: IDF/gettexttemplates/idf/wiki/create.html.php:3 -#: IDF/gettexttemplates/idf/wiki/update.html.php:3 -msgid "Preview of the Page" -msgstr "Vorschau der Seite" - -#: IDF/gettexttemplates/idf/wiki/create.html.php:4 -msgid "The form contains some errors. Please correct them to create the page." -msgstr "" -"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Seite " -"anzulegen." - -#: IDF/gettexttemplates/idf/wiki/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 "Vorschau" - -#: IDF/gettexttemplates/idf/wiki/create.html.php:6 -msgid "Create Page" -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" -"%%page.title%%. This revision was created\n" -"by %%submitter%%." -msgstr "" -"Du schaust Dir gerade eine alte Version (%%oldrev.summary%%) der " -"Seite \n" -"%%page.title%% an. Diese Version wurde von\n" -"%%submitter%% angelegt." - -#: IDF/gettexttemplates/idf/wiki/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 "" -"Wenn Du diese alte Version löscht, wird sie von der Datenbank entfernt und " -"kann nicht wiederhergestellt werden." - -#: 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 "von %%submitter%%" - -#: IDF/gettexttemplates/idf/wiki/delete.html.php:9 -msgid "Delete Revision" -msgstr "Version löschen" - -#: 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 "Erstellt:" - -#: 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 "Aktualisiert:" - -#: 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 "Alte Versionen" - -#: IDF/gettexttemplates/idf/wiki/edit-info.html.php:3 -#, php-format -msgid "" -"\n" -"

    Instructions:

    \n" -"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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 "" -"\n" -"

    Anleitung:

    \n" -"

    Für den Inhalt der Seite kann die Markdown-Syntax mit der Extra-Erweiterung verwendet " -"werden.

    \n" -"

    Website-Adresses werden automatisch verlinkt und Du kannst außerdem zu " -"anderen Dokumentations-Seiten durch die Benutzung von doppelten, eckige " -"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" - -#: 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:177 -msgid "New Page" -msgstr "Neue Seite" - -#: IDF/gettexttemplates/idf/wiki/search.html.php:4 -msgid "Pages found:" -msgstr "Gefundene Seiten:" - -#: 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 -msgid "Changes:" -msgstr "Änderungen:" - -#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:3 -msgid "" -"If you delete this documentation page, it will be removed from the database " -"with all the associated revisions and you will not be able to " -"recover it." -msgstr "" -"Wenn Du diese Dokumentations-Seite löscht, wird sie mit all ihren Versionen " -"aus der Datenbank gelöscht und Du wirst nicht in der Lage sein, sie " -"wiederherzustellen." - -#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:6 -msgid "Delete Page" -msgstr "Lösche Seite" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3 -msgid "The following documentation page has been updated:" -msgstr "Die folgende Dokumentations-Seite wurde aktualisiert:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php: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 "Hallo," - -#: 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 "Projekt:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7 -msgid "Updated by:" -msgstr "Aktualisiert von:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:8 -#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:6 -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:7 -msgid "Created by:" -msgstr "Erstellt von:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13 -msgid "New content:" -msgstr "Neuer Inhalt:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14 -#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9 -msgid "Documentation page:" -msgstr "Dokumentations-Seite:" - -#: IDF/gettexttemplates/idf/wiki/index.html.php:3 -#, php-format -msgid "See the deprecated pages." -msgstr "Zeige die veralteten Seiten." - -#: IDF/gettexttemplates/idf/wiki/index.html.php:5 -msgid "Number of pages:" -msgstr "Anzahl der Seiten:" - -#: 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 "" -"Achtung! Diese Seite ist als veraltet markiert. Nutze sie " -"nur als Referenz, wenn Du diese spezifischen Informationen benötigst." - -#: 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 "" -"Du siehst gerade eine alte Version der Seite \n" -"%%page.title%%. Diese Version wurde\n" -"von %%submitter%% erzeugt." - -#: IDF/gettexttemplates/idf/wiki/view.html.php:10 -msgid "Table of Content" -msgstr "Inhaltsverzeichnis" - -#: IDF/gettexttemplates/idf/wiki/view.html.php:11 -#: IDF/gettexttemplates/idf/wiki/view.html.php:13 -msgid "Delete this revision" -msgstr "Lösche diese Version" - -#: IDF/gettexttemplates/idf/wiki/update.html.php:4 -msgid "The form contains some errors. Please correct them to update the page." -msgstr "" -"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Seite " -"zu aktualisieren." - -#: IDF/gettexttemplates/idf/wiki/update.html.php:6 -msgid "Update Page" -msgstr "Seite aktualisieren" - -#: 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 "Lösche diese Seite" - -#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3 -msgid "A new documentation page has been created:" -msgstr "Eine neue Dokumentations-Seite wurde angelegt:" - -#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:8 -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9 -msgid "Content:" -msgstr "Inhalt:" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:3 -msgid "List Pages" -msgstr "Seiten anzeigen" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:5 -msgid "Update This Page" -msgstr "Diese Seite aktualisieren" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:6 -#: IDF/gettexttemplates/idf/issues/base.html.php:7 -msgid "Search" -msgstr "Suche" - -#: IDF/gettexttemplates/idf/source/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/invalid_revision.html.php:5 -#, php-format -msgid "" -"If this is a new repository, the reason for this error\n" -"could be that you have not committed and / or pushed any change so far.\n" -"In this case please take a look at the Help page\n" -"how to access your repository." -msgstr "" -"Falls dies ein neues Depot ist, könnte der Grund für diesen Fehler sein,\n" -"dass Du bislang noch keine Änderungen eingepflegt oder zum Server " -"übertragen\n" -"hast. In diesem Fall sieh bitte auf der Hilfe-Seite\n" -"nach, wie Du auf Dein Depot zugreifen kannst." - -#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:3 -#, php-format -msgid "" -"The revision identifier %%commit%% is ambiguous and can be\n" -"expanded to multiple valid revisions - please choose one:" -msgstr "" -"Die Revisionskennung %%commit%% ist mehrdeutig und kann\n" -"zu mehreren gültigen Revisionen erweitert werden - bitte wähle eine:" - -#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:5 -msgid "Title" -msgstr "Titel" - -#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:6 -msgid "Author" -msgstr "Autor" - -#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:7 -msgid "Date" -msgstr "Datum" - -#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:8 -msgid "Branch" -msgstr "Zweig" - -#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:9 -msgid "Revision" -msgstr "Revision" - -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:3 -msgid "A new commit has been created:" -msgstr "Eine neue Revision wurde erzeigt:" - -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:5 -#: IDF/gettexttemplates/idf/source/commit.html.php:7 -#: IDF/gettexttemplates/idf/review/view.html.php:28 -msgid "Commit:" -msgstr "Revision" - -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8 -msgid "Created at:" -msgstr "Erstellt am:" - -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10 -msgid "Commit details:" -msgstr "Revision-Details:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:3 -#: IDF/gettexttemplates/idf/review/view.html.php:3 -#, php-format -msgid "%%ndiff%% diff" -msgid_plural "%%ndiff%% diffs" -msgstr[0] "%%ndiff%% Änderung" -msgstr[1] "%%ndiff%% Änderungen" - -#: IDF/gettexttemplates/idf/source/commit.html.php:4 -msgid "Date:" -msgstr "Datum:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:5 -#: IDF/gettexttemplates/idf/review/view.html.php:27 -msgid "Author:" -msgstr "Autor:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:6 -msgid "Branch:" -msgstr "Zweig:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:8 -#: IDF/gettexttemplates/idf/review/view.html.php:29 -msgid "View corresponding source tree" -msgstr "Zeige den dazugehörigen Quellcode-Baum" - -#: IDF/gettexttemplates/idf/source/commit.html.php:9 -msgid "Parents:" -msgstr "Eltern:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:10 -#: IDF/gettexttemplates/idf/source/changelog.html.php:6 -msgid "View corresponding commit" -msgstr "Zeige dazugehörige Revision" - -#: IDF/gettexttemplates/idf/source/commit.html.php:11 -msgid "Message:" -msgstr "Logmeldung:" - -#: 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 -msgid "full" -msgstr "voll" - -#: IDF/gettexttemplates/idf/source/commit.html.php:15 -msgid "renamed" -msgstr "umbenannt" - -#: IDF/gettexttemplates/idf/source/commit.html.php:16 -msgid "added" -msgstr "hinzugefügt" - -#: IDF/gettexttemplates/idf/source/commit.html.php:18 -msgid "modified" -msgstr "verändert" - -#: IDF/gettexttemplates/idf/source/commit.html.php:19 -msgid "properies changed" -msgstr "Eigenschaften geändert" - -#: IDF/gettexttemplates/idf/source/commit.html.php:20 -msgid "removed" -msgstr "entfernt" - -#: IDF/gettexttemplates/idf/source/commit.html.php:21 -msgid "File differences" -msgstr "Dateiunterschiede" - -#: 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/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 "Archiv" - -#: IDF/gettexttemplates/idf/source/commit.html.php:23 -#: IDF/gettexttemplates/idf/review/view.html.php:35 -msgid "Download the corresponding diff file" -msgstr "Dazugehörige Unterschiedsdatei herunterladen" - -#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 -#, php-format -msgid "%%cproject.name%%: Commit %%c.scm_id%%" -msgstr "%%cproject.name%%: Revision %%c.scm_id%%" - -#: IDF/gettexttemplates/idf/source/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 "Zweige" - -#: 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 "Zweige filtern" - -#: 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 "Marken" - -#: 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 "Marken filtern" - -#: 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 "" -"Quellcode bei Revision %%commit%% " -"erzeugt am %%cobject.date%%." - -#: 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 "Von %%cobject.author%%, %%cobject.title%%" - -#: 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 "Wurzel" - -#: 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 "Lade diese Datei herunter" - -#: 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:294 IDF/Form/Upload.php:59 -msgid "File" -msgstr "Datei" - -#: 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 "Alter" - -#: 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 "Logmeldung" - -#: 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:296 -msgid "Size" -msgstr "Größe" - -#: 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 "Diese Version herunterladen" - -#: 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 "oder" - -#: 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 "Hilfe" - -#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3 -#, php-format -msgid "" -"The team behind %%project%% is using\n" -"the monotone software to manage the source\n" -"code." -msgstr "" -"Das Team von %%project%% nutzt monotone\n" -"als Software zur Versionsverwaltung." - -#: IDF/gettexttemplates/idf/source/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 "" -"Um eine erste Revision ins Depot einzupflegen, führe die folgenden Schritte " -"aus:" - -#: 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 "" -"Hier findest Du mehr Information, wie Du auf den Quellcode von %%project%% " -"zugreifst." - -#: 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 "Zugriff über die Kommandozeile" - -#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9 -#: IDF/gettexttemplates/idf/source/git/help.html.php:10 -msgid "First Commit" -msgstr "Erste Revision" - -#: 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 "Revision:" - -#: 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 "Zu Revision gehen:" - -#: 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 "setzen auf:" - -#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8 -msgid "Rev" -msgstr "Revision" - -#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17 -msgid "Branches:" -msgstr "Zweige:" - -#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18 -msgid "Tags:" -msgstr "Marken:" - -#: IDF/gettexttemplates/idf/source/svn/help.html.php:3 -#, php-format -msgid "" -"The team behind %%project%% is using\n" -"the subversion software to manage the source\n" -"code." -msgstr "" -"Das Team von %%project%% nutzt subversion\n" -"als Software zur Versionsverwaltung." - -#: IDF/gettexttemplates/idf/source/svn/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 "" -"Um Schreibberechtigungen auf das Depot zu erhalten, benötigst Du Deinen " -"Anmeldenamen und Dein zusätzliches Passwort." - -#: IDF/gettexttemplates/idf/source/svn/help.html.php:9 -#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9 -msgid "Write Access Authentication" -msgstr "Authentifizierung für Schreibberechtigung" - -#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3 -#, php-format -msgid "" -"The team behind %%project%% is using\n" -"the Mercurial software to manage the source\n" -"code." -msgstr "" -"Das Team von %%project%% nutzt Mercurial\n" -"als Software zur Versionsverwaltung." - -#: IDF/gettexttemplates/idf/source/base.html.php:3 -msgid "Source Tree" -msgstr "Quellcode-Baum" - -#: IDF/gettexttemplates/idf/source/base.html.php:4 -msgid "Change Log" -msgstr "Änderungsliste" - -#: IDF/gettexttemplates/idf/source/base.html.php:5 -#: IDF/gettexttemplates/idf/source/changelog.html.php:7 -#: IDF/Form/ReviewCreate.php:74 -msgid "Commit" -msgstr "Revision" - -#: IDF/gettexttemplates/idf/source/base.html.php:6 -msgid "How To Get The Code" -msgstr "Wie man den Code bekommt" - -#: IDF/gettexttemplates/idf/source/changelog.html.php:5 -msgid "Parent:" -msgstr "Eltern:" - -#: IDF/gettexttemplates/idf/source/changelog.html.php:8 -msgid "by" -msgstr "von" - -#: IDF/gettexttemplates/idf/source/git/help.html.php:3 -#, php-format -msgid "" -"The team behind %%project%% is using\n" -"the git software to manage the source\n" -"code." -msgstr "" -"Das Team von %%project%% nutzt git\n" -"als Software zur Versionsverwaltung." - -#: IDF/gettexttemplates/idf/source/git/help.html.php:6 -#, php-format -msgid "" -"You may need to provide your SSH key. The " -"synchronization of your SSH key can take a couple of minutes. You can learn " -"more about SSH key authentification." -msgstr "" -"Eventuell musst Du Deinen SSH-Schlüssel hochladen. " -"Die Synchronizierung Deines SSH-Schlüssels kann einige Minuten dauern. Du " -"kannst hier mehr über SSH-Schlüssel-Authentifizierung erfahren." - -#: IDF/gettexttemplates/idf/main-menu.html.php:3 -#, php-format -msgid "" -"Welcome, %%user%%." -msgstr "" -"Willkommen, %%user%%." - -#: IDF/gettexttemplates/idf/main-menu.html.php:4 -msgid "Sign Out" -msgstr "Abmelden" - -#: IDF/gettexttemplates/idf/main-menu.html.php:5 -msgid "Sign in or create your account" -msgstr "Anmelden oder Konto erstellen" - -#: 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 "Privates Projekt" - -#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 -msgid "Forge Management" -msgstr "Administration" - -#: IDF/gettexttemplates/idf/main-menu.html.php:9 -msgid "Help and accessibility features" -msgstr "Hilfe und Barrierefreiheit" +msgid "Personal project feed for %%user%%." +msgstr "Persönlicher Projekt-Feed für %%user%%." #: IDF/gettexttemplates/idf/index.html.php:4 msgid "No projects managed with InDefero were found." msgstr "Es wurden keine verwalteten Projekte gefunden." #: IDF/gettexttemplates/idf/index.html.php:7 -#, fuzzy msgid "Projects:" -msgstr "Projekte" +msgstr "Projekte:" #: IDF/gettexttemplates/idf/index.html.php:8 -#, fuzzy msgid "Members:" -msgstr "Mitglied seit:" +msgstr "Mitglieder:" #: IDF/gettexttemplates/idf/index.html.php:9 -#, fuzzy msgid "Issues:" -msgstr "Tickets" +msgstr "Tickets:" #: IDF/gettexttemplates/idf/index.html.php:10 -#, fuzzy msgid "Commits:" -msgstr "Revisionen" +msgstr "Revisionen:" #: IDF/gettexttemplates/idf/index.html.php:11 -#, fuzzy msgid "Documentations:" -msgstr "Dokumentation" +msgstr "Dokumentationsseiten:" #: IDF/gettexttemplates/idf/index.html.php:13 -#, fuzzy msgid "Code reviews:" -msgstr "Code-Besprechungen" +msgstr "Code-Besprechungen:" -#: IDF/gettexttemplates/idf/base-full.html.php:3 -#: IDF/gettexttemplates/idf/base.html.php:3 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 +#, php-format +msgid "Attachment to issue %%issue.id%%" +msgstr "Anhang zum Ticket %%issue.id%%" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 +#: IDF/gettexttemplates/idf/review/view.html.php:34 +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +msgid "Archive" +msgstr "Archiv" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:6 +#: IDF/gettexttemplates/idf/source/git/file.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:9 +msgid "Download this file" +msgstr "Lade diese Datei herunter" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:7 +#: IDF/gettexttemplates/idf/issues/view.html.php:26 +#: IDF/gettexttemplates/idf/review/view.html.php:25 +#: 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 "Erstellt:" + +#: IDF/gettexttemplates/idf/issues/base.html.php:3 +msgid "Open Issues" +msgstr "Offene Tickets" + +#: 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 "Neues Ticket" + +#: IDF/gettexttemplates/idf/issues/base.html.php:5 +msgid "My Issues" +msgstr "Meine Tickets" + +#: IDF/gettexttemplates/idf/issues/base.html.php:6 +msgid "My watch list" +msgstr "Meine Beobachtungsliste" + +#: IDF/gettexttemplates/idf/issues/base.html.php:7 +#: IDF/gettexttemplates/idf/wiki/base.html.php:6 +msgid "Search" +msgstr "Suche" + +#: IDF/gettexttemplates/idf/issues/base.html.php:8 +msgid "Back to the issue" +msgstr "Zurück zum Ticket" + +#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 #, php-format msgid "" -"Sign in or create your account to create issues or " -"add comments" +"

    Open issues: %%open%%

    \n" +"

    Closed issues: %%closed%%

    \n" msgstr "" -"Melde Dich an oder lege ein Konto an, um Tickets " -"oder Kommentare hinzuzufügen" - -#: IDF/gettexttemplates/idf/base-full.html.php:4 -#: IDF/gettexttemplates/idf/base.html.php:4 -msgid "Project Home" -msgstr "Projekt-Startseite" - -#: 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 "Dokumentation" - -#: 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 "Quellcode" - -#: IDF/gettexttemplates/idf/base-full.html.php:9 -#: IDF/gettexttemplates/idf/base.html.php:9 IDF/Form/TabsConf.php:39 -msgid "Code Review" -msgstr "Code-Besprechung" - -#: IDF/gettexttemplates/idf/base-full.html.php:10 -#: IDF/gettexttemplates/idf/base.html.php:10 -msgid "Project Management" -msgstr "Projekt-Management" - -#: 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" -"
    • Ensure your patch does not contain any passwords or confidential " -"information!
    • \n" -"
    " -msgstr "" -"

    Wenn Du eine Code-Besprechung erstellst, musst Du folgende Angaben machen:" -"

    \n" -"
      \n" -"
    • Eine Revision Deines derzeitigen Codes im Depot, von der aus Du Deine " -"Arbeit begonnen hast.
    • \n" -"
    • Ein Patch, welches die Änderungen ausgehend von der Referenz-Revision " -"beschreibt.
    • \n" -"
    • Füge dem Patch keine Passwörter oder vertraulichen Angaben hinzu!" -"
    • \n" -"
    " - -#: IDF/gettexttemplates/idf/review/create.html.php:9 -msgid "" -"The form contains some errors. Please correct them to submit the code review." -msgstr "" -"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Code-" -"Besprechung einzusenden." - -#: IDF/gettexttemplates/idf/review/create.html.php:10 -msgid "" -"Select the commit against which you created your patch to be sure it applies " -"correctly." -msgstr "" -"Wähle die Revision aus, gegen welche Du Dein Patch erstellt hast und stelle " -"sicher, dass das Patch auf diese Revision korrekt angewandt werden kann." - -#: IDF/gettexttemplates/idf/review/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 "Neue Code-Besprechung starten" - -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3 -msgid "The following review has been updated:" -msgstr "Die folgende Code-Besprechung wurde aktualisiert:" - -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4 -#, php-format -msgid "By %%who%%, %%c.creation_dtime%%:" -msgstr "Von %%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 "" -"Von %%who%%, %%c.creation_dtime%%, für Datei:\n" -"%%c.cfile%%\n" - -#: 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 "Gemeldet von:" - -#: 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 "Allgemeine Kommentare (neueste zuerst):" - -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15 -msgid "Detailed file comments (last first):" -msgstr "Detaillierte Dateikommentare (neueste zuerst):" - -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:16 -#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10 -msgid "Review:" -msgstr "Code-Besprechung:" - -#: 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" -"different people discuss the code changes. The goal is\n" -"to improve the quality of the code and the\n" -"contributions, as such, you must be pragmatic when writing\n" -"your review. Correctly mention the line numbers (in the old or in the\n" -"new file) and try to keep a good balance between seriousness and fun.\n" -msgstr "" -"Eine Code-Besprechung ist ein Prozess, in welchem bevor oder nachdem\n" -"Änderungen in das Quellcode-Depot eingepflegt wurden, verschiedene\n" -"Personen über diese Änderungen diskutieren. Das Ziel ist die\n" -"Qualität des Codes und des Beitrages zu verbessern,\n" -"und deshalb solltest Du beim Schreiben Deiner Code-Besprechung pragmatisch\n" -"sein. Benenne die korrekten Zeilennummern für Deine Kommentare (in der\n" -"alten oder der neuen Datei) und versuche, eine gute Balance zwischen\n" -"Ernsthaftigkeit und Spass zu bewahren.\n" - -#: IDF/gettexttemplates/idf/review/view.html.php: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 "" -"\n" -"Eine Code-Besprechung kann einschüchternd wirken.\n" -"Du als Rezensent weißt, dass Du Kritik erhalten wirst, deshalb\n" -"versuche, dem Prozess nicht den Spass zu nehmen, sondern\n" -"nutze ihn, um Deinen Aspiranten Deine Coding-Standards und die Struktur\n" -"Deines Codes zu lehren und bring sie dazu, mehr beizutragen.\n" - -#: IDF/gettexttemplates/idf/review/view.html.php:20 -#, php-format -msgid "" -"Comment %%i%% by %%who%%, " -"%%c.creation_dtime%%" -msgstr "" -"Kommentar %%i%% von %%who%%, %%c.creation_dtime%%" - -#: IDF/gettexttemplates/idf/review/view.html.php:21 -#, php-format -msgid "Your comments on the changes in file %%file%%:" -msgstr "Deine Kommentare der Änderungen in der Datei %%file%%:" - -#: IDF/gettexttemplates/idf/review/view.html.php:22 -#: IDF/gettexttemplates/idf/issues/view.html.php:4 -#, php-format -msgid "" -"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%" -msgstr "" -"Kommentar %%i%% von %%submitter%%, %%c.creation_dtime" -"%%" - -#: IDF/gettexttemplates/idf/review/view.html.php:23 -#, php-format -msgid "Sign in to participate in the review." -msgstr "" -"Melde Dich an, um an der Code-Besprechung " -"teilzunehmen." - -#: IDF/gettexttemplates/idf/review/view.html.php:24 -msgid "" -"The form contains some errors. Please correct them to submit your review." -msgstr "" -"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Code-" -"Besprechung einzusenden." - -#: IDF/gettexttemplates/idf/review/view.html.php: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:36 -msgid "How to Participate in a Code Review" -msgstr "Wie man an einer Code-Besprechung teilnimmt" - -#: 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 -msgid "Submit Code Review" -msgstr "Code-Besprechung einsenden" - -#: IDF/gettexttemplates/idf/review/base-full.html.php:3 -#: IDF/gettexttemplates/idf/review/base.html.php:3 -msgid "Open Reviews" -msgstr "Offene Code-Besprechungen" - -#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:3 -msgid "The following review has been created:" -msgstr "Die folgende Code-Besprechung wurde erstellt:" - -#: 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 "Änderungen speichern" - -#: 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" -"Nur Projektmitglieder und Administratoren haben Schreibzugriff auf den " -"Quellcode.
    \n" -"Wenn Du den Zugriff auf den Quellcode beschränkst, wird kein anonymer " -"Zugriff
    \n" -"angeboten und die Nutzer müssen sich mit ihrem Passwort oder " -"öffentlichen
    \n" -"Schlüssel authentifizieren." - -#: IDF/gettexttemplates/idf/admin/tabs.html.php:8 -msgid "" -"You can configure here the project tabs access rights and notification " -"emails." -msgstr "" -"Hier kannst Du den Zugriff auf die Projektfunktionen und die Benachrichtungs-" -"E-Mails konfigurieren." - -#: 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 "" -"Benachrichtungs-E-Mails werden mit der Absenderadresse %%from_email%%" -" versandt. Wenn Du die E-Mail zu einer Mailingliste senden " -"möchtest, musst Du eventuell diese E-Mail-Adresse dort registrieren. Mehrere " -"E-Mail-Adressen müssen durch Kommas (',') voneinander getrennt werden. Wenn " -"Du keine E-Mails für einen bestimmten Änderungstyp versenden möchtest, lasse " -"das entsprechende Feld einfach leer." - -#: 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 "" -"Wenn Du ein Projekt als privat markierst, haben nur Projektmitglieder und " -"Administratoren zusammen mit den von Dir extra authorisierten Nutzern " -"Zugriff darauf. Du kannst weiterhin zusätzliche Zugriffsrechte für bestimmte " -"Projektfunktionen vergeben, aber die Einstellungen \"Für alle offen\" und " -"\"Angemeldete Benutzer\" werden standardmäßig nur authorisierte Benutzer " -"berücksichtigen." - -#: IDF/gettexttemplates/idf/admin/tabs.html.php: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 "" -"Gib für jede Person ihren Anmeldenamen ein. Jede Person muss sich bereits " -"mit diesem Namen angemeldet haben. Trenne die Anmeldenamen durch Kommas " -"und / oder neue Zeilen." - -#: IDF/gettexttemplates/idf/admin/tabs.html.php:12 -msgid "" -"The form contains some errors. Please correct them to update the access " -"rights." -msgstr "" -"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die " -"Zugriffsberechtigungen zu aktualisieren." - -#: IDF/gettexttemplates/idf/admin/tabs.html.php:13 -msgid "Access Rights" -msgstr "Zugriffsberechtigungen" - -#: IDF/gettexttemplates/idf/admin/tabs.html.php:14 -msgid "Notification Email" -msgstr "Benachrichtigungs-E-Mail" - -#: IDF/gettexttemplates/idf/admin/summary.html.php:3 -#, php-format -msgid "" -"\n" -"

    Instructions:

    \n" -"

    The description of the project can be improved using the Markdown syntax.

    \n" -msgstr "" -"\n" -"

    Anleitung:

    \n" -"

    Die Beschreibung des Projektes kann durch die Benutzung der Markdown-Syntax vereinfacht werden.

    \n" - -#: IDF/gettexttemplates/idf/admin/summary.html.php:7 -msgid "" -"The form contains some errors. Please correct them to update the summary." -msgstr "" -"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die " -"Projektzusammenfassung zu aktualisieren." - -#: IDF/gettexttemplates/idf/admin/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" -"

    Anletung:

    \n" -"

    Füge einen Statuswert pro Zeile in der gewünschten Reihenfolge hinzu.Offene Tickets: %%open%%\n" -"

    Füge optional nach einem Istgleich-Zeichen (=) eine kurze Beschreibung " -"ein, um die Bedeutung des Statuswerts zu beschreiben.

    \n" +"

    Geschlossene Tickets: %%closed" +"%%

    \n" -#: IDF/gettexttemplates/idf/admin/source.html.php:3 -msgid "You can find here the current repository configuration of your project." -msgstr "Hier findest Du die derzeitige Depot-Konfiguration Deines Projektes." +#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 +msgid "Label:" +msgstr "Label:" -#: 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 "" -"

    Die Web-Hook-Adresse gibt eine URL an, zu welcher eine HTTP POST-\n" -"Anfrage nach jeder neuen Revision eines Depot ausgelöst wird.\n" -"Wenn dieses Feld leer ist, sind diese Art von Benachrichtigungen\n" -"deaktiviert.

    \n" -"\n" -"

    Nur korrekt maskierte HTTP-URLs werden unterstützt, zum " -"Beispiel:

    \n" -"\n" -"
      \n" -"
    • http://domain.com/commit
    • \n" -"
    • http://domain.com/commit?my%20param
    • \n" -"
    \n" -"\n" -"

    Zusätzlich darf die URL die folgenden Platzhalter beinhalten, welche\n" -"für jede Revision mit den spezifischen Projektwerten ersetzt werden:

    \n" -"\n" -"
      \n" -"
    • %p - Projektname
    • \n" -"
    • %r - Revisionsnummer
    • \n" -"
    \n" -"\n" -"

    Beispiel: Wenn die Revision 123 für das Projekt 'mein-projekt' zum Depot\n" -"gesandt wird und als post-commit-URL http://meine-domain.com/%p/%r " -"eingestellt\n" -"ist, würde eine Anfrage an http://meine-domain.com/mein-projekt/123 gesendet." -"

    " - -#: IDF/gettexttemplates/idf/admin/source.html.php:26 -msgid "" -"The form contains some errors. Please correct them to update the source " -"configuration." -msgstr "" -"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die " -"Quellcode-Konfiguration zu aktualisieren." - -#: IDF/gettexttemplates/idf/admin/source.html.php:27 -msgid "Repository type:" -msgstr "Depot-Typ:" - -#: IDF/gettexttemplates/idf/admin/source.html.php:28 -msgid "Repository access:" -msgstr "Depot-Zugriff:" - -#: IDF/gettexttemplates/idf/admin/source.html.php:29 -msgid "Repository size:" -msgstr "Depot-Größe:" - -#: IDF/gettexttemplates/idf/admin/source.html.php:30 -msgid "Post-commit authentication key:" -msgstr "Post-commit Authentifizierungs-Schlüssel:" - -#: IDF/gettexttemplates/idf/admin/base.html.php:3 -msgid "Project Summary" -msgstr "Projekt-Zusammenfassung" - -#: IDF/gettexttemplates/idf/admin/base.html.php:6 -msgid "Issue Tracking" -msgstr "Ticketverfolgung" - -#: IDF/gettexttemplates/idf/admin/base.html.php:8 -msgid "Project Members" -msgstr "Projektmitglieder" - -#: IDF/gettexttemplates/idf/admin/base.html.php:9 -msgid "Tabs Access and Notifications" -msgstr "Zugriffsrechte und Benachrichtigungen" +#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 +msgid "Completion:" +msgstr "Fertigstellung:" #: IDF/gettexttemplates/idf/issues/create.html.php:3 msgid "" @@ -2669,6 +2186,15 @@ msgstr "" "Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um das " "Ticket einzureichen." +#: 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 +#: IDF/gettexttemplates/idf/wiki/create.html.php:5 +#: IDF/gettexttemplates/idf/wiki/update.html.php:5 +msgid "Preview" +msgstr "Vorschau" + #: IDF/gettexttemplates/idf/issues/create.html.php:12 msgid "Submit Issue" msgstr "Ticket einreichen" @@ -2685,35 +2211,42 @@ msgstr "Datei anhängen" msgid "Attach another file" msgstr "Eine andere Datei anhängen" -#: 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 "Neues Ticket" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/view.html.php:17 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:40 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:6 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:11 +#: IDF/IssueComment.php:151 +msgid "Summary:" +msgstr "Zusammenfassung:" -#: IDF/gettexttemplates/idf/issues/search.html.php:4 -msgid "Found issues:" -msgstr "Gefundene Tickets:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:13 +#: IDF/gettexttemplates/idf/issues/view.html.php:18 +#: IDF/gettexttemplates/idf/issues/view.html.php:28 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:6 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:10 +#: IDF/gettexttemplates/idf/review/view.html.php:41 IDF/IssueComment.php:153 +msgid "Status:" +msgstr "Status:" -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 -msgid "The following issue has been updated:" -msgstr "Das folgende Ticket wurde aktualisiert:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:5 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:19 +#: IDF/gettexttemplates/idf/issues/view.html.php:29 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:5 +#: IDF/IssueComment.php:155 +msgid "Owner:" +msgstr "Besitzer:" -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 -msgid "Comments (last first):" -msgstr "Kommentare (neueste zuerst):" - -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 -#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 -msgid "Issue:" -msgstr "Ticket:" - -#: 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/issues/project-watchlist.html.php:3 #, php-format msgid "" "

    Open issues: %%open%%

    \n" @@ -2725,26 +2258,6 @@ msgstr "" "

    Geschlossene Tickets: %%closed" "%%

    " -#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 -#, php-format -msgid "" -"

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" -msgstr "" -"

    Offene Tickets: %%open%%\n" -"

    Geschlossene Tickets: %%closed" -"%%

    \n" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" -msgstr "Label:" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 -msgid "Completion:" -msgstr "Fertigstellung:" - #: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3 msgid "" "A new issue has been created and assigned\n" @@ -2753,11 +2266,92 @@ msgstr "" "Ein neues Ticket wurde erstellt und Dir\n" "zugeordnet:" +#: 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 "Gemeldet von:" + +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 +msgid "Issue:" +msgstr "Ticket:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 +msgid "The following issue has been updated:" +msgstr "Das folgende Ticket wurde aktualisiert:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 +#, php-format +msgid "By %%who%%, %%c.creation_dtime%%:" +msgstr "Von %%who%%, %%c.creation_dtime%%:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12 +msgid "URL:" +msgstr "URL:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 +msgid "Comments (last first):" +msgstr "Kommentare (neueste zuerst):" + +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 +#, php-format +msgid "" +"See the %%nb_submit_closed%% closed." +msgid_plural "" +"See the %%nb_submit_closed%% closed." +msgstr[0] "" +"Siehe das %%nb_submit_closed%% " +"geschlossene." +msgstr[1] "" +"Siehe die %%nb_submit_closed%% " +"geschlossenen." + +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 +#, php-format +msgid "" +"See the %%nb_owner_closed%% closed." +msgid_plural "" +"See the %%nb_owner_closed%% closed." +msgstr[0] "" +"Siehe das %%nb_owner_closed%% geschlossene." +msgstr[1] "" +"Siehe die %%nb_owner_closed%% " +"geschlossenen." + +#: IDF/gettexttemplates/idf/issues/my-issues.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/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.php:3 #, php-format msgid "Reported by %%submitter%%, %%c.creation_dtime%%" msgstr "Eingesandt von %%submitter%%, %%c.creation_dtime%%" +#: IDF/gettexttemplates/idf/issues/view.html.php:4 +#: IDF/gettexttemplates/idf/review/view.html.php:22 +#, php-format +msgid "" +"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%" +msgstr "" +"Kommentar %%i%% von %%submitter%%, %%c.creation_dtime" +"%%" + #: IDF/gettexttemplates/idf/issues/view.html.php:5 #, php-format msgid "Sign in to reply to this comment." @@ -2826,66 +2420,80 @@ msgstr "Sende Änderungen" msgid "Followed by:" msgstr "Beobachtet von:" -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 +#: IDF/gettexttemplates/idf/login_form.html.php:3 #, php-format msgid "" -"See the %%nb_submit_closed%% closed." -msgid_plural "" -"See the %%nb_submit_closed%% closed." -msgstr[0] "" -"Siehe das %%nb_submit_closed%% " -"geschlossene." -msgstr[1] "" -"Siehe die %%nb_submit_closed%% " -"geschlossenen." +"If you don't have an account yet, you can create one here." +msgstr "" +"Wenn Du noch kein Konto hast, kannst Du hier " +"ein neues erstellen." -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 +#: IDF/gettexttemplates/idf/login_form.html.php:4 +msgid "What is your account information?" +msgstr "Wie lauten Deine Kontoinformationen?" + +#: IDF/gettexttemplates/idf/login_form.html.php:5 +msgid "My login is" +msgstr "Mein Anmeldename ist" + +#: IDF/gettexttemplates/idf/login_form.html.php:6 +msgid "My password is" +msgstr "Mein Passwort ist" + +#: IDF/gettexttemplates/idf/login_form.html.php:7 +msgid "Sign in" +msgstr "Anmelden" + +#: IDF/gettexttemplates/idf/login_form.html.php:8 +msgid "I lost my password!" +msgstr "Ich habe mein Passwort vergessen!" + +#: IDF/gettexttemplates/idf/login_form.html.php:9 +msgid "Welcome." +msgstr "Willkommen." + +#: IDF/gettexttemplates/idf/login_form.html.php:10 +msgid "It takes less than a minute to create your account." +msgstr "Es dauert weniger als eine Minute, um Dein Konto zu erstellen." + +#: IDF/gettexttemplates/idf/main-menu.html.php:3 #, php-format msgid "" -"See the %%nb_owner_closed%% closed." -msgid_plural "" -"See the %%nb_owner_closed%% closed." -msgstr[0] "" -"Siehe das %%nb_owner_closed%% geschlossene." -msgstr[1] "" -"Siehe die %%nb_owner_closed%% " -"geschlossenen." +"Welcome, %%user%%." +msgstr "" +"Willkommen, %%user%%." -#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 -#, php-format -msgid "Attachment to issue %%issue.id%%" -msgstr "Anhang zum Ticket %%issue.id%%" +#: IDF/gettexttemplates/idf/main-menu.html.php:4 +msgid "Sign Out" +msgstr "Abmelden" -#: IDF/gettexttemplates/idf/issues/base.html.php:3 -msgid "Open Issues" -msgstr "Offene Tickets" +#: IDF/gettexttemplates/idf/main-menu.html.php:5 +msgid "Sign in or create your account" +msgstr "Anmelden oder Konto erstellen" -#: IDF/gettexttemplates/idf/issues/base.html.php:5 -msgid "My Issues" -msgstr "Meine Tickets" +#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 +msgid "Forge Management" +msgstr "Administration" -#: IDF/gettexttemplates/idf/issues/base.html.php:6 -msgid "My watch list" -msgstr "Meine Beobachtungsliste" +#: IDF/gettexttemplates/idf/main-menu.html.php:9 +msgid "Help and accessibility features" +msgstr "Hilfe und Barrierefreiheit" -#: IDF/gettexttemplates/idf/issues/base.html.php:8 -msgid "Back to the issue" -msgstr "Zurück zum Ticket" +#: IDF/gettexttemplates/idf/main-menu.html.php:10 +#: 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 +msgid "Help" +msgstr "Hilfe" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" -msgstr "Letzte Änderungen" - -#: IDF/gettexttemplates/idf/project/timeline.html.php:5 #: IDF/gettexttemplates/idf/project/home.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html.php:5 msgid "Latest Updates" msgstr "Letzte Änderungen" -#: IDF/gettexttemplates/idf/project/timeline.html.php:6 -msgid "Filter by type" -msgstr "Nach Typ filtern" - #: IDF/gettexttemplates/idf/project/home.html.php:5 msgid "Featured Downloads" msgstr "Empfohlene Downloads" @@ -2911,123 +2519,1288 @@ msgstr "Administratoren" msgid "Happy Crew" msgstr "Glückliche Mannschaft" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:3 -msgid "" -"Attention! If you want to delete a specific version of your " -"software, maybe, someone is depending on this specific version to run his " -"systems. Are you sure, you will not affect anybody when removing this file?" -msgstr "" -"Achtung! Möglicherweise benötigt noch jemand diese Version " -"und kann nicht mehr darauf zugreifen, wenn sie gelöscht wird. Bist Du " -"sicher, dass niemand durch die Löschung beeinträchtigt wird?" +#: IDF/gettexttemplates/idf/project/timeline.html.php:3 +msgid "Latest updates" +msgstr "Letzte Änderungen" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html.php:6 +msgid "Filter by type" +msgstr "Nach Typ filtern" + +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 #, php-format msgid "" -"Instead of deleting the file, you could mark it as " -"deprecated." +"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 "" -"Statt die Datei zu löschen, könntest Du sie als veraltet " -"markieren." +"Hallo,\n" +"\n" +"Du hast die Anlage eines Kontos angeforder, um an dem Leben\n" +"eines Softwareprojektes teilhaben zu können.\n" +"\n" +"Um Dein Konto zu bestätigen, folge bitte dem folgenden Link:\n" +"\n" +"%%url%%\n" +"\n" +"Alternativ gehe zu dieser Seite:\n" +"\n" +"%%urlik%%\n" +"\n" +"und gib den folgenden Validierungs-Schlüssel ein:\n" +"\n" +"%%key%%\n" +"\n" +"Wenn Du nicht mehr länger an diesem Software-Projekt\n" +"interessiert bist oder wenn Du Dich nicht daran erinnern\n" +"kannst, dieses Konto erstellen zu wollen, entschuldige\n" +"und ignoriere einfach diese E-Mail.\n" +"\n" +"Mit freundlichen Grüßen,\n" +"Das Entwickler-Team.\n" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:6 -msgid "Delete File" -msgstr "Lösche Datei" +#: 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 "Oups, please check the form for errors." +msgstr "Bitte überprüfe die Maske auf Fehler." -#: IDF/gettexttemplates/idf/downloads/delete.html.php:8 -#: IDF/gettexttemplates/idf/downloads/view.html.php:13 -msgid "Uploaded:" -msgstr "Hochgeladen:" +#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 +msgid "Email:" +msgstr "E-Mail:" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:6 +msgid "Enable Your Account" +msgstr "Aktiviere Dein Konto" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 msgid "" -"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." +"This is the last step, but just be sure to have the cookies enabled to log in afterwards." msgstr "" -"Jede Datei muss einen unterscheidbaren Namen haben und Dateiinhalte\n" -"können nicht geändert werden, also stelle sicher, dass Du Versionsnummern\n" -"in jedem Dateinamen verwendest." +"Dies ist der letzte Schritt, aber bitte stelle sicher, dass Du " +"Cookies aktiviert hast, um Dich im folgenden anzumelden." -#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 +#: IDF/gettexttemplates/idf/register/index.html.php:3 +msgid "" +"Read the terms and conditions " +"– basically \"Please be nice, we respect you\"." +msgstr "" +"Lies die Geschäftsbedingungen " +"– kurz zusammengefast \"Bitte sei nett, wir respektieren Dich\"." + +#: IDF/gettexttemplates/idf/register/index.html.php:4 #, php-format msgid "" -"You can use the Markdown syntax for the description." +"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 "" -"Du kannst die Markdown-Syntax für die Beschreibung " -"nutzen." +"Durch Dein Konto 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/downloads/submit.html.php:7 -msgid "The form contains some errors. Please correct them to submit the file." +#: IDF/gettexttemplates/idf/register/index.html.php:5 +msgid "Oups, please check the provided login and email address to register." msgstr "" -"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Datei " -"einzusenden." +"Bitte überprüfe den angegebenen Anmeldenamen und die E-Mail-Adresse zum " +"registrieren." -#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 -msgid "Submit File" -msgstr "Datei einsenden" +#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:88 +msgid "Create Your Account" +msgstr "Erstelle Deinen Account" -#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3 -msgid "Details" -msgstr "Details" - -#: IDF/gettexttemplates/idf/downloads/index.html.php:3 -#, php-format -msgid "See the deprecated files." -msgstr "Zeige die veralteten Dateien." - -#: IDF/gettexttemplates/idf/downloads/index.html.php:4 -#: IDF/gettexttemplates/idf/downloads/base.html.php:4 -#: IDF/Views/Download.php:216 -msgid "New Download" -msgstr "Neuer Download" - -#: IDF/gettexttemplates/idf/downloads/index.html.php:5 -msgid "Number of files:" -msgstr "Anzahl der Dateien:" - -#: IDF/gettexttemplates/idf/downloads/view.html.php:3 +#: IDF/gettexttemplates/idf/register/index.html.php:8 msgid "" -"Attention! This file is marked as deprecated, download it " -"only if you are sure you need this specific version." +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." msgstr "" -"Achtung! Diese Datei ist als veraltet markiert. Lade sie " -"nur herunter, falls Du genau diese Version benötigst." +"Bitte gib eine gültige E-Mail-Adresse an, da wir einen Bestätigungs-Link an " +"diese Adresse versenden." -#: IDF/gettexttemplates/idf/downloads/view.html.php:5 -msgid "Changes" -msgstr "Änderungen" +#: IDF/gettexttemplates/idf/register/index.html.php:9 +msgid "Did you know?" +msgstr "Wusstest Du?" -#: IDF/gettexttemplates/idf/downloads/view.html.php:6 -msgid "The form contains some errors. Please correct them to update the file." +#: 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 "Oups, we found an error in the form." +msgstr "Wir haben einen Fehler in der Maske gefunden." + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:4 +msgid "Confirm Your Account" +msgstr "Bestätige Dein Konto" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:7 +msgid "" +"Use your email software to read your emails and open your confirmation " +"email. Either click directly on the confirmation link or copy/paste the " +"confirmation key in the box and submit the form." msgstr "" -"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Datei " +"Benutze Deine E-Mail-Software, um Deine E-Mails zu lesen und öffne die " +"Bestätigungs-E-Mail. Klicke dann entweder direkt auf den Bestätigungs-Link " +"oder kopiere den Bestätigungsschlüssel direkt in das Eingabefeld hinein und " +"sende das Formular ab." + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:8 +msgid "" +"Just after providing the confirmation key, you will be able to set your " +"password and start using this website fully." +msgstr "" +"Direkt nachdem Du den Bestätigungsschlüssel angegeben hast, bist Du in der " +"Lage, Dein Passwort zu setzen und diese Webseite voll zu nutzen." + +#: IDF/gettexttemplates/idf/review/base-full.html.php:3 +#: IDF/gettexttemplates/idf/review/base.html.php:3 +msgid "Open Reviews" +msgstr "Offene Code-Besprechungen" + +#: IDF/gettexttemplates/idf/review/base.html.php:4 +#: IDF/gettexttemplates/idf/review/create.html.php:11 +#: IDF/gettexttemplates/idf/review/index.html.php:3 IDF/Views/Review.php:83 +msgid "Start Code Review" +msgstr "Neue Code-Besprechung starten" + +#: IDF/gettexttemplates/idf/review/create.html.php:3 +msgid "" +"

    To start a code review, you need to provide:

    \n" +"
      \n" +"
    • A commit or revision of the current code in the repository from which " +"you started your work.
    • \n" +"
    • A patch describing your changes with respect to the reference commit.\n" +"
    • Ensure your patch does not contain any passwords or confidential " +"information!
    • \n" +"
    " +msgstr "" +"

    Wenn Du eine Code-Besprechung erstellst, musst Du folgende Angaben machen:" +"

    \n" +"
      \n" +"
    • Eine Revision Deines derzeitigen Codes im Depot, von der aus Du Deine " +"Arbeit begonnen hast.
    • \n" +"
    • Ein Patch, welches die Änderungen ausgehend von der Referenz-Revision " +"beschreibt.
    • \n" +"
    • Füge dem Patch keine Passwörter oder vertraulichen Angaben hinzu!" +"
    • \n" +"
    " + +#: IDF/gettexttemplates/idf/review/create.html.php:9 +msgid "" +"The form contains some errors. Please correct them to submit the code review." +msgstr "" +"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Code-" +"Besprechung einzusenden." + +#: IDF/gettexttemplates/idf/review/create.html.php:10 +msgid "" +"Select the commit against which you created your patch to be sure it applies " +"correctly." +msgstr "" +"Wähle die Revision aus, gegen welche Du Dein Patch erstellt hast und stelle " +"sicher, dass das Patch auf diese Revision korrekt angewandt werden kann." + +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:3 +msgid "The following review has been created:" +msgstr "Die folgende Code-Besprechung wurde erstellt:" + +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:16 +msgid "Review:" +msgstr "Code-Besprechung:" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3 +msgid "The following review has been updated:" +msgstr "Die folgende Code-Besprechung wurde aktualisiert:" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5 +#, php-format +msgid "" +"By %%who%%, %%c.creation_dtime%%, on file:\n" +"%%c.cfile%%\n" +msgstr "" +"Von %%who%%, %%c.creation_dtime%%, für Datei:\n" +"%%c.cfile%%\n" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:14 +msgid "General comments (last first):" +msgstr "Allgemeine Kommentare (neueste zuerst):" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15 +msgid "Detailed file comments (last first):" +msgstr "Detaillierte Dateikommentare (neueste zuerst):" + +#: IDF/gettexttemplates/idf/review/view.html.php:3 +#: 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" +"different people discuss the code changes. The goal is\n" +"to improve the quality of the code and the\n" +"contributions, as such, you must be pragmatic when writing\n" +"your review. Correctly mention the line numbers (in the old or in the\n" +"new file) and try to keep a good balance between seriousness and fun.\n" +msgstr "" +"Eine Code-Besprechung ist ein Prozess, in welchem bevor oder nachdem\n" +"Änderungen in das Quellcode-Depot eingepflegt wurden, verschiedene\n" +"Personen über diese Änderungen diskutieren. Das Ziel ist die\n" +"Qualität des Codes und des Beitrages zu verbessern,\n" +"und deshalb solltest Du beim Schreiben Deiner Code-Besprechung pragmatisch\n" +"sein. Benenne die korrekten Zeilennummern für Deine Kommentare (in der\n" +"alten oder der neuen Datei) und versuche, eine gute Balance zwischen\n" +"Ernsthaftigkeit und Spass zu bewahren.\n" + +#: IDF/gettexttemplates/idf/review/view.html.php: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 "" +"\n" +"Eine Code-Besprechung kann einschüchternd wirken.\n" +"Du als Rezensent weißt, dass Du Kritik erhalten wirst, deshalb\n" +"versuche, dem Prozess nicht den Spass zu nehmen, sondern\n" +"nutze ihn, um Deinen Aspiranten Deine Coding-Standards und die Struktur\n" +"Deines Codes zu lehren und bring sie dazu, mehr beizutragen.\n" + +#: IDF/gettexttemplates/idf/review/view.html.php:20 +#, php-format +msgid "" +"Comment %%i%% by %%who%%, " +"%%c.creation_dtime%%" +msgstr "" +"Kommentar %%i%% von %%who%%, %%c.creation_dtime%%" + +#: IDF/gettexttemplates/idf/review/view.html.php:21 +#, php-format +msgid "Your comments on the changes in file %%file%%:" +msgstr "Deine Kommentare der Änderungen in der Datei %%file%%:" + +#: IDF/gettexttemplates/idf/review/view.html.php:23 +#, php-format +msgid "Sign in to participate in the review." +msgstr "" +"Melde Dich an, um an der Code-Besprechung " +"teilzunehmen." + +#: IDF/gettexttemplates/idf/review/view.html.php:24 +msgid "" +"The form contains some errors. Please correct them to submit your review." +msgstr "" +"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Code-" +"Besprechung einzusenden." + +#: IDF/gettexttemplates/idf/review/view.html.php:27 +#: 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 +msgid "Commit:" +msgstr "Revision" + +#: IDF/gettexttemplates/idf/review/view.html.php:29 +#: 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 +msgid "Download the corresponding diff file" +msgstr "Dazugehörige Unterschiedsdatei herunterladen" + +#: IDF/gettexttemplates/idf/review/view.html.php:36 +msgid "How to Participate in a Code Review" +msgstr "Wie man an einer Code-Besprechung teilnimmt" + +#: 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 +msgid "Submit Code Review" +msgstr "Code-Besprechung einsenden" + +#: IDF/gettexttemplates/idf/source/base.html.php:3 +msgid "Source Tree" +msgstr "Quellcode-Baum" + +#: IDF/gettexttemplates/idf/source/base.html.php:4 +msgid "Change Log" +msgstr "Änderungsliste" + +#: IDF/gettexttemplates/idf/source/base.html.php:6 +msgid "How To Get The Code" +msgstr "Wie man den Code bekommt" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:3 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/Views/Project.php:152 +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 +msgid "Message" +msgstr "Logmeldung" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:5 +msgid "Parent:" +msgstr "Eltern:" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:6 +#: IDF/gettexttemplates/idf/source/commit.html.php:10 +msgid "View corresponding commit" +msgstr "Zeige dazugehörige Revision" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:8 +msgid "by" +msgstr "von" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:3 +msgid "A new commit has been created:" +msgstr "Eine neue Revision wurde erzeigt:" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:6 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:8 +msgid "Created by:" +msgstr "Erstellt von:" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8 +msgid "Created at:" +msgstr "Erstellt am:" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9 +#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:8 +msgid "Content:" +msgstr "Inhalt:" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10 +msgid "Commit details:" +msgstr "Revision-Details:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:4 +msgid "Date:" +msgstr "Datum:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:6 +msgid "Branch:" +msgstr "Zweig:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:9 +msgid "Parents:" +msgstr "Eltern:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:11 +msgid "Message:" +msgstr "Logmeldung:" + +#: 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 +msgid "deleted" +msgstr "gelöscht" + +#: IDF/gettexttemplates/idf/source/commit.html.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.php:17 +msgid "full" +msgstr "voll" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +msgid "renamed" +msgstr "umbenannt" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +msgid "added" +msgstr "hinzugefügt" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +msgid "modified" +msgstr "verändert" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +msgid "properies changed" +msgstr "Eigenschaften geändert" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +msgid "removed" +msgstr "entfernt" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +msgid "File differences" +msgstr "Dateiunterschiede" + +#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:3 +#, php-format +msgid "" +"The revision identifier %%commit%% is ambiguous and can be\n" +"expanded to multiple valid revisions - please choose one:" +msgstr "" +"Die Revisionskennung %%commit%% ist mehrdeutig und kann\n" +"zu mehreren gültigen Revisionen erweitert werden - bitte wähle eine:" + +#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:5 +msgid "Title" +msgstr "Titel" + +#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:6 +msgid "Author" +msgstr "Autor" + +#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:7 +msgid "Date" +msgstr "Datum" + +#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:8 +msgid "Branch" +msgstr "Zweig" + +#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:9 +msgid "Revision" +msgstr "Revision" + +#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 +#, php-format +msgid "%%cproject.name%%: Commit %%c.scm_id%%" +msgstr "%%cproject.name%%: Revision %%c.scm_id%%" + +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:3 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3 +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:3 +msgid "Branches" +msgstr "Zweige" + +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:4 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:4 +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:4 +msgid "filter branches" +msgstr "Zweige filtern" + +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:5 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:5 +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:5 +msgid "Tags" +msgstr "Marken" + +#: 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 "Marken filtern" + +#: IDF/gettexttemplates/idf/source/git/file.html.php:3 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:3 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:3 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:3 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php: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 "" +"Source at commit %%commit%% created " +"%%cobject.date%%." +msgstr "" +"Quellcode bei Revision %%commit%% " +"erzeugt am %%cobject.date%%." + +#: IDF/gettexttemplates/idf/source/git/file.html.php:4 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:4 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:4 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:4 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php: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 "By %%cobject.author%%, %%cobject.title%%" +msgstr "Von %%cobject.author%%, %%cobject.title%%" + +#: IDF/gettexttemplates/idf/source/git/file.html.php:5 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:5 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:5 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:5 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php: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 +msgid "Root" +msgstr "Wurzel" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the git software to manage the source\n" +"code." +msgstr "" +"Das Team von %%project%% nutzt git\n" +"als Software zur Versionsverwaltung." + +#: IDF/gettexttemplates/idf/source/git/help.html.php:6 +#, php-format +msgid "" +"You may need to provide your SSH key. The " +"synchronization of your SSH key can take a couple of minutes. You can learn " +"more about SSH key authentification." +msgstr "" +"Eventuell musst Du Deinen SSH-Schlüssel hochladen. " +"Die Synchronizierung Deines SSH-Schlüssels kann einige Minuten dauern. Du " +"kannst hier mehr über SSH-Schlüssel-Authentifizierung erfahren." + +#: IDF/gettexttemplates/idf/source/git/help.html.php:7 +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6 +msgid "To make a first commit in the repository, perform the following steps:" +msgstr "" +"Um eine erste Revision ins Depot einzupflegen, führe die folgenden Schritte " +"aus:" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7 +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:7 +#, php-format +msgid "Find here more details on how to access %%project%% source code." +msgstr "" +"Hier findest Du mehr Information, wie Du auf den Quellcode von %%project%% " +"zugreifst." + +#: IDF/gettexttemplates/idf/source/git/help.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8 +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:8 +msgid "Command-Line Access" +msgstr "Zugriff über die Kommandozeile" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:10 +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9 +msgid "First Commit" +msgstr "Erste Revision" + +#: IDF/gettexttemplates/idf/source/git/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10 +#: IDF/Views/Download.php:66 IDF/Views/Download.php:294 +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 +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 +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 +msgid "or" +msgstr "oder" + +#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:3 +#, php-format +msgid "" +"The branch or revision %%commit%% is not valid or does not exist\n" +"in this repository." +msgstr "" +"Der Zweig oder die Revision %%commit%% ist ungültig oder existiert nicht\n" +"in diesem Depot." + +#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5 +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 +#, php-format +msgid "" +"If this is a new repository, the reason for this error\n" +"could be that you have not committed and / or pushed any change so far.\n" +"In this case please take a look at the Help page\n" +"how to access your repository." +msgstr "" +"Falls dies ein neues Depot ist, könnte der Grund für diesen Fehler sein,\n" +"dass Du bislang noch keine Änderungen eingepflegt oder zum Server " +"übertragen\n" +"hast. In diesem Fall sieh bitte auf der Hilfe-Seite\n" +"nach, wie Du auf Dein Depot zugreifen kannst." + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the Mercurial software to manage the source\n" +"code." +msgstr "" +"Das Team von %%project%% nutzt Mercurial\n" +"als Software zur Versionsverwaltung." + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:6 +#, php-format +msgid "" +"To get write access to the repository, you need to use your username and " +"your extra password." +msgstr "" +"Um Schreibberechtigungen auf das Depot zu erhalten, benötigst Du Deinen " +"Anmeldenamen und Dein zusätzliches Passwort." + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:9 +msgid "Write Access Authentication" +msgstr "Authentifizierung für Schreibberechtigung" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the monotone software to manage the source\n" +"code." +msgstr "" +"Das Team von %%project%% nutzt monotone\n" +"als Software zur Versionsverwaltung." + +#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3 +#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15 +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 +msgid "Go to revision" +msgstr "Zu Revision gehen:" + +#: 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 "setzen auf:" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the subversion software to manage the source\n" +"code." +msgstr "" +"Das Team von %%project%% nutzt subversion\n" +"als Software zur Versionsverwaltung." + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8 +msgid "Rev" +msgstr "Revision" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17 +msgid "Branches:" +msgstr "Zweige:" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18 +msgid "Tags:" +msgstr "Marken:" + +#: IDF/gettexttemplates/idf/user/changeemail-email.txt.php:3 +#, php-format +msgid "" +"Hello %%user%%,\n" +"\n" +"To confirm that you want %%email%%\n" +"to be your new email address, just follow this link:\n" +"\n" +"%%url%%\n" +"\n" +"Alternatively, go to this page:\n" +"\n" +"%%urlik%%\n" +"\n" +"and provide the following verification key:\n" +"\n" +"%%key%%\n" +"\n" +"If you do not want to change your email address, \n" +"just ignore this message.\n" +"\n" +"Yours faithfully,\n" +"The development team.\n" +msgstr "" +"Hallo %%user%%,\n" +"\n" +"Um zu bestätigen, dass %%email%% Deine neue E-Mail-Adresse\n" +"sein soll, folge bitte einfach diesem Link:\n" +"\n" +"%%url%%\n" +"\n" +"Alternativ gehe zu dieser Seite:\n" +"\n" +"%%urlik%%\n" +"\n" +"und gib den folgenden Validierungs-Schlüssel ein:\n" +"\n" +"%%key%%\n" +"\n" +"Wenn Du Deine E-Mail-Adresse nicht ändern möchtest,\n" +"ignoriere diese E-Mail einfach.\n" +"\n" +"Mit freundlichen Grüßen,\n" +"Das Entwickler-Team.\n" + +#: IDF/gettexttemplates/idf/user/changeemail.html.php:4 +msgid "Confirm Your New Email Address" +msgstr "Bestätige deine neue Email-Adresse" + +#: IDF/gettexttemplates/idf/user/changeemail.html.php:7 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:7 +msgid "" +"Use your email software to read your emails and open your verification " +"email. Either click directly on the verification link or copy/paste the " +"verification key in the box and submit the form." +msgstr "" +"Benutze Deine E-Mail-Software um Deine E-Mails zu lesen und Deine " +"Validierungs-E-Mail zu öffnen. Klicke dann entweder direkt auf den " +"Validierungs-Link oder kopiere den Validierungsschlüssel aus der E-Mail in " +"das Eingabefeld und sende das Formular ab." + +#: IDF/gettexttemplates/idf/user/dashboard.html.php:3 +#, php-format +msgid "Update your account." +msgstr "Aktualisiere Dein Konto." + +#: IDF/gettexttemplates/idf/user/dashboard.html.php:4 +#, php-format +msgid "See your public profile." +msgstr "Zeige Dein öffentliches Profil." + +#: IDF/gettexttemplates/idf/user/dashboard.html.php:5 +#, php-format +msgid "See your forge issue watch list." +msgstr "" +"Zeige Deine Forge-weite Ticket-Beobachtungliste." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:6 +msgid "Key Management" +msgstr "Schlüsselverwaltung" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:7 +msgid "Extra password" +msgstr "Extra-Passwort" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +msgid "" +"This password is used to access some of the external systems managed by our " +"infrastructure. It will be regenerated if you change your password." +msgstr "" +"Dieses Passwort wird genutzt, um auf einige externe Systeme unserer " +"Infrastruktur zuzugreifen. Es wird neu erzeugt, wenn Du Dein Passwort " +"änderst." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 +msgid "API key" +msgstr "API-Schlüssel" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "" +"Dein API-Schlüssel wird automatisch neu erzeugt, wenn Du Dein Passwort " +"änderst." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "Update Your Account" +msgstr "Aktualisiere Deinen Account" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +msgid "Your Current Public Keys" +msgstr "Deine derzeitigen öffentlichen Schlüssel" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Delete this key" +msgstr "Lösche diesen Schlüssel" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +msgid "" +"If possible, use your real name. By using your real name, people will have " +"more trust in your comments and remarks." +msgstr "" +"Wenn möglich, nutze Deinen realen Namen. Dadurch wird deinen Kommentaren und " +"Bemerkungen mehr Vertrauen geschenkt." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 +msgid "" +"The extra password is used to access some of the external systems and the " +"API key is used to interact with this website using a program." +msgstr "" +"Das Extra-Passwort wird genutzt, um auf einige externe Systeme zuzugreifen. " +"Der API-Schlüssel wird benötigt, damit andere Programme mit dieser Webseite " +"interagieren können." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 +msgid "Show API key and extra password" +msgstr "Zeige API-Schlüssel und Extra-Passwort" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 +msgid "" +"Oups, please check the provided login or email address to recover your " +"password." +msgstr "" +"Bitte überprüfe den angegebenen Anmeldenamen oder E-Mail-Adresse, um Dein " +"Passwort zurückzusetzen." + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4 +msgid "Recover My Password" +msgstr "Mein Passwort wiederherstellen" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6 +msgid "" +"Provide either your login or email address, if a corresponding user is found " +"in the database, we will send you an email with the details on how to reset " +"your password." +msgstr "" +"Gib entweder Deinen Anmeldenamen oder Deine E-Mail-Adresse an. Wenn ein " +"entsprechender Benutzer in der Datenbank gefunden wird, schicken wir Dir " +"eine E-Mail mit Informationen, wie Du Dein Passwort zurücksetzen kannst." + +#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3 +#, php-format +msgid "" +"Hello %%user%%,\n" +"\n" +"You lost your password and wanted to recover it.\n" +"To provide a new password for your account, you\n" +"just have to follow the provided link. You will\n" +"get a simple form to provide a new password.\n" +"\n" +"%%url%%\n" +"\n" +"Alternatively, go to this page:\n" +"\n" +"%%urlik%%\n" +"\n" +"and provide the following verification key:\n" +"\n" +"%%key%%\n" +"\n" +"If you are not the one who requested to reset\n" +"your password, simply ignore this email, your\n" +"password will not be changed.\n" +"\n" +"Yours faithfully,\n" +"The development team.\n" +msgstr "" +"Hallo %%user%%,\n" +"\n" +"Du hast Dein Passwort verloren und möchtest es wiederherstellen.\n" +"Um ein neues Passwort für Dein Konto anzugeben, musst Du lediglich\n" +"dem folgenden Link folgen. Sie führt zu einer einfachen Eingabemaske,\n" +"mit der Du ein neues Passwort setzen kannst.\n" +"\n" +"%%url%%\n" +"\n" +"Alternativ gehe zu dieser Seite:\n" +"\n" +"%%urlik%%\n" +"\n" +"und gib den folgenden Validierungs-Schlüssel ein:\n" +"\n" +"%%key%%\n" +"\n" +"Wenn Du nicht derjenige bist, der das Zurücksetzen des Passworts\n" +"angefragt hat, ignoriere einfach diese E-Mail. Dein Passwort wird\n" +"in diesem Fall nicht geändert.\n" +"\n" +"Mit freundlichen Grüßen,\n" +"Das Entwickler-Team.\n" + +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4 +msgid "Recover Your Password" +msgstr "Passwort wiederherstellen" + +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:8 +msgid "" +"Just after providing the confirmation key, you will be able to reset your " +"password and use again this website fully." +msgstr "" +"Kurz nachdem Du den Bestätigungscode eingegeben hast, wirst Du Dein Passwort " +"zurücksetzen und diese Webseite wieder voll nutzen können." + +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 +msgid "Reset Your Password" +msgstr "Passwort zurücksetzen" + +#: IDF/gettexttemplates/idf/user/public.html.php:3 +#, php-format +msgid "You are looking at the public profile of %%member%%." +msgstr "Du siehst Dir das öffentliche Profil von %%member%% an." + +#: IDF/gettexttemplates/idf/user/public.html.php:5 +msgid "Twitter:" +msgstr "Twitter:" + +#: IDF/gettexttemplates/idf/user/public.html.php:6 +msgid "Public Email:" +msgstr "Öffentliche E-Mail:" + +#: IDF/gettexttemplates/idf/user/public.html.php:7 +msgid "Website:" +msgstr "Webseite:" + +#: IDF/gettexttemplates/idf/user/public.html.php:8 +msgid "Last time seen:" +msgstr "Zuletzt gesehen:" + +#: IDF/gettexttemplates/idf/user/public.html.php:9 +msgid "Member since:" +msgstr "Mitglied seit:" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:3 +msgid "List Pages" +msgstr "Seiten anzeigen" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:4 +#: IDF/gettexttemplates/idf/wiki/index.html.php:4 +#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:175 +msgid "New Page" +msgstr "Neue Seite" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:5 +msgid "Update This Page" +msgstr "Diese Seite aktualisieren" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:3 +#: IDF/gettexttemplates/idf/wiki/update.html.php:3 +msgid "Preview of the Page" +msgstr "Vorschau der Seite" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:4 +msgid "The form contains some errors. Please correct them to create the page." +msgstr "" +"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Seite " +"anzulegen." + +#: IDF/gettexttemplates/idf/wiki/create.html.php:6 +msgid "Create Page" +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" +"%%page.title%%. This revision was created\n" +"by %%submitter%%." +msgstr "" +"Du schaust Dir gerade eine alte Version (%%oldrev.summary%%) der " +"Seite \n" +"%%page.title%% an. Diese Version wurde von\n" +"%%submitter%% angelegt." + +#: IDF/gettexttemplates/idf/wiki/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 "" +"Wenn Du diese alte Version löscht, wird sie von der Datenbank entfernt und " +"kann nicht wiederhergestellt werden." + +#: IDF/gettexttemplates/idf/wiki/delete.html.php:9 +msgid "Delete Revision" +msgstr "Version löschen" + +#: 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 "Alte Versionen" + +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:3 +msgid "" +"If you delete this documentation page, it will be removed from the database " +"with all the associated revisions and you will not be able to " +"recover it." +msgstr "" +"Wenn Du diese Dokumentations-Seite löscht, wird sie mit all ihren Versionen " +"aus der Datenbank gelöscht und Du wirst nicht in der Lage sein, sie " +"wiederherzustellen." + +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:6 +msgid "Delete Page" +msgstr "Lösche Seite" + +#: IDF/gettexttemplates/idf/wiki/edit-info.html.php:3 +#, php-format +msgid "" +"\n" +"

    Instructions:

    \n" +"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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 "" +"\n" +"

    Anleitung:

    \n" +"

    Für den Inhalt der Seite kann die Markdown-Syntax mit der Extra-Erweiterung verwendet " +"werden.

    \n" +"

    Website-Adresses werden automatisch verlinkt und Du kannst außerdem zu " +"anderen Dokumentations-Seiten durch die Benutzung von doppelten, eckige " +"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" + +#: IDF/gettexttemplates/idf/wiki/index.html.php:3 +#, php-format +msgid "See the deprecated pages." +msgstr "Zeige die veralteten Seiten." + +#: IDF/gettexttemplates/idf/wiki/index.html.php:5 +msgid "Number of pages:" +msgstr "Anzahl der Seiten:" + +#: IDF/gettexttemplates/idf/wiki/search.html.php:4 +msgid "Pages found:" +msgstr "Gefundene Seiten:" + +#: IDF/gettexttemplates/idf/wiki/update.html.php:4 +msgid "The form contains some errors. Please correct them to update the page." +msgstr "" +"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Seite " "zu aktualisieren." -#: IDF/gettexttemplates/idf/downloads/view.html.php:7 -msgid "Update File" -msgstr "Datei aktualisieren" +#: IDF/gettexttemplates/idf/wiki/update.html.php:6 +msgid "Update Page" +msgstr "Seite aktualisieren" -#: IDF/gettexttemplates/idf/downloads/view.html.php:9 -#: IDF/gettexttemplates/idf/downloads/view.html.php:11 -msgid "Remove this file" -msgstr "Entferne diese Datei" +#: 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 "Lösche diese Seite" -#: IDF/gettexttemplates/idf/downloads/view.html.php:12 -msgid "Delete this file" -msgstr "Lösche diese Datei" +#: 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 "" +"Achtung! Diese Seite ist als veraltet markiert. Nutze sie " +"nur als Referenz, wenn Du diese spezifischen Informationen benötigst." -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3 -msgid "A new file is available for download:" -msgstr "Eine neue Datei ist bereit zum Herunterladen:" +#: IDF/gettexttemplates/idf/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 "" +"Du siehst gerade eine alte Version der Seite \n" +"%%page.title%%. Diese Version wurde\n" +"von %%submitter%% erzeugt." -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6 -msgid "Submitted by:" -msgstr "Eingesandt von:" +#: IDF/gettexttemplates/idf/wiki/view.html.php:10 +msgid "Table of Content" +msgstr "Inhaltsverzeichnis" -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8 -msgid "Download:" -msgstr "Download:" +#: IDF/gettexttemplates/idf/wiki/view.html.php:11 +#: IDF/gettexttemplates/idf/wiki/view.html.php:13 +msgid "Delete this revision" +msgstr "Lösche diese Version" + +#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3 +msgid "A new documentation page has been created:" +msgstr "Eine neue Dokumentations-Seite wurde angelegt:" + +#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14 +msgid "Documentation page:" +msgstr "Dokumentations-Seite:" + +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3 +msgid "The following documentation page has been updated:" +msgstr "Die folgende Dokumentations-Seite wurde aktualisiert:" + +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7 +msgid "Updated by:" +msgstr "Aktualisiert von:" + +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13 +msgid "New content:" +msgstr "Neuer Inhalt:" + +#: IDF/Issue.php:76 +msgid "owner" +msgstr "Besitzer" + +#: IDF/Issue.php:84 IDF/WikiPage.php:86 +msgid "interested users" +msgstr "interessierte Benutzer" + +#: IDF/Issue.php:85 +msgid "" +"Interested users will get an email notification when the issue is changed." +msgstr "" +"Interessierte Benutzer werden eine E-Mail erhalten, wenn das Ticket geändert " +"wird." + +#: IDF/Issue.php:92 IDF/Review.php:95 IDF/Upload.php:93 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 +msgid "modification date" +msgstr "Änderungsdatum" + +#: IDF/Issue.php:194 IDF/IssueComment.php:143 +#, php-format +msgid "" +"Issue %3$d, %4$s" +msgstr "" +"Ticket %3$d, " +"%4$s" + +#: IDF/Issue.php:196 +#, php-format +msgid "Creation of issue %d, by %s" +msgstr "Erstellung von Ticket %d, von %s" + +#: IDF/Issue.php:206 +#, php-format +msgid "%s: Issue %d created - %s" +msgstr "%s: Ticket %d angelegt - %s" + +#: IDF/Issue.php:272 +#, php-format +msgid "Issue %s - %s (%s)" +msgstr "Ticket %s - %s (%s)" + +#: IDF/Issue.php:318 +#, php-format +msgid "Updated Issue %s - %s (%s)" +msgstr "Ticket %s aktualisiert - %s (%s)" + +#: IDF/IssueComment.php:51 +msgid "issue" +msgstr "Ticket" + +#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62 +#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69 +msgid "comment" +msgstr "Kommentar" + +#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63 +#: IDF/WikiRevision.php:85 +msgid "changes" +msgstr "Änderungen" + +#: IDF/IssueComment.php:73 +msgid "Serialized array of the changes in the issue." +msgstr "Serialisierte Liste von Änderungen im Ticket" + +#: IDF/IssueComment.php:171 +#, php-format +msgid "Comment on issue %d, by %s" +msgstr "Kommentar zum Ticket %d, von %s" + +#: IDF/IssueComment.php:182 +#, php-format +msgid "%s: Comment on issue %d - %s" +msgstr "%s: Kommentar zum Ticket %d - %s" #: IDF/IssueFile.php:64 msgid "file name" @@ -3053,6 +3826,151 @@ msgstr "Bild" msgid "Other" msgstr "Andere" +#: IDF/Key.php:49 +msgid "user" +msgstr "Benutzer" + +#: IDF/Key.php:55 +msgid "public key" +msgstr "öffentlicher Schlüssel" + +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." +msgstr "Ungültige oder unbekannte Schlüsseldaten bemerkt." + +#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81 +#, php-format +msgid "The repository %s already exists." +msgstr "Das Depot %s existiert bereits." + +#: IDF/Plugin/SyncMercurial.php:142 +#, php-format +msgid "%s does not exist or is not writable." +msgstr "%s existiert nicht oder ist nicht schreibbar." + +#: IDF/Plugin/SyncMonotone.php:86 IDF/Plugin/SyncMonotone.php:457 +#: IDF/Plugin/SyncMonotone.php:783 +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 +#, php-format +msgid "The project path %s does not exists." +msgstr "Der Projektpfad %s existiert nicht." + +#: IDF/Plugin/SyncMonotone.php:808 +#, php-format +msgid "The command \"%s\" could not be executed." +msgstr "Das Kommando \"%s\" konnte nicht ausgeführt werden." + #: IDF/Project.php:62 IDF/Tag.php:66 msgid "name" msgstr "Name" @@ -3073,11 +3991,6 @@ msgstr "" msgid "short description" msgstr "Kurzbeschreibung" -#: IDF/Project.php:79 IDF/Form/Admin/ProjectCreate.php:70 -#: IDF/Form/Admin/ProjectUpdate.php:51 -msgid "A one line description of the project." -msgstr "Einzeilige Beschreibung des Projektes." - #: IDF/Project.php:86 IDF/Review/Patch.php:74 msgid "description" msgstr "Beschreibung" @@ -3097,6 +4010,90 @@ msgstr "privat" msgid "Project \"%s\" not found." msgstr "Projekt \"%s\" nicht gefunden." +#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80 +msgid "patch" +msgstr "Patch" + +#: IDF/Review/Comment.php:83 +msgid "vote" +msgstr "abstimmen" + +#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151 +#, php-format +msgid "" +"Review %3$d, %4$s" +msgstr "" +"Code-" +"Besprechung %3$d, %4$s" + +#: IDF/Review/Comment.php:141 +#, php-format +msgid "Update of review %d, by %s" +msgstr "" +"Aktualisierung von Code-Besprechung %d, " +"von %s" + +#: IDF/Review/Comment.php:151 +#, php-format +msgid "%s: Updated review %d - %s" +msgstr "%s: Aktualisierte Code-Besprechung %d - %s" + +#: IDF/Review/Comment.php:216 +#, php-format +msgid "Updated Code Review %s - %s (%s)" +msgstr "Aktualisierte Code-Besprechung %s - %s (%s)" + +#: IDF/Review/Patch.php:52 +msgid "review" +msgstr "Code-Besprechung" + +#: IDF/Review/Patch.php:67 +msgid "commit" +msgstr "Revision" + +#: IDF/Review/Patch.php:153 +#, php-format +msgid "Creation of review %d, by %s" +msgstr "" +"Erzeugung von Code-Besprechung %d, von " +"%s" + +#: IDF/Review/Patch.php:163 +#, php-format +msgid "%s: Creation of Review %d - %s" +msgstr "%s: Erstellung von Code-Besprechung %d -%s" + +#: IDF/Review/Patch.php:204 +#, php-format +msgid "New Code Review %s - %s (%s)" +msgstr "Neue Code-Besprechung %s - %s (%s)" + +#: IDF/Scm/Git.php:183 +#, php-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." + +#: IDF/Scm/Git.php:234 IDF/Scm/Mercurial.php:140 +#, 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:352 IDF/Scm/Mercurial.php:157 +#, php-format +msgid "Not a valid tree: %s." +msgstr "Kein gültiger Quellcode-Baum: %s." + +#: IDF/Scm/Monotone/Stdio.php:79 +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 +#, php-format +msgid "Could not write client key \"%s\"" +msgstr "Konnte Client-Schlüssel \"%s\" nicht schreiben." + #: IDF/Search/Occ.php:33 msgid "occurence" msgstr "Vorkommen" @@ -3113,555 +4110,73 @@ msgstr "Vorkommen" msgid "ponderated occurence" msgstr "gewichtete Vorkommen" -#: IDF/Issue.php:76 -msgid "owner" -msgstr "Besitzer" +#: IDF/Tag.php:59 +msgid "tag class" +msgstr "Tag-Klasse" -#: IDF/Issue.php:84 IDF/WikiPage.php:86 -msgid "interested users" -msgstr "interessierte Benutzer" +#: IDF/Tag.php:60 +msgid "The class of the tag." +msgstr "Die Klasse des Tags." -#: IDF/Issue.php:85 -msgid "" -"Interested users will get an email notification when the issue is changed." -msgstr "" -"Interessierte Benutzer werden eine E-Mail erhalten, wenn das Ticket geändert " -"wird." +#: IDF/Tag.php:73 +msgid "lcname" +msgstr "Kleingeschriebener Name" -#: IDF/Issue.php:196 +#: IDF/Tag.php:74 +msgid "Lower case version of the name for fast searching." +msgstr "Kleingeschriebene Version des Namens zur schnelleren Suche." + +#: IDF/Template/Markdown.php:74 +msgid "Create this documentation page" +msgstr "Erstelle diese Dokumentations-Seite" + +#: IDF/Template/ShowUser.php:51 +msgid "Anonymous" +msgstr "Anonym" + +#: IDF/Template/ShowUser.php:54 +msgid "Me" +msgstr "mir" + +#: IDF/Timeline/Paginator.php:49 +msgid "Today" +msgstr "Heute" + +#: IDF/Upload.php:70 +msgid "file" +msgstr "Datei" + +#: IDF/Upload.php:71 +msgid "The path is relative to the upload path." +msgstr "Der Pfad ist relativ zum Upload-Pfad." + +#: IDF/Upload.php:78 +msgid "file size in bytes" +msgstr "Dateigröße in Bytes" + +#: IDF/Upload.php:100 +msgid "number of downloads" +msgstr "Anzahl der Downloads" + +#: IDF/Upload.php:189 #, php-format -msgid "Creation of issue %d, by %s" -msgstr "Erstellung von Ticket %d, von %s" +msgid "Download %2$d, %3$s" +msgstr "Download %2$d, %3$s" -#: IDF/Issue.php:206 +#: IDF/Upload.php:192 #, php-format -msgid "%s: Issue %d created - %s" -msgstr "%s: Ticket %d angelegt - %s" +msgid "Addition of download %d, by %s" +msgstr "Hinzufügen von Download %d, von %s" -#: IDF/Issue.php:272 +#: IDF/Upload.php:202 #, php-format -msgid "Issue %s - %s (%s)" -msgstr "Ticket %s - %s (%s)" +msgid "%s: Download %d added - %s" +msgstr "%s: Download %d hinzugefügt - %s" -#: IDF/Issue.php:318 +#: IDF/Upload.php:244 #, php-format -msgid "Updated Issue %s - %s (%s)" -msgstr "Ticket %s aktualisiert - %s (%s)" - -#: IDF/Views/Wiki.php:41 -#, php-format -msgid "%s Documentation" -msgstr "%s Dokumentation" - -#: IDF/Views/Wiki.php:48 -msgid "This table shows the documentation pages." -msgstr "Diese Tabelle zeigt Dokumentations-Seiten." - -#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149 -msgid "Page Title" -msgstr "Seitentitel" - -#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:109 IDF/Views/Wiki.php:150 -#: IDF/Views/Download.php:65 IDF/Views/Download.php:295 IDF/Views/Issue.php:62 -#: IDF/Views/Issue.php:140 IDF/Views/Issue.php:221 IDF/Views/Issue.php:297 -#: IDF/Views/Issue.php:384 IDF/Views/Issue.php:563 IDF/Views/Issue.php:622 -#: IDF/Views/User.php:83 IDF/Views/Review.php:58 IDF/Form/Upload.php:40 -#: IDF/Form/ReviewCreate.php:45 IDF/Form/IssueUpdate.php:45 -#: IDF/Form/IssueCreate.php:53 IDF/Form/UpdateUpload.php:42 -#: IDF/Form/ReviewFileComment.php:71 -msgid "Summary" -msgstr "Zusammenfassung" - -#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:110 IDF/Views/Wiki.php:151 -msgid "Updated" -msgstr "Aktualisiert" - -#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:155 -msgid "No documentation pages were found." -msgstr "Keine Dokumentations-Seiten gefunden." - -#: IDF/Views/Wiki.php:92 -#, php-format -msgid "Documentation Search - %s" -msgstr "Dokumentations-Suche - %s" - -#: IDF/Views/Wiki.php:103 -msgid "This table shows the pages found." -msgstr "Diese Tabelle zeigt die gefunden Seiten." - -#: IDF/Views/Wiki.php:114 -msgid "No pages were found." -msgstr "Es wurden keine Seiten gefunden." - -#: IDF/Views/Wiki.php:133 -#, php-format -msgid "%1$s Documentation Pages with Label %2$s" -msgstr "%1$s Dokumentations-Seiten mit der Marke %2$s" - -#: IDF/Views/Wiki.php:143 -#, php-format -msgid "This table shows the documentation pages with label %s." -msgstr "Diese Tabelle zeigt die Dokumentations-Seiten mit der Bezeichnung %s." - -#: IDF/Views/Wiki.php:188 -#, php-format -msgid "The page %s has been created." -msgstr "Die Seite %s wurde neu angelegt." - -#: IDF/Views/Wiki.php:275 -msgid "The old revision has been deleted." -msgstr "Alte Version der Seite wurde gelöscht." - -#: IDF/Views/Wiki.php:281 -#, php-format -msgid "Delete Old Revision of %s" -msgstr "Lösche alte Version von %s" - -#: IDF/Views/Wiki.php:314 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 -#, php-format -msgid "Update %s" -msgstr "Aktualisiere %s" - -#: IDF/Views/Wiki.php:326 -#, php-format -msgid "The page %s has been updated." -msgstr "Die Seite %s wurde aktualisiert." - -#: IDF/Views/Wiki.php:364 -msgid "The documentation page has been deleted." -msgstr "Die Dokumentations-Seite wurde gelöscht." - -#: IDF/Views/Wiki.php:372 -#, php-format -msgid "Delete Page %s" -msgstr "Lösche Seite '%s'" - -#: IDF/Views/Source.php:40 -#, php-format -msgid "%s Source Help" -msgstr "%s Quellcode-Hilfe" - -#: IDF/Views/Source.php:58 -#, php-format -msgid "%s Invalid Revision" -msgstr "%s Ungültige Revision" - -#: IDF/Views/Source.php:77 -#, php-format -msgid "%s Ambiguous Revision" -msgstr "%s Mehrdeutige Revision" - -#: IDF/Views/Source.php:102 -#, php-format -msgid "%1$s %2$s Change Log" -msgstr "%1$s %2$s Logmeldung" - -#: IDF/Views/Source.php:142 IDF/Views/Source.php:223 IDF/Views/Source.php:355 -#, php-format -msgid "%1$s %2$s Source Tree" -msgstr "%1$s %2$s Quellcode-Baum" - -#: IDF/Views/Source.php:299 -#, php-format -msgid "%s Commit Details" -msgstr "%s Revisions-Details" - -#: IDF/Views/Source.php:300 -#, php-format -msgid "%s Commit Details - %s" -msgstr "%s Revisions-Details - %s" - -#: IDF/Views/Download.php:45 -#, php-format -msgid "%s Downloads" -msgstr "%s Downloads" - -#: IDF/Views/Download.php:51 -msgid "This table shows the files to download." -msgstr "Diese Tabelle zeigt die herunterladbaren Dateien." - -#: IDF/Views/Download.php:67 IDF/Views/Download.php:297 -msgid "Uploaded" -msgstr "Hochgeladen" - -#: IDF/Views/Download.php:71 IDF/Views/Download.php:301 -msgid "No downloads were found." -msgstr "Keine Downloads gefunden." - -#: IDF/Views/Download.php:96 -#, php-format -msgid "Download %s" -msgstr "Lade %s herunter" - -#: IDF/Views/Download.php:113 -#, php-format -msgid "The file %2$s has been updated." -msgstr "Die Datei %2$s wurde aktualisiert." - -#: IDF/Views/Download.php:146 -#, php-format -msgid "Delete Download %s" -msgstr "Lösche Download %s" - -#: IDF/Views/Download.php:179 -msgid "The file has been deleted." -msgstr "Die Datei wurde gelöscht." - -#: IDF/Views/Download.php:225 -#, php-format -msgid "The file has been uploaded." -msgstr "Die Datei wurde hochgeladen." - -#: IDF/Views/Download.php:279 -#, php-format -msgid "%1$s Downloads with Label %2$s" -msgstr "%1$s Downloads mit der Marke %2$s" - -#: IDF/Views/Download.php:289 -#, php-format -msgid "This table shows the downloads with label %s." -msgstr "Diese Tabelle zeigt die Downloads mit der Marke %s." - -#: IDF/Views/Project.php:72 -msgid "All Updates" -msgstr "Alle Aktualisierungen" - -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" -msgstr "Tickets und Kommentare" - -#: IDF/Views/Project.php:76 -msgid "Documents" -msgstr "Dokumentation" - -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" -msgstr "Besprechungen und Patches" - -#: IDF/Views/Project.php:142 -msgid "This table shows the project updates." -msgstr "Diese Tabelle zeigt Projekt-Aktualisierungen." - -#: IDF/Views/Project.php:153 -msgid "Change" -msgstr "Ändern" - -#: IDF/Views/Project.php:157 -msgid "No changes were found." -msgstr "Es wurden keine Änderungen gefunden." - -#: IDF/Views/Project.php:248 -#, php-format -msgid "%s Project Summary" -msgstr "%s Projektzusammenfassung" - -#: IDF/Views/Project.php:256 IDF/Views/Admin.php:101 -msgid "The project has been updated." -msgstr "Das Projekt wurde aktualisiert." - -#: IDF/Views/Project.php:283 -#, php-format -msgid "%s Issue Tracking Configuration" -msgstr "%s Ticket-Einstellungen" - -#: IDF/Views/Project.php:292 -msgid "The issue tracking configuration has been saved." -msgstr "Die Ticket-Einstellungen wurden gespeichert." - -#: IDF/Views/Project.php:328 -#, php-format -msgid "%s Downloads Configuration" -msgstr "%s Download-Einstellungen" - -#: IDF/Views/Project.php:337 -msgid "The downloads configuration has been saved." -msgstr "Die Download-Einstellungen wurden gespeichert." - -#: IDF/Views/Project.php:371 -#, php-format -msgid "%s Documentation Configuration" -msgstr "%s Dokumentations-Einstellungen" - -#: IDF/Views/Project.php:380 -msgid "The documentation configuration has been saved." -msgstr "Die Dokumentations-Einstellungen wurden gespeichert." - -#: IDF/Views/Project.php:414 -#, php-format -msgid "%s Project Members" -msgstr "%s Projektmitglieder" - -#: IDF/Views/Project.php:423 -msgid "The project membership has been saved." -msgstr "Die Projektmitgliedschaft wurde gespeichert." - -#: IDF/Views/Project.php:446 -#, php-format -msgid "%s Tabs Access Rights" -msgstr "%s Zugriffsrechte auf Registerkarten" - -#: IDF/Views/Project.php:460 -msgid "The project tabs access rights have been saved." -msgstr "Die Zugriffsrechte für die Projekt-Registerkarten wurden gespeichert." - -#: IDF/Views/Project.php:506 -#, php-format -msgid "%s Source" -msgstr "%s Quellcode" - -#: IDF/Views/Project.php:520 -msgid "The project source configuration has been saved." -msgstr "Die Konfiguration des Projekt-Quellcodes wurde gespeichert." - -#: IDF/Views/Project.php:540 IDF/Form/Admin/ProjectCreate.php:38 -msgid "git" -msgstr "git" - -#: IDF/Views/Project.php:541 IDF/Form/Admin/ProjectCreate.php:39 -msgid "Subversion" -msgstr "Subversion" - -#: IDF/Views/Project.php:542 IDF/Form/Admin/ProjectCreate.php:40 -msgid "mercurial" -msgstr "mercurial" - -#: IDF/Views/Project.php:543 IDF/Form/Admin/ProjectCreate.php:41 -msgid "monotone" -msgstr "monotone" - -#: IDF/Views/Issue.php:41 -#, php-format -msgid "%s Open Issues" -msgstr "%s Offene Tickets" - -#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:288 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: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/User.php:81 IDF/Views/Review.php:57 -msgid "Id" -msgstr "Id" - -#: IDF/Views/Issue.php:63 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/User.php:84 IDF/Views/Review.php:59 -#: IDF/Form/ReviewCreate.php:103 IDF/Form/IssueUpdate.php:88 -#: IDF/Form/IssueCreate.php:95 IDF/Form/ReviewFileComment.php:81 -msgid "Status" -msgstr "Status" - -#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:142 IDF/Views/Issue.php:224 -#: IDF/Views/Issue.php:299 IDF/Views/Issue.php:386 IDF/Views/Issue.php:565 -#: IDF/Views/Issue.php:624 IDF/Views/User.php:85 IDF/Views/Review.php:60 -msgid "Last Updated" -msgstr "Letzte Aktualisierung" - -#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:146 IDF/Views/Issue.php:228 -#: IDF/Views/Issue.php:303 IDF/Views/Issue.php:390 IDF/Views/Issue.php:569 -#: IDF/Views/Issue.php:628 -msgid "No issues were found." -msgstr "Es wurden keine Tickets gefunden." - -#: IDF/Views/Issue.php:113 -#, php-format -msgid "Watch List: Closed Issues for %s" -msgstr "Beobachtungsliste: Geschlossene Tickets für %s" - -#: IDF/Views/Issue.php:114 -#, 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:119 -#, php-format -msgid "Watch List: Open Issues for %s" -msgstr "Beobachtungsliste: Offene Tickets für %s" - -#: IDF/Views/Issue.php:120 -#, 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:196 -msgid "Watch List: Closed Issues" -msgstr "Beobachtungsliste: Geschlossene Tickets" - -#: IDF/Views/Issue.php:197 -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:202 -msgid "Watch List: Open Issues" -msgstr "Beobachtungsliste: Offene Tickets" - -#: IDF/Views/Issue.php:203 -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:222 IDF/Views/User.php:82 -msgid "Project" -msgstr "Projekt" - -#: IDF/Views/Issue.php:255 -#, php-format -msgid "My Submitted %s Issues" -msgstr "Meine erstellten Tickets für %s" - -#: IDF/Views/Issue.php:259 -#, php-format -msgid "My Closed Submitted %s Issues" -msgstr "Meine eingesandten, geschlossenen Tickets für %s" - -#: IDF/Views/Issue.php:263 -#, php-format -msgid "My Closed Working %s Issues" -msgstr "Meine bearbeiteten, geschlossenen Tickets für %s" - -#: IDF/Views/Issue.php:267 -#, php-format -msgid "My Working %s Issues" -msgstr "Meine bearbeiteten Tickets für %s" - -#: IDF/Views/Issue.php:322 -msgid "Submit a new issue" -msgstr "Erstelle ein neues Ticket" - -#: IDF/Views/Issue.php:338 -#, php-format -msgid "Issue %d has been created." -msgstr "Ticket %d wurde erstellt." - -#: IDF/Views/Issue.php:367 -#, php-format -msgid "Search Issues - %s" -msgstr "Suche Tickets - %s" - -#: IDF/Views/Issue.php:379 -msgid "This table shows the found issues." -msgstr "Diese Tabelle zeigt die gefundenen Tickets." - -#: IDF/Views/Issue.php:409 -#, php-format -msgid "Issue %d: %s" -msgstr "Ticket %d: %s" - -#: IDF/Views/Issue.php:433 -#, php-format -msgid "Issue %d has been updated." -msgstr "Ticket %d wurde aktualisiert." - -#: IDF/Views/Issue.php:522 -#, php-format -msgid "View %s" -msgstr "Zeige %s" - -#: IDF/Views/Issue.php:542 -#, php-format -msgid "%s Closed Issues" -msgstr "%s Geschlossene Tickets" - -#: IDF/Views/Issue.php:552 -msgid "This table shows the closed issues." -msgstr "Diese Tabelle zeigt die geschlossenen Tickets." - -#: IDF/Views/Issue.php:595 -#, php-format -msgid "%1$s Issues with Label %2$s" -msgstr "%1$s Tickets mit Markierung %2$s" - -#: IDF/Views/Issue.php:598 -#, php-format -msgid "%1$s Closed Issues with Label %2$s" -msgstr "%1$s geschlossene Tickets mit Markierung %2$s" - -#: IDF/Views/Issue.php:611 -#, 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:661 -msgid "The issue has been removed from your watch list." -msgstr "Das Ticket wurde von Deiner Beobachtungsliste entfernt." - -#: IDF/Views/Issue.php:664 -msgid "The issue has been added to your watch list." -msgstr "Das Ticket wurde zu Deiner Beobachtungsliste hinzugefügt." - -#: IDF/Views/Issue.php:753 -msgid "On your watch list." -msgstr "Auf Deiner Beobachtungsliste." - -#: IDF/Views/User.php:59 -msgid "Your Dashboard - Working Issues" -msgstr "Dein Dashboard - Bearbeitete Tickets" - -#: IDF/Views/User.php:62 -msgid "Your Dashboard - Submitted Issues" -msgstr "Dein Dashboard - Eingesandte Tickets" - -#: IDF/Views/User.php:89 -msgid "No issues are assigned to you, yeah!" -msgstr "Es liegen keine Tickets für Dich vor. Super!" - -#: IDF/Views/User.php:89 -msgid "All the issues you submitted are fixed, yeah!" -msgstr "Alle Tickets, die Du eingesandt hast, sind gelöst! Super!" - -#: IDF/Views/User.php:121 -msgid "Your personal information has been updated." -msgstr "Deine persönlichen Daten wurden aktualisiert." - -#: IDF/Views/User.php:132 -msgid "Your Account" -msgstr "Dein Konto" - -#: IDF/Views/User.php:155 -msgid "The public key has been deleted." -msgstr "Der öffentliche Schlüssel wurde gelöscht." - -#: IDF/Views/User.php:178 -msgid "Confirm The Email Change" -msgstr "Bestätige die Änderung der E-Mail-Adresse" - -#: IDF/Views/User.php:203 -#, php-format -msgid "Your new email address \"%s\" has been validated. Thank you!" -msgstr "Deine neue E-Mail-Adresse \"%s\" wurde validiert. Danke!" - -#: IDF/Views/Review.php:41 -#, php-format -msgid "%s Code Reviews" -msgstr "%s Code-Besprechungen" - -#: IDF/Views/Review.php:48 -msgid "This table shows the latest reviews." -msgstr "Diese Tabelle zeigt die letzten Besprechungen." - -#: IDF/Views/Review.php:64 -msgid "No reviews were found." -msgstr "Es wurden keine Besprechungen gefunden." - -#: IDF/Views/Review.php:94 -#, php-format -msgid "The code review %d has been created." -msgstr "Die Code-Besprechung %d wurde erstellt." - -#: IDF/Views/Review.php:140 -#, php-format -msgid "Review %d: %s" -msgstr "Besprechung %d: %s" - -#: IDF/Views/Review.php:160 -#, php-format -msgid "Your code review %d has been published." -msgstr "Deine Code-Besprechung %d wurde veröffentlicht." +msgid "New download - %s (%s)" +msgstr "Neuer Download - %s (%s)" #: IDF/Views/Admin.php:60 msgid "This table shows the projects in the forge." @@ -3671,11 +4186,6 @@ msgstr "Diese Tabelle zeigt die Projekte dieser Forge." msgid "Short Name" msgstr "Kurzname" -#: IDF/Views/Admin.php:66 IDF/Views/Admin.php:210 -#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 -msgid "Name" -msgstr "Name" - #: IDF/Views/Admin.php:67 msgid "Repository Size" msgstr "Größe des Depots" @@ -3684,6 +4194,15 @@ 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 +#, php-format +msgid "Update %s" +msgstr "Aktualisiere %s" + +#: IDF/Views/Admin.php:101 IDF/Views/Project.php:256 +msgid "The project has been updated." +msgstr "Das Projekt wurde aktualisiert." + #: IDF/Views/Admin.php:134 msgid "The project has been created." msgstr "Das Projekt wurde angelegt." @@ -3709,18 +4228,10 @@ msgstr "Diese Tabelle zeigt die Benutzer dieser Forge." msgid "login" msgstr "Anmeldename" -#: IDF/Views/Admin.php:211 IDF/Form/Admin/UserUpdate.php:161 -msgid "Staff" -msgstr "Stab" - #: IDF/Views/Admin.php:212 msgid "Admin" msgstr "Administrator" -#: IDF/Views/Admin.php:213 IDF/Form/Admin/UserUpdate.php:172 -msgid "Active" -msgstr "Aktiv" - #: IDF/Views/Admin.php:214 msgid "Last Login" msgstr "Letzter Login" @@ -3795,776 +4306,536 @@ msgstr "Ja" msgid "No" msgstr "Nein" -#: 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" +#: IDF/Views/Download.php:45 +#, php-format +msgid "%s Downloads" +msgstr "%s Downloads" + +#: IDF/Views/Download.php:51 +msgid "This table shows the files to download." +msgstr "Diese Tabelle zeigt die herunterladbaren Dateien." + +#: IDF/Views/Download.php:67 IDF/Views/Download.php:295 +msgid "Uploaded" +msgstr "Hochgeladen" + +#: IDF/Views/Download.php:71 IDF/Views/Download.php:299 +msgid "No downloads were found." +msgstr "Keine Downloads gefunden." + +#: IDF/Views/Download.php:94 +#, php-format +msgid "Download %s" +msgstr "Lade %s herunter" + +#: IDF/Views/Download.php:111 +#, php-format +msgid "The file %2$s has been updated." +msgstr "Die Datei %2$s wurde aktualisiert." + +#: IDF/Views/Download.php:144 +#, php-format +msgid "Delete Download %s" +msgstr "Lösche Download %s" + +#: IDF/Views/Download.php:177 +msgid "The file has been deleted." +msgstr "Die Datei wurde gelöscht." + +#: IDF/Views/Download.php:223 +#, php-format +msgid "The file has been uploaded." +msgstr "Die Datei wurde hochgeladen." + +#: IDF/Views/Download.php:277 +#, php-format +msgid "%1$s Downloads with Label %2$s" +msgstr "%1$s Downloads mit der Marke %2$s" + +#: IDF/Views/Download.php:287 +#, php-format +msgid "This table shows the downloads with label %s." +msgstr "Diese Tabelle zeigt die Downloads mit der Marke %s." + +#: IDF/Views/Issue.php:41 +#, php-format +msgid "%s Open Issues" +msgstr "%s Offene Tickets" + +#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:287 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 +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 +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 +msgid "No issues were found." +msgstr "Es wurden keine Tickets gefunden." + +#: IDF/Views/Issue.php:112 +#, php-format +msgid "Watch List: Closed Issues for %s" +msgstr "Beobachtungsliste: Geschlossene Tickets für %s" + +#: IDF/Views/Issue.php:113 +#, php-format +msgid "This table shows the closed issues in your watch list for %s project." msgstr "" -"# Einführung\n" -"\n" -"Füge Deinen Inhalt hier ein.\n" -"\n" -"\n" -"# Details\n" -"\n" -"Füge Deinen Inhalt hier ein. Formatiere Deinen Inhalt mit:\n" -"\n" -"* Text in **Fettschrift** oder *kursiv*.\n" -"* Überschriften, Absätzen und Listen.\n" -"* Links auf andere [[WikiSeiten]].\n" +"Diese Tabelle zeigt die geschlossenen Tickets auf Deiner Beobachtungsliste " +"für das Projekt %s." -#: IDF/Form/WikiCreate.php:57 -msgid "PageName" -msgstr "Seitenname" +#: IDF/Views/Issue.php:118 +#, php-format +msgid "Watch List: Open Issues for %s" +msgstr "Beobachtungsliste: Offene Tickets für %s" -#: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50 -msgid "Page title" +#: IDF/Views/Issue.php:119 +#, 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 +msgid "Watch List: Closed Issues" +msgstr "Beobachtungsliste: Geschlossene Tickets" + +#: IDF/Views/Issue.php:196 +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 +msgid "Watch List: Open Issues" +msgstr "Beobachtungsliste: Offene Tickets" + +#: IDF/Views/Issue.php:202 +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 +msgid "Project" +msgstr "Projekt" + +#: IDF/Views/Issue.php:254 +#, php-format +msgid "My Submitted %s Issues" +msgstr "Meine erstellten Tickets für %s" + +#: IDF/Views/Issue.php:258 +#, php-format +msgid "My Closed Submitted %s Issues" +msgstr "Meine eingesandten, geschlossenen Tickets für %s" + +#: IDF/Views/Issue.php:262 +#, php-format +msgid "My Closed Working %s Issues" +msgstr "Meine bearbeiteten, geschlossenen Tickets für %s" + +#: IDF/Views/Issue.php:266 +#, php-format +msgid "My Working %s Issues" +msgstr "Meine bearbeiteten Tickets für %s" + +#: IDF/Views/Issue.php:321 +msgid "Submit a new issue" +msgstr "Erstelle ein neues Ticket" + +#: IDF/Views/Issue.php:337 +#, php-format +msgid "Issue %d has been created." +msgstr "Ticket %d wurde erstellt." + +#: IDF/Views/Issue.php:366 +#, php-format +msgid "Search Issues - %s" +msgstr "Suche Tickets - %s" + +#: IDF/Views/Issue.php:378 +msgid "This table shows the found issues." +msgstr "Diese Tabelle zeigt die gefundenen Tickets." + +#: IDF/Views/Issue.php:408 +#, php-format +msgid "Issue %d: %s" +msgstr "Ticket %d: %s" + +#: IDF/Views/Issue.php:432 +#, php-format +msgid "Issue %d has been updated." +msgstr "Ticket %d wurde aktualisiert." + +#: IDF/Views/Issue.php:521 +#, php-format +msgid "View %s" +msgstr "Zeige %s" + +#: IDF/Views/Issue.php:541 +#, php-format +msgid "%s Closed Issues" +msgstr "%s Geschlossene Tickets" + +#: IDF/Views/Issue.php:551 +msgid "This table shows the closed issues." +msgstr "Diese Tabelle zeigt die geschlossenen Tickets." + +#: IDF/Views/Issue.php:594 +#, php-format +msgid "%1$s Issues with Label %2$s" +msgstr "%1$s Tickets mit Markierung %2$s" + +#: IDF/Views/Issue.php:597 +#, 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 +#, 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 +msgid "The issue has been removed from your watch list." +msgstr "Das Ticket wurde von Deiner Beobachtungsliste entfernt." + +#: IDF/Views/Issue.php:663 +msgid "The issue has been added to your watch list." +msgstr "Das Ticket wurde zu Deiner Beobachtungsliste hinzugefügt." + +#: IDF/Views/Issue.php:752 +msgid "On your watch list." +msgstr "Auf Deiner Beobachtungsliste." + +#: IDF/Views/Project.php:72 +msgid "All Updates" +msgstr "Alle Aktualisierungen" + +#: IDF/Views/Project.php:74 +msgid "Issues and Comments" +msgstr "Tickets und Kommentare" + +#: IDF/Views/Project.php:76 +msgid "Documents" +msgstr "Dokumentation" + +#: IDF/Views/Project.php:77 +msgid "Reviews and Patches" +msgstr "Besprechungen und Patches" + +#: IDF/Views/Project.php:142 +msgid "This table shows the project updates." +msgstr "Diese Tabelle zeigt Projekt-Aktualisierungen." + +#: IDF/Views/Project.php:153 +msgid "Change" +msgstr "Ändern" + +#: IDF/Views/Project.php:157 +msgid "No changes were found." +msgstr "Es wurden keine Änderungen gefunden." + +#: IDF/Views/Project.php:248 +#, php-format +msgid "%s Project Summary" +msgstr "%s Projektzusammenfassung" + +#: IDF/Views/Project.php:283 +#, php-format +msgid "%s Issue Tracking Configuration" +msgstr "%s Ticket-Einstellungen" + +#: IDF/Views/Project.php:292 +msgid "The issue tracking configuration has been saved." +msgstr "Die Ticket-Einstellungen wurden gespeichert." + +#: IDF/Views/Project.php:328 +#, php-format +msgid "%s Downloads Configuration" +msgstr "%s Download-Einstellungen" + +#: IDF/Views/Project.php:337 +msgid "The downloads configuration has been saved." +msgstr "Die Download-Einstellungen wurden gespeichert." + +#: IDF/Views/Project.php:371 +#, php-format +msgid "%s Documentation Configuration" +msgstr "%s Dokumentations-Einstellungen" + +#: IDF/Views/Project.php:380 +msgid "The documentation configuration has been saved." +msgstr "Die Dokumentations-Einstellungen wurden gespeichert." + +#: IDF/Views/Project.php:414 +#, php-format +msgid "%s Project Members" +msgstr "%s Projektmitglieder" + +#: IDF/Views/Project.php:423 +msgid "The project membership has been saved." +msgstr "Die Projektmitgliedschaft wurde gespeichert." + +#: IDF/Views/Project.php:446 +#, php-format +msgid "%s Tabs Access Rights" +msgstr "%s Zugriffsrechte auf Registerkarten" + +#: IDF/Views/Project.php:460 +msgid "The project tabs access rights have been saved." +msgstr "Die Zugriffsrechte für die Projekt-Registerkarten wurden gespeichert." + +#: IDF/Views/Project.php:506 +#, php-format +msgid "%s Source" +msgstr "%s Quellcode" + +#: IDF/Views/Project.php:520 +msgid "The project source configuration has been saved." +msgstr "Die Konfiguration des Projekt-Quellcodes wurde gespeichert." + +#: IDF/Views/Review.php:41 +#, php-format +msgid "%s Code Reviews" +msgstr "%s Code-Besprechungen" + +#: IDF/Views/Review.php:48 +msgid "This table shows the latest reviews." +msgstr "Diese Tabelle zeigt die letzten Besprechungen." + +#: IDF/Views/Review.php:64 +msgid "No reviews were found." +msgstr "Es wurden keine Besprechungen gefunden." + +#: IDF/Views/Review.php:94 +#, php-format +msgid "The code review %d has been created." +msgstr "Die Code-Besprechung %d wurde erstellt." + +#: IDF/Views/Review.php:140 +#, php-format +msgid "Review %d: %s" +msgstr "Besprechung %d: %s" + +#: IDF/Views/Review.php:160 +#, php-format +msgid "Your code review %d has been published." +msgstr "Deine Code-Besprechung %d wurde veröffentlicht." + +#: IDF/Views/Source.php:40 +#, php-format +msgid "%s Source Help" +msgstr "%s Quellcode-Hilfe" + +#: IDF/Views/Source.php:58 +#, php-format +msgid "%s Invalid Revision" +msgstr "%s Ungültige Revision" + +#: IDF/Views/Source.php:81 +#, php-format +msgid "%s Ambiguous Revision" +msgstr "%s Mehrdeutige Revision" + +#: IDF/Views/Source.php:106 +#, 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:359 +#, php-format +msgid "%1$s %2$s Source Tree" +msgstr "%1$s %2$s Quellcode-Baum" + +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" +msgstr "%s Revisions-Details" + +#: IDF/Views/Source.php:304 +#, php-format +msgid "%s Commit Details - %s" +msgstr "%s Revisions-Details - %s" + +#: IDF/Views/User.php:59 +msgid "Your Dashboard - Working Issues" +msgstr "Dein Dashboard - Bearbeitete Tickets" + +#: IDF/Views/User.php:62 +msgid "Your Dashboard - Submitted Issues" +msgstr "Dein Dashboard - Eingesandte Tickets" + +#: IDF/Views/User.php:89 +msgid "No issues are assigned to you, yeah!" +msgstr "Es liegen keine Tickets für Dich vor. Super!" + +#: IDF/Views/User.php:89 +msgid "All the issues you submitted are fixed, yeah!" +msgstr "Alle Tickets, die Du eingesandt hast, sind gelöst! Super!" + +#: IDF/Views/User.php:121 +msgid "Your personal information has been updated." +msgstr "Deine persönlichen Daten wurden aktualisiert." + +#: IDF/Views/User.php:132 +msgid "Your Account" +msgstr "Dein Konto" + +#: IDF/Views/User.php:155 +msgid "The public key has been deleted." +msgstr "Der öffentliche Schlüssel wurde gelöscht." + +#: IDF/Views/User.php:178 +msgid "Confirm The Email Change" +msgstr "Bestätige die Änderung der E-Mail-Adresse" + +#: IDF/Views/User.php:203 +#, php-format +msgid "Your new email address \"%s\" has been validated. Thank you!" +msgstr "Deine neue E-Mail-Adresse \"%s\" wurde validiert. Danke!" + +#: IDF/Views/Wiki.php:41 +#, php-format +msgid "%s Documentation" +msgstr "%s Dokumentation" + +#: IDF/Views/Wiki.php:48 +msgid "This table shows the documentation pages." +msgstr "Diese Tabelle zeigt Dokumentations-Seiten." + +#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:106 IDF/Views/Wiki.php:147 +msgid "Page Title" msgstr "Seitentitel" -#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56 -msgid "" -"The page name must contains only letters, digits and the dash (-) character." -msgstr "" -"Der Seitenname darf nur aus Buchstaben, Ziffern und dem Bindestrich bestehen." +#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149 +msgid "Updated" +msgstr "Aktualisiert" -#: IDF/Form/WikiCreate.php:70 IDF/Form/Upload.php:49 -#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/ReviewCreate.php:54 -#: IDF/Form/UserAccount.php:99 IDF/Form/IssueCreate.php:62 -#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 -msgid "Description" -msgstr "Beschreibung" +#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:153 +msgid "No documentation pages were found." +msgstr "Keine Dokumentations-Seiten gefunden." -#: IDF/Form/WikiCreate.php:71 IDF/Form/WikiUpdate.php:61 -msgid "This one line description is displayed in the list of pages." -msgstr "Diese einzeilige Beschreibung wird in der Seitenübersicht angezeigt." - -#: IDF/Form/WikiCreate.php:80 IDF/Form/WikiUpdate.php:72 -msgid "Content" -msgstr "Inhalt" - -#: IDF/Form/WikiCreate.php:93 IDF/Form/Upload.php:70 -#: IDF/Form/IssueUpdate.php:117 IDF/Form/IssueCreate.php:150 -#: IDF/Form/WikiUpdate.php:104 IDF/Form/UpdateUpload.php:71 -msgid "Labels" -msgstr "Marken" - -#: IDF/Form/WikiCreate.php:108 IDF/Form/WikiUpdate.php:119 -msgid "The title contains invalid characters." -msgstr "Der Titel beinhaltet ungültige Zeichen." - -#: IDF/Form/WikiCreate.php:114 IDF/Form/WikiUpdate.php:125 -msgid "A page with this title already exists." -msgstr "Eine Seite mit diesem Titel existiert bereits." - -#: IDF/Form/WikiCreate.php:150 IDF/Form/WikiUpdate.php:161 +#: IDF/Views/Wiki.php:90 #, php-format -msgid "You cannot provide more than label from the %s class to a page." -msgstr "" -"Du darfst nicht mehr als eine Marke von der %s-Klasse zu einer Seite " -"hinzufügen." +msgid "Documentation Search - %s" +msgstr "Dokumentations-Suche - %s" -#: IDF/Form/WikiCreate.php:151 IDF/Form/Upload.php:120 -#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 -#: IDF/Form/WikiUpdate.php:162 IDF/Form/UpdateUpload.php:110 -msgid "You provided an invalid label." -msgstr "Du hast eine ungültige Marke angegeben." +#: IDF/Views/Wiki.php:101 +msgid "This table shows the pages found." +msgstr "Diese Tabelle zeigt die gefunden Seiten." -#: IDF/Form/WikiCreate.php:167 IDF/Form/Upload.php:148 -#: IDF/Form/Admin/UserCreate.php:106 IDF/Form/Admin/ProjectCreate.php:279 -#: IDF/Form/Admin/ProjectDelete.php:78 IDF/Form/Admin/UserUpdate.php:191 -#: IDF/Form/Admin/ProjectUpdate.php:121 IDF/Form/Password.php:76 -#: IDF/Form/ReviewCreate.php:187 IDF/Form/Register.php:114 -#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 -#: IDF/Form/UserAccount.php:178 IDF/Form/IssueCreate.php:263 -#: IDF/Form/MembersConf.php:64 IDF/Form/WikiUpdate.php:178 -#: IDF/Form/UpdateUpload.php:126 IDF/Form/TabsConf.php:98 -#: IDF/Form/UserChangeEmail.php:80 IDF/Form/ReviewFileComment.php:125 -msgid "Cannot save the model from an invalid form." -msgstr "Kann kein Modell von einer ungültigen Maske speichern." +#: IDF/Views/Wiki.php:112 +msgid "No pages were found." +msgstr "Es wurden keine Seiten gefunden." -#: IDF/Form/WikiCreate.php:200 -msgid "Initial page creation" -msgstr "Initiale Seiten-Erzeugung" - -#: IDF/Form/Upload.php:86 IDF/Form/Admin/UserUpdate.php:301 -#: IDF/Form/UserAccount.php:367 -msgid "For security reason, you cannot upload a file with this extension." -msgstr "" -"Aus Sicherheitsgründen kannst Du keine Dateien mit dieser Erweiterung " -"hochladen." - -#: IDF/Form/Upload.php:119 IDF/Form/IssueCreate.php:199 -#: IDF/Form/UpdateUpload.php:109 +#: IDF/Views/Wiki.php:131 #, php-format -msgid "You cannot provide more than label from the %s class to an issue." -msgstr "" -"Du kannst nicht mehr als eine Marke von der %s-Klasse zu einem Ticket " -"hinzufügen." +msgid "%1$s Documentation Pages with Label %2$s" +msgstr "%1$s Dokumentations-Seiten mit der Marke %2$s" -#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 -#: IDF/Form/UserAccount.php:40 IDF/Form/RegisterConfirmation.php:50 -msgid "First name" -msgstr "Vorname" - -#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 -#: IDF/Form/UserAccount.php:49 IDF/Form/RegisterConfirmation.php:59 -msgid "Last name" -msgstr "Nachname" - -#: IDF/Form/Admin/UserCreate.php:56 -msgid "Login" -msgstr "Anmelde-Name" - -#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 -msgid "" -"The login must be between 3 and 15 characters long and contains only letters " -"and digits." -msgstr "" -"Der Anmeldename muss zwischen 3 und 15 Zeichen lang sein und darf nur " -"Buchstaben und Zahlen beinhalten." - -#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 -msgid "Email" -msgstr "E-Mail" - -#: IDF/Form/Admin/UserCreate.php:71 -msgid "" -"Double check the email address as the password is directly sent to the user." -msgstr "" -"Überprüfe nochmals die E-Mail-Adresse, da das Passwort direkt an den " -"Benutzer gesendet wird." - -#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 -#: IDF/Form/UserAccount.php:66 -msgid "Language" -msgstr "Sprache" - -#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:159 -msgid "Add a public key" -msgstr "Öffentlichen Schlüssel hinzufügen" - -#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:164 -msgid "" -"Paste a SSH or monotone public key. Be careful to not provide your private " -"key here!" -msgstr "" -"Füge einen öffentlichen SSH- oder monotone-Schlüssel hier ein. Pass auf, " -"dass Du nicht versehentlich Deinen privaten Schlüssel hier hineinkopierst!" - -#: IDF/Form/Admin/UserCreate.php:157 -msgid "Your details to access your forge." -msgstr "Die Informationen, um auf Deine Forge zuzugreifen." - -#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:400 +#: IDF/Views/Wiki.php:141 #, php-format -msgid "The email \"%s\" is already used." -msgstr "Die E-Mail \"%s\" wird bereits genutzt." +msgid "This table shows the documentation pages with label %s." +msgstr "Diese Tabelle zeigt die Dokumentations-Seiten mit der Bezeichnung %s." -#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 +#: IDF/Views/Wiki.php:186 #, php-format -msgid "The login \"%s\" can only contain letters and digits." -msgstr "Der Anmeldename \"%s\" darf nur Buchstaben und Zahlen beinhalten." +msgid "The page %s has been created." +msgstr "Die Seite %s wurde neu angelegt." -#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 +#: IDF/Views/Wiki.php:273 +msgid "The old revision has been deleted." +msgstr "Alte Version der Seite wurde gelöscht." + +#: IDF/Views/Wiki.php:279 #, php-format -msgid "The login \"%s\" is already used, please find another one." -msgstr "" -"Der Anmeldename \"%s\" wird bereits benutzt, bitte finde einen anderen." +msgid "Delete Old Revision of %s" +msgstr "Lösche alte Version von %s" -#: IDF/Form/Admin/ProjectCreate.php:62 -msgid "Shortname" -msgstr "Kurzname" - -#: IDF/Form/Admin/ProjectCreate.php:64 -msgid "" -"It must be unique for each project and composed only of letters, digits and " -"dash (-) like \"my-project\"." -msgstr "" -"Er muss das Projekt eindeutig identifizieren und darf nur aus Buchstaben " -"(ohne Umlaute), Ziffern und dem Bindestrich (-) bestehen, zum Beispiel " -"\"mein-projekt\"" - -#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 -msgid "Short description" -msgstr "Kurzbeschreibung" - -#: IDF/Form/Admin/ProjectCreate.php:77 -msgid "Repository type" -msgstr "Depot-Typ" - -#: IDF/Form/Admin/ProjectCreate.php:85 -msgid "Remote Subversion repository" -msgstr "Entferntes Subversion-Depot" - -#: IDF/Form/Admin/ProjectCreate.php:92 IDF/Form/SourceConf.php:40 -msgid "Repository username" -msgstr "Depot-Nutzername" - -#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:47 -msgid "Repository password" -msgstr "Depot-Passwort" - -#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/Admin/ProjectUpdate.php:59 -msgid "Master branch" -msgstr "Hauptzweig" - -#: 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 "" -"Dies sollte ein weltweit eindeutiger Bezeichner für Dein Projekt sein. Eine " -"umgekehrte DNS-Notation wie \"com.my-domain.my-projekt\" ist eine gute Idee." - -#: IDF/Form/Admin/ProjectCreate.php:114 IDF/Form/Admin/ProjectUpdate.php:68 -#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53 -msgid "Project owners" -msgstr "Projekt-Eigentümer" - -#: 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 "Projekt-Mitglieder" - -#: IDF/Form/Admin/ProjectCreate.php:136 -msgid "Project template" -msgstr "Projekt-Vorlage" - -#: 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 "" -"Benutze das vorgegebene Projekt, um ein neues zu initialisieren. " -"Zugriffsrechte und allgemeine Konfiguration werden von der Projekt-Vorlage " -"übernommen." - -#: IDF/Form/Admin/ProjectCreate.php:185 -msgid "" -"Only a remote repository available throught http or https are allowed. For " -"example \"http://somewhere.com/svn/trunk\"." -msgstr "" -"Nur ein entferntes Depot, welches durch http or https verfügbar ist, ist " -"erlaubt. Beispiel: \"http://somewhere.com/svn/trunk\"." - -#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 -msgid "" -"The master branch is empty or contains illegal characters, please use only " -"letters, digits, dashs and dots as separators." -msgstr "" -"Der Hauptzweig ist leer oder enthält ungültige Zeichen. Bitte verwende nur " -"Buchstaben, Ziffern, Bindestriche und Punkte als Trenner." - -#: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101 -msgid "This master branch is already used. Please select another one." -msgstr "Der Hauptzweig wird bereits verwendet. Bitte wähle einen anderen." - -#: IDF/Form/Admin/ProjectCreate.php:222 -msgid "" -"This shortname contains illegal characters, please use only letters, digits " -"and dash (-)." -msgstr "" -"Der Kurzname enthält ungültige Zeichen. Bitte verwende nur Buchstaben (ohne " -"Umlaute), Ziffern und den Bindestrich." - -#: IDF/Form/Admin/ProjectCreate.php:225 -msgid "The shortname cannot start with the dash (-) character." -msgstr "Der Kurzname darf nicht mit einem Bindestrich (-) beginnen." - -#: IDF/Form/Admin/ProjectCreate.php:228 -msgid "The shortname cannot end with the dash (-) character." -msgstr "Der Kurzname darf nicht mit einem Bindestrich (-) enden." - -#: IDF/Form/Admin/ProjectCreate.php:233 -msgid "This shortname is already used. Please select another one." -msgstr "" -"Der gewählte Kurzname wird bereits verwendet. Bitte wähle einen anderen." - -#: IDF/Form/Admin/ProjectCreate.php:295 -msgid "" -"Click on the Project Management tab to set the description of your project." -msgstr "" -"Klicke auf den Projekt-Management-Reiter, um eine Beschreibung Deines " -"Projektes zu setzen." - -#: IDF/Form/Admin/ProjectCreate.php:362 -msgid "This project is not available." -msgstr "Das Projekt ist nicht verfügbar." - -#: IDF/Form/Admin/ProjectDelete.php:41 -msgid "Confirmation code" -msgstr "Bestätigungs-Code" - -#: IDF/Form/Admin/ProjectDelete.php:46 -msgid "I have made a backup of all the important data of this project." -msgstr "" -"Ich habe ein Backup aller wichtiger Informationen dieses Projektes gemacht." - -#: IDF/Form/Admin/ProjectDelete.php:55 -msgid "" -"The confirmation code does not match. Please provide a valid confirmation " -"code to delete the project." -msgstr "" -"Der Bestätigungscode stimmt nicht. Bitte gib einen gültigen Bestätigungscode " -"ein, um das Projekt zu löschen." - -#: IDF/Form/Admin/ProjectDelete.php:63 -msgid "Sorry, you really need to backup your data before deletion." -msgstr "" -"Entschuldigung, Du solltest wirklich Deine Daten vor dem Löschen sichern." - -#: IDF/Form/Admin/UserUpdate.php:78 -msgid "Password" -msgstr "Passwort" - -#: IDF/Form/Admin/UserUpdate.php:81 -msgid "Leave blank if you do not want to change the password." -msgstr "Lass das Feld leer, wenn Du das Passwort nicht ändern möchtest." - -#: IDF/Form/Admin/UserUpdate.php:81 -msgid "" -"The password must be hard for other people to find it, but easy for the user " -"to remember." -msgstr "" -"Das Passwort sollte für andere Leute schwer zu finden, aber für den Nutzer " -"einfach zu erinnern sein." - -#: IDF/Form/Admin/UserUpdate.php:89 -msgid "Confirm password" -msgstr "Passwort bestätigen" - -#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:108 -msgid "Twitter username" -msgstr "Twitter-Nutzername" - -#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:118 -msgid "Public email address" -msgstr "Öffentlichen E-Mail-Adresse" - -#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:128 -msgid "Website URL" -msgstr "Website-Adresse" - -#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:138 -msgid "Upload custom avatar" -msgstr "Eigenes Benutzerbild hochladen" - -#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:145 -msgid "" -"An image file with a width and height not larger than 60 pixels (bigger " -"images are scaled down)." -msgstr "" -"Eine Bilddatei mit einer Breit und einer Höhe von maximal 60 Pixeln (größere " -"Bilder werden kleiner skaliert)." - -#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:150 -msgid "Remove custom avatar" -msgstr "Eigenes Benutzerbild entfernen" - -#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:154 -msgid "Tick this to delete the custom avatar." -msgstr "Markieren, um das eigene Benutzerbild zu löschen." - -#: IDF/Form/Admin/UserUpdate.php:164 -msgid "If you give staff rights to a user, you really need to trust him." -msgstr "" -"Wenn Du diesen Nutzer zum Stab hinzufügst, solltest Du ihm wirklich trauen." - -#: 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 his account here." -msgstr "" -"Wenn der Nutzer keine Bestätigungs-E-Mail erhält oder das System " -"missbraucht, kannst Du sein Konto hier direkt aktivieren oder deaktivieren." - -#: IDF/Form/Admin/UserUpdate.php:274 -msgid "--- is not a valid first name." -msgstr "--- ist kein gültiger Vorname" - -#: IDF/Form/Admin/UserUpdate.php:290 -msgid "" -"A user with this email already exists, please provide another email address." -msgstr "" -"Ein Nutzer mit dieser E-Mail-Adresse existiert bereits, bitte gib eine " -"andere E-Mail-Adresse an." - -#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:423 -msgid "The passwords do not match. Please give them again." -msgstr "Die Passwörter stimmen nicht überein. Bitte gib sie erneut ein." - -#: IDF/Form/Password.php:34 -msgid "Your login or email" -msgstr "Dein Anmeldename oder E-Mail" - -#: IDF/Form/Password.php:35 -msgid "Provide either your login or your email to recover your password." -msgstr "" -"Gib bitte entweder Deinen Anmeldenamen oder Deine E-Mail an, um Dein " -"Passwort wiederherzustellen." - -#: IDF/Form/Password.php:49 IDF/Form/Password.php:64 -msgid "" -"Sorry, we cannot find a user with this email address or login. Feel free to " -"try again." -msgstr "" -"Entschuldigung, aber wir können keinen Benutzer mit dieser E-Mail-Adresse " -"oder diesen Anmeldenamen finden. Probier es ruhig noch einmal." - -#: IDF/Form/Password.php:100 -msgid "Password Recovery - InDefero" -msgstr "Passwortwiederherstellung - InDefero" - -#: IDF/Form/PasswordReset.php:39 IDF/Form/PasswordInputKey.php:36 -#: IDF/Form/UserChangeEmail.php:36 -msgid "Your verification key" -msgstr "Dein Validierungsschlüssel" - -#: IDF/Form/PasswordReset.php:45 IDF/Form/UserAccount.php:77 -#: IDF/Form/RegisterConfirmation.php:69 -msgid "Your password" -msgstr "Dein Passwort" - -#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80 -#: IDF/Form/RegisterConfirmation.php:72 -msgid "" -"Your password must be hard for other people to find it, but easy for you to " -"remember." -msgstr "" -"Dein Passwort muss für andere Leute schwer zu erraten, aber für Dich leicht " -"zu merken sein." - -#: IDF/Form/PasswordReset.php:56 IDF/Form/UserAccount.php:88 -#: IDF/Form/RegisterConfirmation.php:80 -msgid "Confirm your password" -msgstr "Bestätige Dein Passwort" - -#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122 -msgid "The two passwords must be the same." -msgstr "Beide Passwortangaben müssen identisch sein." - -#: IDF/Form/PasswordReset.php:77 -msgid "" -"This account is not active. Please contact the forge administrator to " -"activate it." -msgstr "" -"Das Benutzerkonto ist nicht aktiv. Bitte kontaktiere den Administrator für " -"die Freischaltung." - -#: IDF/Form/PasswordReset.php:89 IDF/Form/PasswordInputKey.php:50 -msgid "" -"We are sorry but this validation key is not valid. Maybe you should directly " -"copy/paste it from your validation email." -msgstr "" -"Dieser Validierungsschlüssel ist leider nicht gültig. Du kannst versuchen, " -"ihn aus der E-Mail zu kopieren." - -#: IDF/Form/PasswordReset.php:100 IDF/Form/PasswordInputKey.php:61 -msgid "" -"Sorry, but this verification key has expired, please restart the password " -"recovery sequence. For security reasons, the verification key is only valid " -"24h." -msgstr "" -"Dieser Validierungsschlüssel ist nicht mehr gültig, bitte fordere erneut ein " -"neues Kennwort an. Aus Sicherheitsgründen gilt ein Validierungsschlüssel nur " -"für 24 Stunden." - -#: IDF/Form/PasswordReset.php:108 IDF/Form/PasswordInputKey.php:76 -#: IDF/Form/RegisterInputKey.php:72 IDF/Form/RegisterConfirmation.php:137 -msgid "Cannot save an invalid form." -msgstr "Kann keine ungültige Maske speichern." - -#: IDF/Form/ReviewCreate.php:83 IDF/Form/IssueUpdate.php:65 -#: IDF/Form/IssueCreate.php:72 -msgid "The \"upload_issue_path\" configuration variable was not set." -msgstr "Die Konfigurationsvariable \"upload_issue_path\" ist nicht gesetzt." - -#: IDF/Form/ReviewCreate.php:92 -msgid "Patch" -msgstr "Patch" - -#: IDF/Form/ReviewCreate.php:119 -msgid "We were not able to parse your patch. Please provide a valid patch." -msgstr "" -"Dein Patch konnte nicht analysiert werden. Bitte gib ein gültiges Patch an." - -#: IDF/Form/ReviewCreate.php:128 -msgid "You provided an invalid commit." -msgstr "Du hast eine ungültige Revision angegeben." - -#: IDF/Form/ReviewCreate.php:159 IDF/Form/IssueCreate.php:233 -msgid "You provided an invalid status." -msgstr "Du hast einen ungültigen Status angegeben." - -#: IDF/Form/ReviewCreate.php:202 -msgid "Initial patch to be reviewed." -msgstr "Initiales, zu begutachtendes Patch." - -#: IDF/Form/Register.php:41 -msgid "Your login" -msgstr "Dein Anmeldename" - -#: IDF/Form/Register.php:53 -msgid "Your email" -msgstr "Deine E-Mail-Adresse" - -#: IDF/Form/Register.php:55 -msgid "We will never send you any unsolicited emails. We hate spams too!" -msgstr "" -"Wir werden Ihnen nie unangeforderte E-Mails zusenden. Wir hassen Spam " -"ebenfalls." - -#: IDF/Form/Register.php:60 -msgid "I agree to the terms and conditions." -msgstr "Ich stimme den Nutzungbedingungen zu." - -#: IDF/Form/Register.php:88 -msgid "" -"We know, this is boring, but you need to agree with the terms and conditions." -msgstr "Ja, es ist nervig, aber Du musst den Nutzungsbedingungen zustimmen." - -#: IDF/Form/Register.php:99 +#: IDF/Views/Wiki.php:324 #, php-format -msgid "" -"The email \"%s\" is already used. If you need, click on the help link to " -"recover your password." -msgstr "" -"Die E-Mailadresse \"%s\" ist bereits registriert. Die Hilfefunktion " -"ermöglicht, das Passwort zurückzusetzen." +msgid "The page %s has been updated." +msgstr "Die Seite %s wurde aktualisiert." -#: IDF/Form/Register.php:150 -msgid "Confirm the creation of your account." -msgstr "Bestätige die Erstellung deines Accounts." +#: IDF/Views/Wiki.php:362 +msgid "The documentation page has been deleted." +msgstr "Die Dokumentations-Seite wurde gelöscht." -#: IDF/Form/SourceConf.php:56 -msgid "Webhook URL" -msgstr "Web-Hook-URL" - -#: IDF/Form/SourceConf.php:58 +#: IDF/Views/Wiki.php:370 #, php-format -msgid "Learn more about the post-commit web hooks." -msgstr "Erfahre mehr über die post-commit Web-Hooks." +msgid "Delete Page %s" +msgstr "Lösche Seite '%s'" -#: IDF/Form/IssueUpdate.php:55 IDF/Form/WikiUpdate.php:82 -#: IDF/Form/ReviewFileComment.php:45 -msgid "Comment" -msgstr "Kommentar" +#: IDF/Views.php:124 IDF/Views.php:150 +msgid "Confirm Your Account Creation" +msgstr "Bestätige die Erstellung Deines Accounts" -#: IDF/Form/IssueUpdate.php:75 IDF/Form/IssueCreate.php:82 -msgid "Attach a file" -msgstr "Datei anhängen" - -#: IDF/Form/IssueUpdate.php:98 IDF/Form/IssueCreate.php:104 -msgid "Owner" -msgstr "Eigentümer" - -#: IDF/Form/IssueUpdate.php:147 IDF/Form/IssueCreate.php:210 -msgid "You need to provide a description of the issue." -msgstr "Bitte füge eine Beschreibung des Problems an." - -#: IDF/Form/IssueUpdate.php:219 -msgid "No changes were entered." -msgstr "Keine Änderung festgestellt." - -#: IDF/Form/WikiDelete.php:39 -msgid "Yes, I understand that the page and all its revisions will be deleted." +#: IDF/Views.php:170 +msgid "Welcome! You can now participate in the life of your project of choice." msgstr "" -"Ja, ich habe verstanden, dass die Seite und all ihre Versionen gelöscht " -"werden." +"Willkommen! Du kannst nun am Leben eines Projektes Deiner Wahl teilhaben." -#: IDF/Form/WikiDelete.php:50 -msgid "You need to confirm the deletion." -msgstr "Du musst die Löschung bestätigen." +#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 +msgid "Password Recovery" +msgstr "Passwort-Wiederherstellung" -#: IDF/Form/UserAccount.php:59 -msgid "Your mail" -msgstr "Deine E-Mail-Adresse" - -#: IDF/Form/UserAccount.php:61 +#: IDF/Views.php:240 msgid "" -"If you change your email address, an email will be sent to the new address " -"to confirm it." +"Welcome back! Next time, you can use your broswer options to remember the " +"password." msgstr "" -"Falls Du Deine E-Mail-Adresse änderst, wird eine E-Mail zur Bestätigung an " -"die neue Adresse versandt." +"Willkommen zurück! Beim nächsten Mal kannst Du Deine Browsereinstellungen " +"nutzen, um Dich automatisch einzuloggen." -#: IDF/Form/UserAccount.php:80 -msgid "Leave blank if you do not want to change your password." -msgstr "Leer lassen, falls Du Dein Passwort nicht ändern willst." +#: IDF/Views.php:282 +msgid "Here to Help You!" +msgstr "Hier, um dir zu helfen!" -#: IDF/Form/UserAccount.php:207 -msgid "Confirm your new email address." -msgstr "Bestätigung der neuen E-Mail-Adresse" +#: IDF/Views.php:298 +msgid "InDefero API (Application Programming Interface)" +msgstr "InDefero API (Application Programming Interface)" -#: IDF/Form/UserAccount.php:210 +#: IDF/WikiPage.php:62 +msgid "title" +msgstr "Titel" + +#: 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 "" +"Der Titel der Seite darf nur Buchstaben, Zahlen oder einen Bindestrich " +"enthalten. Beispiel: Meine-neue-Wiki-Seite." + +#: IDF/WikiPage.php:71 +msgid "A one line description of the page content." +msgstr "Eine einzeilige Beschreibung des Seiteninhalts." + +#: IDF/WikiPage.php:196 IDF/WikiRevision.php:167 #, php-format -msgid "" -"A validation email has been sent to \"%s\" to validate the email address " -"change." -msgstr "" -"Eine Validierungs-E-Mail wurde an \"%s\" versandt, um die Adressänderung zu " -"überprüfen." +msgid "%2$s, %3$s" +msgstr "%2$s, %3$s" -#: IDF/Form/UserAccount.php:312 -msgid "" -"Please check the key as it does not appear to be a valid SSH public key." -msgstr "" -"Bitte überprüfe den Schlüssel, er scheint kein gültiger öffentlicher SSH-" -"Schlüssel zu sein." +#: IDF/WikiPage.php:198 +#, php-format +msgid "Creation of page %s, by %s" +msgstr "Erstellung von Seite %s, von %s" -#: IDF/Form/UserAccount.php:332 -msgid "" -"Please check the key as it does not appear to be a valid monotone public key." -msgstr "" -"Bitte überprüfe den Schlüssel, er scheint kein gültiger öffentlicher " -"monotone-Schlüssel zu sein." - -#: IDF/Form/UserAccount.php:340 -msgid "Public key looks neither like a SSH nor monotone public key." -msgstr "" -"Der öffentliche Schlüssel sieht weder wie ein öffentlicher SSH- noch ein " -"öffentlichen monotone-Schlüssel aus." - -#: IDF/Form/UserAccount.php:352 -msgid "You already have uploaded this key." -msgstr "Du hast diesen Schlüssel bereits hochgeladen." - -#: IDF/Form/RegisterInputKey.php:36 IDF/Form/RegisterConfirmation.php:40 -msgid "Your confirmation key" -msgstr "Dein Bestätigungs-Schlüssel" - -#: IDF/Form/RegisterInputKey.php:50 IDF/Form/RegisterConfirmation.php:99 -msgid "" -"We are sorry but this confirmation key is not valid. Maybe you should " -"directly copy/paste it from your confirmation email." -msgstr "" -"Dieser Validierungsschlüssel ist leider nicht gültig. Du kannst versuchen, " -"ihn aus der E-Mail zu kopieren." - -#: IDF/Form/IssueCreate.php:192 -msgid "You cannot add a label with the \"Status\" prefix to an issue." -msgstr "" -"Du kannst keine Marke mit dem Präfix \"Status\" zu einem Ticket hinzufügen." - -#: IDF/Form/IssueTrackingConf.php:80 -msgid "" -"Define an issue template to hint the reporter to provide certain information" -msgstr "" -"Definiere eine Ticket-Vorlage, um dem Ersteller Hinweise auf benötigte " -"Informationen zu geben" - -#: IDF/Form/IssueTrackingConf.php:89 -msgid "Open issue status values" -msgstr "Statuswerte für offene Tickets" - -#: IDF/Form/IssueTrackingConf.php:97 -msgid "Closed issue status values" -msgstr "Statuswerte für geschlossene Tickets" - -#: IDF/Form/IssueTrackingConf.php:106 -msgid "Predefined issue labels" -msgstr "Vordefinierte Ticket-Marken" - -#: IDF/Form/IssueTrackingConf.php:108 -msgid "" -"The first \"Type:\" and \"Priority:\" entries found in this list are " -"automatically chosen as defaults for new issues." -msgstr "" -"Die ersten \"Type:\"- und \"Priority:\"-Einträge, die in dieser Liste " -"gefunden werden, werden automatisch als Standardwerte für neue Tickets " -"übernommen." - -#: IDF/Form/IssueTrackingConf.php:116 -msgid "Each issue may have at most one label with each of these classes" -msgstr "Jedes Ticket darf maximal eine Marke von jeder dieser Klassen haben" - -#: IDF/Form/WikiConf.php:49 -msgid "Predefined documentation page labels" -msgstr "Vordefinierte Marken für Dokumentations-Seiten" - -#: IDF/Form/WikiConf.php:58 -msgid "" -"Each documentation page may have at most one label with each of these classes" -msgstr "" -"Jede Dokumentations-Seite darf maximal eine Marke von jeder dieser Klassen " -"haben" - -#: IDF/Form/MembersConf.php:104 -#, fuzzy, php-format -msgid "The following login is invalid: %s." -msgid_plural "The following logins are invalid: %s." -msgstr[0] "Der folgende Anmeldename ist ungültig: %s." -msgstr[1] "Die folgenden Anmeldenamen sind ungültig: %s." - -#: IDF/Form/WikiUpdate.php:83 -msgid "One line to describe the changes you made." -msgstr "Einzeilige Beschreibung der durchgeführten Änderungen." - -#: IDF/Form/TabsConf.php:50 -msgid "Open to all" -msgstr "Für alle offen" - -#: IDF/Form/TabsConf.php:51 -msgid "Signed in users" -msgstr "Angemeldete Benutzer" - -#: IDF/Form/TabsConf.php:54 -msgid "Closed" -msgstr "Geschlossen" - -#: IDF/Form/TabsConf.php:83 -msgid "Extra authorized users" -msgstr "Weitere autorisierte Benutzer" - -#: IDF/Form/UserChangeEmail.php:63 -msgid "" -"The validation key is not valid. Please copy/paste it from your confirmation " -"email." -msgstr "" -"Der Validierungsschlüssel ist ungültig. Bitte kopiere ihn von Deiner " -"Bestätigungs-E-Mail hier hinein." - -#: IDF/Form/UploadConf.php:53 -msgid "Predefined download labels" -msgstr "Vordefinierte Marken für Downloads" - -#: IDF/Form/UploadConf.php:62 -msgid "Each download may have at most one label with each of these classes" -msgstr "Jeder Download darf maximal eine Marke von jeder dieser Klassen haben" - -#: IDF/Form/ReviewFileComment.php:56 -msgid "General comment" -msgstr "Allgemeiner Kommentar" - -#: IDF/Form/ReviewFileComment.php:102 -msgid "You need to provide comments on at least one file." -msgstr "Du musst Kommentare zu mindestens einer Datei angeben." - -#: IDF/Form/ReviewFileComment.php:109 -msgid "You need to provide your general comment about the proposal." -msgstr "Du musst einen allgemeinen Kommentar zu Deinem Vorschlag angeben." - -#: 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 "" -"Dieses Konto wurde bereits bestätigt. Vielleicht möchtest Du versuchen, Dein " -"Passwort über den Hilfe-Link wiederherzustellen?" - -#: IDF/Form/Field/EmailList.php:45 -msgid "Please enter one or more valid email addresses." -msgstr "Bitte gib eine oder mehrere gültige E-Mail-Adressen ein." +#: IDF/WikiPage.php:208 +#, php-format +msgid "%s: Documentation page %s added - %s" +msgstr "%s: Dokumentations-Seite %s hinzugefügt - %s" #: IDF/WikiRevision.php:48 msgid "page" @@ -4578,11 +4849,6 @@ msgstr "Eine einzeilige Beschreibung der Änderungen." msgid "content" msgstr "Inhalt" -#: IDF/WikiRevision.php:167 IDF/WikiPage.php:196 -#, php-format -msgid "%2$s, %3$s" -msgstr "%2$s, %3$s" - #: IDF/WikiRevision.php:189 #, php-format msgid "Change of %s, by %s" @@ -4603,261 +4869,9 @@ msgstr "Neue Dokumentations-Seite %s - %s (%s)" msgid "Documentation Page Changed %s - %s (%s)" msgstr "Dokumentations-Seite geändert %s - %s (%s)" -#: IDF/Review/Patch.php:52 -msgid "review" -msgstr "Code-Besprechung" - -#: IDF/Review/Patch.php:67 -msgid "commit" -msgstr "Revision" - -#: IDF/Review/Patch.php:80 IDF/Review/Comment.php:55 -msgid "patch" -msgstr "Patch" - -#: IDF/Review/Patch.php:151 IDF/Review/Comment.php:139 -#, php-format -msgid "" -"Review %3$d, %4$s" -msgstr "" -"Code-" -"Besprechung %3$d, %4$s" - -#: IDF/Review/Patch.php:153 -#, php-format -msgid "Creation of review %d, by %s" -msgstr "" -"Erzeugung von Code-Besprechung %d, von %" -"s" - -#: IDF/Review/Patch.php:163 -#, php-format -msgid "%s: Creation of Review %d - %s" -msgstr "%s: Erstellung von Code-Besprechung %d -%s" - -#: IDF/Review/Patch.php:204 -#, php-format -msgid "New Code Review %s - %s (%s)" -msgstr "Neue Code-Besprechung %s - %s (%s)" - -#: IDF/Review/Comment.php:83 -msgid "vote" -msgstr "abstimmen" - -#: IDF/Review/Comment.php:141 -#, php-format -msgid "Update of review %d, by %s" -msgstr "" -"Aktualisierung von Code-Besprechung %d, " -"von %s" - -#: IDF/Review/Comment.php:151 -#, php-format -msgid "%s: Updated review %d - %s" -msgstr "%s: Aktualisierte Code-Besprechung %d - %s" - -#: IDF/Review/Comment.php:216 -#, php-format -msgid "Updated Code Review %s - %s (%s)" -msgstr "Aktualisierte Code-Besprechung %s - %s (%s)" - -#: IDF/Plugin/SyncSvn.php:81 IDF/Plugin/SyncMercurial.php:78 -#, php-format -msgid "The repository %s already exists." -msgstr "Das Depot %s existiert bereits." - -#: 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 "" -"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: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 -#, php-format -msgid "The project path %s does not exists." -msgstr "Der Projektpfad %s existiert nicht." - -#: IDF/Plugin/SyncMonotone.php:808 -#, php-format -msgid "The command \"%s\" could not be executed." -msgstr "Das Kommando \"%s\" konnte nicht ausgeführt werden." - -#: IDF/Plugin/SyncMercurial.php:142 -#, php-format -msgid "%s does not exist or is not writable." -msgstr "%s existiert nicht oder ist nicht schreibbar." - -#: IDF/Timeline/Paginator.php:49 -msgid "Today" -msgstr "Heute" - -#: IDF/WikiPage.php:62 -msgid "title" -msgstr "Titel" - -#: 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 "" -"Der Titel der Seite darf nur Buchstaben, Zahlen oder einen Bindestrich " -"enthalten. Beispiel: Meine-neue-Wiki-Seite." - -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." -msgstr "Eine einzeilige Beschreibung des Seiteninhalts." - -#: IDF/WikiPage.php:198 -#, php-format -msgid "Creation of page %s, by %s" -msgstr "Erstellung von Seite %s, von %s" - -#: IDF/WikiPage.php:208 -#, php-format -msgid "%s: Documentation page %s added - %s" -msgstr "%s: Dokumentations-Seite %s hinzugefügt - %s" - -#: IDF/Tag.php:59 -msgid "tag class" -msgstr "Tag-Klasse" - -#: IDF/Tag.php:60 -msgid "The class of the tag." -msgstr "Die Klasse des Tags." - -#: IDF/Tag.php:73 -msgid "lcname" -msgstr "Kleingeschriebener Name" - -#: IDF/Tag.php:74 -msgid "Lower case version of the name for fast searching." -msgstr "Kleingeschriebene Version des Namens zur schnelleren Suche." - -#: IDF/Key.php:49 -msgid "user" -msgstr "Benutzer" - -#: IDF/Key.php:55 -msgid "public key" -msgstr "öffentlicher Schlüssel" - -#: IDF/Key.php:87 -msgid "Invalid or unknown key data detected." -msgstr "Ungültige oder unbekannte Schlüsseldaten bemerkt." - -#: IDF/Template/ShowUser.php:51 -msgid "Anonymous" -msgstr "Anonym" - -#: IDF/Template/ShowUser.php:54 -msgid "Me" -msgstr "Ich" - -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" -msgstr "Erstelle diese Dokumentations-Seite" +#, fuzzy +#~ msgid "here" +#~ msgstr "Andere" #~ msgid "Managed Projects:" #~ msgstr "Verwaltete Projekte:" diff --git a/src/IDF/locale/es_ES/idf.po b/src/IDF/locale/es_ES/idf.po index 380dea2..2754977 100644 --- a/src/IDF/locale/es_ES/idf.po +++ b/src/IDF/locale/es_ES/idf.po @@ -7,180 +7,44 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-23 16:05+0100\n" +"POT-Creation-Date: 2011-02-23 23:36+0100\n" "PO-Revision-Date: 2011-02-23 00:05+0000\n" "Last-Translator: Delkia \n" "Language-Team: LANGUAGE \n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: IDF/IssueComment.php:51 -msgid "issue" -msgstr "ticket" - -#: 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 "comentario" - -#: 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 "autor" - -#: IDF/IssueComment.php:72 IDF/Upload.php:63 IDF/WikiRevision.php:85 -#: IDF/Review/Comment.php:75 -msgid "changes" -msgstr "cambios" - -#: 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 "fecha de creación" - -#: IDF/IssueComment.php:143 IDF/Issue.php:194 -#, php-format -msgid "" -"Issue %3$d, %4$s" -msgstr "" -"Ticket %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 "Resumen:" - -#: 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 "Estado:" - -#: 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 "Propietario:" - -#: 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 "Etiquetas:" - -#: IDF/IssueComment.php:171 -#, php-format -msgid "Comment on issue %d, by %s" -msgstr "Comentario del ticket %d, por %s" - -#: IDF/IssueComment.php:182 -#, php-format -msgid "%s: Comment on issue %d - %s" -msgstr "%s: Comentario del ticket %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 "proyecto" -#: 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/Review/Comment.php:69 IDF/Review.php:80 +#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79 +msgid "submitter" +msgstr "autor" + +#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60 +#: IDF/Review.php:73 IDF/Upload.php:57 IDF/WikiPage.php:70 +#: IDF/WikiRevision.php:65 msgid "summary" msgstr "resumen" -#: IDF/Upload.php:70 -msgid "file" -msgstr "archivo" - -#: IDF/Upload.php:71 -msgid "The path is relative to the upload path." -msgstr "La ruta es relativa al directorio de subidas." - -#: IDF/Upload.php:78 -msgid "file size in bytes" -msgstr "tamaño del archivo en bytes" - -#: IDF/Upload.php:93 IDF/Issue.php:92 IDF/Review.php:95 IDF/WikiPage.php:94 -msgid "labels" -msgstr "etiquetas" - -#: IDF/Upload.php:100 -msgid "number of downloads" -msgstr "número de descargas" - -#: IDF/Upload.php:112 IDF/IssueFile.php:102 IDF/Issue.php:111 -#: IDF/Review.php:114 IDF/WikiPage.php:106 -msgid "modification date" -msgstr "fecha de modificación" - -#: IDF/Upload.php:189 -#, php-format -msgid "Download %2$d, %3$s" -msgstr "Descarga %2$d, %3$s" - -#: IDF/Upload.php:192 -#, php-format -msgid "Addition of download %d, by %s" -msgstr "Agregada la descarga %d, por %s" - -#: IDF/Upload.php:202 -#, php-format -msgid "%s: Download %d added - %s" -msgstr "%s: Descarga %d agregada - %s" - -#: IDF/Upload.php:244 -#, php-format -msgid "New download - %s (%s)" -msgstr "Nueva descarga - %s (%s)" - #: IDF/Commit.php:93 msgid "changelog" msgstr "registro de cambios" +#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79 +#: IDF/IssueFile.php:96 IDF/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 +msgid "creation date" +msgstr "fecha de creación" + #: IDF/Commit.php:238 #, php-format msgid "Commit %s, by %s" @@ -191,6 +55,860 @@ msgstr "Commit %s, por %s" msgid "New Commit %s - %s (%s)" msgstr "Nuevo Commit %s - %s (%s)" +#: IDF/Conf.php:61 IDF/Gconf.php:73 +msgid "key" +msgstr "clave" + +#: IDF/Conf.php:67 IDF/Gconf.php:79 +msgid "value" +msgstr "valor" + +#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:540 +msgid "git" +msgstr "git" + +#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:541 +msgid "Subversion" +msgstr "Subversion" + +#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:542 +msgid "mercurial" +msgstr "mercurial" + +#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:543 +msgid "monotone" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 +#: 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 +msgid "Private project" +msgstr "Proyecto privado" + +#: IDF/Form/Admin/ProjectCreate.php:62 +msgid "Shortname" +msgstr "Nombre corto" + +#: IDF/Form/Admin/ProjectCreate.php:64 +msgid "" +"It must be unique for each project and composed only of letters, digits and " +"dash (-) like \"my-project\"." +msgstr "" +"Debe ser único para cada proyecto y compuesto únicamente de letras, dígitos " +"y el guión (-), como \"mi-proyecto\"." + +#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 +msgid "Short description" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51 +#: IDF/Project.php:79 +msgid "A one line description of the project." +msgstr "Una línea de descripción del proyecto." + +#: IDF/Form/Admin/ProjectCreate.php:77 +msgid "Repository type" +msgstr "Tipo de Repositorio" + +#: IDF/Form/Admin/ProjectCreate.php:85 +msgid "Remote Subversion repository" +msgstr "Repositorio remoto Subversion" + +#: IDF/Form/Admin/ProjectCreate.php:92 IDF/Form/SourceConf.php:40 +msgid "Repository username" +msgstr "Nombre de usuario del Repositorio" + +#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:47 +msgid "Repository password" +msgstr "Contraseña del Repositorio" + +#: 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 "Propietarios del Proyecto" + +#: 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 "Miembros del proyecto" + +#: 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 throught http or https are allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" +"Sólo un repositorio remoto http o https está permitido. Por ejemplo, " +"\"http://somewhere.com/svn/trunk\"." + +#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 +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 "" +"Este nombre corto contiene caracteres no válidos, por favor utiliza sólo " +"letras, dígitos y el guión (-)." + +#: IDF/Form/Admin/ProjectCreate.php:225 +msgid "The shortname cannot start with the dash (-) character." +msgstr "El nombre corto no puede comenzar con el carácter guión (-)." + +#: IDF/Form/Admin/ProjectCreate.php:228 +msgid "The shortname cannot end with the dash (-) character." +msgstr "El nombre corto no puede terminar con el carácter guión (-)." + +#: IDF/Form/Admin/ProjectCreate.php:233 +msgid "This shortname is already used. Please select another one." +msgstr "Este nombre corto ya está en uso. Por favor, seleccione otro." + +#: IDF/Form/Admin/ProjectCreate.php: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/Password.php:76 IDF/Form/Register.php:114 +#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:125 +#: IDF/Form/TabsConf.php:98 IDF/Form/UpdateUpload.php:126 +#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:180 +#: 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 "No se puede guardar el modelo desde un formulario no válido." + +#: IDF/Form/Admin/ProjectCreate.php:295 +msgid "" +"Click on the Project Management tab to set the description of your project." +msgstr "" +"Haga clic en la pestaña Gestión de proyectos para establecer la descripción " +"de su proyecto." + +#: IDF/Form/Admin/ProjectCreate.php:362 +msgid "This project is not available." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:41 +msgid "Confirmation code" +msgstr "Código de confirmación" + +#: IDF/Form/Admin/ProjectDelete.php:46 +msgid "I have made a backup of all the important data of this project." +msgstr "" +"He realizado una copia de seguridad de todos los datos importantes de este " +"proyecto." + +#: IDF/Form/Admin/ProjectDelete.php:55 +msgid "" +"The confirmation code does not match. Please provide a valid confirmation " +"code to delete the project." +msgstr "" +"El código de confirmación no coincide. Por favor, introduzca el código de " +"confirmación válido para eliminar el proyecto." + +#: IDF/Form/Admin/ProjectDelete.php:63 +msgid "Sorry, you really need to backup your data before deletion." +msgstr "Lo sentimos, necesita respaldar sus datos antes de la eliminación." + +#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 +#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40 +msgid "First name" +msgstr "Nombre" + +#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 +#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49 +msgid "Last name" +msgstr "Apellidos" + +#: IDF/Form/Admin/UserCreate.php:56 +msgid "Login" +msgstr "Iniciar sesión" + +#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 +msgid "" +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." +msgstr "" +"El nombre de usuario debe tener entre 3 y 15 caracteres de largo y contener " +"solamente letras y dígitos." + +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "Email" + +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is directly sent to the user." +msgstr "" +"Re-Compruebe la dirección de correo electrónico, la contraseña se envía " +"directamente al usuario" + +#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 +#: IDF/Form/UserAccount.php:66 +msgid "Language" +msgstr "Idioma" + +#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161 +msgid "Add a public key" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:166 +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 "Sus datos para acceder a la forja." + +#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:402 +#, php-format +msgid "The email \"%s\" is already used." +msgstr "La dirección de correo electrónico \"%s\" ya está en uso." + +#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 +#, php-format +msgid "The login \"%s\" can only contain letters and digits." +msgstr "El nombre de usuario \"%s\" solo puede contener letras y digitos." + +#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 +#, php-format +msgid "The login \"%s\" is already used, please find another one." +msgstr "El nombre de usuario \"%s\" ya está en uso, por favor encuentra otro." + +#: IDF/Form/Admin/UserUpdate.php:78 +msgid "Password" +msgstr "Contraseña" + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "Leave blank if you do not want to change the password." +msgstr "Dejar en blanco si no quiere cambiar la contraseña." + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "" +"The password must be hard for other people to find it, but easy for the user " +"to remember." +msgstr "" +"La contraseña debe ser difícil de averiguar para otras personas, pero fácil " +"de recordar para el usuario." + +#: IDF/Form/Admin/UserUpdate.php:89 +msgid "Confirm password" +msgstr "Confirmar contraseña" + +#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php: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 +msgid "Description" +msgstr "Descripción" + +#: 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 "Staff" + +#: IDF/Form/Admin/UserUpdate.php:164 +msgid "If you give staff rights to a user, you really need to trust him." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:213 +msgid "Active" +msgstr "Activo" + +#: IDF/Form/Admin/UserUpdate.php:176 +msgid "" +"If the user is not getting the confirmation email or is abusing the system, " +"you can directly enable or disable his account here." +msgstr "" +"Si el usuario no recibe el email de confirmación o está abusando del " +"sistema, puede directamente activar o desactivar su cuenta aquí." + +#: IDF/Form/Admin/UserUpdate.php:274 +msgid "--- is not a valid first name." +msgstr "--- No es un nombre válido." + +#: IDF/Form/Admin/UserUpdate.php:290 +msgid "" +"A user with this email already exists, please provide another email address." +msgstr "" +"Ya existe un usuario con este correo electrónico , por favor, introduce otro " +"email." + +#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/Upload.php:86 +#: IDF/Form/UserAccount.php:369 +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:425 +msgid "The passwords do not match. Please give them again." +msgstr "Las contraseñas no coinciden. Por favor, vuelve a intentarlo." + +#: IDF/Form/Field/EmailList.php:45 +msgid "Please enter one or more valid email addresses." +msgstr "" + +#: IDF/Form/IssueCreate.php:53 IDF/Form/IssueUpdate.php:45 +#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:71 +#: 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 +msgid "Summary" +msgstr "Resumen" + +#: IDF/Form/IssueCreate.php:72 IDF/Form/IssueUpdate.php:65 +#: IDF/Form/ReviewCreate.php:83 +msgid "The \"upload_issue_path\" configuration variable was not set." +msgstr "" +"La variable de configuración \"upload_issue_path\" no se ha establecido." + +#: IDF/Form/IssueCreate.php:82 IDF/Form/IssueUpdate.php:75 +msgid "Attach a file" +msgstr "Adjuntar un archivo" + +#: IDF/Form/IssueCreate.php:95 IDF/Form/IssueUpdate.php:88 +#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:81 +#: 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 +msgid "Status" +msgstr "Estado" + +#: IDF/Form/IssueCreate.php:104 IDF/Form/IssueUpdate.php:98 +msgid "Owner" +msgstr "Propietario" + +#: IDF/Form/IssueCreate.php:150 IDF/Form/IssueUpdate.php:117 +#: 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 +msgid "You cannot add a label with the \"Status\" prefix to an issue." +msgstr "" + +#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 +#: 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/Upload.php:119 +#, php-format +msgid "You cannot provide more than label from the %s class to an issue." +msgstr "" + +#: IDF/Form/IssueCreate.php:210 IDF/Form/IssueUpdate.php:147 +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 +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 the reporter to provide certain information" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:89 +msgid "Open issue status values" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:97 +msgid "Closed issue status values" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:106 +msgid "Predefined issue labels" +msgstr "Etiquetas de tickets predefinidas" + +#: IDF/Form/IssueTrackingConf.php:108 +msgid "" +"The first \"Type:\" and \"Priority:\" entries found in this list are " +"automatically chosen as defaults for new issues." +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:116 +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/WikiUpdate.php:82 +msgid "Comment" +msgstr "Comentario" + +#: IDF/Form/IssueUpdate.php:219 +msgid "No changes were entered." +msgstr "No se han introducido cambios." + +#: IDF/Form/MembersConf.php:104 +#, php-format +msgid "The following login is invalid: %s." +msgid_plural "The following logins are invalid: %s." +msgstr[0] "" +msgstr[1] "" + +#: IDF/Form/Password.php:34 +msgid "Your login or email" +msgstr "Su nombre de usuario o correo electrónico" + +#: IDF/Form/Password.php:35 +msgid "Provide either your login or your email to recover your password." +msgstr "" +"Proporcione su nombre de usuario o dirección de correo electrónico para " +"recuperar la contraseña." + +#: IDF/Form/Password.php:49 IDF/Form/Password.php:64 +msgid "" +"Sorry, we cannot find a user with this email address or login. Feel free to " +"try again." +msgstr "" +"Lo sentimos, no hemos encontrado ningún usuario con esta dirección de correo " +"electrónico o nombre de usuario. Vuelva a intentarlo." + +#: IDF/Form/Password.php:100 +msgid "Password Recovery - InDefero" +msgstr "Recuperar la contraseña - InDefero" + +#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39 +#: IDF/Form/UserChangeEmail.php:36 +msgid "Your verification key" +msgstr "Tu clave de verificación" + +#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89 +msgid "" +"We are sorry but this validation key is not valid. Maybe you should directly " +"copy/paste it from your validation email." +msgstr "" +"Lo sentimos, pero esta clave de validación no es válida. Intente copiar/" +"pegar desde el email de validación." + +#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100 +msgid "" +"Sorry, but this verification key has expired, please restart the password " +"recovery sequence. For security reasons, the verification key is only valid " +"24h." +msgstr "" +"Lo sentimos, pero esta clave de verificación ha expirado, por favor, " +"reinicie la secuencia de recuperación de la contraseña. Por razones de " +"seguridad, la clave de verificación sólo es válida durante 24 horas." + +#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108 +#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72 +msgid "Cannot save an invalid form." +msgstr "No se puede guardar un formulario no válido." + +#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69 +#: IDF/Form/UserAccount.php:77 +msgid "Your password" +msgstr "Su contraseña" + +#: IDF/Form/PasswordReset.php:48 IDF/Form/RegisterConfirmation.php:72 +#: IDF/Form/UserAccount.php:80 +msgid "" +"Your password must be hard for other people to find it, but easy for you to " +"remember." +msgstr "" +"Su contraseña debe ser difícil de averiguar por otras personas, pero fácil " +"de recordar." + +#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80 +#: IDF/Form/UserAccount.php:89 +msgid "Confirm your password" +msgstr "Confirme su contraseña" + +#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122 +msgid "The two passwords must be the same." +msgstr "Las dos contraseñas deben ser iguales." + +#: IDF/Form/PasswordReset.php:77 +msgid "" +"This account is not active. Please contact the forge administrator to " +"activate it." +msgstr "" +"Esta cuenta no está activa. Póngase en contacto con el administrador de la " +"forja para activarlo." + +#: IDF/Form/Register.php:41 +msgid "Your login" +msgstr "Tu nombre de usuario" + +#: IDF/Form/Register.php:53 +msgid "Your email" +msgstr "Tu correo electrónico" + +#: IDF/Form/Register.php:55 +msgid "We will never send you any unsolicited emails. We hate spams too!" +msgstr "Nunca le enviaremos emails no solicitados. ¡También odiamos el spam!" + +#: IDF/Form/Register.php:60 +msgid "I agree to the terms and conditions." +msgstr "Estoy de acuerdo con los términos y condiciones." + +#: IDF/Form/Register.php:88 +msgid "" +"We know, this is boring, but you need to agree with the terms and conditions." +msgstr "" +"Lo sabemos, esto es aburrido, pero es necesario aceptar los términos y " +"condiciones." + +#: IDF/Form/Register.php:99 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need, click on the help link to " +"recover your password." +msgstr "" +"La dirección de correo electrónico \"%s\" ya está en uso. Si es necesario, " +"puede hacer clic en el enlace de ayuda para recuperar la contraseña." + +#: IDF/Form/Register.php:150 +msgid "Confirm the creation of your account." +msgstr "Confirme la creación de su cuenta." + +#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36 +msgid "Your confirmation key" +msgstr "Tu clave de confirmación" + +#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50 +msgid "" +"We are sorry but this confirmation key is not valid. Maybe you should " +"directly copy/paste it from your confirmation email." +msgstr "" +"Lo sentimos, pero esta clave de confirmación no es válida. Pruebe a copiar y " +"pegar directamente desde el email de confirmación." + +#: IDF/Form/RegisterConfirmation.php:110 +msgid "" +"This account has already been confirmed. Maybe should you try to recover " +"your password using the help link." +msgstr "" +"Esta cuenta ya ha sido confirmada. Trate de recuperar su contraseña usando " +"el enlace de ayuda." + +#: IDF/Form/ReviewCreate.php:74 +#: IDF/gettexttemplates/idf/source/base.html.php:5 +#: IDF/gettexttemplates/idf/source/changelog.html.php:7 +msgid "Commit" +msgstr "Commit" + +#: IDF/Form/ReviewCreate.php:92 +msgid "Patch" +msgstr "Patch" + +#: IDF/Form/ReviewCreate.php:119 +msgid "We were not able to parse your patch. Please provide a valid patch." +msgstr "" +"No hemos podido analizar el parche. Por favor, proporcione un parche válido." + +#: IDF/Form/ReviewCreate.php:128 +msgid "You provided an invalid commit." +msgstr "Ha introducido un commit no válido." + +#: IDF/Form/ReviewCreate.php:202 +msgid "Initial patch to be reviewed." +msgstr "El Parche inicial debe ser revisado." + +#: IDF/Form/ReviewFileComment.php:56 +msgid "General comment" +msgstr "Comentario General" + +#: IDF/Form/ReviewFileComment.php:102 +msgid "You need to provide comments on at least one file." +msgstr "Debe hacer comentarios sobre al menos un archivo." + +#: IDF/Form/ReviewFileComment.php:109 +msgid "You need to provide your general comment about the proposal." +msgstr "Debe hacer un comentario general sobre la propuesta." + +#: 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.orig.php:5 +#: IDF/gettexttemplates/idf/base-full.html.php:5 +#: IDF/gettexttemplates/idf/base.html.orig.php:5 +#: IDF/gettexttemplates/idf/base.html.php:5 +#: IDF/gettexttemplates/idf/downloads/base.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14 +#: IDF/Views/Project.php:75 +msgid "Downloads" +msgstr "Descargas" + +#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.orig.php:9 +#: IDF/gettexttemplates/idf/base-full.html.php:9 +#: IDF/gettexttemplates/idf/base.html.orig.php:9 +#: IDF/gettexttemplates/idf/base.html.php:9 +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.orig.php:6 +#: IDF/gettexttemplates/idf/base-full.html.php:6 +#: IDF/gettexttemplates/idf/base.html.orig.php:6 +#: IDF/gettexttemplates/idf/base.html.php:6 +msgid "Documentation" +msgstr "Documentación" + +#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:8 +#: IDF/gettexttemplates/idf/base-full.html.php:8 +#: IDF/gettexttemplates/idf/base.html.orig.php:8 +#: IDF/gettexttemplates/idf/base.html.php:8 +msgid "Source" +msgstr "Fuentes" + +#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.orig.php:7 +#: IDF/gettexttemplates/idf/base-full.html.php:7 +#: IDF/gettexttemplates/idf/base.html.orig.php:7 +#: IDF/gettexttemplates/idf/base.html.php:7 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17 +msgid "Issues" +msgstr "Tickets" + +#: IDF/Form/TabsConf.php:50 +msgid "Open to all" +msgstr "Abierto a Todos" + +#: IDF/Form/TabsConf.php:51 +msgid "Signed in users" +msgstr "Usuarios Registrados" + +#: IDF/Form/TabsConf.php:54 +msgid "Closed" +msgstr "Cerrado" + +#: IDF/Form/TabsConf.php:83 +msgid "Extra authorized users" +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 +msgid "File" +msgstr "Archivo" + +#: IDF/Form/UploadConf.php:53 +msgid "Predefined download labels" +msgstr "Etiquetas predefinidas para descarga" + +#: IDF/Form/UploadConf.php:62 +msgid "Each download may have at most one label with each of these classes" +msgstr "" +"Cada descarga puede tener como máximo una etiqueta para cada una de estas " +"clases." + +#: IDF/Form/UserAccount.php:59 +msgid "Your mail" +msgstr "Su correo electrónico" + +#: IDF/Form/UserAccount.php:61 +msgid "" +"If you change your email address, an email will be sent to the new address " +"to confirm it." +msgstr "" +"Si cambia su dirección de correo electrónico, un email será enviado a la " +"dirección nueva para confirmarla." + +#: IDF/Form/UserAccount.php:80 +msgid "Leave blank if you do not want to change your password." +msgstr "Dejar en blanco si no desea cambiar su contraseña." + +#: IDF/Form/UserAccount.php:209 +msgid "Confirm your new email address." +msgstr "Confirme su nueva dirección de correo electrónico." + +#: IDF/Form/UserAccount.php:212 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" +"Un email de validación ha sido enviado a \"%s\" para validar el cambio de " +"dirección de correo electrónico." + +#: IDF/Form/UserAccount.php:314 +msgid "" +"Please check the key as it does not appear to be a valid SSH public key." +msgstr "" + +#: IDF/Form/UserAccount.php:334 +msgid "" +"Please check the key as it does not appear to be a valid monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:342 +msgid "Public key looks neither like a SSH nor monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:354 +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 "" +"La clave de validación no es válido. Por favor, copia/pega desde su email de " +"confirmación." + +#: IDF/Form/WikiConf.php:49 +msgid "Predefined documentation page labels" +msgstr "Etiquetas predefinidas para página de documentación" + +#: IDF/Form/WikiConf.php:58 +msgid "" +"Each documentation page may have at most one label with each of these classes" +msgstr "" +"Cada página de documentación podrá tener más de una etiqueta para cada una " +"de estas clases" + +#: IDF/Form/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 "Título de la página" + +#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56 +msgid "" +"The page name must contains only letters, digits and the dash (-) character." +msgstr "" +"El nombre de la página debe contener sólo letras, dígitos y el carácter " +"guión (-)." + +#: IDF/Form/WikiCreate.php:71 IDF/Form/WikiUpdate.php:61 +msgid "This one line description is displayed in the list of pages." +msgstr "Breve descripción que se mostrará en la lista de páginas." + +#: IDF/Form/WikiCreate.php:80 IDF/Form/WikiUpdate.php:72 +msgid "Content" +msgstr "Contenido" + +#: IDF/Form/WikiCreate.php:108 IDF/Form/WikiUpdate.php:119 +msgid "The title contains invalid characters." +msgstr "El título contiene caracteres no válidos." + +#: IDF/Form/WikiCreate.php:114 IDF/Form/WikiUpdate.php:125 +msgid "A page with this title already exists." +msgstr "Una página con este título ya existe." + +#: 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 "" +"No puede proporcionar más de una etiqueta para la clase %s en una página." + +#: IDF/Form/WikiCreate.php:200 +msgid "Initial page creation" +msgstr "Creación de la página inicial" + +#: IDF/Form/WikiDelete.php:39 +msgid "Yes, I understand that the page and all its revisions will be deleted." +msgstr "Sí, entiendo que la página y todas sus revisiones serán eliminados." + +#: IDF/Form/WikiDelete.php:50 +msgid "You need to confirm the deletion." +msgstr "Necesitas confirmar la eliminación." + +#: IDF/Form/WikiUpdate.php:83 +msgid "One line to describe the changes you made." +msgstr "Breve descripción para los cambios realizados." + #: IDF/Gconf.php:60 IDF/Search/Occ.php:56 msgid "model class" msgstr "clase del modelo" @@ -199,82 +917,488 @@ msgstr "clase del modelo" msgid "model id" msgstr "id del modelo" -#: IDF/Gconf.php:73 IDF/Conf.php:61 -msgid "key" -msgstr "clave" +#: IDF/gettexttemplates/idf/admin/base.html.php:3 +msgid "Project Summary" +msgstr "Resumen del proyecto" -#: IDF/Gconf.php:79 IDF/Conf.php:67 -msgid "value" -msgstr "valor" +#: IDF/gettexttemplates/idf/admin/base.html.php:6 +msgid "Issue Tracking" +msgstr "Seguimiento de Ticket" + +#: IDF/gettexttemplates/idf/admin/base.html.php:8 +msgid "Project Members" +msgstr "Miembros de proyecto" + +#: IDF/gettexttemplates/idf/admin/base.html.php:9 +msgid "Tabs Access and Notifications" +msgstr "Pestañas de Accesos y Notificaciones" + +#: IDF/gettexttemplates/idf/admin/downloads.html.php:3 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:3 +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/downloads.html.php:8 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8 +#: IDF/gettexttemplates/idf/admin/members.html.php:13 +#: IDF/gettexttemplates/idf/admin/source.html.php:31 +#: IDF/gettexttemplates/idf/admin/summary.html.php:8 +#: IDF/gettexttemplates/idf/admin/tabs.html.php:15 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:8 +msgid "Save Changes" +msgstr "Guardar cambios" + +#: IDF/gettexttemplates/idf/admin/members.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/update.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 "" + +#: IDF/gettexttemplates/idf/admin/members.html.php:8 +#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 +msgid "" +"\n" +"

    Notes:

    \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 "" + +#: IDF/gettexttemplates/idf/admin/source.html.php:3 +msgid "You can find here the current repository configuration of your project." +msgstr "" +"Puede encontrar aquí la configuración actual del repositorio de su proyecto." + +#: IDF/gettexttemplates/idf/admin/source.html.php:4 +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 "" +"El formulario contiene algunos errores. Por favor, corríjalos para " +"actualizar la configuración de las fuentes." + +#: IDF/gettexttemplates/idf/admin/source.html.php:27 +msgid "Repository type:" +msgstr "Tipo de Repositorio:" + +#: IDF/gettexttemplates/idf/admin/source.html.php:28 +msgid "Repository access:" +msgstr "Acceso Repositorio:" + +#: IDF/gettexttemplates/idf/admin/source.html.php:29 +msgid "Repository size:" +msgstr "Tamaño Respositorio:" + +#: IDF/gettexttemplates/idf/admin/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" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/summary.html.php:7 +msgid "" +"The form contains some errors. Please correct them to update the summary." +msgstr "" +"El formulario contiene algunos errores. Por favor, corríjalos para " +"actualizar el resumen." + +#: IDF/gettexttemplates/idf/admin/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 "" +"Si marca un proyecto como privado, sólo los miembros del proyecto y los " +"administradores, junto con los usuarios adicionales autorizados tendrán " +"acceso al proyecto. Podrá definir nuevos permisos de acceso para las " +"diferentes pestañas, pero \"Abierto a todos\" y \"Usuarios Registrados\" se " +"establecerán por defecto para autorizar usuarios." + +#: IDF/gettexttemplates/idf/admin/tabs.html.php: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 "" +"Especifique cada persona con su usuario. Cada persona debe haberse " +"registrado con el usuario proporcionado. Separe los usuarios con comas y/o " +"nueva línea." + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:12 +msgid "" +"The form contains some errors. Please correct them to update the access " +"rights." +msgstr "" +"El formulario contiene algunos errores. Por favor, corríjalos para " +"actualizar los derechos de acceso." + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:13 +msgid "Access Rights" +msgstr "Derechos de Acceso" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:14 +msgid "Notification Email" +msgstr "Notificación por 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 "Instrucciones:" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:3 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.orig.php:3 +#: IDF/gettexttemplates/idf/base.html.php:3 +#, php-format +msgid "" +"Sign in or create your account to create issues or " +"add comments" +msgstr "" +"Accede o create una cuenta para crear tickets y " +"añadir comentarios" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:4 +#: IDF/gettexttemplates/idf/base-full.html.php:4 +#: IDF/gettexttemplates/idf/base.html.orig.php:4 +#: IDF/gettexttemplates/idf/base.html.php:4 +msgid "Project Home" +msgstr "Inicio del Proyecto" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:10 +#: IDF/gettexttemplates/idf/base-full.html.php:10 +#: IDF/gettexttemplates/idf/base.html.orig.php:10 +#: IDF/gettexttemplates/idf/base.html.php:10 +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 +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 " +"systems. Are you sure, you will not affect anybody when removing this file?" +msgstr "" +"¡Atención! Si desea eliminar una versión específica del " +"software, tal vez, alguien está utilizando esta versión específica para " +"ejecutarlo en su sistema. ¿Estás seguro de que no afectará a nadie cuando se " +"elimine este archivo?" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 +#, php-format +msgid "" +"Instead of deleting the file, you could mark it as " +"deprecated." +msgstr "" +"En lugar de borrar el archivo, puede marcarlo como " +"obsoleto." + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:5 +#: IDF/gettexttemplates/idf/downloads/view.html.php:4 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:4 +#: IDF/gettexttemplates/idf/issues/view.html.php:7 +#: IDF/gettexttemplates/idf/wiki/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 "por %%submitter%%" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:6 +msgid "Delete File" +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/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:25 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: 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/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +#: 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 "Cancelar" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:8 +#: IDF/gettexttemplates/idf/downloads/view.html.php:13 +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.php:27 +#: IDF/gettexttemplates/idf/review/view.html.php:26 +#: 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 "Actualización:" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:10 +#: IDF/gettexttemplates/idf/downloads/view.html.php:15 +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:12 +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/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:20 +#: IDF/gettexttemplates/idf/issues/view.html.php:31 +#: 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 "Etiquetas:" + +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3 +msgid "A new file is available for download:" +msgstr "Un nuevo archivo está disponible desde descargas:" + +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4 +#: IDF/gettexttemplates/idf/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 "Hola," + +#: 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 "Proyecto:" + +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6 +msgid "Submitted by:" +msgstr "Enviado por:" + +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8 +msgid "Download:" +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/user/public.html.php:4 +msgid "Description:" +msgstr "Descripción:" + +#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3 +msgid "Details" +msgstr "Detalles" + +#: IDF/gettexttemplates/idf/downloads/index.html.php:3 +#, php-format +msgid "See the deprecated files." +msgstr "Ver archivos obsoletos." + +#: IDF/gettexttemplates/idf/downloads/index.html.php:5 +msgid "Number of files:" +msgstr "Número de archivos:" + +#: IDF/gettexttemplates/idf/downloads/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 "" +"Cada archivo debe tener un nombre distinto y el contenido del archivo\n" +"no se puede cambiar, así que asegúrese de incluir los números de versión en " +"el nombre de cada\n" +"archivo." + +#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 +#, php-format +msgid "" +"You can use the Markdown syntax for the description." +msgstr "" +"Puede usar sintaxis de Marcado para la descripción." + +#: IDF/gettexttemplates/idf/downloads/submit.html.php:7 +msgid "The form contains some errors. Please correct them to submit the file." +msgstr "" +"El formulario contiene algunos errores. Por favor, corríjalo para enviar el " +"archivo." + +#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 +msgid "Submit File" +msgstr "Enviar Archivo" + +#: 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 "Instrucciones" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:3 +msgid "" +"Attention! This file is marked as deprecated, download it " +"only if you are sure you need this specific version." +msgstr "" +"¡Atención! Este archivo está marcado como obsoleto, " +"descárgalo sólo si está seguro de que necesita esta versión específica." + +#: IDF/gettexttemplates/idf/downloads/view.html.php:5 +msgid "Changes" +msgstr "Cambios" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:6 +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 +msgid "Update File" +msgstr "Actualizar archivo" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:11 +msgid "Remove this file" +msgstr "Eliminar este archivo" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:10 +#: 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 +msgid "Delete this file" +msgstr "Eliminar este archivo" + +#: IDF/gettexttemplates/idf/faq-api.html.php:3 +#: IDF/gettexttemplates/idf/faq.html.php:34 +msgid "Here we are, just to help you." +msgstr "Aquí estamos, para ayudarte." -#: IDF/Views.php:45 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:45 msgid "Projects" msgstr "Proyectos" -#: IDF/Views.php:88 IDF/gettexttemplates/idf/register/index.html.php:6 -msgid "Create Your Account" -msgstr "Crea tu cuenta" - -#: IDF/Views.php:124 IDF/Views.php:150 -msgid "Confirm Your Account Creation" -msgstr "Confirma la creación de tu cuenta" - -#: IDF/Views.php:170 -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:196 IDF/Views.php:220 IDF/Views.php:261 -msgid "Password Recovery" -msgstr "Recuperación de la contraseña" - -#: IDF/Views.php:240 -msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." -msgstr "" -"¡Bienvenido de nuevo! La próxima vez, puede utilizar la opcione de tu " -"navegador para recordar la contraseña." - -#: IDF/Views.php:282 -msgid "Here to Help You!" -msgstr "¡Aquí para ayudarte!" - -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" -msgstr "InDefero API (Interfaz de Programación de la Aplicación)" - -#: IDF/Scm/Mercurial.php:140 IDF/Scm/Git.php:234 -#, php-format -msgid "Folder %1$s not found in commit %2$s." -msgstr "Directorio %1$s no encontrado in commit %2$s." - -#: IDF/Scm/Mercurial.php:157 IDF/Scm/Git.php:352 -#, php-format -msgid "Not a valid tree: %s." -msgstr "No es un árbol válido: %s." - -#: 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:183 -#, php-format -msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." -msgstr "Valor no válido para el parámetro %1$s: %2$s. Utilice %3$s." - #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

    This is simple:

    \n" @@ -393,167 +1517,38 @@ msgstr "Alt+2: Saltar los menús." msgid "Alt+4: Search (when available)." msgstr "Alt+4: Búsqueda (cuando esté disponible)." -#: IDF/gettexttemplates/idf/faq.html.php:34 -#: IDF/gettexttemplates/idf/faq-api.html.php:3 -msgid "Here we are, just to help you." -msgstr "Aquí estamos, para ayudarte." +#: IDF/gettexttemplates/idf/gadmin/base.html.php:4 +msgid "People" +msgstr "Personas" -#: 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 "Oups, we found an error in the form." -msgstr "Oups, se encontró un error en el formulario." +#: IDF/gettexttemplates/idf/gadmin/home.html.php:3 +msgid "You have here access to the administration of the forge." +msgstr "Tienes aquí el acceso a la administración de la forja." -#: IDF/gettexttemplates/idf/register/inputkey.html.php:4 -msgid "Confirm Your Account" -msgstr "Confirma tu cuenta" +#: 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 "Bienvenido" -#: 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:12 -#: 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 "Cancelar" +#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3 +#: IDF/gettexttemplates/idf/main-menu.html.php:6 +msgid "Project List" +msgstr "Lista de Proyectos" -#: 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 "Instrucciones" +#: 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 "Crear proyecto" -#: 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 "" -"Lea los términos y condiciones " -"– basicamente \"Por favor, sea amable y respetuoso\"." - -#: 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 "Oups, please check the provided login and email address to register." -msgstr "" -"Oups, por favor verifique el usuario y dirección de correo electrónico para " -"registrarse." - -#: 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." - -#: 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 "Oups, please check the form for errors." -msgstr "Oups, por favor revise los errores del formulario." - -#: 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 "Inicio de sesión:" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 -msgid "Email:" -msgstr "Email:" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:6 -msgid "Enable Your Account" -msgstr "Activar tu cuenta" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 -msgid "" -"This is the last step, but just be sure to have the cookies enabled to log in afterwards." -msgstr "" -"Este es el último paso, pero asegúrese de tener las cookies " -"activadas para identificarte." - -#: 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 "Cambiar Detalles del Proyecto" #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3 msgid "" @@ -580,19 +1575,6 @@ msgid "" "

    Separate the logins with commas and/or new lines.

    \n" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 -#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 -#: IDF/gettexttemplates/idf/admin/members.html.php:8 -msgid "" -"\n" -"

    Notes:

    \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 "" - #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14 msgid "" "The form contains some errors. Please correct them to create the project." @@ -604,18 +1586,6 @@ msgstr "" 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 "Crear proyecto" - -#: 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 "Instrucciones:" - #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3 #, php-format msgid "" @@ -650,15 +1620,6 @@ msgstr "Pestaña" msgid "Number" msgstr "Número" -#: 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 "Descargas" - #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15 msgid "Code reviews" msgstr "Comentários del código" @@ -668,12 +1629,6 @@ msgstr "Comentários del código" msgid "Commits" msgstr "Commits" -#: 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 "Tickets" - #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18 msgid "Documentation pages" msgstr "Páginas documentación" @@ -699,18 +1654,11 @@ msgid "Repositories:" msgstr "Repositorios:" #: 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 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 msgid "Attachments:" msgstr "Archivos adjuntos:" -#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 -#: IDF/gettexttemplates/idf/index.html.php:12 -#: IDF/gettexttemplates/idf/downloads/delete.html.php:10 -#: IDF/gettexttemplates/idf/downloads/view.html.php:15 -msgid "Downloads:" -msgstr "Descargas:" - #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7 msgid "Database:" msgstr "Base de datos:" @@ -719,16 +1667,6 @@ msgstr "Base de datos:" msgid "Total Forge:" msgstr "Total Forja:" -#: 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 "" - #: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13 msgid "" "The form contains some errors. Please correct them to update the project." @@ -750,25 +1688,24 @@ msgstr "Actualizar Proyecto" msgid "Delete this project" msgstr "Eliminar este proyecto" -#: 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 "Papelera" - #: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21 msgid "You will be asked to confirm." msgstr "Se le pedirá confirmación." -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3 -#: IDF/gettexttemplates/idf/main-menu.html.php:6 -msgid "Project List" -msgstr "Lista de Proyectos" +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" +msgstr "Lista de usuarios" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 -msgid "Change Project Details" -msgstr "Cambiar Detalles del Proyecto" +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13 +msgid "Update User" +msgstr "Actualizar usuario" + +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5 +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4 +msgid "Create User" +msgstr "Crear usuario" #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3 msgid "The form contains some errors. Please correct them to create the user." @@ -776,11 +1713,6 @@ msgstr "" "El formulario contiene algunos errores. Por favor, corríjalos para crear el " "usuario." -#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4 -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5 -msgid "Create User" -msgstr "Crear usuario" - #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6 msgid "The user password will be sent by email to the user." msgstr "La contraseña será enviada por correo electrónico al usuario." @@ -840,6 +1772,13 @@ msgstr "" "El formulario contiene algunos errores. Por favor, corríjalos para " "actualizar el usuario." +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:4 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:4 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4 +msgid "Login:" +msgstr "Inicio de sesión:" + #: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11 #: IDF/gettexttemplates/idf/user/myaccount.html.php:5 msgid "Public Profile" @@ -849,15 +1788,22 @@ msgstr "" 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 "Actualizar usuario" +#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 +msgid "Configured servers" +msgstr "" -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" -msgstr "Lista de usuarios" +#: 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/control.html.php:3 msgid "current server status:" @@ -959,1052 +1905,11 @@ msgstr "" 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 "Personas" - -#: 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 "Tienes aquí el acceso a la administración de la forja." - -#: 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 "Bienvenido" - -#: IDF/gettexttemplates/idf/login_form.html.php:3 -#, fuzzy -msgid "What is your account information?" -msgstr "¿Cuál es tu usuario?" - -#: IDF/gettexttemplates/idf/login_form.html.php:4 -msgid "My login is" -msgstr "Mi identificador es" - -#: IDF/gettexttemplates/idf/login_form.html.php:5 -#, fuzzy -msgid "My password is" -msgstr "mi contraseña es" - -#: IDF/gettexttemplates/idf/login_form.html.php:6 -msgid "Sign in" -msgstr "Ingresar" - -#: IDF/gettexttemplates/idf/login_form.html.php:7 -msgid "I lost my password!" -msgstr "¡He perdido mi contraseña!" - -#: IDF/gettexttemplates/idf/login_form.html.php:8 -#, fuzzy -msgid "Welcome." -msgstr "Bienvenido" - -#: IDF/gettexttemplates/idf/login_form.html.php:9 -msgid "If you don't have an account yet, you can create one" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:10 -#, fuzzy -msgid "here" -msgstr "Otros" - -#: IDF/gettexttemplates/idf/login_form.html.php:11 -#, fuzzy -msgid "It takes less than a minute to create your account" -msgstr "Accede o create una cuenta" - -#: IDF/gettexttemplates/idf/user/public.html.php:3 +#: IDF/gettexttemplates/idf/index.atom.php:3 #, php-format -msgid "You are looking at the public profile of %%member%%." -msgstr "Estás viendo el perfil público de %%member%%." - -#: IDF/gettexttemplates/idf/user/public.html.php: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 "Descripción:" - -#: IDF/gettexttemplates/idf/user/public.html.php:5 -msgid "Twitter:" +msgid "Personal project feed for %%user%%." 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 "Última vez visto:" - -#: IDF/gettexttemplates/idf/user/public.html.php:9 -msgid "Member since:" -msgstr "Miembro desde:" - -#: IDF/gettexttemplates/idf/user/changeemail-email.txt.php:3 -#, php-format -msgid "" -"Hello %%user%%,\n" -"\n" -"To confirm that you want %%email%%\n" -"to be your new email address, just follow this link:\n" -"\n" -"%%url%%\n" -"\n" -"Alternatively, go to this page:\n" -"\n" -"%%urlik%%\n" -"\n" -"and provide the following verification key:\n" -"\n" -"%%key%%\n" -"\n" -"If you do not want to change your email address, \n" -"just ignore this message.\n" -"\n" -"Yours faithfully,\n" -"The development team.\n" -msgstr "" -"Hola %%user%%,\n" -"\n" -"Para confirmar que quieres %%email%%\n" -"como nuevo email, solo tienes que seguir este enlace:\n" -"\n" -"%%url%%\n" -"\n" -"Alternativamente, vaya a esta página:\n" -"\n" -"%%urlik%%\n" -"\n" -"y proporciona el siguiente código de verificación:\n" -"\n" -"%%key%%\n" -"\n" -"Si no desea cambiar su dirección email, \n" -"simplemente ignore este mensaje.\n" -"\n" -"Atentamente,\n" -"El equipo de desarrollo.\n" - -#: IDF/gettexttemplates/idf/user/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/myaccount.html.php:6 -msgid "Key Management" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:7 -msgid "Extra password" -msgstr "Contraseña adicional" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 -msgid "" -"This password is used to access some of the external systems managed by our " -"infrastructure. It will be regenerated if you change your password." -msgstr "" -"Esta contraseña se utiliza para acceder a algunos de los sistemas externos " -"gestionados por nuestra infraestructura. Se regenerará si usted cambia su " -"contraseña." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 -msgid "API key" -msgstr "Clave de API" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 -msgid "" -"Your API key will be regenerated automatically if you change your password." -msgstr "" -"La clave de la API se regenera automáticamente si usted cambia su contraseña." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 -msgid "Update Your Account" -msgstr "Actualiza tu cuenta" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 -msgid "Your Current Public Keys" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 -msgid "Delete this key" -msgstr "Eliminar esta clave" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 -msgid "" -"If possible, use your real name. By using your real name, people will have " -"more trust in your comments and remarks." -msgstr "" -"Si es posible, use su nombre real. Mediante el uso de su nombre real, las " -"personas tendrán más confianza en sus comentarios y observaciones." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 -msgid "" -"The extra password is used to access some of the external systems and the " -"API key is used to interact with this website using a program." -msgstr "" -"La contraseña adicional se utiliza para acceder a algunos de los sistemas " -"externos y la clave de la API se utiliza para interactuar con este sitio web " -"utilizando un programa." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 -msgid "Show API key and extra password" -msgstr "Mostrar clave de API y contraseña adicional" - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:3 -#, php-format -msgid "Update your account." -msgstr "Actualiza tu cuenta." - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:4 -#, php-format -msgid "See your public profile." -msgstr "Ver tu perfil público." - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:5 -#, php-format -msgid "See your forge issue watch list." -msgstr "" - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:6 -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7 -msgid "Working issues:" -msgstr "Tickets en curso:" - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:7 -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:6 -msgid "Submitted issues:" -msgstr "Tickets enviados:" - -#: IDF/gettexttemplates/idf/user/changeemail.html.php:4 -msgid "Confirm Your New Email Address" -msgstr "Confirme su nueva dirección de email" - -#: IDF/gettexttemplates/idf/user/changeemail.html.php:7 -#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:7 -msgid "" -"Use your email software to read your emails and open your verification " -"email. Either click directly on the verification link or copy/paste the " -"verification key in the box and submit the form." -msgstr "" -"Utilice su software de correo electrónico para leer su email y abrir su " -"email de verificación. Puede hacer clic directamente en el enlace de " -"verificación o copiar y pegar la clave de verificación en la caja y darle a " -"enviar en el formulario." - -#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4 -msgid "Recover Your Password" -msgstr "Recuperar contraseña" - -#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:8 -msgid "" -"Just after providing the confirmation key, you will be able to reset your " -"password and use again this website fully." -msgstr "" -"Sólo después de proporcionar la clave de confirmación, usted podrá " -"restablecer la contraseña y usar completamente este sitio web." - -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 -msgid "Reset Your Password" -msgstr "Restablecer contraseña" - -#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 -msgid "" -"Oups, please check the provided login or email address to recover your " -"password." -msgstr "" -"Oups, por favor indique su usuario o dirección de correo electrónico para " -"recuperar su contraseña." - -#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4 -msgid "Recover My Password" -msgstr "Recuperar mi contraseña" - -#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6 -msgid "" -"Provide either your login or email address, if a corresponding user is found " -"in the database, we will send you an email with the details on how to reset " -"your password." -msgstr "" -"Proporcione un usuario o dirección de correo electrónico, si el usuario " -"correspondiente se encuentra en la base de datos, le enviaremos un email con " -"los detalles sobre cómo restablecer su contraseña." - -#: IDF/gettexttemplates/idf/wiki/create.html.php:3 -#: IDF/gettexttemplates/idf/wiki/update.html.php:3 -msgid "Preview of the Page" -msgstr "Vista previa de la página" - -#: IDF/gettexttemplates/idf/wiki/create.html.php:4 -msgid "The form contains some errors. Please correct them to create the page." -msgstr "" -"El formulario contiene algunos errores. Por favor, corríjalos para crear la " -"página." - -#: IDF/gettexttemplates/idf/wiki/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 "Previsualizar" - -#: IDF/gettexttemplates/idf/wiki/create.html.php:6 -msgid "Create Page" -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" -"%%page.title%%. This revision was created\n" -"by %%submitter%%." -msgstr "" -"Está viendo una revisión antigua (%%oldrev.summary%%) de la " -"página \n" -"%%page.title%%. Esta revisión fue creada por %%" -"submitter%%." - -#: IDF/gettexttemplates/idf/wiki/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 "" -"Si elimina esta antigua revisión, será eliminada de la base de datos y " -"no podrá ser recuperada." - -#: 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 "por %%submitter%%" - -#: IDF/gettexttemplates/idf/wiki/delete.html.php:9 -msgid "Delete Revision" -msgstr "Eliminar Revisión" - -#: 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 "Creado:" - -#: 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 "Actualización:" - -#: 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 "Revisiones antiguas" - -#: IDF/gettexttemplates/idf/wiki/edit-info.html.php:3 -#, php-format -msgid "" -"\n" -"

    Instructions:

    \n" -"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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/search.html.php:3 -#: IDF/gettexttemplates/idf/wiki/index.html.php:4 -#: IDF/gettexttemplates/idf/wiki/base.html.php:4 IDF/Views/Wiki.php:177 -msgid "New Page" -msgstr "Nueva página" - -#: IDF/gettexttemplates/idf/wiki/search.html.php:4 -msgid "Pages found:" -msgstr "Páginas encontradas:" - -#: 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 -msgid "Changes:" -msgstr "Cambios:" - -#: 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/wiki-updated-email.txt.php:3 -msgid "The following documentation page has been updated:" -msgstr "La siguiente página de documentación se ha actualizado:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php: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 "Hola," - -#: 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 "Proyecto:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7 -msgid "Updated by:" -msgstr "Actualizado por:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:8 -#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:6 -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:7 -msgid "Created by:" -msgstr "Creado por:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13 -msgid "New content:" -msgstr "Nuevo contenido:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14 -#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9 -msgid "Documentation page:" -msgstr "Página documentación:" - -#: IDF/gettexttemplates/idf/wiki/index.html.php:3 -#, php-format -msgid "See the deprecated pages." -msgstr "Ver páginas en desuso." - -#: IDF/gettexttemplates/idf/wiki/index.html.php:5 -msgid "Number of pages:" -msgstr "Número de páginas:" - -#: 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 "" -"¡Atención! Esta página está marcada como obsoleta,\n" -"úsala como referencia solamente si está seguro de que usted necesita " -"específicamente esta información ." - -#: IDF/gettexttemplates/idf/wiki/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 "" -"Está viendo una revisión antigua de la página \n" -"%%page.title%%. Esta revisión fue creada por %%" -"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 "Eliminar esta revisión" - -#: IDF/gettexttemplates/idf/wiki/update.html.php:4 -msgid "The form contains some errors. Please correct them to update the page." -msgstr "" -"El formulario contiene algunos errores. Por favor, corríjalos para " -"actualizar la página." - -#: IDF/gettexttemplates/idf/wiki/update.html.php:6 -msgid "Update Page" -msgstr "Actualizar Página" - -#: 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 "Eliminar esta página" - -#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3 -msgid "A new documentation page has been created:" -msgstr "Una nueva página de documentación ha sido creada:" - -#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:8 -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9 -msgid "Content:" -msgstr "Contenido:" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:3 -msgid "List Pages" -msgstr "Lista de Páginas" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:5 -msgid "Update This Page" -msgstr "Actualizar esta página" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:6 -#: IDF/gettexttemplates/idf/issues/base.html.php:7 -msgid "Search" -msgstr "Búsqueda" - -#: IDF/gettexttemplates/idf/source/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/invalid_revision.html.php:5 -#, 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/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/commit-created-email.txt.php:3 -msgid "A new commit has been created:" -msgstr "Un nuevo commit se ha creado:" - -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:5 -#: IDF/gettexttemplates/idf/source/commit.html.php:7 -#: IDF/gettexttemplates/idf/review/view.html.php:28 -msgid "Commit:" -msgstr "Commit:" - -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8 -msgid "Created at:" -msgstr "Creado el:" - -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10 -msgid "Commit details:" -msgstr "Detalles del commit:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:3 -#: IDF/gettexttemplates/idf/review/view.html.php:3 -#, php-format -msgid "%%ndiff%% diff" -msgid_plural "%%ndiff%% diffs" -msgstr[0] "%%ndiff%% diferencia" -msgstr[1] "%%ndiff%% diferencias" - -#: IDF/gettexttemplates/idf/source/commit.html.php:4 -msgid "Date:" -msgstr "Fecha:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:5 -#: IDF/gettexttemplates/idf/review/view.html.php:27 -msgid "Author:" -msgstr "Autor:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:6 -msgid "Branch:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:8 -#: IDF/gettexttemplates/idf/review/view.html.php:29 -msgid "View corresponding source tree" -msgstr "Ver código fuente correspondiente" - -#: IDF/gettexttemplates/idf/source/commit.html.php:9 -msgid "Parents:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:10 -#: IDF/gettexttemplates/idf/source/changelog.html.php:6 -msgid "View corresponding commit" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:11 -msgid "Message:" -msgstr "Mensaje:" - -#: 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:17 -msgid "full" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:15 -msgid "renamed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:16 -msgid "added" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:18 -msgid "modified" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:19 -msgid "properies changed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:20 -msgid "removed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.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/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 "Archivo" - -#: IDF/gettexttemplates/idf/source/commit.html.php:23 -#: IDF/gettexttemplates/idf/review/view.html.php:35 -msgid "Download the corresponding diff file" -msgstr "Descargue el correspondiente archivo diff" - -#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 -#, php-format -msgid "%%cproject.name%%: Commit %%c.scm_id%%" -msgstr "%%cproject.name%%: Commit %%c.scm_id%%" - -#: IDF/gettexttemplates/idf/source/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 "" -"Fuente del commit %%commit%% creado %%" -"cobject.date%%." - -#: 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 "Por %%cobject.author%%, %%cobject.title%%" - -#: 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 "Descargar este archivo" - -#: 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:294 IDF/Form/Upload.php:59 -msgid "File" -msgstr "Archivo" - -#: 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 "Edad" - -#: 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 "Mensaje" - -#: 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:296 -msgid "Size" -msgstr "Tamaño" - -#: 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 "Descargar esta versión" - -#: 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 "o" - -#: 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 "Ayuda" - -#: 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 "" -"Para hacer el primer commit en el repositorio, siga los siguientes pasos:" - -#: 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 "" -"Encuentra aquí más detalles sobre la forma de acceso al código fuente del " -"proyecto %%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 "Acceso línea de comandos" - -#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9 -#: IDF/gettexttemplates/idf/source/git/help.html.php:10 -msgid "First Commit" -msgstr "Primer Commit" - -#: 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 "Revisión:" - -#: 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 "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/tree.html.php:8 -msgid "Rev" -msgstr "Rev" - -#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17 -msgid "Branches:" -msgstr "Branches:" - -#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18 -msgid "Tags:" -msgstr "Etiquetas:" - -#: IDF/gettexttemplates/idf/source/svn/help.html.php:3 -#, php-format -msgid "" -"The team behind %%project%% is using\n" -"the subversion software to manage the source\n" -"code." -msgstr "" -"El equipo detrás de %%project%% está utilizando\n" -"el software subversion para gestionar el código\n" -"fuente." - -#: IDF/gettexttemplates/idf/source/svn/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 "" -"Para tener acceso de escritura al repositorio, necesita usar su nombre de " -"usuario y su contraseña adicional." - -#: IDF/gettexttemplates/idf/source/svn/help.html.php:9 -#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9 -msgid "Write Access Authentication" -msgstr "Escribe una autenticación de acceso" - -#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3 -#, php-format -msgid "" -"The team behind %%project%% is using\n" -"the Mercurial software to manage the source\n" -"code." -msgstr "" -"El equipo detrás de %%project%% está utilizando\n" -"el software Mercurial para gestionar el código\n" -"fuente." - -#: IDF/gettexttemplates/idf/source/base.html.php:3 -msgid "Source Tree" -msgstr "" - -#: IDF/gettexttemplates/idf/source/base.html.php:4 -msgid "Change Log" -msgstr "Listado de cambios" - -#: IDF/gettexttemplates/idf/source/base.html.php:5 -#: IDF/gettexttemplates/idf/source/changelog.html.php:7 -#: IDF/Form/ReviewCreate.php:74 -msgid "Commit" -msgstr "Commit" - -#: IDF/gettexttemplates/idf/source/base.html.php:6 -msgid "How To Get The Code" -msgstr "Cómo obtener el Código" - -#: IDF/gettexttemplates/idf/source/changelog.html.php:5 -msgid "Parent:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/changelog.html.php:8 -msgid "by" -msgstr "por" - -#: IDF/gettexttemplates/idf/source/git/help.html.php:3 -#, php-format -msgid "" -"The team behind %%project%% is using\n" -"the git software to manage the source\n" -"code." -msgstr "" -"El equipo detrás de %%project%% está utilizando\n" -"el software git para gestionar el código\n" -"fuente." - -#: IDF/gettexttemplates/idf/source/git/help.html.php:6 -#, php-format -msgid "" -"You may need to provide your SSH key. The " -"synchronization of your SSH key can take a couple of minutes. You can learn " -"more about SSH key authentification." -msgstr "" -"Debe proporcionar la clave SSH. La sincronización de " -"la clave SSH puede tomar un par de minutos. Usted puede aprender más acerca " -"de atenticación de clave SSH." - -#: IDF/gettexttemplates/idf/main-menu.html.php:3 -#, php-format -msgid "" -"Welcome, %%user%%." -msgstr "" -"Bienvenido, %%user%%." - -#: IDF/gettexttemplates/idf/main-menu.html.php:4 -msgid "Sign Out" -msgstr "Salir" - -#: IDF/gettexttemplates/idf/main-menu.html.php:5 -msgid "Sign in or create your account" -msgstr "Accede o create una cuenta" - -#: IDF/gettexttemplates/idf/main-menu.html.php:7 -#: IDF/gettexttemplates/idf/index.html.php:6 -#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77 -msgid "Private project" -msgstr "Proyecto privado" - -#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 -msgid "Forge Management" -msgstr "Gestión de la Forja" - -#: IDF/gettexttemplates/idf/main-menu.html.php:9 -msgid "Help and accessibility features" -msgstr "Ayuda y características de accesibilidad" - #: IDF/gettexttemplates/idf/index.html.php:4 msgid "No projects managed with InDefero were found." msgstr "No se encontraron proyectos gestionados con InDefero." @@ -2039,417 +1944,90 @@ msgstr "Documentación" msgid "Code reviews:" msgstr "Comentários del código" -#: IDF/gettexttemplates/idf/base-full.html.php:3 -#: IDF/gettexttemplates/idf/base.html.php:3 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 +#, php-format +msgid "Attachment to issue %%issue.id%%" +msgstr "Archivo adjunto al ticket %%issue.id%%" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 +#: IDF/gettexttemplates/idf/review/view.html.php:34 +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +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 +msgid "Download this file" +msgstr "Descargar este archivo" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:7 +#: IDF/gettexttemplates/idf/issues/view.html.php:26 +#: IDF/gettexttemplates/idf/review/view.html.php:25 +#: 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" + +#: IDF/gettexttemplates/idf/issues/base.html.php:5 +msgid "My Issues" +msgstr "Mis Tickets" + +#: IDF/gettexttemplates/idf/issues/base.html.php:6 +msgid "My watch list" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/base.html.php:7 +#: IDF/gettexttemplates/idf/wiki/base.html.php:6 +msgid "Search" +msgstr "Búsqueda" + +#: IDF/gettexttemplates/idf/issues/base.html.php:8 +msgid "Back to the issue" +msgstr "Volver al ticket" + +#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 #, php-format msgid "" -"Sign in or create your account to create issues or " -"add comments" +"

    Open issues: %%open%%

    \n" +"

    Closed issues: %%closed%%

    \n" msgstr "" -"Accede o create una cuenta para crear tickets y " -"añadir comentarios" +"

    Tickets abiertos: %%open%%\n" +"

    Tickets cerrados: %%closed%%

    \n" -#: IDF/gettexttemplates/idf/base-full.html.php:4 -#: IDF/gettexttemplates/idf/base.html.php:4 -msgid "Project Home" -msgstr "Inicio del Proyecto" +#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 +msgid "Label:" +msgstr "Etiqueta:" -#: 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 "Documentación" - -#: 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 "Fuentes" - -#: IDF/gettexttemplates/idf/base-full.html.php:9 -#: IDF/gettexttemplates/idf/base.html.php:9 IDF/Form/TabsConf.php:39 -msgid "Code Review" -msgstr "Revisión del Código" - -#: IDF/gettexttemplates/idf/base-full.html.php:10 -#: IDF/gettexttemplates/idf/base.html.php:10 -msgid "Project Management" -msgstr "Gestión de Proyecto" - -#: 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" -"
    • Ensure your patch does not contain any passwords 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 "" -"El formulario contiene algunos errores. Por favor, corríjalos para enviar la " -"revisión de código." - -#: IDF/gettexttemplates/idf/review/create.html.php:10 -msgid "" -"Select the commit against which you created your patch to be sure it applies " -"correctly." -msgstr "" -"Seleccione el commit contra el que creó el parche para asegurarse de que se " -"aplica correctamente." - -#: IDF/gettexttemplates/idf/review/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 "Iniciar revisión del Código" - -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3 -msgid "The following review has been updated:" -msgstr "La siguiente revisión se ha actualizado:" - -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4 -#, php-format -msgid "By %%who%%, %%c.creation_dtime%%:" -msgstr "Por %%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 "" -"Por %%who%%, %%c.creation_dtime%%, en el archivo:\n" -"%%c.cfile%%\n" - -#: 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 "Reportado por:" - -#: 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 "Comentarios generales (más reciente primero):" - -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15 -msgid "Detailed file comments (last first):" -msgstr "Comentarios detallados del archivo (más reciente primero):" - -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:16 -#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10 -msgid "Review:" -msgstr "Revisión:" - -#: 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" -"different people discuss the code changes. The goal is\n" -"to improve the quality of the code and the\n" -"contributions, as such, you must be pragmatic when writing\n" -"your review. Correctly mention the line numbers (in the old or in the\n" -"new file) and try to keep a good balance between seriousness and fun.\n" -msgstr "" -"La revisión de código es una proceso en el que\n" -"antes o después los cambios son commited en el código del repositorio,\n" -"diferentes personas discuten sobre los cambios en el código. El objetivo " -"es \n" -"mejorar la calidad del código y las\n" -"contribuciones, por esto, debe ser pragmático cuando escriba \n" -"sus comentarios. Menciona correctamente los números de línea (tanto en el " -"antiguo como en el \n" -"nuevo código) y trata de mantener un buen equilibrio entre seriedad y " -"diversión\n" - -#: IDF/gettexttemplates/idf/review/view.html.php: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 "" -"\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:20 -#, php-format -msgid "" -"Comment
    %%i%% by %%who%%, " -"%%c.creation_dtime%%" -msgstr "" -"Comentario %%i%% por %%who%%, %%c.creation_dtime%%" - -#: IDF/gettexttemplates/idf/review/view.html.php:21 -#, php-format -msgid "Your comments on the changes in file %%file%%:" -msgstr "Tus comentarios sobre los cambios en el archivo %%file%%:" - -#: IDF/gettexttemplates/idf/review/view.html.php:22 -#: IDF/gettexttemplates/idf/issues/view.html.php:4 -#, php-format -msgid "" -"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%" -msgstr "" -"Comentario %%i%% por %%submitter%%, %%c." -"creation_dtime%%" - -#: IDF/gettexttemplates/idf/review/view.html.php:23 -#, php-format -msgid "Sign in to participate in the review." -msgstr "Accede para participar en la revisión." - -#: IDF/gettexttemplates/idf/review/view.html.php:24 -msgid "" -"The form contains some errors. Please correct them to submit your review." -msgstr "" -"El formulario contiene algunos errores. Por favor, corríjalos para enviar su " -"revisión." - -#: IDF/gettexttemplates/idf/review/view.html.php: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:36 -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: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 -msgid "Submit Code Review" -msgstr "Enviar Revisión del Código" - -#: IDF/gettexttemplates/idf/review/base-full.html.php:3 -#: IDF/gettexttemplates/idf/review/base.html.php:3 -msgid "Open Reviews" -msgstr "Revisiones abiertas" - -#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:3 -msgid "The following review has been created:" -msgstr "La siguiente revisión se ha creado:" - -#: 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 "Guardar cambios" - -#: 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 "" -"Si marca un proyecto como privado, sólo los miembros del proyecto y los " -"administradores, junto con los usuarios adicionales autorizados tendrán " -"acceso al proyecto. Podrá definir nuevos permisos de acceso para las " -"diferentes pestañas, pero \"Abierto a todos\" y \"Usuarios Registrados\" se " -"establecerán por defecto para autorizar usuarios." - -#: IDF/gettexttemplates/idf/admin/tabs.html.php: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 "" -"Especifique cada persona con su usuario. Cada persona debe haberse " -"registrado con el usuario proporcionado. Separe los usuarios con comas y/o " -"nueva línea." - -#: IDF/gettexttemplates/idf/admin/tabs.html.php:12 -msgid "" -"The form contains some errors. Please correct them to update the access " -"rights." -msgstr "" -"El formulario contiene algunos errores. Por favor, corríjalos para " -"actualizar los derechos de acceso." - -#: IDF/gettexttemplates/idf/admin/tabs.html.php:13 -msgid "Access Rights" -msgstr "Derechos de Acceso" - -#: IDF/gettexttemplates/idf/admin/tabs.html.php:14 -msgid "Notification Email" -msgstr "Notificación por 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 "" - -#: IDF/gettexttemplates/idf/admin/summary.html.php:7 -msgid "" -"The form contains some errors. Please correct them to update the summary." -msgstr "" -"El formulario contiene algunos errores. Por favor, corríjalos para " -"actualizar el resumen." - -#: IDF/gettexttemplates/idf/admin/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 "" -"Puede encontrar aquí la configuración actual del repositorio de su proyecto." - -#: 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 "" -"El formulario contiene algunos errores. Por favor, corríjalos para " -"actualizar la configuración de las fuentes." - -#: IDF/gettexttemplates/idf/admin/source.html.php:27 -msgid "Repository type:" -msgstr "Tipo de Repositorio:" - -#: IDF/gettexttemplates/idf/admin/source.html.php:28 -msgid "Repository access:" -msgstr "Acceso Repositorio:" - -#: IDF/gettexttemplates/idf/admin/source.html.php:29 -msgid "Repository size:" -msgstr "Tamaño Respositorio:" - -#: IDF/gettexttemplates/idf/admin/source.html.php:30 -msgid "Post-commit authentication key:" -msgstr "" - -#: IDF/gettexttemplates/idf/admin/base.html.php:3 -msgid "Project Summary" -msgstr "Resumen del proyecto" - -#: IDF/gettexttemplates/idf/admin/base.html.php:6 -msgid "Issue Tracking" -msgstr "Seguimiento de Ticket" - -#: IDF/gettexttemplates/idf/admin/base.html.php:8 -msgid "Project Members" -msgstr "Miembros de proyecto" - -#: IDF/gettexttemplates/idf/admin/base.html.php:9 -msgid "Tabs Access and Notifications" -msgstr "Pestañas de Accesos y Notificaciones" +#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 +msgid "Completion:" +msgstr "Finalizados:" #: IDF/gettexttemplates/idf/issues/create.html.php:3 msgid "" @@ -2480,6 +2058,15 @@ msgstr "" "El formulario contiene algunos errores. Por favor, corríjalos para enviar el " "ticket." +#: 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 +#: IDF/gettexttemplates/idf/wiki/create.html.php:5 +#: IDF/gettexttemplates/idf/wiki/update.html.php:5 +msgid "Preview" +msgstr "Previsualizar" + #: IDF/gettexttemplates/idf/issues/create.html.php:12 msgid "Submit Issue" msgstr "Enviar Ticket" @@ -2496,35 +2083,42 @@ msgstr "Adjuntar archivo" msgid "Attach another file" msgstr "Adjuntar otro archivo" -#: 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 "Nuevo Ticket" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/view.html.php:17 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:40 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:6 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:11 +#: IDF/IssueComment.php:151 +msgid "Summary:" +msgstr "Resumen:" -#: IDF/gettexttemplates/idf/issues/search.html.php:4 -msgid "Found issues:" -msgstr "Tickets encontrados:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:13 +#: IDF/gettexttemplates/idf/issues/view.html.php:18 +#: IDF/gettexttemplates/idf/issues/view.html.php:28 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:6 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:10 +#: IDF/gettexttemplates/idf/review/view.html.php:41 IDF/IssueComment.php:153 +msgid "Status:" +msgstr "Estado:" -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 -msgid "The following issue has been updated:" -msgstr "El ticket siguiente se ha actualizado:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:5 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:19 +#: IDF/gettexttemplates/idf/issues/view.html.php:29 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:5 +#: IDF/IssueComment.php:155 +msgid "Owner:" +msgstr "Propietario:" -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 -msgid "Comments (last first):" -msgstr "Comentarios (más reciente primero):" - -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 -#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 -msgid "Issue:" -msgstr "Tickets:" - -#: 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/issues/project-watchlist.html.php:3 #, php-format msgid "" "

    Open issues: %%open%%

    \n" @@ -2536,26 +2130,6 @@ msgstr "" "

    Tickets cerrados: %%closed%%

    " -#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 -#, php-format -msgid "" -"

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" -msgstr "" -"

    Tickets abiertos: %%open%%\n" -"

    Tickets cerrados: %%closed%%

    \n" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" -msgstr "Etiqueta:" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 -msgid "Completion:" -msgstr "Finalizados:" - #: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3 msgid "" "A new issue has been created and assigned\n" @@ -2564,11 +2138,89 @@ msgstr "" "Un nuevo ticket ha sido creado y asignado\n" "a tí:" +#: 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 "Reportado por:" + +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 +msgid "Issue:" +msgstr "Tickets:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 +msgid "The following issue has been updated:" +msgstr "El ticket siguiente se ha actualizado:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 +#, php-format +msgid "By %%who%%, %%c.creation_dtime%%:" +msgstr "Por %%who%%, %%c.creation_dtime%%:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12 +msgid "URL:" +msgstr "URL:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 +msgid "Comments (last first):" +msgstr "Comentarios (más reciente primero):" + +#: IDF/gettexttemplates/idf/issues/my-issues.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." +msgstr[1] "" +"Ver %%nb_submit_closed%% cerrado." + +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 +#, php-format +msgid "" +"See the %%nb_owner_closed%% closed." +msgid_plural "" +"See the %%nb_owner_closed%% closed." +msgstr[0] "" +"Ver %%nb_owner_closed%% tickets cerrado." +msgstr[1] "" +"Ver %%nb_owner_closed%% cerrado." + +#: IDF/gettexttemplates/idf/issues/my-issues.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/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.php:3 #, php-format msgid "Reported by %%submitter%%, %%c.creation_dtime%%" msgstr "Reportado por %%submitter%%, %%c.creation_dtime%%" +#: IDF/gettexttemplates/idf/issues/view.html.php:4 +#: IDF/gettexttemplates/idf/review/view.html.php:22 +#, php-format +msgid "" +"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%" +msgstr "" +"Comentario %%i%% por %%submitter%%, %%c." +"creation_dtime%%" + #: IDF/gettexttemplates/idf/issues/view.html.php:5 #, php-format msgid "Sign in to reply to this comment." @@ -2636,63 +2288,82 @@ msgstr "Enviar cambios" msgid "Followed by:" msgstr "Seguido por:" -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 +#: IDF/gettexttemplates/idf/login_form.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." -msgstr[1] "" -"Ver %%nb_submit_closed%% cerrado." - -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 -#, php-format -msgid "" -"See the %%nb_owner_closed%% closed." -msgid_plural "" -"See the %%nb_owner_closed%% closed." -msgstr[0] "" -"Ver %%nb_owner_closed%% tickets cerrado." -msgstr[1] "" -"Ver %%nb_owner_closed%% cerrado." - -#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 -#, php-format -msgid "Attachment to issue %%issue.id%%" -msgstr "Archivo adjunto al ticket %%issue.id%%" - -#: IDF/gettexttemplates/idf/issues/base.html.php:3 -msgid "Open Issues" -msgstr "Tickets abiertos:" - -#: IDF/gettexttemplates/idf/issues/base.html.php:5 -msgid "My Issues" -msgstr "Mis Tickets" - -#: IDF/gettexttemplates/idf/issues/base.html.php:6 -msgid "My watch list" +"If you don't have an account yet, you can create one here." msgstr "" -#: IDF/gettexttemplates/idf/issues/base.html.php:8 -msgid "Back to the issue" -msgstr "Volver al ticket" +#: IDF/gettexttemplates/idf/login_form.html.php:4 +#, fuzzy +msgid "What is your account information?" +msgstr "¿Cuál es tu usuario?" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" -msgstr "Últimas actualizaciones" +#: IDF/gettexttemplates/idf/login_form.html.php:5 +msgid "My login is" +msgstr "Mi identificador es" + +#: IDF/gettexttemplates/idf/login_form.html.php:6 +#, fuzzy +msgid "My password is" +msgstr "mi contraseña es" + +#: IDF/gettexttemplates/idf/login_form.html.php:7 +msgid "Sign in" +msgstr "Ingresar" + +#: IDF/gettexttemplates/idf/login_form.html.php:8 +msgid "I lost my password!" +msgstr "¡He perdido mi contraseña!" + +#: IDF/gettexttemplates/idf/login_form.html.php:9 +#, fuzzy +msgid "Welcome." +msgstr "Bienvenido" + +#: IDF/gettexttemplates/idf/login_form.html.php:10 +#, fuzzy +msgid "It takes less than a minute to create your account." +msgstr "Accede o create una cuenta" + +#: IDF/gettexttemplates/idf/main-menu.html.php:3 +#, php-format +msgid "" +"Welcome, %%user%%." +msgstr "" +"Bienvenido, %%user%%." + +#: IDF/gettexttemplates/idf/main-menu.html.php:4 +msgid "Sign Out" +msgstr "Salir" + +#: IDF/gettexttemplates/idf/main-menu.html.php:5 +msgid "Sign in or create your account" +msgstr "Accede o create una cuenta" + +#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 +msgid "Forge Management" +msgstr "Gestión de la Forja" + +#: IDF/gettexttemplates/idf/main-menu.html.php:9 +msgid "Help and accessibility features" +msgstr "Ayuda y características de accesibilidad" + +#: IDF/gettexttemplates/idf/main-menu.html.php:10 +#: 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 +msgid "Help" +msgstr "Ayuda" -#: IDF/gettexttemplates/idf/project/timeline.html.php:5 #: IDF/gettexttemplates/idf/project/home.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html.php:5 msgid "Latest Updates" msgstr "Últimas actualizaciones" -#: IDF/gettexttemplates/idf/project/timeline.html.php:6 -msgid "Filter by type" -msgstr "" - #: IDF/gettexttemplates/idf/project/home.html.php:5 msgid "Featured Downloads" msgstr "Descargas destacadas" @@ -2718,124 +2389,1198 @@ msgstr "Administradores" msgid "Happy Crew" 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 "" -"¡Atención! Si desea eliminar una versión específica del " -"software, tal vez, alguien está utilizando esta versión específica para " -"ejecutarlo en su sistema. ¿Estás seguro de que no afectará a nadie cuando se " -"elimine este archivo?" +#: IDF/gettexttemplates/idf/project/timeline.html.php:3 +msgid "Latest updates" +msgstr "Últimas actualizaciones" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html.php:6 +msgid "Filter by type" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 #, php-format msgid "" -"Instead of deleting the file, you could mark it as " -"deprecated." +"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 "" -"En lugar de borrar el archivo, puede marcarlo como " -"obsoleto." -#: IDF/gettexttemplates/idf/downloads/delete.html.php:6 -msgid "Delete File" -msgstr "Eliminar archivo" +#: 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 "Oups, please check the form for errors." +msgstr "Oups, por favor revise los errores del formulario." -#: IDF/gettexttemplates/idf/downloads/delete.html.php:8 -#: IDF/gettexttemplates/idf/downloads/view.html.php:13 -msgid "Uploaded:" -msgstr "Subido por:" +#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 +msgid "Email:" +msgstr "Email:" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:6 +msgid "Enable Your Account" +msgstr "Activar tu cuenta" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 msgid "" -"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." +"This is the last step, but just be sure to have the cookies enabled to log in afterwards." msgstr "" -"Cada archivo debe tener un nombre distinto y el contenido del archivo\n" -"no se puede cambiar, así que asegúrese de incluir los números de versión en " -"el nombre de cada\n" -"archivo." +"Este es el último paso, pero asegúrese de tener las cookies " +"activadas para identificarte." -#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 +#: IDF/gettexttemplates/idf/register/index.html.php:3 +msgid "" +"Read the terms and conditions " +"– basically \"Please be nice, we respect you\"." +msgstr "" +"Lea los términos y condiciones " +"– basicamente \"Por favor, sea amable y respetuoso\"." + +#: IDF/gettexttemplates/idf/register/index.html.php:4 #, php-format msgid "" -"You can use the Markdown syntax for the description." +"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 "" -"Puede usar sintaxis de Marcado para la descripción." -#: IDF/gettexttemplates/idf/downloads/submit.html.php:7 -msgid "The form contains some errors. Please correct them to submit the file." +#: IDF/gettexttemplates/idf/register/index.html.php:5 +msgid "Oups, please check the provided login and email address to register." msgstr "" -"El formulario contiene algunos errores. Por favor, corríjalo para enviar el " -"archivo." +"Oups, por favor verifique el usuario y dirección de correo electrónico para " +"registrarse." -#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 -msgid "Submit File" -msgstr "Enviar Archivo" +#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:88 +msgid "Create Your Account" +msgstr "Crea tu cuenta" -#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3 -msgid "Details" -msgstr "Detalles" - -#: IDF/gettexttemplates/idf/downloads/index.html.php:3 -#, php-format -msgid "See the deprecated files." -msgstr "Ver archivos obsoletos." - -#: IDF/gettexttemplates/idf/downloads/index.html.php:4 -#: IDF/gettexttemplates/idf/downloads/base.html.php:4 -#: IDF/Views/Download.php:216 -msgid "New Download" -msgstr "Nueva descarga" - -#: IDF/gettexttemplates/idf/downloads/index.html.php:5 -msgid "Number of files:" -msgstr "Número de archivos:" - -#: IDF/gettexttemplates/idf/downloads/view.html.php:3 +#: IDF/gettexttemplates/idf/register/index.html.php:8 msgid "" -"Attention! This file is marked as deprecated, download it " -"only if you are sure you need this specific version." +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." msgstr "" -"¡Atención! Este archivo está marcado como obsoleto, " -"descárgalo sólo si está seguro de que necesita esta versión específica." +"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/downloads/view.html.php:5 -msgid "Changes" -msgstr "Cambios" +#: IDF/gettexttemplates/idf/register/index.html.php:9 +msgid "Did you know?" +msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:6 -msgid "The form contains some errors. Please correct them to update the file." +#: 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 "Oups, we found an error in the form." +msgstr "Oups, se encontró un error en el formulario." + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:4 +msgid "Confirm Your Account" +msgstr "Confirma tu cuenta" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:7 +msgid "" +"Use your email software to read your emails and open your confirmation " +"email. Either click directly on the confirmation link or copy/paste the " +"confirmation key in the box and submit the form." +msgstr "" + +#: 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 "Revisiones abiertas" + +#: IDF/gettexttemplates/idf/review/base.html.php:4 +#: IDF/gettexttemplates/idf/review/create.html.php:11 +#: IDF/gettexttemplates/idf/review/index.html.php:3 IDF/Views/Review.php:83 +msgid "Start Code Review" +msgstr "Iniciar revisión del Código" + +#: IDF/gettexttemplates/idf/review/create.html.php:3 +msgid "" +"

    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" +"
    • Ensure your patch does not contain any passwords 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 "" +"El formulario contiene algunos errores. Por favor, corríjalos para enviar la " +"revisión de código." + +#: IDF/gettexttemplates/idf/review/create.html.php:10 +msgid "" +"Select the commit against which you created your patch to be sure it applies " +"correctly." +msgstr "" +"Seleccione el commit contra el que creó el parche para asegurarse de que se " +"aplica correctamente." + +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:3 +msgid "The following review has been created:" +msgstr "La siguiente revisión se ha creado:" + +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:16 +msgid "Review:" +msgstr "Revisión:" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3 +msgid "The following review has been updated:" +msgstr "La siguiente revisión se ha actualizado:" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5 +#, php-format +msgid "" +"By %%who%%, %%c.creation_dtime%%, on file:\n" +"%%c.cfile%%\n" +msgstr "" +"Por %%who%%, %%c.creation_dtime%%, en el archivo:\n" +"%%c.cfile%%\n" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:14 +msgid "General comments (last first):" +msgstr "Comentarios generales (más reciente primero):" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15 +msgid "Detailed file comments (last first):" +msgstr "Comentarios detallados del archivo (más reciente primero):" + +#: IDF/gettexttemplates/idf/review/view.html.php:3 +#: 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" +"different people discuss the code changes. The goal is\n" +"to improve the quality of the code and the\n" +"contributions, as such, you must be pragmatic when writing\n" +"your review. Correctly mention the line numbers (in the old or in the\n" +"new file) and try to keep a good balance between seriousness and fun.\n" +msgstr "" +"La revisión de código es una proceso en el que\n" +"antes o después los cambios son commited en el código del repositorio,\n" +"diferentes personas discuten sobre los cambios en el código. El objetivo " +"es \n" +"mejorar la calidad del código y las\n" +"contribuciones, por esto, debe ser pragmático cuando escriba \n" +"sus comentarios. Menciona correctamente los números de línea (tanto en el " +"antiguo como en el \n" +"nuevo código) y trata de mantener un buen equilibrio entre seriedad y " +"diversión\n" + +#: IDF/gettexttemplates/idf/review/view.html.php: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 "" +"\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:20 +#, php-format +msgid "" +"Comment %%i%% by %%who%%, " +"%%c.creation_dtime%%" +msgstr "" +"Comentario %%i%% por %%who%%, %%c.creation_dtime%%" + +#: IDF/gettexttemplates/idf/review/view.html.php:21 +#, php-format +msgid "Your comments on the changes in file %%file%%:" +msgstr "Tus comentarios sobre los cambios en el archivo %%file%%:" + +#: IDF/gettexttemplates/idf/review/view.html.php:23 +#, php-format +msgid "Sign in to participate in the review." +msgstr "Accede para participar en la revisión." + +#: IDF/gettexttemplates/idf/review/view.html.php:24 +msgid "" +"The form contains some errors. Please correct them to submit your review." +msgstr "" +"El formulario contiene algunos errores. Por favor, corríjalos para enviar su " +"revisión." + +#: IDF/gettexttemplates/idf/review/view.html.php:27 +#: 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 +msgid "Commit:" +msgstr "Commit:" + +#: IDF/gettexttemplates/idf/review/view.html.php:29 +#: 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 +msgid "Download the corresponding diff file" +msgstr "Descargue el correspondiente archivo diff" + +#: IDF/gettexttemplates/idf/review/view.html.php:36 +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: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 +msgid "Submit Code Review" +msgstr "Enviar Revisión del Código" + +#: IDF/gettexttemplates/idf/source/base.html.php:3 +msgid "Source Tree" +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:4 +msgid "Change Log" +msgstr "Listado de cambios" + +#: IDF/gettexttemplates/idf/source/base.html.php:6 +msgid "How To Get The Code" +msgstr "Cómo obtener el Código" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:3 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/Views/Project.php:152 +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 +msgid "Message" +msgstr "Mensaje" + +#: 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 "por" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:3 +msgid "A new commit has been created:" +msgstr "Un nuevo commit se ha creado:" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:6 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:8 +msgid "Created by:" +msgstr "Creado por:" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8 +msgid "Created at:" +msgstr "Creado el:" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9 +#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:8 +msgid "Content:" +msgstr "Contenido:" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10 +msgid "Commit details:" +msgstr "Detalles del commit:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:4 +msgid "Date:" +msgstr "Fecha:" + +#: 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 "Mensaje:" + +#: 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 +msgid "deleted" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.php:17 +msgid "full" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +msgid "renamed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +msgid "added" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +msgid "modified" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +msgid "properies changed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +msgid "removed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +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 "%%cproject.name%%: Commit %%c.scm_id%%" + +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:3 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3 +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:3 +msgid "Branches" +msgstr "" + +#: 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: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 "" +"Source at commit %%commit%% created " +"%%cobject.date%%." +msgstr "" +"Fuente del commit %%commit%% creado " +"%%cobject.date%%." + +#: IDF/gettexttemplates/idf/source/git/file.html.php:4 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:4 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:4 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:4 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php: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 "By %%cobject.author%%, %%cobject.title%%" +msgstr "Por %%cobject.author%%, %%cobject.title%%" + +#: IDF/gettexttemplates/idf/source/git/file.html.php:5 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:5 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:5 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:5 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php: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 +msgid "Root" +msgstr "Root" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the git software to manage the source\n" +"code." +msgstr "" +"El equipo detrás de %%project%% está utilizando\n" +"el software git para gestionar el código\n" +"fuente." + +#: IDF/gettexttemplates/idf/source/git/help.html.php:6 +#, php-format +msgid "" +"You may need to provide your SSH key. The " +"synchronization of your SSH key can take a couple of minutes. You can learn " +"more about SSH key authentification." +msgstr "" +"Debe proporcionar la clave SSH. La sincronización de " +"la clave SSH puede tomar un par de minutos. Usted puede aprender más acerca " +"de atenticación de clave SSH." + +#: IDF/gettexttemplates/idf/source/git/help.html.php:7 +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6 +msgid "To make a first commit in the repository, perform the following steps:" +msgstr "" +"Para hacer el primer commit en el repositorio, siga los siguientes pasos:" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7 +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:7 +#, php-format +msgid "Find here more details on how to access %%project%% source code." +msgstr "" +"Encuentra aquí más detalles sobre la forma de acceso al código fuente del " +"proyecto %%project%%." + +#: IDF/gettexttemplates/idf/source/git/help.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8 +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:8 +msgid "Command-Line Access" +msgstr "Acceso línea de comandos" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:10 +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9 +msgid "First Commit" +msgstr "Primer Commit" + +#: IDF/gettexttemplates/idf/source/git/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10 +#: IDF/Views/Download.php:66 IDF/Views/Download.php:294 +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 +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 +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 +msgid "or" +msgstr "o" + +#: 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 +#, fuzzy +msgid "The following list shows all available branches:" +msgstr "El ticket siguiente se ha actualizado:" + +#: 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." +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 "" +"El equipo detrás de %%project%% está utilizando\n" +"el software Mercurial para gestionar el código\n" +"fuente." + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:6 +#, php-format +msgid "" +"To get write access to the repository, you need to use your username and " +"your extra password." +msgstr "" +"Para tener acceso de escritura al repositorio, necesita usar su nombre de " +"usuario y su contraseña adicional." + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:9 +msgid "Write Access Authentication" +msgstr "Escribe una autenticación de acceso" + +#: IDF/gettexttemplates/idf/source/mtn/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:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15 +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/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the subversion software to manage the source\n" +"code." +msgstr "" +"El equipo detrás de %%project%% está utilizando\n" +"el software subversion para gestionar el código\n" +"fuente." + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8 +msgid "Rev" +msgstr "Rev" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17 +msgid "Branches:" +msgstr "Branches:" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18 +msgid "Tags:" +msgstr "Etiquetas:" + +#: IDF/gettexttemplates/idf/user/changeemail-email.txt.php:3 +#, php-format +msgid "" +"Hello %%user%%,\n" +"\n" +"To confirm that you want %%email%%\n" +"to be your new email address, just follow this link:\n" +"\n" +"%%url%%\n" +"\n" +"Alternatively, go to this page:\n" +"\n" +"%%urlik%%\n" +"\n" +"and provide the following verification key:\n" +"\n" +"%%key%%\n" +"\n" +"If you do not want to change your email address, \n" +"just ignore this message.\n" +"\n" +"Yours faithfully,\n" +"The development team.\n" +msgstr "" +"Hola %%user%%,\n" +"\n" +"Para confirmar que quieres %%email%%\n" +"como nuevo email, solo tienes que seguir este enlace:\n" +"\n" +"%%url%%\n" +"\n" +"Alternativamente, vaya a esta página:\n" +"\n" +"%%urlik%%\n" +"\n" +"y proporciona el siguiente código de verificación:\n" +"\n" +"%%key%%\n" +"\n" +"Si no desea cambiar su dirección email, \n" +"simplemente ignore este mensaje.\n" +"\n" +"Atentamente,\n" +"El equipo de desarrollo.\n" + +#: IDF/gettexttemplates/idf/user/changeemail.html.php:4 +msgid "Confirm Your New Email Address" +msgstr "Confirme su nueva dirección de email" + +#: IDF/gettexttemplates/idf/user/changeemail.html.php:7 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:7 +msgid "" +"Use your email software to read your emails and open your verification " +"email. Either click directly on the verification link or copy/paste the " +"verification key in the box and submit the form." +msgstr "" +"Utilice su software de correo electrónico para leer su email y abrir su " +"email de verificación. Puede hacer clic directamente en el enlace de " +"verificación o copiar y pegar la clave de verificación en la caja y darle a " +"enviar en el formulario." + +#: IDF/gettexttemplates/idf/user/dashboard.html.php:3 +#, php-format +msgid "Update your account." +msgstr "Actualiza tu cuenta." + +#: IDF/gettexttemplates/idf/user/dashboard.html.php:4 +#, php-format +msgid "See your public profile." +msgstr "Ver tu perfil público." + +#: IDF/gettexttemplates/idf/user/dashboard.html.php:5 +#, php-format +msgid "See your forge issue watch list." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:6 +msgid "Key Management" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:7 +msgid "Extra password" +msgstr "Contraseña adicional" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +msgid "" +"This password is used to access some of the external systems managed by our " +"infrastructure. It will be regenerated if you change your password." +msgstr "" +"Esta contraseña se utiliza para acceder a algunos de los sistemas externos " +"gestionados por nuestra infraestructura. Se regenerará si usted cambia su " +"contraseña." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 +msgid "API key" +msgstr "Clave de API" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "" +"La clave de la API se regenera automáticamente si usted cambia su contraseña." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "Update Your Account" +msgstr "Actualiza tu cuenta" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +msgid "Your Current Public Keys" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Delete this key" +msgstr "Eliminar esta clave" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +msgid "" +"If possible, use your real name. By using your real name, people will have " +"more trust in your comments and remarks." +msgstr "" +"Si es posible, use su nombre real. Mediante el uso de su nombre real, las " +"personas tendrán más confianza en sus comentarios y observaciones." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 +msgid "" +"The extra password is used to access some of the external systems and the " +"API key is used to interact with this website using a program." +msgstr "" +"La contraseña adicional se utiliza para acceder a algunos de los sistemas " +"externos y la clave de la API se utiliza para interactuar con este sitio web " +"utilizando un programa." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 +msgid "Show API key and extra password" +msgstr "Mostrar clave de API y contraseña adicional" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 +msgid "" +"Oups, please check the provided login or email address to recover your " +"password." +msgstr "" +"Oups, por favor indique su usuario o dirección de correo electrónico para " +"recuperar su contraseña." + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4 +msgid "Recover My Password" +msgstr "Recuperar mi contraseña" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6 +msgid "" +"Provide either your login or email address, if a corresponding user is found " +"in the database, we will send you an email with the details on how to reset " +"your password." +msgstr "" +"Proporcione un usuario o dirección de correo electrónico, si el usuario " +"correspondiente se encuentra en la base de datos, le enviaremos un email con " +"los detalles sobre cómo restablecer su contraseña." + +#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3 +#, php-format +msgid "" +"Hello %%user%%,\n" +"\n" +"You lost your password and wanted to recover it.\n" +"To provide a new password for your account, you\n" +"just have to follow the provided link. You will\n" +"get a simple form to provide a new password.\n" +"\n" +"%%url%%\n" +"\n" +"Alternatively, go to this page:\n" +"\n" +"%%urlik%%\n" +"\n" +"and provide the following verification key:\n" +"\n" +"%%key%%\n" +"\n" +"If you are not the one who requested to reset\n" +"your password, simply ignore this email, your\n" +"password will not be changed.\n" +"\n" +"Yours faithfully,\n" +"The development team.\n" +msgstr "" + +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4 +msgid "Recover Your Password" +msgstr "Recuperar contraseña" + +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:8 +msgid "" +"Just after providing the confirmation key, you will be able to reset your " +"password and use again this website fully." +msgstr "" +"Sólo después de proporcionar la clave de confirmación, usted podrá " +"restablecer la contraseña y usar completamente este sitio web." + +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 +msgid "Reset Your Password" +msgstr "Restablecer contraseña" + +#: IDF/gettexttemplates/idf/user/public.html.php:3 +#, php-format +msgid "You are looking at the public profile of %%member%%." +msgstr "Estás viendo el perfil público de %%member%%." + +#: IDF/gettexttemplates/idf/user/public.html.php:5 +msgid "Twitter:" +msgstr "" + +#: 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 "Última vez visto:" + +#: IDF/gettexttemplates/idf/user/public.html.php:9 +msgid "Member since:" +msgstr "Miembro desde:" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:3 +msgid "List Pages" +msgstr "Lista de Páginas" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:4 +#: IDF/gettexttemplates/idf/wiki/index.html.php:4 +#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:175 +msgid "New Page" +msgstr "Nueva página" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:5 +msgid "Update This Page" +msgstr "Actualizar esta página" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:3 +#: IDF/gettexttemplates/idf/wiki/update.html.php:3 +msgid "Preview of the Page" +msgstr "Vista previa de la página" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:4 +msgid "The form contains some errors. Please correct them to create the page." +msgstr "" +"El formulario contiene algunos errores. Por favor, corríjalos para crear la " +"página." + +#: IDF/gettexttemplates/idf/wiki/create.html.php:6 +msgid "Create Page" +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" +"%%page.title%%. This revision was created\n" +"by %%submitter%%." +msgstr "" +"Está viendo una revisión antigua (%%oldrev.summary%%) de la " +"página \n" +"%%page.title%%. Esta revisión fue creada por " +"%%submitter%%." + +#: IDF/gettexttemplates/idf/wiki/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 "" +"Si elimina esta antigua revisión, será eliminada de la base de datos y " +"no podrá ser recuperada." + +#: IDF/gettexttemplates/idf/wiki/delete.html.php:9 +msgid "Delete Revision" +msgstr "Eliminar Revisión" + +#: 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 "Revisiones antiguas" + +#: 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 content of the page can use the Markdown syntax with the Extra extension.

    \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 "Ver páginas en desuso." + +#: IDF/gettexttemplates/idf/wiki/index.html.php:5 +msgid "Number of pages:" +msgstr "Número de páginas:" + +#: IDF/gettexttemplates/idf/wiki/search.html.php:4 +msgid "Pages found:" +msgstr "Páginas encontradas:" + +#: IDF/gettexttemplates/idf/wiki/update.html.php:4 +msgid "The form contains some errors. Please correct them to update the page." msgstr "" "El formulario contiene algunos errores. Por favor, corríjalos para " -"actualizar el archivo." +"actualizar la página." -#: IDF/gettexttemplates/idf/downloads/view.html.php:7 -msgid "Update File" -msgstr "Actualizar archivo" +#: IDF/gettexttemplates/idf/wiki/update.html.php:6 +msgid "Update Page" +msgstr "Actualizar Página" -#: IDF/gettexttemplates/idf/downloads/view.html.php:9 -#: IDF/gettexttemplates/idf/downloads/view.html.php:11 -msgid "Remove this file" -msgstr "Eliminar este archivo" +#: 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 "Eliminar esta página" -#: IDF/gettexttemplates/idf/downloads/view.html.php:12 -msgid "Delete this file" -msgstr "Eliminar este archivo" +#: 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 "" +"¡Atención! Esta página está marcada como obsoleta,\n" +"úsala como referencia solamente si está seguro de que usted necesita " +"específicamente esta información ." -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3 -msgid "A new file is available for download:" -msgstr "Un nuevo archivo está disponible desde descargas:" +#: IDF/gettexttemplates/idf/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 "" +"Está viendo una revisión antigua de la página \n" +"%%page.title%%. Esta revisión fue creada por " +"%%submitter%%." -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6 -msgid "Submitted by:" -msgstr "Enviado por:" +#: IDF/gettexttemplates/idf/wiki/view.html.php:10 +msgid "Table of Content" +msgstr "" -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8 -msgid "Download:" -msgstr "Descarga:" +#: IDF/gettexttemplates/idf/wiki/view.html.php:11 +#: IDF/gettexttemplates/idf/wiki/view.html.php:13 +msgid "Delete this revision" +msgstr "Eliminar esta revisión" + +#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3 +msgid "A new documentation page has been created:" +msgstr "Una nueva página de documentación ha sido creada:" + +#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14 +msgid "Documentation page:" +msgstr "Página documentación:" + +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3 +msgid "The following documentation page has been updated:" +msgstr "La siguiente página de documentación se ha actualizado:" + +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7 +msgid "Updated by:" +msgstr "Actualizado por:" + +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13 +msgid "New content:" +msgstr "Nuevo contenido:" + +#: IDF/Issue.php:76 +msgid "owner" +msgstr "propietario" + +#: IDF/Issue.php:84 IDF/WikiPage.php:86 +msgid "interested users" +msgstr "usuarios interesados" + +#: IDF/Issue.php:85 +msgid "" +"Interested users will get an email notification when the issue is changed." +msgstr "" +"Los usuarios interesados recibirán una notificación por correo electrónico " +"cuando el ticket cambie." + +#: IDF/Issue.php:92 IDF/Review.php:95 IDF/Upload.php:93 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 +msgid "modification date" +msgstr "fecha de modificación" + +#: IDF/Issue.php:194 IDF/IssueComment.php:143 +#, php-format +msgid "" +"Issue %3$d, %4$s" +msgstr "" +"Ticket %3$d, %4$s" + +#: IDF/Issue.php:196 +#, php-format +msgid "Creation of issue %d, by %s" +msgstr "Creación del ticket %d, por %s" + +#: IDF/Issue.php:206 +#, php-format +msgid "%s: Issue %d created - %s" +msgstr "%s: Ticket %d creado - %s" + +#: IDF/Issue.php:272 +#, php-format +msgid "Issue %s - %s (%s)" +msgstr "Ticket %s - %s (%s)" + +#: IDF/Issue.php:318 +#, php-format +msgid "Updated Issue %s - %s (%s)" +msgstr "Ticket actualizado %s - %s (%s)" + +#: IDF/IssueComment.php:51 +msgid "issue" +msgstr "ticket" + +#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62 +#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69 +msgid "comment" +msgstr "comentario" + +#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63 +#: IDF/WikiRevision.php:85 +msgid "changes" +msgstr "cambios" + +#: IDF/IssueComment.php:73 +msgid "Serialized array of the changes in the issue." +msgstr "" + +#: IDF/IssueComment.php:171 +#, php-format +msgid "Comment on issue %d, by %s" +msgstr "Comentario del ticket %d, por %s" + +#: IDF/IssueComment.php:182 +#, php-format +msgid "%s: Comment on issue %d - %s" +msgstr "%s: Comentario del ticket %d - %s" #: IDF/IssueFile.php:64 msgid "file name" @@ -2861,1570 +3606,28 @@ msgstr "Imagen" msgid "Other" msgstr "Otros" -#: IDF/Project.php:62 IDF/Tag.php:66 -msgid "name" -msgstr "nombre" +#: IDF/Key.php:49 +msgid "user" +msgstr "usuario" -#: IDF/Project.php:69 -msgid "short name" -msgstr "nombre corto" - -#: IDF/Project.php:70 -msgid "" -"Used in the url to access the project, must be short with only letters and " -"numbers." -msgstr "" -"Se utiliza en la ruta de acceso al proyecto, debe ser corta, con letras y " -"números sólo ." - -#: IDF/Project.php:78 -msgid "short description" -msgstr "descripción corta" - -#: IDF/Project.php:79 IDF/Form/Admin/ProjectCreate.php:70 -#: IDF/Form/Admin/ProjectUpdate.php:51 -msgid "A one line description of the project." -msgstr "Una línea de descripción del proyecto." - -#: IDF/Project.php:86 IDF/Review/Patch.php:74 -msgid "description" -msgstr "descripción" - -#: IDF/Project.php:87 -msgid "The description can be extended using the markdown syntax." -msgstr "La descripción se puede extender mediante la sintaxis de marcado." - -#: IDF/Project.php:93 -msgid "private" -msgstr "privado" - -#: IDF/Project.php:130 -#, php-format -msgid "Project \"%s\" not found." -msgstr "Proyecto \"%s\" no encontrado." - -#: IDF/Search/Occ.php:33 -msgid "occurence" -msgstr "ocurrencia" - -#: IDF/Search/Occ.php:49 -msgid "word" -msgstr "palabra" - -#: IDF/Search/Occ.php:75 -msgid "occurences" -msgstr "ocurrencias" - -#: IDF/Search/Occ.php:81 -msgid "ponderated occurence" -msgstr "" - -#: IDF/Issue.php:76 -msgid "owner" -msgstr "propietario" - -#: IDF/Issue.php:84 IDF/WikiPage.php:86 -msgid "interested users" -msgstr "usuarios interesados" - -#: IDF/Issue.php:85 -msgid "" -"Interested users will get an email notification when the issue is changed." -msgstr "" -"Los usuarios interesados recibirán una notificación por correo electrónico " -"cuando el ticket cambie." - -#: IDF/Issue.php:196 -#, php-format -msgid "Creation of issue %d, by %s" -msgstr "Creación del ticket %d, por %s" - -#: IDF/Issue.php:206 -#, php-format -msgid "%s: Issue %d created - %s" -msgstr "%s: Ticket %d creado - %s" - -#: IDF/Issue.php:272 -#, php-format -msgid "Issue %s - %s (%s)" -msgstr "Ticket %s - %s (%s)" - -#: IDF/Issue.php:318 -#, php-format -msgid "Updated Issue %s - %s (%s)" -msgstr "Ticket actualizado %s - %s (%s)" - -#: IDF/Views/Wiki.php:41 -#, php-format -msgid "%s Documentation" -msgstr "%s Documentación" - -#: IDF/Views/Wiki.php:48 -msgid "This table shows the documentation pages." -msgstr "Esta tabla muestra las páginas de documentación." - -#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149 -msgid "Page Title" -msgstr "Título de la página" - -#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:109 IDF/Views/Wiki.php:150 -#: IDF/Views/Download.php:65 IDF/Views/Download.php:295 IDF/Views/Issue.php:62 -#: IDF/Views/Issue.php:140 IDF/Views/Issue.php:221 IDF/Views/Issue.php:297 -#: IDF/Views/Issue.php:384 IDF/Views/Issue.php:563 IDF/Views/Issue.php:622 -#: IDF/Views/User.php:83 IDF/Views/Review.php:58 IDF/Form/Upload.php:40 -#: IDF/Form/ReviewCreate.php:45 IDF/Form/IssueUpdate.php:45 -#: IDF/Form/IssueCreate.php:53 IDF/Form/UpdateUpload.php:42 -#: IDF/Form/ReviewFileComment.php:71 -msgid "Summary" -msgstr "Resumen" - -#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:110 IDF/Views/Wiki.php:151 -msgid "Updated" -msgstr "Actualizado" - -#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:155 -msgid "No documentation pages were found." -msgstr "No se encontraron páginas de documentación." - -#: IDF/Views/Wiki.php:92 -#, php-format -msgid "Documentation Search - %s" -msgstr "Búsqueda de documentación - %s" - -#: IDF/Views/Wiki.php:103 -msgid "This table shows the pages found." -msgstr "Esta tabla muestra las páginas encontradas." - -#: IDF/Views/Wiki.php:114 -msgid "No pages were found." -msgstr "No se encontraron páginas." - -#: IDF/Views/Wiki.php:133 -#, php-format -msgid "%1$s Documentation Pages with Label %2$s" -msgstr "%1$s Páginas de documentación con la etiqueta %2$s" - -#: IDF/Views/Wiki.php:143 -#, php-format -msgid "This table shows the documentation pages with label %s." -msgstr "Esta tabla muestra las páginas de documentación con la etiqueta %s." - -#: IDF/Views/Wiki.php:188 -#, php-format -msgid "The page %s has been created." -msgstr "La página %s se ha creado." - -#: IDF/Views/Wiki.php:275 -msgid "The old revision has been deleted." -msgstr "La antigua revisión ha sido eliminado." - -#: IDF/Views/Wiki.php:281 -#, php-format -msgid "Delete Old Revision of %s" -msgstr "Eliminar Antigua revisión de %s" - -#: IDF/Views/Wiki.php:314 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 -#, php-format -msgid "Update %s" -msgstr "Actualizar %s" - -#: IDF/Views/Wiki.php:326 -#, php-format -msgid "The page %s has been updated." -msgstr "La página %s se ha actualizado." - -#: IDF/Views/Wiki.php:364 -msgid "The documentation page has been deleted." -msgstr "La página de documentación se ha eliminado." - -#: IDF/Views/Wiki.php:372 -#, php-format -msgid "Delete Page %s" -msgstr "Eliminar Página %s" - -#: 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:77 -#, php-format -msgid "%s Ambiguous Revision" -msgstr "" - -#: IDF/Views/Source.php:102 -#, php-format -msgid "%1$s %2$s Change Log" -msgstr "" - -#: IDF/Views/Source.php:142 IDF/Views/Source.php:223 IDF/Views/Source.php:355 -#, php-format -msgid "%1$s %2$s Source Tree" -msgstr "" - -#: IDF/Views/Source.php:299 -#, php-format -msgid "%s Commit Details" -msgstr "Detalles del Commit %s" - -#: IDF/Views/Source.php:300 -#, php-format -msgid "%s Commit Details - %s" -msgstr "%s Detalles del Commit - %s" - -#: 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:297 -msgid "Uploaded" -msgstr "" - -#: IDF/Views/Download.php:71 IDF/Views/Download.php:301 -msgid "No downloads were found." -msgstr "" - -#: IDF/Views/Download.php:96 -#, php-format -msgid "Download %s" -msgstr "" - -#: IDF/Views/Download.php:113 -#, php-format -msgid "The file %2$s has been updated." -msgstr "" - -#: IDF/Views/Download.php:146 -#, php-format -msgid "Delete Download %s" -msgstr "" - -#: IDF/Views/Download.php:179 -msgid "The file has been deleted." -msgstr "" - -#: IDF/Views/Download.php:225 -#, php-format -msgid "The file has been uploaded." -msgstr "" - -#: IDF/Views/Download.php:279 -#, php-format -msgid "%1$s Downloads with Label %2$s" -msgstr "" - -#: IDF/Views/Download.php:289 -#, php-format -msgid "This table shows the downloads with label %s." -msgstr "" - -#: IDF/Views/Project.php:72 -msgid "All Updates" -msgstr "" - -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" -msgstr "" - -#: IDF/Views/Project.php:76 -msgid "Documents" -msgstr "" - -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" -msgstr "" - -#: IDF/Views/Project.php:142 -msgid "This table shows the project updates." -msgstr "Esta tabla muestra las actualizaciones del proyecto." - -#: IDF/Views/Project.php:153 -msgid "Change" -msgstr "Cambios" - -#: IDF/Views/Project.php:157 -msgid "No changes were found." -msgstr "No se encontraron cambios." - -#: IDF/Views/Project.php:248 -#, php-format -msgid "%s Project Summary" -msgstr "Resumen del Proyecto %s" - -#: IDF/Views/Project.php:256 IDF/Views/Admin.php:101 -msgid "The project has been updated." -msgstr "El proyecto ha sido actualizado." - -#: IDF/Views/Project.php:283 -#, php-format -msgid "%s Issue Tracking Configuration" -msgstr "Configuración de Seguimiento de Tickets %s" - -#: IDF/Views/Project.php:292 -msgid "The issue tracking configuration has been saved." -msgstr "La configuración de seguimiento de Tickets se ha guardado." - -#: IDF/Views/Project.php:328 -#, php-format -msgid "%s Downloads Configuration" -msgstr "Configuración de descargas %s" - -#: IDF/Views/Project.php:337 -msgid "The downloads configuration has been saved." -msgstr "La configuración de las descargas se ha guardado." - -#: IDF/Views/Project.php:371 -#, php-format -msgid "%s Documentation Configuration" -msgstr "Configuración de documentación %s" - -#: IDF/Views/Project.php:380 -msgid "The documentation configuration has been saved." -msgstr "La configuración de la documentación ha sido guardada." - -#: IDF/Views/Project.php:414 -#, php-format -msgid "%s Project Members" -msgstr "Miembros del Proyecto %s" - -#: IDF/Views/Project.php:423 -msgid "The project membership has been saved." -msgstr "Los miembros del proyecto se han guardado." - -#: IDF/Views/Project.php:446 -#, php-format -msgid "%s Tabs Access Rights" -msgstr "Pestaña de permisos de acceso %s " - -#: IDF/Views/Project.php:460 -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:506 -#, php-format -msgid "%s Source" -msgstr "Fuente %s" - -#: IDF/Views/Project.php:520 -msgid "The project source configuration has been saved." -msgstr "La configuración de la fuente del proyecto se ha guardado" - -#: IDF/Views/Project.php:540 IDF/Form/Admin/ProjectCreate.php:38 -msgid "git" -msgstr "git" - -#: IDF/Views/Project.php:541 IDF/Form/Admin/ProjectCreate.php:39 -msgid "Subversion" -msgstr "Subversion" - -#: IDF/Views/Project.php:542 IDF/Form/Admin/ProjectCreate.php:40 -msgid "mercurial" -msgstr "mercurial" - -#: IDF/Views/Project.php:543 IDF/Form/Admin/ProjectCreate.php:41 -msgid "monotone" -msgstr "" - -#: IDF/Views/Issue.php:41 -#, php-format -msgid "%s Open Issues" -msgstr "" - -#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:288 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: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/User.php:81 IDF/Views/Review.php:57 -msgid "Id" -msgstr "Id" - -#: IDF/Views/Issue.php:63 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/User.php:84 IDF/Views/Review.php:59 -#: IDF/Form/ReviewCreate.php:103 IDF/Form/IssueUpdate.php:88 -#: IDF/Form/IssueCreate.php:95 IDF/Form/ReviewFileComment.php:81 -msgid "Status" -msgstr "Estado" - -#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:142 IDF/Views/Issue.php:224 -#: IDF/Views/Issue.php:299 IDF/Views/Issue.php:386 IDF/Views/Issue.php:565 -#: IDF/Views/Issue.php:624 IDF/Views/User.php:85 IDF/Views/Review.php:60 -msgid "Last Updated" -msgstr "Última actualización" - -#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:146 IDF/Views/Issue.php:228 -#: IDF/Views/Issue.php:303 IDF/Views/Issue.php:390 IDF/Views/Issue.php:569 -#: IDF/Views/Issue.php:628 -msgid "No issues were found." -msgstr "" - -#: IDF/Views/Issue.php:113 -#, php-format -msgid "Watch List: Closed Issues for %s" -msgstr "" - -#: IDF/Views/Issue.php:114 -#, php-format -msgid "This table shows the closed issues in your watch list for %s project." -msgstr "" - -#: IDF/Views/Issue.php:119 -#, php-format -msgid "Watch List: Open Issues for %s" -msgstr "" - -#: IDF/Views/Issue.php:120 -#, php-format -msgid "This table shows the open issues in your watch list for %s project." -msgstr "" - -#: IDF/Views/Issue.php:196 -msgid "Watch List: Closed Issues" -msgstr "" - -#: IDF/Views/Issue.php:197 -msgid "This table shows the closed issues in your watch list." -msgstr "" - -#: IDF/Views/Issue.php:202 -msgid "Watch List: Open Issues" -msgstr "" - -#: IDF/Views/Issue.php:203 -msgid "This table shows the open issues in your watch list." -msgstr "" - -#: IDF/Views/Issue.php:222 IDF/Views/User.php:82 -msgid "Project" -msgstr "Proyecto" - -#: IDF/Views/Issue.php:255 -#, php-format -msgid "My Submitted %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:259 -#, php-format -msgid "My Closed Submitted %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:263 -#, php-format -msgid "My Closed Working %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:267 -#, php-format -msgid "My Working %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:322 -msgid "Submit a new issue" -msgstr "" - -#: IDF/Views/Issue.php:338 -#, php-format -msgid "Issue %d has been created." -msgstr "" - -#: IDF/Views/Issue.php:367 -#, php-format -msgid "Search Issues - %s" -msgstr "" - -#: IDF/Views/Issue.php:379 -msgid "This table shows the found issues." -msgstr "" - -#: IDF/Views/Issue.php:409 -#, php-format -msgid "Issue %d: %s" -msgstr "" - -#: IDF/Views/Issue.php:433 -#, php-format -msgid "Issue %d has been updated." -msgstr "" - -#: IDF/Views/Issue.php:522 -#, php-format -msgid "View %s" -msgstr "" - -#: IDF/Views/Issue.php:542 -#, php-format -msgid "%s Closed Issues" -msgstr "" - -#: IDF/Views/Issue.php:552 -msgid "This table shows the closed issues." -msgstr "" - -#: IDF/Views/Issue.php:595 -#, php-format -msgid "%1$s Issues with Label %2$s" -msgstr "" - -#: IDF/Views/Issue.php:598 -#, php-format -msgid "%1$s Closed Issues with Label %2$s" -msgstr "" - -#: IDF/Views/Issue.php:611 -#, php-format -msgid "This table shows the issues with label %s." -msgstr "" - -#: IDF/Views/Issue.php:661 -msgid "The issue has been removed from your watch list." -msgstr "" - -#: IDF/Views/Issue.php:664 -msgid "The issue has been added to your watch list." -msgstr "" - -#: IDF/Views/Issue.php:753 -msgid "On your watch list." -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 "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!" - -#: IDF/Views/User.php:121 -msgid "Your personal information has been updated." -msgstr "Tu información personal se ha actualizado." - -#: IDF/Views/User.php:132 -msgid "Your Account" -msgstr "Tu Cuenta" - -#: IDF/Views/User.php:155 -msgid "The public key has been deleted." -msgstr "" - -#: IDF/Views/User.php:178 -msgid "Confirm The Email Change" -msgstr "Confirmar el cambio de correo electrónico" - -#: IDF/Views/User.php:203 -#, php-format -msgid "Your new email address \"%s\" has been validated. Thank you!" -msgstr "" -"Tu nueva dirección de correo electrónico \"%s\" ha sido validada. ¡Gracias!" - -#: IDF/Views/Review.php:41 -#, php-format -msgid "%s Code Reviews" -msgstr "Comentários del Código %s" - -#: IDF/Views/Review.php:48 -msgid "This table shows the latest reviews." -msgstr "Esta tabla muestra los últimos comentarios." - -#: IDF/Views/Review.php:64 -msgid "No reviews were found." -msgstr "No se encontraron comentarios." - -#: IDF/Views/Review.php:94 -#, php-format -msgid "The code review %d has been created." -msgstr "El comentario del código %d ha sido creado." - -#: IDF/Views/Review.php:140 -#, php-format -msgid "Review %d: %s" -msgstr "Comentario %d: %s" - -#: IDF/Views/Review.php:160 -#, php-format -msgid "Your code review %d has been published." -msgstr "" - -#: IDF/Views/Admin.php:60 -msgid "This table shows the projects in the forge." -msgstr "Esta tabla muestra los proyectos de la forja." - -#: IDF/Views/Admin.php:65 -msgid "Short Name" -msgstr "Nombre corto" - -#: IDF/Views/Admin.php:66 IDF/Views/Admin.php:210 -#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 -msgid "Name" -msgstr "Nombre" - -#: IDF/Views/Admin.php:67 -msgid "Repository Size" -msgstr "Tamaño del Repositorio" - -#: IDF/Views/Admin.php:73 -msgid "No projects were found." -msgstr "No se encontraron proyectos." - -#: IDF/Views/Admin.php:134 -msgid "The project has been created." -msgstr "El proyecto ha sido creado." - -#: IDF/Views/Admin.php:160 -#, php-format -msgid "Delete %s Project" -msgstr "Eliminar Proyecto %s" - -#: IDF/Views/Admin.php:167 -msgid "The project has been deleted." -msgstr "El proyecto ha sido eliminado." - -#: IDF/Views/Admin.php:197 -msgid "Not Validated User List" -msgstr "Lista de usuarios no validados" - -#: IDF/Views/Admin.php:205 -msgid "This table shows the users in the forge." -msgstr "Esta tabla muestra los usuarios de la forja." - -#: IDF/Views/Admin.php:209 -msgid "login" -msgstr "" - -#: IDF/Views/Admin.php:211 IDF/Form/Admin/UserUpdate.php:161 -msgid "Staff" -msgstr "Staff" - -#: IDF/Views/Admin.php:212 -msgid "Admin" -msgstr "Admin" - -#: IDF/Views/Admin.php:213 IDF/Form/Admin/UserUpdate.php:172 -msgid "Active" -msgstr "Activo" - -#: IDF/Views/Admin.php:214 -msgid "Last Login" -msgstr "Último inicio de sesión" - -#: IDF/Views/Admin.php:221 -msgid "No users were found." -msgstr "No se han encontrado usuarios." - -#: IDF/Views/Admin.php:258 -msgid "You do not have the rights to update this user." -msgstr "No tiene permisos para actualizar este usuario." - -#: IDF/Views/Admin.php:276 -msgid "The user has been updated." -msgstr "El usuario se ha actualizado." - -#: IDF/Views/Admin.php:309 -#, php-format -msgid "The user %s has been created." -msgstr "El usuario %s se ha creado." - -#: IDF/Views/Admin.php:316 -msgid "Add User" -msgstr "Agregar usuario" - -#: 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 "Sí" - -#: IDF/Views/Admin.php:471 -msgid "No" -msgstr "No" - -#: 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 "Título de la página" - -#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56 -msgid "" -"The page name must contains only letters, digits and the dash (-) character." -msgstr "" -"El nombre de la página debe contener sólo letras, dígitos y el carácter " -"guión (-)." - -#: IDF/Form/WikiCreate.php:70 IDF/Form/Upload.php:49 -#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/ReviewCreate.php:54 -#: IDF/Form/UserAccount.php:99 IDF/Form/IssueCreate.php:62 -#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 -msgid "Description" -msgstr "Descripción" - -#: IDF/Form/WikiCreate.php:71 IDF/Form/WikiUpdate.php:61 -msgid "This one line description is displayed in the list of pages." -msgstr "Breve descripción que se mostrará en la lista de páginas." - -#: IDF/Form/WikiCreate.php:80 IDF/Form/WikiUpdate.php:72 -msgid "Content" -msgstr "Contenido" - -#: IDF/Form/WikiCreate.php:93 IDF/Form/Upload.php:70 -#: IDF/Form/IssueUpdate.php:117 IDF/Form/IssueCreate.php:150 -#: IDF/Form/WikiUpdate.php:104 IDF/Form/UpdateUpload.php:71 -msgid "Labels" -msgstr "Etiquetas" - -#: IDF/Form/WikiCreate.php:108 IDF/Form/WikiUpdate.php:119 -msgid "The title contains invalid characters." -msgstr "El título contiene caracteres no válidos." - -#: IDF/Form/WikiCreate.php:114 IDF/Form/WikiUpdate.php:125 -msgid "A page with this title already exists." -msgstr "Una página con este título ya existe." - -#: 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 "" -"No puede proporcionar más de una etiqueta para la clase %s en una página." - -#: IDF/Form/WikiCreate.php:151 IDF/Form/Upload.php:120 -#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 -#: IDF/Form/WikiUpdate.php:162 IDF/Form/UpdateUpload.php:110 -msgid "You provided an invalid label." -msgstr "Proporcionaste una etiqueta no válida." - -#: IDF/Form/WikiCreate.php:167 IDF/Form/Upload.php:148 -#: IDF/Form/Admin/UserCreate.php:106 IDF/Form/Admin/ProjectCreate.php:279 -#: IDF/Form/Admin/ProjectDelete.php:78 IDF/Form/Admin/UserUpdate.php:191 -#: IDF/Form/Admin/ProjectUpdate.php:121 IDF/Form/Password.php:76 -#: IDF/Form/ReviewCreate.php:187 IDF/Form/Register.php:114 -#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 -#: IDF/Form/UserAccount.php:178 IDF/Form/IssueCreate.php:263 -#: IDF/Form/MembersConf.php:64 IDF/Form/WikiUpdate.php:178 -#: IDF/Form/UpdateUpload.php:126 IDF/Form/TabsConf.php:98 -#: IDF/Form/UserChangeEmail.php:80 IDF/Form/ReviewFileComment.php:125 -msgid "Cannot save the model from an invalid form." -msgstr "No se puede guardar el modelo desde un formulario no válido." - -#: IDF/Form/WikiCreate.php:200 -msgid "Initial page creation" -msgstr "Creación de la página inicial" - -#: IDF/Form/Upload.php:86 IDF/Form/Admin/UserUpdate.php:301 -#: IDF/Form/UserAccount.php:367 -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/Upload.php:119 IDF/Form/IssueCreate.php:199 -#: IDF/Form/UpdateUpload.php:109 -#, php-format -msgid "You cannot provide more than label from the %s class to an issue." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 -#: IDF/Form/UserAccount.php:40 IDF/Form/RegisterConfirmation.php:50 -msgid "First name" -msgstr "Nombre" - -#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 -#: IDF/Form/UserAccount.php:49 IDF/Form/RegisterConfirmation.php:59 -msgid "Last name" -msgstr "Apellidos" - -#: IDF/Form/Admin/UserCreate.php:56 -msgid "Login" -msgstr "Iniciar sesión" - -#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 -msgid "" -"The login must be between 3 and 15 characters long and contains only letters " -"and digits." -msgstr "" -"El nombre de usuario debe tener entre 3 y 15 caracteres de largo y contener " -"solamente letras y dígitos." - -#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 -msgid "Email" -msgstr "Email" - -#: IDF/Form/Admin/UserCreate.php:71 -msgid "" -"Double check the email address as the password is directly sent to the user." -msgstr "" -"Re-Compruebe la dirección de correo electrónico, la contraseña se envía " -"directamente al usuario" - -#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 -#: IDF/Form/UserAccount.php:66 -msgid "Language" -msgstr "Idioma" - -#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:159 -msgid "Add a public key" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:164 -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 "Sus datos para acceder a la forja." - -#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:400 -#, php-format -msgid "The email \"%s\" is already used." -msgstr "La dirección de correo electrónico \"%s\" ya está en uso." - -#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 -#, php-format -msgid "The login \"%s\" can only contain letters and digits." -msgstr "El nombre de usuario \"%s\" solo puede contener letras y digitos." - -#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 -#, php-format -msgid "The login \"%s\" is already used, please find another one." -msgstr "El nombre de usuario \"%s\" ya está en uso, por favor encuentra otro." - -#: IDF/Form/Admin/ProjectCreate.php:62 -msgid "Shortname" -msgstr "Nombre corto" - -#: IDF/Form/Admin/ProjectCreate.php:64 -msgid "" -"It must be unique for each project and composed only of letters, digits and " -"dash (-) like \"my-project\"." -msgstr "" -"Debe ser único para cada proyecto y compuesto únicamente de letras, dígitos " -"y el guión (-), como \"mi-proyecto\"." - -#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 -msgid "Short description" -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:77 -msgid "Repository type" -msgstr "Tipo de Repositorio" - -#: IDF/Form/Admin/ProjectCreate.php:85 -msgid "Remote Subversion repository" -msgstr "Repositorio remoto Subversion" - -#: IDF/Form/Admin/ProjectCreate.php:92 IDF/Form/SourceConf.php:40 -msgid "Repository username" -msgstr "Nombre de usuario del Repositorio" - -#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:47 -msgid "Repository password" -msgstr "Contraseña del Repositorio" - -#: 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 "Propietarios del Proyecto" - -#: 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 "Miembros del proyecto" - -#: IDF/Form/Admin/ProjectCreate.php:136 -msgid "Project template" +#: IDF/Key.php:55 +msgid "public key" 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." +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." msgstr "" -#: IDF/Form/Admin/ProjectCreate.php:185 -msgid "" -"Only a remote repository available throught http or https are allowed. For " -"example \"http://somewhere.com/svn/trunk\"." -msgstr "" -"Sólo un repositorio remoto http o https está permitido. Por ejemplo, " -"\"http://somewhere.com/svn/trunk\"." - -#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 -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 "" -"Este nombre corto contiene caracteres no válidos, por favor utiliza sólo " -"letras, dígitos y el guión (-)." - -#: IDF/Form/Admin/ProjectCreate.php:225 -msgid "The shortname cannot start with the dash (-) character." -msgstr "El nombre corto no puede comenzar con el carácter guión (-)." - -#: IDF/Form/Admin/ProjectCreate.php:228 -msgid "The shortname cannot end with the dash (-) character." -msgstr "El nombre corto no puede terminar con el carácter guión (-)." - -#: IDF/Form/Admin/ProjectCreate.php:233 -msgid "This shortname is already used. Please select another one." -msgstr "Este nombre corto ya está en uso. Por favor, seleccione otro." - -#: IDF/Form/Admin/ProjectCreate.php:295 -msgid "" -"Click on the Project Management tab to set the description of your project." -msgstr "" -"Haga clic en la pestaña Gestión de proyectos para establecer la descripción " -"de su proyecto." - -#: IDF/Form/Admin/ProjectCreate.php:362 -msgid "This project is not available." -msgstr "" - -#: IDF/Form/Admin/ProjectDelete.php:41 -msgid "Confirmation code" -msgstr "Código de confirmación" - -#: IDF/Form/Admin/ProjectDelete.php:46 -msgid "I have made a backup of all the important data of this project." -msgstr "" -"He realizado una copia de seguridad de todos los datos importantes de este " -"proyecto." - -#: IDF/Form/Admin/ProjectDelete.php:55 -msgid "" -"The confirmation code does not match. Please provide a valid confirmation " -"code to delete the project." -msgstr "" -"El código de confirmación no coincide. Por favor, introduzca el código de " -"confirmación válido para eliminar el proyecto." - -#: IDF/Form/Admin/ProjectDelete.php:63 -msgid "Sorry, you really need to backup your data before deletion." -msgstr "Lo sentimos, necesita respaldar sus datos antes de la eliminación." - -#: IDF/Form/Admin/UserUpdate.php:78 -msgid "Password" -msgstr "Contraseña" - -#: IDF/Form/Admin/UserUpdate.php:81 -msgid "Leave blank if you do not want to change the password." -msgstr "Dejar en blanco si no quiere cambiar la contraseña." - -#: IDF/Form/Admin/UserUpdate.php:81 -msgid "" -"The password must be hard for other people to find it, but easy for the user " -"to remember." -msgstr "" -"La contraseña debe ser difícil de averiguar para otras personas, pero fácil " -"de recordar para el usuario." - -#: IDF/Form/Admin/UserUpdate.php:89 -msgid "Confirm password" -msgstr "Confirmar contraseña" - -#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:108 -msgid "Twitter username" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:118 -msgid "Public email address" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:128 -msgid "Website URL" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:138 -msgid "Upload custom avatar" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:145 -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:150 -msgid "Remove custom avatar" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:154 -msgid "Tick this to delete the custom avatar." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:164 -msgid "If you give staff rights to a user, you really need to trust him." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:176 -msgid "" -"If the user is not getting the confirmation email or is abusing the system, " -"you can directly enable or disable his account here." -msgstr "" -"Si el usuario no recibe el email de confirmación o está abusando del " -"sistema, puede directamente activar o desactivar su cuenta aquí." - -#: IDF/Form/Admin/UserUpdate.php:274 -msgid "--- is not a valid first name." -msgstr "--- No es un nombre válido." - -#: IDF/Form/Admin/UserUpdate.php:290 -msgid "" -"A user with this email already exists, please provide another email address." -msgstr "" -"Ya existe un usuario con este correo electrónico , por favor, introduce otro " -"email." - -#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:423 -msgid "The passwords do not match. Please give them again." -msgstr "Las contraseñas no coinciden. Por favor, vuelve a intentarlo." - -#: IDF/Form/Password.php:34 -msgid "Your login or email" -msgstr "Su nombre de usuario o correo electrónico" - -#: IDF/Form/Password.php:35 -msgid "Provide either your login or your email to recover your password." -msgstr "" -"Proporcione su nombre de usuario o dirección de correo electrónico para " -"recuperar la contraseña." - -#: IDF/Form/Password.php:49 IDF/Form/Password.php:64 -msgid "" -"Sorry, we cannot find a user with this email address or login. Feel free to " -"try again." -msgstr "" -"Lo sentimos, no hemos encontrado ningún usuario con esta dirección de correo " -"electrónico o nombre de usuario. Vuelva a intentarlo." - -#: IDF/Form/Password.php:100 -msgid "Password Recovery - InDefero" -msgstr "Recuperar la contraseña - InDefero" - -#: IDF/Form/PasswordReset.php:39 IDF/Form/PasswordInputKey.php:36 -#: IDF/Form/UserChangeEmail.php:36 -msgid "Your verification key" -msgstr "Tu clave de verificación" - -#: IDF/Form/PasswordReset.php:45 IDF/Form/UserAccount.php:77 -#: IDF/Form/RegisterConfirmation.php:69 -msgid "Your password" -msgstr "Su contraseña" - -#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80 -#: IDF/Form/RegisterConfirmation.php:72 -msgid "" -"Your password must be hard for other people to find it, but easy for you to " -"remember." -msgstr "" -"Su contraseña debe ser difícil de averiguar por otras personas, pero fácil " -"de recordar." - -#: IDF/Form/PasswordReset.php:56 IDF/Form/UserAccount.php:88 -#: IDF/Form/RegisterConfirmation.php:80 -msgid "Confirm your password" -msgstr "Confirme su contraseña" - -#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122 -msgid "The two passwords must be the same." -msgstr "Las dos contraseñas deben ser iguales." - -#: IDF/Form/PasswordReset.php:77 -msgid "" -"This account is not active. Please contact the forge administrator to " -"activate it." -msgstr "" -"Esta cuenta no está activa. Póngase en contacto con el administrador de la " -"forja para activarlo." - -#: IDF/Form/PasswordReset.php:89 IDF/Form/PasswordInputKey.php:50 -msgid "" -"We are sorry but this validation key is not valid. Maybe you should directly " -"copy/paste it from your validation email." -msgstr "" -"Lo sentimos, pero esta clave de validación no es válida. Intente copiar/" -"pegar desde el email de validación." - -#: IDF/Form/PasswordReset.php:100 IDF/Form/PasswordInputKey.php:61 -msgid "" -"Sorry, but this verification key has expired, please restart the password " -"recovery sequence. For security reasons, the verification key is only valid " -"24h." -msgstr "" -"Lo sentimos, pero esta clave de verificación ha expirado, por favor, " -"reinicie la secuencia de recuperación de la contraseña. Por razones de " -"seguridad, la clave de verificación sólo es válida durante 24 horas." - -#: IDF/Form/PasswordReset.php:108 IDF/Form/PasswordInputKey.php:76 -#: IDF/Form/RegisterInputKey.php:72 IDF/Form/RegisterConfirmation.php:137 -msgid "Cannot save an invalid form." -msgstr "No se puede guardar un formulario no válido." - -#: IDF/Form/ReviewCreate.php:83 IDF/Form/IssueUpdate.php:65 -#: IDF/Form/IssueCreate.php:72 -msgid "The \"upload_issue_path\" configuration variable was not set." -msgstr "" -"La variable de configuración \"upload_issue_path\" no se ha establecido." - -#: IDF/Form/ReviewCreate.php:92 -msgid "Patch" -msgstr "Patch" - -#: IDF/Form/ReviewCreate.php:119 -msgid "We were not able to parse your patch. Please provide a valid patch." -msgstr "" -"No hemos podido analizar el parche. Por favor, proporcione un parche válido." - -#: IDF/Form/ReviewCreate.php:128 -msgid "You provided an invalid commit." -msgstr "Ha introducido un commit no válido." - -#: IDF/Form/ReviewCreate.php:159 IDF/Form/IssueCreate.php:233 -msgid "You provided an invalid status." -msgstr "Ha introducido un estado no válido." - -#: IDF/Form/ReviewCreate.php:202 -msgid "Initial patch to be reviewed." -msgstr "El Parche inicial debe ser revisado." - -#: IDF/Form/Register.php:41 -msgid "Your login" -msgstr "Tu nombre de usuario" - -#: IDF/Form/Register.php:53 -msgid "Your email" -msgstr "Tu correo electrónico" - -#: IDF/Form/Register.php:55 -msgid "We will never send you any unsolicited emails. We hate spams too!" -msgstr "Nunca le enviaremos emails no solicitados. ¡También odiamos el spam!" - -#: IDF/Form/Register.php:60 -msgid "I agree to the terms and conditions." -msgstr "Estoy de acuerdo con los términos y condiciones." - -#: IDF/Form/Register.php:88 -msgid "" -"We know, this is boring, but you need to agree with the terms and conditions." -msgstr "" -"Lo sabemos, esto es aburrido, pero es necesario aceptar los términos y " -"condiciones." - -#: IDF/Form/Register.php:99 -#, php-format -msgid "" -"The email \"%s\" is already used. If you need, click on the help link to " -"recover your password." -msgstr "" -"La dirección de correo electrónico \"%s\" ya está en uso. Si es necesario, " -"puede hacer clic en el enlace de ayuda para recuperar la contraseña." - -#: IDF/Form/Register.php:150 -msgid "Confirm the creation of your account." -msgstr "Confirme la creación de su cuenta." - -#: 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/IssueUpdate.php:55 IDF/Form/WikiUpdate.php:82 -#: IDF/Form/ReviewFileComment.php:45 -msgid "Comment" -msgstr "Comentario" - -#: IDF/Form/IssueUpdate.php:75 IDF/Form/IssueCreate.php:82 -msgid "Attach a file" -msgstr "Adjuntar un archivo" - -#: IDF/Form/IssueUpdate.php:98 IDF/Form/IssueCreate.php:104 -msgid "Owner" -msgstr "Propietario" - -#: IDF/Form/IssueUpdate.php:147 IDF/Form/IssueCreate.php:210 -msgid "You need to provide a description of the issue." -msgstr "Es necesario proporcionar una descripción del ticket." - -#: IDF/Form/IssueUpdate.php:219 -msgid "No changes were entered." -msgstr "No se han introducido cambios." - -#: IDF/Form/WikiDelete.php:39 -msgid "Yes, I understand that the page and all its revisions will be deleted." -msgstr "Sí, entiendo que la página y todas sus revisiones serán eliminados." - -#: IDF/Form/WikiDelete.php:50 -msgid "You need to confirm the deletion." -msgstr "Necesitas confirmar la eliminación." - -#: IDF/Form/UserAccount.php:59 -msgid "Your mail" -msgstr "Su correo electrónico" - -#: IDF/Form/UserAccount.php:61 -msgid "" -"If you change your email address, an email will be sent to the new address " -"to confirm it." -msgstr "" -"Si cambia su dirección de correo electrónico, un email será enviado a la " -"dirección nueva para confirmarla." - -#: IDF/Form/UserAccount.php:80 -msgid "Leave blank if you do not want to change your password." -msgstr "Dejar en blanco si no desea cambiar su contraseña." - -#: IDF/Form/UserAccount.php:207 -msgid "Confirm your new email address." -msgstr "Confirme su nueva dirección de correo electrónico." - -#: IDF/Form/UserAccount.php:210 -#, php-format -msgid "" -"A validation email has been sent to \"%s\" to validate the email address " -"change." -msgstr "" -"Un email de validación ha sido enviado a \"%s\" para validar el cambio de " -"dirección de correo electrónico." - -#: IDF/Form/UserAccount.php:312 -msgid "" -"Please check the key as it does not appear to be a valid SSH public key." -msgstr "" - -#: IDF/Form/UserAccount.php:332 -msgid "" -"Please check the key as it does not appear to be a valid monotone public key." -msgstr "" - -#: IDF/Form/UserAccount.php:340 -msgid "Public key looks neither like a SSH nor monotone public key." -msgstr "" - -#: IDF/Form/UserAccount.php:352 -msgid "You already have uploaded this key." -msgstr "" - -#: IDF/Form/RegisterInputKey.php:36 IDF/Form/RegisterConfirmation.php:40 -msgid "Your confirmation key" -msgstr "Tu clave de confirmación" - -#: IDF/Form/RegisterInputKey.php:50 IDF/Form/RegisterConfirmation.php:99 -msgid "" -"We are sorry but this confirmation key is not valid. Maybe you should " -"directly copy/paste it from your confirmation email." -msgstr "" -"Lo sentimos, pero esta clave de confirmación no es válida. Pruebe a copiar y " -"pegar directamente desde el email de confirmación." - -#: IDF/Form/IssueCreate.php:192 -msgid "You cannot add a label with the \"Status\" prefix to an issue." -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:80 -msgid "" -"Define an issue template to hint the reporter to provide certain information" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:89 -msgid "Open issue status values" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:97 -msgid "Closed issue status values" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:106 -msgid "Predefined issue labels" -msgstr "Etiquetas de tickets predefinidas" - -#: IDF/Form/IssueTrackingConf.php:108 -msgid "" -"The first \"Type:\" and \"Priority:\" entries found in this list are " -"automatically chosen as defaults for new issues." -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:116 -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/WikiConf.php:49 -msgid "Predefined documentation page labels" -msgstr "Etiquetas predefinidas para página de documentación" - -#: IDF/Form/WikiConf.php:58 -msgid "" -"Each documentation page may have at most one label with each of these classes" -msgstr "" -"Cada página de documentación podrá tener más de una etiqueta para cada una " -"de estas clases" - -#: IDF/Form/MembersConf.php:104 -#, php-format -msgid "The following login is invalid: %s." -msgid_plural "The following logins are invalid: %s." -msgstr[0] "" -msgstr[1] "" - -#: IDF/Form/WikiUpdate.php:83 -msgid "One line to describe the changes you made." -msgstr "Breve descripción para los cambios realizados." - -#: IDF/Form/TabsConf.php:50 -msgid "Open to all" -msgstr "Abierto a Todos" - -#: IDF/Form/TabsConf.php:51 -msgid "Signed in users" -msgstr "Usuarios Registrados" - -#: IDF/Form/TabsConf.php:54 -msgid "Closed" -msgstr "Cerrado" - -#: IDF/Form/TabsConf.php:83 -msgid "Extra authorized users" -msgstr "Usuarios autorizados adicionales" - -#: IDF/Form/UserChangeEmail.php:63 -msgid "" -"The validation key is not valid. Please copy/paste it from your confirmation " -"email." -msgstr "" -"La clave de validación no es válido. Por favor, copia/pega desde su email de " -"confirmación." - -#: IDF/Form/UploadConf.php:53 -msgid "Predefined download labels" -msgstr "Etiquetas predefinidas para descarga" - -#: IDF/Form/UploadConf.php:62 -msgid "Each download may have at most one label with each of these classes" -msgstr "" -"Cada descarga puede tener como máximo una etiqueta para cada una de estas " -"clases." - -#: IDF/Form/ReviewFileComment.php:56 -msgid "General comment" -msgstr "Comentario General" - -#: IDF/Form/ReviewFileComment.php:102 -msgid "You need to provide comments on at least one file." -msgstr "Debe hacer comentarios sobre al menos un archivo." - -#: IDF/Form/ReviewFileComment.php:109 -msgid "You need to provide your general comment about the proposal." -msgstr "Debe hacer un comentario general sobre la propuesta." - -#: 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 "" -"Esta cuenta ya ha sido confirmada. Trate de recuperar su contraseña usando " -"el enlace de ayuda." - -#: IDF/Form/Field/EmailList.php:45 -msgid "Please enter one or more valid email addresses." -msgstr "" - -#: IDF/WikiRevision.php:48 -msgid "page" -msgstr "página" - -#: IDF/WikiRevision.php:66 -msgid "A one line description of the changes." -msgstr "Una pequeña descripción de los cambios realizados." - -#: IDF/WikiRevision.php:72 -msgid "content" -msgstr "contenido" - -#: IDF/WikiRevision.php:167 IDF/WikiPage.php:196 -#, php-format -msgid "%2$s, %3$s" -msgstr "%2$s, %3$s" - -#: IDF/WikiRevision.php:189 -#, php-format -msgid "Change of %s, by %s" -msgstr "Cambio de %s, por %s" - -#: IDF/WikiRevision.php:208 -#, php-format -msgid "%s: Documentation page %s updated - %s" -msgstr "%s: Página de documentación %s actualizada - %s" - -#: IDF/WikiRevision.php:262 -#, php-format -msgid "New Documentation Page %s - %s (%s)" -msgstr "Nueva página de documentación %s - %s (%s)" - -#: IDF/WikiRevision.php:268 -#, php-format -msgid "Documentation Page Changed %s - %s (%s)" -msgstr "Cambios página de documentación %s - %s (%s)" - -#: IDF/Review/Patch.php:52 -msgid "review" -msgstr "revisión" - -#: IDF/Review/Patch.php:67 -msgid "commit" -msgstr "commit" - -#: IDF/Review/Patch.php:80 IDF/Review/Comment.php:55 -msgid "patch" -msgstr "parche" - -#: IDF/Review/Patch.php:151 IDF/Review/Comment.php:139 -#, php-format -msgid "" -"Review %3$d, %4$s" -msgstr "" -"Revisión %3$d, %4" -"$s" - -#: IDF/Review/Patch.php:153 -#, php-format -msgid "Creation of review %d, by %s" -msgstr "Creación de revisión %d, por %s" - -#: IDF/Review/Patch.php:163 -#, php-format -msgid "%s: Creation of Review %d - %s" -msgstr "%s: Creación de Revisión %d - %s" - -#: IDF/Review/Patch.php:204 -#, php-format -msgid "New Code Review %s - %s (%s)" -msgstr "Nueva Revisión de Código %s - %s (%s)" - -#: IDF/Review/Comment.php:83 -msgid "vote" -msgstr "voto" - -#: IDF/Review/Comment.php:141 -#, php-format -msgid "Update of review %d, by %s" -msgstr "" -"Actualización de revisión %d, por %s" - -#: IDF/Review/Comment.php:151 -#, php-format -msgid "%s: Updated review %d - %s" -msgstr "%s: Revisión Actualizada %d - %s" - -#: IDF/Review/Comment.php:216 -#, php-format -msgid "Updated Code Review %s - %s (%s)" -msgstr "Revisión de código Actualizada %s - %s (%s)" - -#: IDF/Plugin/SyncSvn.php:81 IDF/Plugin/SyncMercurial.php:78 +#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81 #, php-format msgid "The repository %s already exists." msgstr "El repositorio %s ya existe." +#: IDF/Plugin/SyncMercurial.php:142 +#, php-format +msgid "%s does not exist or is not writable." +msgstr "%s no existe o no se puede escribir." + #: IDF/Plugin/SyncMonotone.php:86 IDF/Plugin/SyncMonotone.php:457 #: IDF/Plugin/SyncMonotone.php:783 msgid "\"mtn_repositories\" must be defined in your configuration file." @@ -4454,6 +3657,11 @@ msgstr "" msgid "The project path %s could not be created." msgstr "" +#: IDF/Plugin/SyncMonotone.php:187 IDF/Scm/Monotone/Stdio.php:87 +#, php-format +msgid "The key directory %s could not be created." +msgstr "" + #: IDF/Plugin/SyncMonotone.php:205 #, php-format msgid "Could not parse key information: %s" @@ -4539,40 +3747,137 @@ msgstr "" msgid "The command \"%s\" could not be executed." msgstr "" -#: IDF/Plugin/SyncMercurial.php:142 -#, php-format -msgid "%s does not exist or is not writable." -msgstr "%s no existe o no se puede escribir." +#: IDF/Project.php:62 IDF/Tag.php:66 +msgid "name" +msgstr "nombre" -#: IDF/Timeline/Paginator.php:49 -msgid "Today" -msgstr "Hoy" +#: IDF/Project.php:69 +msgid "short name" +msgstr "nombre corto" -#: IDF/WikiPage.php:62 -msgid "title" -msgstr "título" - -#: IDF/WikiPage.php:63 +#: IDF/Project.php:70 msgid "" -"The title of the page must only contain letters, digits or the dash " -"character. For example: My-new-Wiki-Page." +"Used in the url to access the project, must be short with only letters and " +"numbers." msgstr "" -"El título de la página sólo puede contener letras, dígitos o el carácter de " -"guión. Por ejemplo: Mi-nueva-Página-Wiki." +"Se utiliza en la ruta de acceso al proyecto, debe ser corta, con letras y " +"números sólo ." -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." -msgstr "Una línea que describa el contenido de la página." +#: IDF/Project.php:78 +msgid "short description" +msgstr "descripción corta" -#: IDF/WikiPage.php:198 +#: IDF/Project.php:86 IDF/Review/Patch.php:74 +msgid "description" +msgstr "descripción" + +#: IDF/Project.php:87 +msgid "The description can be extended using the markdown syntax." +msgstr "La descripción se puede extender mediante la sintaxis de marcado." + +#: IDF/Project.php:93 +msgid "private" +msgstr "privado" + +#: IDF/Project.php:130 #, php-format -msgid "Creation of page %s, by %s" -msgstr "Creación de la página %s, por %s" +msgid "Project \"%s\" not found." +msgstr "Proyecto \"%s\" no encontrado." -#: IDF/WikiPage.php:208 +#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80 +msgid "patch" +msgstr "parche" + +#: IDF/Review/Comment.php:83 +msgid "vote" +msgstr "voto" + +#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151 #, php-format -msgid "%s: Documentation page %s added - %s" -msgstr "%s: Página de documentación %s añadida - %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" + +#: IDF/Review/Comment.php:151 +#, php-format +msgid "%s: Updated review %d - %s" +msgstr "%s: Revisión Actualizada %d - %s" + +#: IDF/Review/Comment.php:216 +#, php-format +msgid "Updated Code Review %s - %s (%s)" +msgstr "Revisión de código Actualizada %s - %s (%s)" + +#: IDF/Review/Patch.php:52 +msgid "review" +msgstr "revisión" + +#: IDF/Review/Patch.php:67 +msgid "commit" +msgstr "commit" + +#: IDF/Review/Patch.php:153 +#, php-format +msgid "Creation of review %d, by %s" +msgstr "Creación de revisión %d, por %s" + +#: IDF/Review/Patch.php:163 +#, php-format +msgid "%s: Creation of Review %d - %s" +msgstr "%s: Creación de Revisión %d - %s" + +#: IDF/Review/Patch.php:204 +#, php-format +msgid "New Code Review %s - %s (%s)" +msgstr "Nueva Revisión de Código %s - %s (%s)" + +#: IDF/Scm/Git.php:183 +#, php-format +msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." +msgstr "Valor no válido para el parámetro %1$s: %2$s. Utilice %3$s." + +#: IDF/Scm/Git.php:234 IDF/Scm/Mercurial.php:140 +#, 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:352 IDF/Scm/Mercurial.php:157 +#, php-format +msgid "Not a valid tree: %s." +msgstr "No es un árbol válido: %s." + +#: IDF/Scm/Monotone/Stdio.php:79 +msgid "Monotone client key name or hash not in project conf." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:98 +#, php-format +msgid "Could not write client key \"%s\"" +msgstr "" + +#: IDF/Search/Occ.php:33 +msgid "occurence" +msgstr "ocurrencia" + +#: IDF/Search/Occ.php:49 +msgid "word" +msgstr "palabra" + +#: IDF/Search/Occ.php:75 +msgid "occurences" +msgstr "ocurrencias" + +#: IDF/Search/Occ.php:81 +msgid "ponderated occurence" +msgstr "" #: IDF/Tag.php:59 msgid "tag class" @@ -4590,16 +3895,8 @@ msgstr "lcname" msgid "Lower case version of the name for fast searching." msgstr "Versión del nombre en minúscula para búsqueda rápida." -#: IDF/Key.php:49 -msgid "user" -msgstr "usuario" - -#: IDF/Key.php:55 -msgid "public key" -msgstr "" - -#: IDF/Key.php:87 -msgid "Invalid or unknown key data detected." +#: IDF/Template/Markdown.php:74 +msgid "Create this documentation page" msgstr "" #: IDF/Template/ShowUser.php:51 @@ -4610,10 +3907,736 @@ msgstr "" msgid "Me" msgstr "" -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" +#: IDF/Timeline/Paginator.php:49 +msgid "Today" +msgstr "Hoy" + +#: IDF/Upload.php:70 +msgid "file" +msgstr "archivo" + +#: IDF/Upload.php:71 +msgid "The path is relative to the upload path." +msgstr "La ruta es relativa al directorio de subidas." + +#: IDF/Upload.php:78 +msgid "file size in bytes" +msgstr "tamaño del archivo en bytes" + +#: IDF/Upload.php:100 +msgid "number of downloads" +msgstr "número de descargas" + +#: IDF/Upload.php:189 +#, php-format +msgid "Download %2$d, %3$s" +msgstr "Descarga %2$d, %3$s" + +#: IDF/Upload.php:192 +#, php-format +msgid "Addition of download %d, by %s" +msgstr "Agregada la descarga %d, por %s" + +#: IDF/Upload.php:202 +#, php-format +msgid "%s: Download %d added - %s" +msgstr "%s: Descarga %d agregada - %s" + +#: IDF/Upload.php:244 +#, php-format +msgid "New download - %s (%s)" +msgstr "Nueva descarga - %s (%s)" + +#: IDF/Views/Admin.php:60 +msgid "This table shows the projects in the forge." +msgstr "Esta tabla muestra los proyectos de la forja." + +#: IDF/Views/Admin.php:65 +msgid "Short Name" +msgstr "Nombre corto" + +#: IDF/Views/Admin.php:67 +msgid "Repository Size" +msgstr "Tamaño del Repositorio" + +#: IDF/Views/Admin.php:73 +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 +#, php-format +msgid "Update %s" +msgstr "Actualizar %s" + +#: IDF/Views/Admin.php:101 IDF/Views/Project.php:256 +msgid "The project has been updated." +msgstr "El proyecto ha sido actualizado." + +#: IDF/Views/Admin.php:134 +msgid "The project has been created." +msgstr "El proyecto ha sido creado." + +#: IDF/Views/Admin.php:160 +#, php-format +msgid "Delete %s Project" +msgstr "Eliminar Proyecto %s" + +#: IDF/Views/Admin.php:167 +msgid "The project has been deleted." +msgstr "El proyecto ha sido eliminado." + +#: IDF/Views/Admin.php:197 +msgid "Not Validated User List" +msgstr "Lista de usuarios no validados" + +#: IDF/Views/Admin.php:205 +msgid "This table shows the users in the forge." +msgstr "Esta tabla muestra los usuarios de la forja." + +#: IDF/Views/Admin.php:209 +msgid "login" msgstr "" +#: IDF/Views/Admin.php:212 +msgid "Admin" +msgstr "Admin" + +#: IDF/Views/Admin.php:214 +msgid "Last Login" +msgstr "Último inicio de sesión" + +#: IDF/Views/Admin.php:221 +msgid "No users were found." +msgstr "No se han encontrado usuarios." + +#: IDF/Views/Admin.php:258 +msgid "You do not have the rights to update this user." +msgstr "No tiene permisos para actualizar este usuario." + +#: IDF/Views/Admin.php:276 +msgid "The user has been updated." +msgstr "El usuario se ha actualizado." + +#: IDF/Views/Admin.php:309 +#, php-format +msgid "The user %s has been created." +msgstr "El usuario %s se ha creado." + +#: IDF/Views/Admin.php:316 +msgid "Add User" +msgstr "Agregar usuario" + +#: 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 "Sí" + +#: IDF/Views/Admin.php:471 +msgid "No" +msgstr "No" + +#: 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:295 +msgid "Uploaded" +msgstr "" + +#: IDF/Views/Download.php:71 IDF/Views/Download.php:299 +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:223 +#, php-format +msgid "The file has been uploaded." +msgstr "" + +#: IDF/Views/Download.php:277 +#, php-format +msgid "%1$s Downloads with Label %2$s" +msgstr "" + +#: IDF/Views/Download.php:287 +#, 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:287 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 +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 +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 +msgid "No issues were found." +msgstr "" + +#: IDF/Views/Issue.php:112 +#, php-format +msgid "Watch List: Closed Issues for %s" +msgstr "" + +#: IDF/Views/Issue.php:113 +#, php-format +msgid "This table shows the closed issues in your watch list for %s project." +msgstr "" + +#: IDF/Views/Issue.php:118 +#, php-format +msgid "Watch List: Open Issues for %s" +msgstr "" + +#: IDF/Views/Issue.php:119 +#, php-format +msgid "This table shows the open issues in your watch list for %s project." +msgstr "" + +#: IDF/Views/Issue.php:195 +msgid "Watch List: Closed Issues" +msgstr "" + +#: IDF/Views/Issue.php:196 +msgid "This table shows the closed issues in your watch list." +msgstr "" + +#: IDF/Views/Issue.php:201 +msgid "Watch List: Open Issues" +msgstr "" + +#: IDF/Views/Issue.php:202 +msgid "This table shows the open issues in your watch list." +msgstr "" + +#: IDF/Views/Issue.php:221 IDF/Views/User.php:82 +msgid "Project" +msgstr "Proyecto" + +#: IDF/Views/Issue.php:254 +#, php-format +msgid "My Submitted %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:258 +#, php-format +msgid "My Closed Submitted %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:262 +#, php-format +msgid "My Closed Working %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:266 +#, php-format +msgid "My Working %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:321 +msgid "Submit a new issue" +msgstr "" + +#: IDF/Views/Issue.php:337 +#, php-format +msgid "Issue %d has been created." +msgstr "" + +#: IDF/Views/Issue.php:366 +#, php-format +msgid "Search Issues - %s" +msgstr "" + +#: IDF/Views/Issue.php:378 +msgid "This table shows the found issues." +msgstr "" + +#: IDF/Views/Issue.php:408 +#, php-format +msgid "Issue %d: %s" +msgstr "" + +#: IDF/Views/Issue.php:432 +#, php-format +msgid "Issue %d has been updated." +msgstr "" + +#: IDF/Views/Issue.php:521 +#, php-format +msgid "View %s" +msgstr "" + +#: IDF/Views/Issue.php:541 +#, php-format +msgid "%s Closed Issues" +msgstr "" + +#: IDF/Views/Issue.php:551 +msgid "This table shows the closed issues." +msgstr "" + +#: IDF/Views/Issue.php:594 +#, php-format +msgid "%1$s Issues with Label %2$s" +msgstr "" + +#: IDF/Views/Issue.php:597 +#, php-format +msgid "%1$s Closed Issues with Label %2$s" +msgstr "" + +#: IDF/Views/Issue.php:610 +#, php-format +msgid "This table shows the issues with label %s." +msgstr "" + +#: IDF/Views/Issue.php:660 +msgid "The issue has been removed from your watch list." +msgstr "" + +#: IDF/Views/Issue.php:663 +msgid "The issue has been added to your watch list." +msgstr "" + +#: IDF/Views/Issue.php:752 +msgid "On your watch list." +msgstr "" + +#: IDF/Views/Project.php:72 +msgid "All Updates" +msgstr "" + +#: IDF/Views/Project.php:74 +msgid "Issues and Comments" +msgstr "" + +#: IDF/Views/Project.php:76 +msgid "Documents" +msgstr "" + +#: IDF/Views/Project.php:77 +msgid "Reviews and Patches" +msgstr "" + +#: IDF/Views/Project.php:142 +msgid "This table shows the project updates." +msgstr "Esta tabla muestra las actualizaciones del proyecto." + +#: IDF/Views/Project.php:153 +msgid "Change" +msgstr "Cambios" + +#: IDF/Views/Project.php:157 +msgid "No changes were found." +msgstr "No se encontraron cambios." + +#: IDF/Views/Project.php:248 +#, php-format +msgid "%s Project Summary" +msgstr "Resumen del Proyecto %s" + +#: IDF/Views/Project.php:283 +#, php-format +msgid "%s Issue Tracking Configuration" +msgstr "Configuración de Seguimiento de Tickets %s" + +#: IDF/Views/Project.php:292 +msgid "The issue tracking configuration has been saved." +msgstr "La configuración de seguimiento de Tickets se ha guardado." + +#: IDF/Views/Project.php:328 +#, php-format +msgid "%s Downloads Configuration" +msgstr "Configuración de descargas %s" + +#: IDF/Views/Project.php:337 +msgid "The downloads configuration has been saved." +msgstr "La configuración de las descargas se ha guardado." + +#: IDF/Views/Project.php:371 +#, php-format +msgid "%s Documentation Configuration" +msgstr "Configuración de documentación %s" + +#: IDF/Views/Project.php:380 +msgid "The documentation configuration has been saved." +msgstr "La configuración de la documentación ha sido guardada." + +#: IDF/Views/Project.php:414 +#, php-format +msgid "%s Project Members" +msgstr "Miembros del Proyecto %s" + +#: IDF/Views/Project.php:423 +msgid "The project membership has been saved." +msgstr "Los miembros del proyecto se han guardado." + +#: IDF/Views/Project.php:446 +#, php-format +msgid "%s Tabs Access Rights" +msgstr "Pestaña de permisos de acceso %s " + +#: IDF/Views/Project.php:460 +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:506 +#, php-format +msgid "%s Source" +msgstr "Fuente %s" + +#: IDF/Views/Project.php:520 +msgid "The project source configuration has been saved." +msgstr "La configuración de la fuente del proyecto se ha guardado" + +#: IDF/Views/Review.php:41 +#, php-format +msgid "%s Code Reviews" +msgstr "Comentários del Código %s" + +#: IDF/Views/Review.php:48 +msgid "This table shows the latest reviews." +msgstr "Esta tabla muestra los últimos comentarios." + +#: IDF/Views/Review.php:64 +msgid "No reviews were found." +msgstr "No se encontraron comentarios." + +#: IDF/Views/Review.php:94 +#, php-format +msgid "The code review %d has been created." +msgstr "El comentario del código %d ha sido creado." + +#: IDF/Views/Review.php:140 +#, php-format +msgid "Review %d: %s" +msgstr "Comentario %d: %s" + +#: 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:81 +#, php-format +msgid "%s Ambiguous Revision" +msgstr "" + +#: IDF/Views/Source.php:106 +#, php-format +msgid "%1$s %2$s Change Log" +msgstr "" + +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#, php-format +msgid "%1$s %2$s Source Tree" +msgstr "" + +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" +msgstr "Detalles del Commit %s" + +#: IDF/Views/Source.php:304 +#, php-format +msgid "%s Commit Details - %s" +msgstr "%s Detalles del Commit - %s" + +#: IDF/Views/User.php:59 +msgid "Your Dashboard - Working Issues" +msgstr "" + +#: IDF/Views/User.php:62 +msgid "Your Dashboard - Submitted Issues" +msgstr "" + +#: IDF/Views/User.php:89 +msgid "No issues are assigned to you, yeah!" +msgstr "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!" + +#: IDF/Views/User.php:121 +msgid "Your personal information has been updated." +msgstr "Tu información personal se ha actualizado." + +#: IDF/Views/User.php:132 +msgid "Your Account" +msgstr "Tu Cuenta" + +#: IDF/Views/User.php:155 +msgid "The public key has been deleted." +msgstr "" + +#: IDF/Views/User.php:178 +msgid "Confirm The Email Change" +msgstr "Confirmar el cambio de correo electrónico" + +#: IDF/Views/User.php:203 +#, php-format +msgid "Your new email address \"%s\" has been validated. Thank you!" +msgstr "" +"Tu nueva dirección de correo electrónico \"%s\" ha sido validada. ¡Gracias!" + +#: IDF/Views/Wiki.php:41 +#, php-format +msgid "%s Documentation" +msgstr "%s Documentación" + +#: IDF/Views/Wiki.php:48 +msgid "This table shows the documentation pages." +msgstr "Esta tabla muestra las páginas de documentación." + +#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:106 IDF/Views/Wiki.php:147 +msgid "Page Title" +msgstr "Título de la página" + +#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149 +msgid "Updated" +msgstr "Actualizado" + +#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:153 +msgid "No documentation pages were found." +msgstr "No se encontraron páginas de documentación." + +#: IDF/Views/Wiki.php:90 +#, php-format +msgid "Documentation Search - %s" +msgstr "Búsqueda de documentación - %s" + +#: IDF/Views/Wiki.php:101 +msgid "This table shows the pages found." +msgstr "Esta tabla muestra las páginas encontradas." + +#: IDF/Views/Wiki.php:112 +msgid "No pages were found." +msgstr "No se encontraron páginas." + +#: IDF/Views/Wiki.php:131 +#, php-format +msgid "%1$s Documentation Pages with Label %2$s" +msgstr "%1$s Páginas de documentación con la etiqueta %2$s" + +#: IDF/Views/Wiki.php:141 +#, php-format +msgid "This table shows the documentation pages with label %s." +msgstr "Esta tabla muestra las páginas de documentación con la etiqueta %s." + +#: IDF/Views/Wiki.php:186 +#, php-format +msgid "The page %s has been created." +msgstr "La página %s se ha creado." + +#: IDF/Views/Wiki.php:273 +msgid "The old revision has been deleted." +msgstr "La antigua revisión ha sido eliminado." + +#: IDF/Views/Wiki.php:279 +#, php-format +msgid "Delete Old Revision of %s" +msgstr "Eliminar Antigua revisión de %s" + +#: IDF/Views/Wiki.php:324 +#, php-format +msgid "The page %s has been updated." +msgstr "La página %s se ha actualizado." + +#: IDF/Views/Wiki.php:362 +msgid "The documentation page has been deleted." +msgstr "La página de documentación se ha eliminado." + +#: IDF/Views/Wiki.php:370 +#, php-format +msgid "Delete Page %s" +msgstr "Eliminar Página %s" + +#: IDF/Views.php:124 IDF/Views.php:150 +msgid "Confirm Your Account Creation" +msgstr "Confirma la creación de tu cuenta" + +#: IDF/Views.php:170 +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:196 IDF/Views.php:220 IDF/Views.php:261 +msgid "Password Recovery" +msgstr "Recuperación de la contraseña" + +#: IDF/Views.php:240 +msgid "" +"Welcome back! Next time, you can use your broswer options to remember the " +"password." +msgstr "" +"¡Bienvenido de nuevo! La próxima vez, puede utilizar la opcione de tu " +"navegador para recordar la contraseña." + +#: IDF/Views.php:282 +msgid "Here to Help You!" +msgstr "¡Aquí para ayudarte!" + +#: IDF/Views.php:298 +msgid "InDefero API (Application Programming Interface)" +msgstr "InDefero API (Interfaz de Programación de la Aplicación)" + +#: 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 "" +"El título de la página sólo puede contener letras, dígitos o el carácter de " +"guión. Por ejemplo: Mi-nueva-Página-Wiki." + +#: IDF/WikiPage.php:71 +msgid "A one line description of the page content." +msgstr "Una línea que describa el contenido de la página." + +#: IDF/WikiPage.php:196 IDF/WikiRevision.php:167 +#, php-format +msgid "%2$s, %3$s" +msgstr "%2$s, %3$s" + +#: IDF/WikiPage.php:198 +#, php-format +msgid "Creation of page %s, by %s" +msgstr "Creación de la página %s, por %s" + +#: IDF/WikiPage.php:208 +#, php-format +msgid "%s: Documentation page %s added - %s" +msgstr "%s: Página de documentación %s añadida - %s" + +#: IDF/WikiRevision.php:48 +msgid "page" +msgstr "página" + +#: IDF/WikiRevision.php:66 +msgid "A one line description of the changes." +msgstr "Una pequeña descripción de los cambios realizados." + +#: IDF/WikiRevision.php:72 +msgid "content" +msgstr "contenido" + +#: IDF/WikiRevision.php:189 +#, php-format +msgid "Change of %s, by %s" +msgstr "Cambio de %s, por %s" + +#: IDF/WikiRevision.php:208 +#, php-format +msgid "%s: Documentation page %s updated - %s" +msgstr "%s: Página de documentación %s actualizada - %s" + +#: IDF/WikiRevision.php:262 +#, php-format +msgid "New Documentation Page %s - %s (%s)" +msgstr "Nueva página de documentación %s - %s (%s)" + +#: IDF/WikiRevision.php:268 +#, php-format +msgid "Documentation Page Changed %s - %s (%s)" +msgstr "Cambios página de documentación %s - %s (%s)" + +#, fuzzy +#~ msgid "here" +#~ msgstr "Otros" + #~ msgid "Managed Projects:" #~ msgstr "Gestionar Proyectos:" diff --git a/src/IDF/locale/fr/idf.po b/src/IDF/locale/fr/idf.po index 11f4f18..56d3128 100644 --- a/src/IDF/locale/fr/idf.po +++ b/src/IDF/locale/fr/idf.po @@ -7,184 +7,44 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-23 16:05+0100\n" -"PO-Revision-Date: 2011-02-23 00:05+0000\n" +"POT-Creation-Date: 2011-02-23 23:41+0100\n" +"PO-Revision-Date: 2011-02-23 22:06+0000\n" "Last-Translator: Delkia \n" "Language-Team: French <>\n" +"Language: 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/IssueComment.php:51 -msgid "issue" -msgstr "ticket" - -#: 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 "commentaire" - -#: 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 "auteur" - -#: IDF/IssueComment.php:72 IDF/Upload.php:63 IDF/WikiRevision.php:85 -#: IDF/Review/Comment.php:75 -msgid "changes" -msgstr "changements" - -#: IDF/IssueComment.php:73 -msgid "Serialized array of the changes in the issue." -msgstr "Tableau sérialisé des changements du ticket." - -#: 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 "date de création" - -#: IDF/IssueComment.php:143 IDF/Issue.php:194 -#, php-format -msgid "" -"Issue %3$d, %4$s" -msgstr "" -"Ticket %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 "Résumé :" - -#: 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 "Statut :" - -#: 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 "Propriétaire :" - -#: 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 "Étiquettes :" - -#: IDF/IssueComment.php:171 -#, php-format -msgid "Comment on issue %d, by %s" -msgstr "" -"Commentaire sur le ticket %d, par %s" - -#: IDF/IssueComment.php:182 -#, php-format -msgid "%s: Comment on issue %d - %s" -msgstr "%s: Commentaire sur le ticket %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 "projet" -#: 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/Review/Comment.php:69 IDF/Review.php:80 +#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79 +msgid "submitter" +msgstr "auteur" + +#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60 +#: IDF/Review.php:73 IDF/Upload.php:57 IDF/WikiPage.php:70 +#: IDF/WikiRevision.php:65 msgid "summary" msgstr "résumé" -#: IDF/Upload.php:70 -msgid "file" -msgstr "fichier" - -#: IDF/Upload.php:71 -msgid "The path is relative to the upload path." -msgstr "Le chemin est relatif au répertoire de mise en ligne." - -#: IDF/Upload.php:78 -msgid "file size in bytes" -msgstr "taille du fichier en octets" - -#: IDF/Upload.php:93 IDF/Issue.php:92 IDF/Review.php:95 IDF/WikiPage.php:94 -msgid "labels" -msgstr "étiquettes" - -#: IDF/Upload.php:100 -msgid "number of downloads" -msgstr "nombre de téléchargements" - -#: IDF/Upload.php:112 IDF/IssueFile.php:102 IDF/Issue.php:111 -#: IDF/Review.php:114 IDF/WikiPage.php:106 -msgid "modification date" -msgstr "date de modification" - -#: IDF/Upload.php:189 -#, php-format -msgid "Download %2$d, %3$s" -msgstr "" -"Téléchargement %2$d, %3" -"$s" - -#: IDF/Upload.php:192 -#, php-format -msgid "Addition of download %d, by %s" -msgstr "Création du téléchargement %d, par %s" - -#: IDF/Upload.php:202 -#, php-format -msgid "%s: Download %d added - %s" -msgstr "%s: Ajout du téléchargement %d - %s" - -#: IDF/Upload.php:244 -#, php-format -msgid "New download - %s (%s)" -msgstr "Nouveau téléchargement - %s (%s)" - #: IDF/Commit.php:93 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/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 +msgid "creation date" +msgstr "date de création" + #: IDF/Commit.php:238 #, php-format msgid "Commit %s, by %s" @@ -195,6 +55,909 @@ msgstr "Commit %s, par %s" msgid "New Commit %s - %s (%s)" msgstr "Nouveau commit %s - %s (%s)" +#: IDF/Conf.php:61 IDF/Gconf.php:73 +msgid "key" +msgstr "clef" + +#: IDF/Conf.php:67 IDF/Gconf.php:79 +msgid "value" +msgstr "valeur" + +#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:540 +msgid "git" +msgstr "git" + +#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:541 +msgid "Subversion" +msgstr "Subversion" + +#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:542 +msgid "mercurial" +msgstr "mercurial" + +#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:543 +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 +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 +msgid "Private project" +msgstr "Projet privé" + +#: IDF/Form/Admin/ProjectCreate.php:62 +msgid "Shortname" +msgstr "Nom court" + +#: IDF/Form/Admin/ProjectCreate.php:64 +msgid "" +"It must be unique for each project and composed only of letters, digits and " +"dash (-) like \"my-project\"." +msgstr "" +"Il doit être unique pour chaque projet et ne doit contenir que des lettres, " +"des chiffres et le tiret (-) comme \"mon-projet\"." + +#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 +msgid "Short description" +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." + +#: IDF/Form/Admin/ProjectCreate.php:77 +msgid "Repository type" +msgstr "Type de dépôt" + +#: IDF/Form/Admin/ProjectCreate.php:85 +msgid "Remote Subversion repository" +msgstr "Dépôt Subversion distant" + +#: IDF/Form/Admin/ProjectCreate.php:92 IDF/Form/SourceConf.php:40 +msgid "Repository username" +msgstr "Identifiant d'accès" + +#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:47 +msgid "Repository password" +msgstr "Mot de passe du dépôt" + +#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/Admin/ProjectUpdate.php:59 +msgid "Master branch" +msgstr "Branche principale" + +#: 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 "" +"Cela doit être une identifiant unique sur la planète entière. Une notation " +"DNS inverse comme \"com.my-domain.my-project\" est une bonne idée. " + +#: 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 "Propriétaires du projet" + +#: 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 "Membres du projet" + +#: IDF/Form/Admin/ProjectCreate.php:136 +msgid "Project template" +msgstr "Gabarit de projet" + +#: 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 "" +"Utiliser le projet fourni pour démarrer le nouveau projet. Les droits " +"d'accès et la configuration générale seront extraits du projet gabarit." + +#: IDF/Form/Admin/ProjectCreate.php:185 +msgid "" +"Only a remote repository available throught http or https are allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" +"Only a remote repository available throught http or https are allowed. For " +"example \"http://somewhere.com/svn/trunk\"." + +#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 +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 " +"(.)." + +#: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101 +msgid "This master branch is already used. Please select another one." +msgstr "" +"Cette branche principale est déjà utilisée. Veuillez en sélectionner une " +"autre." + +#: IDF/Form/Admin/ProjectCreate.php:222 +msgid "" +"This shortname contains illegal characters, please use only letters, digits " +"and dash (-)." +msgstr "" +"Ce nom court contient des caractères non autorisés, il ne doit être composé " +"que de lettres, de chiffres et du tiret (-)." + +#: IDF/Form/Admin/ProjectCreate.php:225 +msgid "The shortname cannot start with the dash (-) character." +msgstr "Le nom court ne doit pas démarrer avec un tiret (-)." + +#: IDF/Form/Admin/ProjectCreate.php:228 +msgid "The shortname cannot end with the dash (-) character." +msgstr "Le nom court ne doit pas se terminer avec un tiret (-)." + +#: IDF/Form/Admin/ProjectCreate.php:233 +msgid "This shortname is already used. Please select another one." +msgstr "Ce nom court est déjà utilisé, veuillez en sélectionner un autre." + +#: IDF/Form/Admin/ProjectCreate.php: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/Password.php:76 IDF/Form/Register.php:114 +#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:125 +#: IDF/Form/TabsConf.php:98 IDF/Form/UpdateUpload.php:126 +#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:180 +#: 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 "Ne peut pas sauvegarder le modèle depuis un formulaire invalide." + +#: IDF/Form/Admin/ProjectCreate.php:295 +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." + +#: IDF/Form/Admin/ProjectCreate.php:362 +msgid "This project is not available." +msgstr "Ce projet n'est pas disponible." + +#: IDF/Form/Admin/ProjectDelete.php:41 +msgid "Confirmation code" +msgstr "Code de confirmation" + +#: IDF/Form/Admin/ProjectDelete.php:46 +msgid "I have made a backup of all the important data of this project." +msgstr "" +"J'ai réalisé une copie de sauvegarde des informations importantes de ce " +"projet." + +#: IDF/Form/Admin/ProjectDelete.php:55 +msgid "" +"The confirmation code does not match. Please provide a valid confirmation " +"code to delete the project." +msgstr "" +"Le code de confirmation ne correspond pas. Merci de fournir un code de " +"confirmation valide pour supprimer ce projet." + +#: IDF/Form/Admin/ProjectDelete.php:63 +msgid "Sorry, you really need to backup your data before deletion." +msgstr "" +"Désolé, vous devez vraiment faire une copie de sauvegarde des informations " +"importantes de ce projet." + +#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 +#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40 +msgid "First name" +msgstr "Prénom" + +#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 +#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49 +msgid "Last name" +msgstr "Nom de famille" + +#: IDF/Form/Admin/UserCreate.php:56 +msgid "Login" +msgstr "Identifiant" + +#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 +msgid "" +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." +msgstr "" +"L'identifiant doit avoir entre 3 et 15 caractères et ne doit contenir que " +"des lettres et des chiffres." + +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "Email" + +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is directly sent to the user." +msgstr "" +"Vérifiez particulièrement l'adresse email car le mot de passe est " +"directement envoyé à l'utilisateur." + +#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 +#: IDF/Form/UserAccount.php:66 +msgid "Language" +msgstr "Langage" + +#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161 +msgid "Add a public key" +msgstr "Ajouter une clef publique" + +#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:166 +msgid "" +"Paste a SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" +"Copiez une clef publique SSH ou monotone. Faites bien attention à ne pas y " +"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:402 +#, php-format +msgid "The email \"%s\" is already used." +msgstr "L'adresse email \"%s\" est déjà utilisée." + +#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 +#, php-format +msgid "The login \"%s\" can only contain letters and digits." +msgstr "L'identifiant \"%s\" ne doit contenir que des lettres et des chiffres." + +#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 +#, php-format +msgid "The login \"%s\" is already used, please find another one." +msgstr "L'identifiant \"%s\" est déjà utilisé, merci d'en choisir un autre." + +#: IDF/Form/Admin/UserUpdate.php:78 +msgid "Password" +msgstr "Mot de passe" + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "Leave blank if you do not want to change the password." +msgstr "Laissez vide si vous ne voulez pas changer le mot de passe." + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "" +"The password must be hard for other people to find it, but easy for the user " +"to remember." +msgstr "" +"Le mot de passe doit être difficile à trouver pour d'autres personnes, mais " +"simple à retenir pour l'utilisateur." + +#: IDF/Form/Admin/UserUpdate.php:89 +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 +msgid "Description" +msgstr "Description" + +#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110 +msgid "Twitter username" +msgstr "Nom d'utilisateur twitter" + +#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120 +msgid "Public email address" +msgstr "Adesse email publique" + +#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130 +msgid "Website URL" +msgstr "URL de site web" + +#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140 +msgid "Upload custom avatar" +msgstr "Télécharger un avatar personnel" + +#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147 +msgid "" +"An image file with a width and height not larger than 60 pixels (bigger " +"images are scaled down)." +msgstr "" +"Un fichier image 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" +msgstr "Supprimer l'avatar" + +#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156 +msgid "Tick this to delete the custom avatar." +msgstr "Cochez ici pour supprimer l'avatar" + +#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:211 +msgid "Staff" +msgstr "Staff" + +#: IDF/Form/Admin/UserUpdate.php:164 +msgid "If you give staff rights to a user, you really need to trust him." +msgstr "" +"Si vous donnez les droits de staff à un utilisateur, vous devez vraiment lui " +"faire confiance." + +#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:213 +msgid "Active" +msgstr "Actif" + +#: IDF/Form/Admin/UserUpdate.php:176 +msgid "" +"If the user is not getting the confirmation email or is abusing the system, " +"you can directly enable or disable his account here." +msgstr "" +"Si l'utilisateur ne reçoit pas l'email de confirmation ou s'il abuse du " +"système, vous pouvez directement activer ou désactiver son compte ici." + +#: IDF/Form/Admin/UserUpdate.php:274 +msgid "--- is not a valid first name." +msgstr "--- n'est pas un prénom acceptable." + +#: IDF/Form/Admin/UserUpdate.php:290 +msgid "" +"A user with this email already exists, please provide another email address." +msgstr "" +"Un utilisateur avec cet email existe déjà, merci de fournir une autre " +"adresse email." + +#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/Upload.php:86 +#: IDF/Form/UserAccount.php:369 +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:425 +msgid "The passwords do not match. Please give them again." +msgstr "" +"Les mots de passe ne sont pas identiques, veuillez les donner de nouveau." + +#: IDF/Form/Field/EmailList.php:45 +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/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:71 +#: 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 +msgid "Summary" +msgstr "Résumé" + +#: IDF/Form/IssueCreate.php:72 IDF/Form/IssueUpdate.php:65 +#: IDF/Form/ReviewCreate.php:83 +msgid "The \"upload_issue_path\" configuration variable was not set." +msgstr "" +"La variable de configuration \"upload_issue_path\" n'a pas été définie." + +#: IDF/Form/IssueCreate.php:82 IDF/Form/IssueUpdate.php:75 +msgid "Attach a file" +msgstr "Attacher un fichier" + +#: IDF/Form/IssueCreate.php:95 IDF/Form/IssueUpdate.php:88 +#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:81 +#: 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 +msgid "Status" +msgstr "Statut" + +#: IDF/Form/IssueCreate.php:104 IDF/Form/IssueUpdate.php:98 +msgid "Owner" +msgstr "Propriétaire" + +#: IDF/Form/IssueCreate.php:150 IDF/Form/IssueUpdate.php:117 +#: 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 +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" +"\"." + +#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 +#: 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/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 +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 +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 the reporter to provide certain information" +msgstr "" +"Définissez un ticket gabarit pour inciter le rapporteur à fournir certaines " +"informations" + +#: IDF/Form/IssueTrackingConf.php:89 +msgid "Open issue status values" +msgstr "Valeurs des statuts des tickets ouverts" + +#: IDF/Form/IssueTrackingConf.php:97 +msgid "Closed issue status values" +msgstr "Valeurs des statuts des tickets fermés" + +#: IDF/Form/IssueTrackingConf.php:106 +msgid "Predefined issue labels" +msgstr "Étiquettes prédéfinies des tickets" + +#: IDF/Form/IssueTrackingConf.php:108 +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. " + +#: IDF/Form/IssueTrackingConf.php:116 +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/WikiUpdate.php:82 +msgid "Comment" +msgstr "Commentaire" + +#: IDF/Form/IssueUpdate.php:219 +msgid "No changes were entered." +msgstr "Aucun changement n'a été entré." + +#: IDF/Form/MembersConf.php:104 +#, php-format +msgid "The following login is invalid: %s." +msgid_plural "The following logins are invalid: %s." +msgstr[0] "L'identifiant suivant 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" +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." + +#: IDF/Form/Password.php:49 IDF/Form/Password.php:64 +msgid "" +"Sorry, we cannot find a user with this email address or login. Feel free to " +"try again." +msgstr "" +"Désolé, mais nous n'avons pas trouvé d'utilisateur avec cette adresse email " +"ou cet identifiant. Vous pouvez essayer de nouveau." + +#: IDF/Form/Password.php:100 +msgid "Password Recovery - InDefero" +msgstr "Récupération de votre mot de passe - InDefero" + +#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39 +#: IDF/Form/UserChangeEmail.php:36 +msgid "Your verification key" +msgstr "Votre 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." +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 " +"validation." + +#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100 +msgid "" +"Sorry, but this verification key has expired, please restart the password " +"recovery sequence. For security reasons, the verification key is only valid " +"24h." +msgstr "" +"Désolé mais votre clef de vérification a expiré, merci de recommencer la " +"procédure de récupération de votre mot de passe. Pour des raisons de " +"sécurité, la clef de vérification n'est valide que 24h." + +#: 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 "Ne peut pas sauvegarder un formulaire invalide." + +#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69 +#: IDF/Form/UserAccount.php:77 +msgid "Your password" +msgstr "Votre mot de passe" + +#: IDF/Form/PasswordReset.php:48 IDF/Form/RegisterConfirmation.php:72 +#: IDF/Form/UserAccount.php:80 +msgid "" +"Your password must be hard for other people to find it, but easy for you to " +"remember." +msgstr "" +"Votre mot de passe doit être difficile à trouver pour d'autres personnes, " +"mais simple à retenir pour vous." + +#: IDF/Form/PasswordReset.php:56 IDF/Form/RegisterConfirmation.php:80 +#: IDF/Form/UserAccount.php:89 +msgid "Confirm your password" +msgstr "Confirmez votre mot de passe" + +#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122 +msgid "The two passwords must be the same." +msgstr "Les deux mots de passe doivent être identiques." + +#: IDF/Form/PasswordReset.php:77 +msgid "" +"This account is not active. Please contact the forge administrator to " +"activate it." +msgstr "" +"Ce compte n'est pas actif. Veuillez contacter un administrateur de la forge " +"pour l'activer." + +#: IDF/Form/Register.php:41 +msgid "Your login" +msgstr "Votre identifiant" + +#: IDF/Form/Register.php:53 +msgid "Your email" +msgstr "Votre email" + +#: IDF/Form/Register.php:55 +msgid "We will never send you any unsolicited emails. We hate spams too!" +msgstr "" +"Nous ne vous enverrons aucun message non sollicité. Comme vous, nous avons " +"ras le bol du spam." + +#: IDF/Form/Register.php:60 +msgid "I agree to the terms and conditions." +msgstr "J'accepte les conditions d'usage du service." + +#: IDF/Form/Register.php:88 +msgid "" +"We know, this is boring, but you need to agree with the terms and conditions." +msgstr "" +"Nous savons que c'est inintéressant, mais vous devez accepter les conditions " +"d'usage du service." + +#: IDF/Form/Register.php:99 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need, click on the help link to " +"recover your password." +msgstr "" +"L'email \"%s\" est déjà utilisé. Si vous devez, vous pouvez récupérer votre " +"mot de passe via le lien d'aide." + +#: IDF/Form/Register.php:150 +msgid "Confirm the creation of your account." +msgstr "Confirmez la création de votre compte." + +#: IDF/Form/RegisterConfirmation.php:40 IDF/Form/RegisterInputKey.php:36 +msgid "Your confirmation key" +msgstr "Votre clef de confirmation" + +#: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50 +msgid "" +"We are sorry but this confirmation key is not valid. Maybe you should " +"directly copy/paste it from your confirmation email." +msgstr "" +"Nous sommes désolés mais cette clef de confirmation est invalide. Vous " +"devriez peut-être faire directement un copier/coller depuis votre email de " +"confirmation." + +#: 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 "" +"Ce compte a déjà été confirmé. Peut-être devez vous essayer de retrouver " +"votre mot de passe via le lien d'aide." + +#: IDF/Form/ReviewCreate.php:74 +#: IDF/gettexttemplates/idf/source/base.html.php:5 +#: IDF/gettexttemplates/idf/source/changelog.html.php:7 +msgid "Commit" +msgstr "Commit" + +#: IDF/Form/ReviewCreate.php:92 +msgid "Patch" +msgstr "Patch" + +#: IDF/Form/ReviewCreate.php:119 +msgid "We were not able to parse your patch. Please provide a valid patch." +msgstr "" +"Nous n'avons pas réussi à interpréter votre patch. Merci de fournir un patch " +"valid." + +#: IDF/Form/ReviewCreate.php:128 +msgid "You provided an invalid commit." +msgstr "Vous avez fourni un commit invalide." + +#: IDF/Form/ReviewCreate.php:202 +msgid "Initial patch to be reviewed." +msgstr "Patch initial à discuter." + +#: IDF/Form/ReviewFileComment.php:56 +msgid "General comment" +msgstr "Commentaire général" + +#: IDF/Form/ReviewFileComment.php:102 +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:109 +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/SourceConf.php:56 +msgid "Webhook URL" +msgstr "URL du Webhook" + +#: IDF/Form/SourceConf.php:58 +#, php-format +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.orig.php:5 +#: IDF/gettexttemplates/idf/base-full.html.php:5 +#: IDF/gettexttemplates/idf/base.html.orig.php:5 +#: IDF/gettexttemplates/idf/base.html.php:5 +#: IDF/gettexttemplates/idf/downloads/base.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14 +#: IDF/Views/Project.php:75 +msgid "Downloads" +msgstr "Téléchargements" + +#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.orig.php:9 +#: IDF/gettexttemplates/idf/base-full.html.php:9 +#: IDF/gettexttemplates/idf/base.html.orig.php:9 +#: IDF/gettexttemplates/idf/base.html.php:9 +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.orig.php:6 +#: IDF/gettexttemplates/idf/base-full.html.php:6 +#: IDF/gettexttemplates/idf/base.html.orig.php:6 +#: IDF/gettexttemplates/idf/base.html.php:6 +msgid "Documentation" +msgstr "Documentation" + +#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:8 +#: IDF/gettexttemplates/idf/base-full.html.php:8 +#: IDF/gettexttemplates/idf/base.html.orig.php:8 +#: IDF/gettexttemplates/idf/base.html.php:8 +msgid "Source" +msgstr "Source" + +#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.orig.php:7 +#: IDF/gettexttemplates/idf/base-full.html.php:7 +#: IDF/gettexttemplates/idf/base.html.orig.php:7 +#: IDF/gettexttemplates/idf/base.html.php:7 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17 +msgid "Issues" +msgstr "Tickets" + +#: IDF/Form/TabsConf.php:50 +msgid "Open to all" +msgstr "Ouvert à tous" + +#: IDF/Form/TabsConf.php:51 +msgid "Signed in users" +msgstr "Utilisateurs authentifiés" + +#: IDF/Form/TabsConf.php:54 +msgid "Closed" +msgstr "Fermé" + +#: IDF/Form/TabsConf.php:83 +msgid "Extra authorized users" +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 +msgid "File" +msgstr "Fichier" + +#: IDF/Form/UploadConf.php:53 +msgid "Predefined download labels" +msgstr "Étiquettes prédéfinies des téléchargements" + +#: IDF/Form/UploadConf.php:62 +msgid "Each download may have at most one label with each of these classes" +msgstr "" +"Chaque téléchargement ne peut avoir qu'une seule étiquette pour chacune de " +"ces classes" + +#: IDF/Form/UserAccount.php:59 +msgid "Your mail" +msgstr "Votre 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 "" +"Si vous changez votre adresse email, un email sera envoyé à la nouvelle " +"adresse pour confirmation." + +#: IDF/Form/UserAccount.php:80 +msgid "Leave blank if you do not want to change your password." +msgstr "Laissez vide si vous ne voulez pas changer votre mot de passe." + +#: IDF/Form/UserAccount.php:209 +msgid "Confirm your new email address." +msgstr "Confirmez votre nouvelle adresse email." + +#: IDF/Form/UserAccount.php:212 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "Un email a été envoyé à \"%s\" pour valider le changement d'adresse." + +#: IDF/Form/UserAccount.php:314 +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:334 +msgid "" +"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:342 +msgid "Public key looks neither like a 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:354 +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." +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 " +"confirmation." + +#: IDF/Form/WikiConf.php:49 +msgid "Predefined documentation page labels" +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" +msgstr "" +"Chaque page ne peut avoir qu'une seule étiquette pour chacune de ces classes" + +#: 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 "" +"# Introduction\n" +"\n" +"Ajoutez votre contenu ici.\n" +"\n" +"\n" +"# Détails\n" +"\n" +"Ajoutez votre contenu ici. Vous pouvez avoir :\n" +"\n" +"* du texte en **gras** ou *italique* ;\n" +"* des titres, paragraphes ou listes ;\n" +"* des liens vers d'autres [[PageDeDocumentation]].\n" + +#: IDF/Form/WikiCreate.php:57 +msgid "PageName" +msgstr "NomDeLaPage" + +#: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50 +msgid "Page title" +msgstr "Titre" + +#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56 +msgid "" +"The page name must contains only letters, digits and the dash (-) character." +msgstr "" +"Le nom de la page ne doit contenir que des lettres, 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." +msgstr "Cette description est affichée dans la liste des pages." + +#: IDF/Form/WikiCreate.php:80 IDF/Form/WikiUpdate.php:72 +msgid "Content" +msgstr "Contenu" + +#: IDF/Form/WikiCreate.php:108 IDF/Form/WikiUpdate.php:119 +msgid "The title contains invalid characters." +msgstr "Le titre contient des caractères non valides." + +#: IDF/Form/WikiCreate.php:114 IDF/Form/WikiUpdate.php:125 +msgid "A page with this title already exists." +msgstr "Une page avec ce titre existe déjà." + +#: 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 "" +"Vous ne pouvez pas fournir plus d'une étiquette de la classe %s à une page." + +#: IDF/Form/WikiCreate.php:200 +msgid "Initial page creation" +msgstr "Création de la page" + +#: IDF/Form/WikiDelete.php:39 +msgid "Yes, I understand that the page and all its revisions will be deleted." +msgstr "" +"Oui, j'ai compris que la page ainsi que toutes les révisions vont être " +"supprimées." + +#: IDF/Form/WikiDelete.php:50 +msgid "You need to confirm the deletion." +msgstr "Vous devez confirmer la suppression." + +#: IDF/Form/WikiUpdate.php:83 +msgid "One line to describe the changes you made." +msgstr "Une ligne pour décrire les changements que vous avez faits." + #: IDF/Gconf.php:60 IDF/Search/Occ.php:56 msgid "model class" msgstr "classes du modèle" @@ -203,86 +966,550 @@ msgstr "classes du modèle" msgid "model id" msgstr "id du modèle" -#: IDF/Gconf.php:73 IDF/Conf.php:61 -msgid "key" -msgstr "clef" +#: IDF/gettexttemplates/idf/admin/base.html.php:3 +msgid "Project Summary" +msgstr "Résumé du projet" -#: IDF/Gconf.php:79 IDF/Conf.php:67 -msgid "value" -msgstr "valeur" +#: IDF/gettexttemplates/idf/admin/base.html.php:6 +msgid "Issue Tracking" +msgstr "Gestionnaire des tickets" + +#: IDF/gettexttemplates/idf/admin/base.html.php:8 +msgid "Project Members" +msgstr "Membres du projet" + +#: IDF/gettexttemplates/idf/admin/base.html.php:9 +msgid "Tabs Access and Notifications" +msgstr "Accès aux onglets et notifications" + +#: IDF/gettexttemplates/idf/admin/downloads.html.php:3 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:3 +msgid "" +"\n" +"

    Instructions:

    \n" +"

    List one status value per line in desired sort-order.

    \n" +"

    Optionally, use an equals-sign to document the meaning of each status " +"value.

    \n" +msgstr "" +"\n" +"

    Instructions :

    \n" +"

    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" + +#: IDF/gettexttemplates/idf/admin/downloads.html.php:8 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8 +#: IDF/gettexttemplates/idf/admin/members.html.php:13 +#: IDF/gettexttemplates/idf/admin/source.html.php:31 +#: IDF/gettexttemplates/idf/admin/summary.html.php:8 +#: IDF/gettexttemplates/idf/admin/tabs.html.php:15 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:8 +msgid "Save Changes" +msgstr "Enregistrer les changements" + +#: IDF/gettexttemplates/idf/admin/members.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/update.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" +"

    Instructions :

    \n" +"

    Spécifiez chaque personne par son identifiant. Chaque personne doit avoir " +"préalablement créé son compte.

    \n" +"

    Séparez les identifiants par des virgules ou des sauts de ligne.

    \n" + +#: IDF/gettexttemplates/idf/admin/members.html.php:8 +#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 +msgid "" +"\n" +"

    Notes:

    \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" + +#: IDF/gettexttemplates/idf/admin/source.html.php:3 +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 +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 "" +"

    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" +"\n" +"
      \n" +"
    • http://domaine.com/commit
    • \n" +"
    • http://domaine.com/commit?mon%20param
    • \n" +"
    \n" +"\n" +"

    De plusl'URL peut contenir la mention \"%\", qui\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" +"l'URL de post-commit http://domaine.com/%p/%r enverrait une requête à\n" +"http://domaine.com/mon-project/123.

    " + +#: IDF/gettexttemplates/idf/admin/source.html.php:26 +msgid "" +"The form contains some errors. Please correct them to update the source " +"configuration." +msgstr "" +"Le formulaire contient des erreurs. 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 :" + +#: IDF/gettexttemplates/idf/admin/source.html.php:28 +msgid "Repository access:" +msgstr "Accès au dépôt :" + +#: IDF/gettexttemplates/idf/admin/source.html.php:29 +msgid "Repository size:" +msgstr "Taille des dépôts :" + +#: IDF/gettexttemplates/idf/admin/source.html.php:30 +msgid "Post-commit authentication key:" +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" +msgstr "" +"\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é." + +#: 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" +"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 "" +"You can configure here the project tabs access rights and notification " +"emails." +msgstr "" +"Vous pouvez configurer ici les droits d'accès aux onglets et les emails de " +"notification." + +#: 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 "" +"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 " +"champ correspondant." + +#: 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 "" +"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émentaires." + +#: 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 "" +"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." + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:12 +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." + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:13 +msgid "Access Rights" +msgstr "Droits d'accès" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:14 +msgid "Notification Email" +msgstr "Emails de notification" + +#: 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 "Instructions :" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:3 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.orig.php:3 +#: IDF/gettexttemplates/idf/base.html.php:3 +#, php-format +msgid "" +"Sign in or create your account to create issues or " +"add comments" +msgstr "" +"Connectez-vous ou créez votre compte pour soumettre " +"des tickets ou ajouter des commentaires" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:4 +#: IDF/gettexttemplates/idf/base-full.html.php:4 +#: IDF/gettexttemplates/idf/base.html.orig.php:4 +#: IDF/gettexttemplates/idf/base.html.php:4 +msgid "Project Home" +msgstr "Page d'Accueil" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:10 +#: IDF/gettexttemplates/idf/base-full.html.php:10 +#: IDF/gettexttemplates/idf/base.html.orig.php:10 +#: IDF/gettexttemplates/idf/base.html.php:10 +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 +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 " +"systems. Are you sure, you will not affect anybody when removing this file?" +msgstr "" +"Attention ! Si vous voulez supprimer une version spécifique " +"de votre logiciel, peut-être que quelqu'un dépend encore de cette version. " +"Êtes-vous certain que supprimer ce fichier ne va pas importuner certaines " +"personnes ?" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 +#, php-format +msgid "" +"Instead of deleting the file, you could mark it as " +"deprecated." +msgstr "" +"Au lieu de supprimer un fichier, vous pouvez le marquer " +"comme obsolète." + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:5 +#: IDF/gettexttemplates/idf/downloads/view.html.php:4 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:4 +#: IDF/gettexttemplates/idf/issues/view.html.php:7 +#: IDF/gettexttemplates/idf/wiki/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 "par %%submitter%%" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:6 +msgid "Delete File" +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/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:25 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: 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/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +#: 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 "Annuler" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:8 +#: IDF/gettexttemplates/idf/downloads/view.html.php:13 +msgid "Uploaded:" +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.php:27 +#: IDF/gettexttemplates/idf/review/view.html.php:26 +#: 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 :" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:10 +#: IDF/gettexttemplates/idf/downloads/view.html.php:15 +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:12 +msgid "Downloads:" +msgstr "Téléchargements :" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:11 +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/downloads/view.html.php:16 +#: 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:20 +#: IDF/gettexttemplates/idf/issues/view.html.php:31 +#: 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 "Étiquettes :" + +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3 +msgid "A new file is available for download:" +msgstr "Un nouveau fichier est disponible en téléchargement :" + +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:4 +#: IDF/gettexttemplates/idf/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 "Bonjour," + +#: 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 "Projet :" + +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6 +msgid "Submitted by:" +msgstr "Soumis par :" + +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8 +msgid "Download:" +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/user/public.html.php:4 +msgid "Description:" +msgstr "Description :" + +#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3 +msgid "Details" +msgstr "Détails" + +#: IDF/gettexttemplates/idf/downloads/index.html.php:3 +#, php-format +msgid "See the deprecated files." +msgstr "Voir les fichiers obsolètes." + +#: IDF/gettexttemplates/idf/downloads/index.html.php:5 +msgid "Number of files:" +msgstr "Nombre de fichiers :" + +#: IDF/gettexttemplates/idf/downloads/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 "" +"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." + +#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 +#, php-format +msgid "" +"You can use the Markdown syntax for the description." +msgstr "" +"Vous pouvez utiliser la syntaxe Markdown pour la " +"description." + +#: IDF/gettexttemplates/idf/downloads/submit.html.php:7 +msgid "The form contains some errors. Please correct them to submit the file." +msgstr "" +"Le formulaire contient des erreurs. Merci de les corriger pour mettre en " +"ligne le fichier." + +#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 +msgid "Submit File" +msgstr "Mettre en ligne" + +#: 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 "Instructions" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:3 +msgid "" +"Attention! This file is marked as deprecated, download it " +"only if you are sure you need this specific version." +msgstr "" +"Attention ! Ce fichier est marqué comme obsolète, " +"téléchargez ce fichier uniquement si vous avez besoin de cette version." + +#: IDF/gettexttemplates/idf/downloads/view.html.php:5 +msgid "Changes" +msgstr "Changements" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:6 +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 +msgid "Update File" +msgstr "Mettre à jour le fichier" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:11 +msgid "Remove this file" +msgstr "Supprimer ce fichier" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:10 +#: 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 +msgid "Delete this file" +msgstr "Supprimer ce fichier" + +#: IDF/gettexttemplates/idf/faq-api.html.php:3 +#: IDF/gettexttemplates/idf/faq.html.php:34 +msgid "Here we are, just to help you." +msgstr "Nous sommes là, juste pour vous aider." -#: IDF/Views.php:45 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:45 msgid "Projects" msgstr "Projets" -#: IDF/Views.php:88 IDF/gettexttemplates/idf/register/index.html.php:6 -msgid "Create Your Account" -msgstr "Créez votre compte" - -#: IDF/Views.php:124 IDF/Views.php:150 -msgid "Confirm Your Account Creation" -msgstr "Confirmez la création de votre compte" - -#: IDF/Views.php:170 -msgid "Welcome! You can now participate in the life of your project of choice." -msgstr "" -"Bienvenue ! Vous pouvez maintenant prendre part à la vie du projet de votre " -"choix." - -#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 -msgid "Password Recovery" -msgstr "Récupération du mot de passe" - -#: IDF/Views.php:240 -msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." -msgstr "" -"Re bienvenue ! La prochaine fois, vous pouvez utiliser les options de votre " -"navigateur pour qu'il se souvienne de votre mot de passe." - -#: IDF/Views.php:282 -msgid "Here to Help You!" -msgstr "Ici pour vous aider !" - -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" -msgstr "API d'InDefero (Interface de Programmation de l'Application)" - -#: IDF/Scm/Mercurial.php:140 IDF/Scm/Git.php:234 -#, php-format -msgid "Folder %1$s not found in commit %2$s." -msgstr "Répertoire %1$s non trouvé dans le commit %2$s." - -#: IDF/Scm/Mercurial.php:157 IDF/Scm/Git.php:352 -#, php-format -msgid "Not a valid tree: %s." -msgstr "Arbre non valide : %s." - -#: IDF/Scm/Monotone/Stdio.php:79 -msgid "Monotone client key name or hash not in project conf." -msgstr "" -"Le nom ou le hash de la clef client monotone ne figure pas dans la config du " -"projet." - -#: IDF/Scm/Monotone/Stdio.php:87 IDF/Plugin/SyncMonotone.php:187 -#, php-format -msgid "The key directory %s could not be created." -msgstr "Le répertoire de clef %s n'a pu être créé." - -#: IDF/Scm/Monotone/Stdio.php:98 -#, php-format -msgid "Could not write client key \"%s\"" -msgstr "Impossible d'écrire la clef client \"%s\"" - -#: IDF/Scm/Git.php:183 -#, php-format -msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." -msgstr "Valeur invalide pour le paramètre %1$s: %2$s. Use %3$s." - #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

    This is simple:

    \n" @@ -401,201 +1628,38 @@ msgstr "Alt+2 : Allez au contenu." msgid "Alt+4: Search (when available)." msgstr "Alt+4 : Chercher (si disponible)." -#: IDF/gettexttemplates/idf/faq.html.php:34 -#: IDF/gettexttemplates/idf/faq-api.html.php:3 -msgid "Here we are, just to help you." -msgstr "Nous sommes là, juste pour vous aider." +#: IDF/gettexttemplates/idf/gadmin/base.html.php:4 +msgid "People" +msgstr "Utilisateurs" -#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 -#, php-format -msgid "" -"Hello,\n" -"\n" -"You have requested the creation of an account to\n" -"participate in the life of a software project.\n" -"\n" -"To confirm the account please follow this link:\n" -"\n" -"%%url%%\n" -"\n" -"Alternatively, go to this page:\n" -"\n" -"%%urlik%%\n" -"\n" -"and provide the following confirmation key:\n" -"\n" -"%%key%%\n" -"\n" -"If you are not interested any longer in taking\n" -"part in the life of the software project or if\n" -"you can't remember having requested the creation\n" -"of an account, please excuse us and simply ignore\n" -"this email. \n" -"\n" -"Yours faithfully,\n" -"The development team.\n" -msgstr "" -"Bonjour,\n" -"\n" -"Vous avez demandé la création d'un compte\n" -"pour participer à la vie d'un projet logiciel.\n" -"\n" -"Pour confirmer votre compte, suivez ce lien :\n" -"\n" -"%%url%%\n" -"\n" -"Vous pouvez aussi aller sur cette page :\n" -"\n" -"%%urlik%%\n" -"\n" -"et fournir la clef de confirmation suivante :\n" -"\n" -"%%key%%\n" -"\n" -"Si vous n'êtes plus intéressés à participer\n" -"dans la vie de ce projet logiciel ou si vous ne\n" -"vous souvenez pas d'avoir fait cette demande,\n" -"veuillez accepter nos excuses et ignorer ce\n" -"message. \n" -"\n" -"Très cordialement,\n" -"l'équipe de développement.\n" +#: IDF/gettexttemplates/idf/gadmin/base.html.php:5 +msgid "Usher" +msgstr "Usher" -#: 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 "Oups, we found an error in the form." -msgstr "Oups, nous avons trouvé une erreur dans le formulaire." +#: IDF/gettexttemplates/idf/gadmin/home.html.php:3 +msgid "You have here access to the administration of the forge." +msgstr "Vous avez ici accès à l'administration de la forge." -#: IDF/gettexttemplates/idf/register/inputkey.html.php:4 -msgid "Confirm Your Account" -msgstr "Confirmez votre compte" +#: 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 "Bienvenue" -#: 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:12 -#: 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 "Annuler" +#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3 +#: IDF/gettexttemplates/idf/main-menu.html.php:6 +msgid "Project List" +msgstr "Liste des projets" -#: 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 "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 "Créer un projet" -#: IDF/gettexttemplates/idf/register/inputkey.html.php:7 -msgid "" -"Use your email software to read your emails and open your confirmation " -"email. Either click directly on the confirmation link or copy/paste the " -"confirmation key in the box and submit the form." -msgstr "" -"Utilisez votre logiciel de messagerie pour lire votre email de confirmation. " -"Vous pouvez cliquer sur le lien fourni ou copier/coller la clef de " -"confirmation dans le formulaire et le soumettre." - -#: IDF/gettexttemplates/idf/register/inputkey.html.php:8 -msgid "" -"Just after providing the confirmation key, you will be able to set your " -"password and start using this website fully." -msgstr "" -"Juste après avoir fourni la clef de confirmation, vous pourrez donner votre " -"mot de passe et utiliser complètement le site." - -#: IDF/gettexttemplates/idf/register/index.html.php:3 -msgid "" -"Read the terms and conditions " -"– basically \"Please be nice, we respect you\"." -msgstr "" -"Lire les conditions d'usage " -"– en gros \"Soyez sympa, on vous respecte\"." - -#: 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 "" -"Avec votre compte vous pourrez participer à la vie de tous les projets " -"administrés ici. Participer à la vie d'un logiciel doit être sympa, alors si " -"vous rencontrez des problèmes, vous pouvez nous le faire " -"savoir à tout instant !" - -#: IDF/gettexttemplates/idf/register/index.html.php:5 -msgid "Oups, 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:8 -msgid "" -"Be sure to provide a valid email address, as we are sending a validation " -"link by email." -msgstr "" -"Faites attention de bien fournir une adresse email valide car nous vous " -"enverrons un email de confirmation." - -#: IDF/gettexttemplates/idf/register/index.html.php:9 -msgid "Did you know?" -msgstr "Le saviez-vous ?" - -#: 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 "Oups, please check the form for errors." -msgstr "Oups, veuillez corriger les erreurs dans le formulaire." - -#: 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 "Identifiant :" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 -msgid "Email:" -msgstr "Email :" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:6 -msgid "Enable Your Account" -msgstr "Activez votre compte" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 -msgid "" -"This is the last step, but just be sure to have the cookies enabled 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/index.atom.php:3 -#, php-format -msgid "Personal project feed for %%user%%." -msgstr "Flux personnel de %%user%% pour ce projet." +#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 +msgid "Change Project Details" +msgstr "Changer les détails du projet" #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3 msgid "" @@ -625,26 +1689,6 @@ msgstr "" "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:9 -#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 -#: IDF/gettexttemplates/idf/admin/members.html.php:8 -msgid "" -"\n" -"

    Notes:

    \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" - #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14 msgid "" "The form contains some errors. Please correct them to create the project." @@ -658,18 +1702,6 @@ msgstr "" "Fournissez au moins un propriétaire pour le projet ou bien utilisez un " "gabarit." -#: 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 "Créer un projet" - -#: 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 "Instructions :" - #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3 #, php-format msgid "" @@ -710,15 +1742,6 @@ msgstr "Onglet" msgid "Number" msgstr "Nombre" -#: 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 "Téléchargements" - #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15 msgid "Code reviews" msgstr "Revues de code" @@ -728,12 +1751,6 @@ msgstr "Revues de code" msgid "Commits" msgstr "Commits" -#: 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 "Tickets" - #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18 msgid "Documentation pages" msgstr "Pages de documentation" @@ -759,18 +1776,11 @@ msgid "Repositories:" msgstr "Dépôts :" #: 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 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 msgid "Attachments:" msgstr "Pièces jointes :" -#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 -#: IDF/gettexttemplates/idf/index.html.php:12 -#: IDF/gettexttemplates/idf/downloads/delete.html.php:10 -#: IDF/gettexttemplates/idf/downloads/view.html.php:15 -msgid "Downloads:" -msgstr "Téléchargements :" - #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7 msgid "Database:" msgstr "Base de données :" @@ -779,21 +1789,6 @@ msgstr "Base de données :" msgid "Total Forge:" msgstr "Total forge:" -#: 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" -"

    Instructions :

    \n" -"

    Spécifiez chaque personne par son identifiant. Chaque personne doit avoir " -"préalablement créé son compte.

    \n" -"

    Séparez les identifiants par des virgules ou des sauts de ligne.

    \n" - #: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13 msgid "" "The form contains some errors. Please correct them to update the project." @@ -815,25 +1810,24 @@ msgstr "Mettre à jour" msgid "Delete this project" msgstr "Supprimer ce projet" -#: 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 "Poubelle" - #: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:21 msgid "You will be asked to confirm." msgstr "Confirmation demandée." -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3 -#: IDF/gettexttemplates/idf/main-menu.html.php:6 -msgid "Project List" -msgstr "Liste des projets" +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" +msgstr "Liste des utilisateurs" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 -msgid "Change Project Details" -msgstr "Changer les détails du projet" +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13 +msgid "Update User" +msgstr "Mise à jour" + +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5 +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4 +msgid "Create User" +msgstr "Créer un utilisateur" #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3 msgid "The form contains some errors. Please correct them to create the user." @@ -841,11 +1835,6 @@ msgstr "" "Le formulaire contient des erreurs. Merci de les corriger pour créer " "l'utilisateur." -#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4 -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5 -msgid "Create User" -msgstr "Créer un utilisateur" - #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6 msgid "The user password will be sent by email to the user." msgstr "Le mot de passe sera envoyé par email à l'utilisateur." @@ -918,6 +1907,13 @@ msgstr "" "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 :" + #: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11 #: IDF/gettexttemplates/idf/user/myaccount.html.php:5 msgid "Public Profile" @@ -927,15 +1923,22 @@ msgstr "Profil public" msgid "Administrative" msgstr "Administratif" -#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13 -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4 -msgid "Update User" -msgstr "Mise à jour" +#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 +msgid "Configured servers" +msgstr "Serveurs configurés" -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" -msgstr "Liste des utilisateurs" +#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4 +#: IDF/Views/Admin.php:358 +msgid "Usher control" +msgstr "Contrôle d'usher" + +#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3 +msgid "address" +msgstr "adresse" + +#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4 +msgid "port" +msgstr "port" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3 msgid "current server status:" @@ -1039,1589 +2042,123 @@ msgstr "serveur local arrêté, n'acceptant aucune connexion" msgid "usher is shut down, not running and not accepting connections" msgstr "usher est éteint, arrêté et n'accepte aucune connexion" -#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3 -msgid "address" -msgstr "adresse" - -#: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4 -msgid "port" -msgstr "port" - -#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 -msgid "Configured servers" -msgstr "Serveurs configurés" - -#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4 -#: IDF/Views/Admin.php:358 -msgid "Usher control" -msgstr "Contrôle d'usher" - -#: IDF/gettexttemplates/idf/gadmin/base.html.php:4 -msgid "People" -msgstr "Utilisateurs" - -#: IDF/gettexttemplates/idf/gadmin/base.html.php:5 -msgid "Usher" -msgstr "Usher" - -#: IDF/gettexttemplates/idf/gadmin/home.html.php:3 -msgid "You have here access to the administration of the forge." -msgstr "Vous avez ici accès à l'administration de la forge." - -#: 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 "Bienvenue" - -#: IDF/gettexttemplates/idf/login_form.html.php:3 -#, fuzzy -msgid "What is your account information?" -msgstr "Quel est votre identifiant ?" - -#: IDF/gettexttemplates/idf/login_form.html.php:4 -msgid "My login is" -msgstr "Mon identifiant est" - -#: IDF/gettexttemplates/idf/login_form.html.php:5 -#, fuzzy -msgid "My password is" -msgstr "mon mot de passe est" - -#: IDF/gettexttemplates/idf/login_form.html.php:6 -msgid "Sign in" -msgstr "Vous identifier" - -#: IDF/gettexttemplates/idf/login_form.html.php:7 -msgid "I lost my password!" -msgstr "J'ai perdu mon mot de passe !" - -#: IDF/gettexttemplates/idf/login_form.html.php:8 -#, fuzzy -msgid "Welcome." -msgstr "Bienvenue" - -#: IDF/gettexttemplates/idf/login_form.html.php:9 -msgid "If you don't have an account yet, you can create one" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:10 -#, fuzzy -msgid "here" -msgstr "Autre" - -#: IDF/gettexttemplates/idf/login_form.html.php:11 -#, fuzzy -msgid "It takes less than a minute to create your account" -msgstr "Identifiez-vous ou créez votre compte" - -#: IDF/gettexttemplates/idf/user/public.html.php:3 +#: IDF/gettexttemplates/idf/index.atom.php:3 #, php-format -msgid "You are looking at the public profile of %%member%%." -msgstr "Vous regardez le profil public de %%member%%." - -#: 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 "Description :" - -#: IDF/gettexttemplates/idf/user/public.html.php:5 -msgid "Twitter:" -msgstr "Twitter : " - -#: IDF/gettexttemplates/idf/user/public.html.php:6 -msgid "Public Email:" -msgstr "Email public :" - -#: IDF/gettexttemplates/idf/user/public.html.php:7 -msgid "Website:" -msgstr "Site internet : " - -#: IDF/gettexttemplates/idf/user/public.html.php:8 -msgid "Last time seen:" -msgstr "Vu la dernière fois :" - -#: IDF/gettexttemplates/idf/user/public.html.php:9 -msgid "Member since:" -msgstr "Membre depuis :" - -#: IDF/gettexttemplates/idf/user/changeemail-email.txt.php:3 -#, php-format -msgid "" -"Hello %%user%%,\n" -"\n" -"To confirm that you want %%email%%\n" -"to be your new email address, just follow this link:\n" -"\n" -"%%url%%\n" -"\n" -"Alternatively, go to this page:\n" -"\n" -"%%urlik%%\n" -"\n" -"and provide the following verification key:\n" -"\n" -"%%key%%\n" -"\n" -"If you do not want to change your email address, \n" -"just ignore this message.\n" -"\n" -"Yours faithfully,\n" -"The development team.\n" -msgstr "" -"Bonjour %%user%%,\n" -"\n" -"Pour confirmer que vous voulez que %%email%%\n" -"soit votre nouvelle adresse email, suivez le lien suivant :\n" -"\n" -"%%url%%\n" -"\n" -"Vous pouvez allez aussi sur la page suivante :\n" -"\n" -"%%urlik%%\n" -"\n" -"et fournir la clef de confirmation suivante :\n" -"\n" -"%%key%%\n" -"\n" -"Si vous ne voulez pas changer votre adresse email,ignorez simplement ce " -"message.\n" -"Cordialement,\n" -"l'équipe de développement.\n" - -#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3 -#, php-format -msgid "" -"Hello %%user%%,\n" -"\n" -"You lost your password and wanted to recover it.\n" -"To provide a new password for your account, you\n" -"just have to follow the provided link. You will\n" -"get a simple form to provide a new password.\n" -"\n" -"%%url%%\n" -"\n" -"Alternatively, go to this page:\n" -"\n" -"%%urlik%%\n" -"\n" -"and provide the following verification key:\n" -"\n" -"%%key%%\n" -"\n" -"If you are not the one who requested to reset\n" -"your password, simply ignore this email, your\n" -"password will not be changed.\n" -"\n" -"Yours faithfully,\n" -"The development team.\n" -msgstr "" -"Bonjour %%user%%,\n" -"\n" -"Vous avez perdu votre mot de passe et voulez le retrouver. 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" -"Vous pouvez aussi aller sur cette page :\n" -"\n" -"%%urlik%%\n" -"\n" -"et fournir la clef de vérification suivante :\n" -"\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" -"\n" -"Très cordialement,\n" -"l'équipe de développement.\n" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:6 -msgid "Key Management" -msgstr "Administration des clefs" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:7 -msgid "Extra password" -msgstr "Mot de passe supplémentaire" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 -msgid "" -"This password is used to access some of the external systems managed by our " -"infrastructure. It will be regenerated if you change your password." -msgstr "" -"Ce mot de passe est utilisé pour accéder à une partie des systèmes de notre " -"infrastructure. Il sera régénéré si vous changez votre mot de passe." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 -msgid "API key" -msgstr "Clé d'API" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 -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." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 -msgid "Update Your Account" -msgstr "Mettre à jour votre compte" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 -msgid "Your Current Public Keys" -msgstr "Vos clefs publique jusqu'à présent" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 -msgid "Delete this key" -msgstr "Supprimer cette clef" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 -msgid "" -"If possible, use your real name. By using your real name, people will have " -"more trust in your comments and remarks." -msgstr "" -"Si possible, utilisez votre vrai nom. En utilisant votre vrai nom, les " -"personnes utilisant ce site auront naturellement plus confiance en vos " -"commentaires et remarques." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 -msgid "" -"The extra password is used to access some of the external systems and the " -"API key is used to interact with this website using a program." -msgstr "" -"La 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." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 -msgid "Show API key and extra password" -msgstr "Montrer la clef d'API et le mot de passe supplémentaire" - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:3 -#, php-format -msgid "Update your account." -msgstr "Mettre à jour votre compte." - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:4 -#, php-format -msgid "See your public profile." -msgstr "Voir votre profil public." - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:5 -#, php-format -msgid "See your forge issue watch list." -msgstr "" -"Voir votre liste de surveillance de tickets sur la " -"forge." - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:6 -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7 -msgid "Working issues:" -msgstr "Tickets en cours:" - -#: IDF/gettexttemplates/idf/user/dashboard.html.php:7 -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:6 -msgid "Submitted issues:" -msgstr "Tickets soumis :" - -#: IDF/gettexttemplates/idf/user/changeemail.html.php:4 -msgid "Confirm Your New Email Address" -msgstr "Confirmez votre nouvelle adresse" - -#: IDF/gettexttemplates/idf/user/changeemail.html.php:7 -#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:7 -msgid "" -"Use your email software to read your emails and open your verification " -"email. Either click directly on the verification link or copy/paste the " -"verification key in the box and submit the form." -msgstr "" -"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/passrecovery-inputkey.html.php:4 -msgid "Recover Your Password" -msgstr "Récupérer votre mot de passe" - -#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:8 -msgid "" -"Just after providing the confirmation key, you will be able to reset your " -"password and use again this website fully." -msgstr "" -"Juste après avoir fourni la clef de vérification, vous pourrez donner votre " -"mot de passe et réutiliser complètement le site." - -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 -msgid "Reset Your Password" -msgstr "Redéfinir votre mot de passe" - -#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 -msgid "" -"Oups, please check the provided login or email address to recover your " -"password." -msgstr "" -"Oups, veuillez vérifier l'identifiant ou l'adresse email pour récupérer " -"votre mot de passe." - -#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4 -msgid "Recover My Password" -msgstr "Récupérer mon mot de passe" - -#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6 -msgid "" -"Provide either your login or email address, if a corresponding user is found " -"in the database, we will send you an email with the details on how to reset " -"your password." -msgstr "" -"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." - -#: IDF/gettexttemplates/idf/wiki/create.html.php:3 -#: IDF/gettexttemplates/idf/wiki/update.html.php:3 -msgid "Preview of the Page" -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." - -#: 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 "Prévisualisation" - -#: IDF/gettexttemplates/idf/wiki/create.html.php:6 -msgid "Create Page" -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" -"%%page.title%%. This revision was created\n" -"by %%submitter%%." -msgstr "" -"Vous lisez une ancienne version (%%oldrev.summary%%) de la page \n" -"%%page.title%%. Cette version fut créée par\n" -" %%submitter%%." - -#: 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 "" -"Si vous supprimez cette vieille version, elle sera supprimée de la base de " -"données et vous ne pourrez pas la récupérer ultérieurement." - -#: IDF/gettexttemplates/idf/wiki/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 "par %%submitter%%" - -#: IDF/gettexttemplates/idf/wiki/delete.html.php:9 -msgid "Delete Revision" -msgstr "Supprimer cette version" - -#: 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 "Créé :" - -#: 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 "Mis à jour :" - -#: 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 "Anciennes versions" - -#: IDF/gettexttemplates/idf/wiki/edit-info.html.php:3 -#, php-format -msgid "" -"\n" -"

    Instructions:

    \n" -"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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 "" -"\n" -"

    Instructions :

    \n" -"

    Le contenu de la page peut utiliser la syntaxe Markdown avec son extension Markdown Extra.

    \n" -"

    Vous pouvez faire un lien vers une autre page de la documentation en " -"utilisant des crochets doubles, comme cela [[UneAutrePage]].

    \n" -"

    Pour inclure directement le contenu d'un fichier du dépôt, entourez son " -"chemin avec des crochets triples : [[[chemin/vers/fichier.txt]]].

    \n" - -#: 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:177 -msgid "New Page" -msgstr "Nouvelle page" - -#: IDF/gettexttemplates/idf/wiki/search.html.php:4 -msgid "Pages found:" -msgstr "Pages trouvées :" - -#: 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 -msgid "Changes:" -msgstr "Changements :" - -#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:3 -msgid "" -"If you delete this documentation page, it will be removed from the database " -"with all the associated revisions and you will not be able to " -"recover it." -msgstr "" -"Si vous supprimez cette page, elle, ainsi que toutes les révisions " -"associées, seront supprimées de la base de données et vous ne " -"pourrez pas les récupérer ultérieurement." - -#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:6 -msgid "Delete Page" -msgstr "Supprimer la page" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3 -msgid "The following documentation page has been updated:" -msgstr "La page de documentation suivante a été mise à jour :" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php: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 "Bonjour," - -#: 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 "Projet :" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7 -msgid "Updated by:" -msgstr "Mise à jour par :" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:8 -#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:6 -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:7 -msgid "Created by:" -msgstr "Créé par :" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13 -msgid "New content:" -msgstr "Nouveau contenu :" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14 -#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9 -msgid "Documentation page:" -msgstr "Page de documentation :" - -#: IDF/gettexttemplates/idf/wiki/index.html.php:3 -#, php-format -msgid "See the deprecated pages." -msgstr "Voir les pages obsolètes." - -#: IDF/gettexttemplates/idf/wiki/index.html.php:5 -msgid "Number of pages:" -msgstr "Nombre de pages :" - -#: 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 "" -"Attention ! Cette pages est marquée comme obsolète, " -"utilisez ces informations comme référence uniquement si vous avez besoin de " -"cette version particulière." - -#: 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 "" -"Vous lisez une ancienne version de la page \n" -"%%page.title%%. Cette version a été créée par\n" -" %%submitter%%." - -#: IDF/gettexttemplates/idf/wiki/view.html.php:10 -msgid "Table of Content" -msgstr "Sommaire" - -#: IDF/gettexttemplates/idf/wiki/view.html.php:11 -#: IDF/gettexttemplates/idf/wiki/view.html.php:13 -msgid "Delete this revision" -msgstr "Supprimer cette version" - -#: IDF/gettexttemplates/idf/wiki/update.html.php:4 -msgid "The form contains some errors. Please correct them to update the page." -msgstr "" -"Le formulaire contient des erreurs. Merci de les corriger pour mettre à jour " -"la page." - -#: IDF/gettexttemplates/idf/wiki/update.html.php:6 -msgid "Update Page" -msgstr "Mettre à jour" - -#: 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 "Supprimer cette page" - -#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3 -msgid "A new documentation page has been created:" -msgstr "Une nouvelle page de documentation a été créée :" - -#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:8 -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9 -msgid "Content:" -msgstr "Contenu :" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:3 -msgid "List Pages" -msgstr "Liste des pages" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:5 -msgid "Update This Page" -msgstr "Éditer cette page" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:6 -#: IDF/gettexttemplates/idf/issues/base.html.php:7 -msgid "Search" -msgstr "Chercher" - -#: IDF/gettexttemplates/idf/source/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 bien n'existe pas\n" -"dans le dépôt." - -#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5 -#, php-format -msgid "" -"If this is a new repository, the reason for this error\n" -"could be that you have not committed and / or pushed any change so far.\n" -"In this case please take a look at the Help page\n" -"how to access your repository." -msgstr "" -"S'il s'agit d'un nouveau dépôt, la raison de cette erreur\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/disambiguate_revision.html.php:3 -#, php-format -msgid "" -"The revision identifier %%commit%% is ambiguous and can be\n" -"expanded to multiple valid revisions - please choose one:" -msgstr "" -"L'identifiant de révision %%commit%% est ambigu et peut être \n" -"associé à différentes révisions valides - Choisissez en une : " - -#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:5 -msgid "Title" -msgstr "Titre" - -#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:6 -msgid "Author" -msgstr "Auteur" - -#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:7 -msgid "Date" -msgstr "Date" - -#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:8 -msgid "Branch" -msgstr "Branche" - -#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:9 -msgid "Revision" -msgstr "Révision" - -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:3 -msgid "A new commit has been created:" -msgstr "Une nouvelle révision du code a été créée :" - -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:5 -#: IDF/gettexttemplates/idf/source/commit.html.php:7 -#: IDF/gettexttemplates/idf/review/view.html.php:28 -msgid "Commit:" -msgstr "Commit :" - -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8 -msgid "Created at:" -msgstr "Créé le :" - -#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10 -msgid "Commit details:" -msgstr "Détails de la révision :" - -#: IDF/gettexttemplates/idf/source/commit.html.php:3 -#: IDF/gettexttemplates/idf/review/view.html.php:3 -#, php-format -msgid "%%ndiff%% diff" -msgid_plural "%%ndiff%% diffs" -msgstr[0] "%%ndiff%% diff" -msgstr[1] "%%ndiff%% diffs" - -#: IDF/gettexttemplates/idf/source/commit.html.php:4 -msgid "Date:" -msgstr "Date :" - -#: IDF/gettexttemplates/idf/source/commit.html.php:5 -#: IDF/gettexttemplates/idf/review/view.html.php:27 -msgid "Author:" -msgstr "Auteur :" - -#: IDF/gettexttemplates/idf/source/commit.html.php:6 -msgid "Branch:" -msgstr "Branche :" - -#: IDF/gettexttemplates/idf/source/commit.html.php:8 -#: IDF/gettexttemplates/idf/review/view.html.php:29 -msgid "View corresponding source tree" -msgstr "Voir l'arbre des sources correspondant" - -#: IDF/gettexttemplates/idf/source/commit.html.php:9 -msgid "Parents:" -msgstr "Parents :" - -#: IDF/gettexttemplates/idf/source/commit.html.php:10 -#: IDF/gettexttemplates/idf/source/changelog.html.php:6 -msgid "View corresponding commit" -msgstr "Voir le commit correspondant" - -#: IDF/gettexttemplates/idf/source/commit.html.php:11 -msgid "Message:" -msgstr "Message :" - -#: 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 -msgid "full" -msgstr "complet" - -#: IDF/gettexttemplates/idf/source/commit.html.php:15 -msgid "renamed" -msgstr "renommé" - -#: IDF/gettexttemplates/idf/source/commit.html.php:16 -msgid "added" -msgstr "ajouté" - -#: IDF/gettexttemplates/idf/source/commit.html.php:18 -msgid "modified" -msgstr "modifié" - -#: IDF/gettexttemplates/idf/source/commit.html.php:19 -msgid "properies changed" -msgstr "propriétés changées" - -#: IDF/gettexttemplates/idf/source/commit.html.php:20 -msgid "removed" -msgstr "supprimé" - -#: IDF/gettexttemplates/idf/source/commit.html.php:21 -msgid "File differences" -msgstr "Différences entre fichiers" - -#: 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/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 "Archive" - -#: IDF/gettexttemplates/idf/source/commit.html.php:23 -#: IDF/gettexttemplates/idf/review/view.html.php:35 -msgid "Download the corresponding diff file" -msgstr "Télécharger le fichier diff correspondant" - -#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 -#, php-format -msgid "%%cproject.name%%: Commit %%c.scm_id%%" -msgstr "%%cproject.name%% : Commit %%c.scm_id%%" - -#: IDF/gettexttemplates/idf/source/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 "Branches" - -#: 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 "filtrer les branches" - -#: 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 "Tags" - -#: 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 "filtrer par tag" - -#: 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 "" -"Source au commit %%commit%% créé le %%" -"cobject.date%%." - -#: 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 "Par %%cobject.author%%, %%cobject.title%%" - -#: 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 "Racine" - -#: 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 "Télécharger ce fichier" - -#: 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:294 IDF/Form/Upload.php:59 -msgid "File" -msgstr "Fichier" - -#: 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 "Âge" - -#: 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 "Message" - -#: 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:296 -msgid "Size" -msgstr "Taille" - -#: 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 "Téléchargez cette version" - -#: 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 "ou" - -#: 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 "Aide" - -#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3 -#, php-format -msgid "" -"The team behind %%project%% is using\n" -"the monotone software to manage the source\n" -"code." -msgstr "" -"L'équipe de développement du projet %%project%% utilise Monotone pour gérer le code source." - -#: 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 "" -"Pour faire le premier commit dans le dépôt, effectuez les étapes suivantes :" - -#: 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 "" -"Trouvez ici plus de détails pour accéder au code du projet %%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 "Accès en ligne de commande" - -#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9 -#: IDF/gettexttemplates/idf/source/git/help.html.php:10 -msgid "First Commit" -msgstr "Première révision" - -#: 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 "Révision :" - -#: 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 "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/tree.html.php:8 -msgid "Rev" -msgstr "Rev" - -#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17 -msgid "Branches:" -msgstr "Branches :" - -#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18 -msgid "Tags:" -msgstr "Tags :" - -#: IDF/gettexttemplates/idf/source/svn/help.html.php:3 -#, php-format -msgid "" -"The team behind %%project%% is using\n" -"the subversion software to manage the source\n" -"code." -msgstr "" -"L'équipe de développement du projet %%project%% utilise Subversion pour gérer le code source." - -#: 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 "" -"Pour avoir accès en écriture au dépôt, vous devez utiliser votre login et " -"votre mot de passe supplémentaire." - -#: IDF/gettexttemplates/idf/source/svn/help.html.php:9 -#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9 -msgid "Write Access Authentication" -msgstr "Accès en écriture" - -#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3 -#, php-format -msgid "" -"The team behind %%project%% is using\n" -"the Mercurial software to manage the source\n" -"code." -msgstr "" -"L'équipe de développement du projet %%project%% utilise Mercurial pour gérer le code source." - -#: IDF/gettexttemplates/idf/source/base.html.php:3 -msgid "Source Tree" -msgstr "Arbre des sources" - -#: IDF/gettexttemplates/idf/source/base.html.php:4 -msgid "Change Log" -msgstr "Liste des changements" - -#: IDF/gettexttemplates/idf/source/base.html.php:5 -#: IDF/gettexttemplates/idf/source/changelog.html.php:7 -#: IDF/Form/ReviewCreate.php:74 -msgid "Commit" -msgstr "Commit" - -#: IDF/gettexttemplates/idf/source/base.html.php:6 -msgid "How To Get The Code" -msgstr "Comment obtenir le code" - -#: IDF/gettexttemplates/idf/source/changelog.html.php:5 -msgid "Parent:" -msgstr "Parent : " - -#: IDF/gettexttemplates/idf/source/changelog.html.php:8 -msgid "by" -msgstr "par" - -#: IDF/gettexttemplates/idf/source/git/help.html.php:3 -#, php-format -msgid "" -"The team behind %%project%% is using\n" -"the git software to manage the source\n" -"code." -msgstr "" -"L'équipe de développement du projet %%project%% 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 authentification." -msgstr "" -"Vous devez probablement fournir votre clef SSH. La " -"synchronisation de votre clef SSH peut prendre quelques minutes. Vous pouvez " -"apprendre plus sur l'authentification avec une clef SSH publique." - -#: IDF/gettexttemplates/idf/main-menu.html.php:3 -#, php-format -msgid "" -"Welcome, %%user%%." -msgstr "" -"Bienvenue, %%user%%." - -#: IDF/gettexttemplates/idf/main-menu.html.php:4 -msgid "Sign Out" -msgstr "Se déconnecter" - -#: IDF/gettexttemplates/idf/main-menu.html.php:5 -msgid "Sign in or create your account" -msgstr "Identifiez-vous ou créez votre compte" - -#: IDF/gettexttemplates/idf/main-menu.html.php:7 -#: IDF/gettexttemplates/idf/index.html.php:6 -#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77 -msgid "Private project" -msgstr "Projet privé" - -#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 -msgid "Forge Management" -msgstr "Administration de la forge" - -#: IDF/gettexttemplates/idf/main-menu.html.php:9 -msgid "Help and accessibility features" -msgstr "Aide et accessibilité" +msgid "Personal project feed for %%user%%." +msgstr "Flux personnel de %%user%% pour ce projet." #: IDF/gettexttemplates/idf/index.html.php:4 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 -#, fuzzy msgid "Projects:" -msgstr "Projets" +msgstr "Projets :" #: IDF/gettexttemplates/idf/index.html.php:8 -#, fuzzy msgid "Members:" -msgstr "Membre depuis :" +msgstr "Membres :" #: IDF/gettexttemplates/idf/index.html.php:9 -#, fuzzy msgid "Issues:" -msgstr "Tickets" +msgstr "Ticket :" #: IDF/gettexttemplates/idf/index.html.php:10 -#, fuzzy msgid "Commits:" -msgstr "Commits" +msgstr "Commits :" #: IDF/gettexttemplates/idf/index.html.php:11 -#, fuzzy msgid "Documentations:" -msgstr "Documentation" +msgstr "Documentation :" #: IDF/gettexttemplates/idf/index.html.php:13 -#, fuzzy msgid "Code reviews:" -msgstr "Revues de code" +msgstr "Revues de code :" -#: IDF/gettexttemplates/idf/base-full.html.php:3 -#: IDF/gettexttemplates/idf/base.html.php:3 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 +#, php-format +msgid "Attachment to issue %%issue.id%%" +msgstr "Pièce jointe au ticket %%issue.id%%" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 +#: IDF/gettexttemplates/idf/review/view.html.php:34 +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +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 +msgid "Download this file" +msgstr "Télécharger ce fichier" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:7 +#: IDF/gettexttemplates/idf/issues/view.html.php:26 +#: IDF/gettexttemplates/idf/review/view.html.php:25 +#: 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" + +#: 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" + +#: IDF/gettexttemplates/idf/issues/base.html.php:5 +msgid "My Issues" +msgstr "Mes tickets" + +#: IDF/gettexttemplates/idf/issues/base.html.php:6 +msgid "My watch list" +msgstr "Ma liste de surveillance" + +#: IDF/gettexttemplates/idf/issues/base.html.php:7 +#: IDF/gettexttemplates/idf/wiki/base.html.php:6 +msgid "Search" +msgstr "Chercher" + +#: IDF/gettexttemplates/idf/issues/base.html.php:8 +msgid "Back to the issue" +msgstr "Retour au ticket" + +#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 #, php-format msgid "" -"Sign in or create your account to create issues or " -"add comments" +"

    Open issues: %%open%%

    \n" +"

    Closed issues: %%closed%%

    \n" 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.html.php:4 -msgid "Project Home" -msgstr "Page d'Accueil" - -#: 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 "Documentation" - -#: 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 "Source" - -#: IDF/gettexttemplates/idf/base-full.html.php:9 -#: IDF/gettexttemplates/idf/base.html.php:9 IDF/Form/TabsConf.php:39 -msgid "Code Review" -msgstr "Revue de code" - -#: IDF/gettexttemplates/idf/base-full.html.php:10 -#: IDF/gettexttemplates/idf/base.html.php:10 -msgid "Project Management" -msgstr "Administration du projet" - -#: 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" -"
    • Ensure your patch does not contain any passwords or confidential " -"information!
    • \n" -"
    " -msgstr "" -"

    Pour démarrer une revue de code vous devez fournir :

    \n" -"
      \n" -"
    • La révision ou le commit de référence qui a servi de base à votre " -"travail.
    • \n" -"
    • Un patch 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." -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." -msgstr "" -"Sélectionnez le commit correspondant à votre patch pour être certain qu'il " -"puisse s'appliquer correctement." - -#: 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 "Nouvelle 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 :" - -#: 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 "Par %%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 "" -"Par %%who%%, %%c.creation_dtime%%, à propos du fichier :\n" -"%%c.cfile%%\n" - -#: 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 "Rapporté par :" - -#: 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 "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) :" - -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:16 -#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10 -msgid "Review:" -msgstr "Revue de code :" - -#: 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" -"different people discuss the code changes. The goal is\n" -"to improve the quality of the code and the\n" -"contributions, as such, you must be pragmatic when writing\n" -"your review. Correctly mention the line numbers (in the old or in the\n" -"new file) and try to keep a good balance between seriousness and fun.\n" -msgstr "" -"La revue de code est une discussion sur des changements du code, avant ou " -"après avoir fait les changements dans le dépôt. Le but est " -"d'améliorer la qualité du code et des contributions, pour " -"cela vous devez être pragmatique quand vous écrivez votre analyse. " -"Mentionnez bien le numéro des lignes (dans l'ancien et le nouveau fichier) " -"et essayer de garder un bon équilibre entre sérieux et humour dans vos " -"remarques.\n" - -#: 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 "" -"\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" - -#: IDF/gettexttemplates/idf/review/view.html.php:20 -#, php-format -msgid "" -"Comment %%i%% by %%who%%, " -"%%c.creation_dtime%%" -msgstr "" -"Commentaire %%i%% par %%who%%" -", %%c.creation_dtime%%" - -#: IDF/gettexttemplates/idf/review/view.html.php:21 -#, php-format -msgid "Your comments on the changes in file %%file%%:" -msgstr "" -"Vos commentaires sur les changements proposés au fichier %%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 "" -"Commentaire %%i%% par %%submitter%%, %%c." -"creation_dtime%%" - -#: IDF/gettexttemplates/idf/review/view.html.php:23 -#, php-format -msgid "Sign in to participate in the review." -msgstr "Connectez-vous pour participer à la revue." - -#: IDF/gettexttemplates/idf/review/view.html.php:24 -msgid "" -"The form contains some errors. Please correct them to submit your review." -msgstr "" -"Le formulaire contient des erreurs. Merci de les corriger pour soumettre " -"votre revue de code." - -#: 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:36 -msgid "How to Participate in a Code Review" -msgstr "Comment participer à une revue de code" - -#: 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 -msgid "Submit Code Review" -msgstr "Soumettre la revue de code" - -#: IDF/gettexttemplates/idf/review/base-full.html.php:3 -#: IDF/gettexttemplates/idf/review/base.html.php:3 -msgid "Open Reviews" -msgstr "Revues de code ouvertes" - -#: 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 :" - -#: 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 "Enregistrer les changements" - -#: 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" -"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 "" -"You can configure here the project tabs access rights and notification " -"emails." -msgstr "" -"Vous pouvez configurer ici les droits d'accès aux onglets et les emails de " -"notification." - -#: 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 "" -"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 champ " -"correspondant." - -#: 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 "" -"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émentaires." - -#: 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 "" -"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." - -#: IDF/gettexttemplates/idf/admin/tabs.html.php:12 -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." - -#: IDF/gettexttemplates/idf/admin/tabs.html.php:13 -msgid "Access Rights" -msgstr "Droits d'accès" - -#: IDF/gettexttemplates/idf/admin/tabs.html.php:14 -msgid "Notification Email" -msgstr "Emails de notification" - -#: IDF/gettexttemplates/idf/admin/summary.html.php:3 -#, php-format -msgid "" -"\n" -"

    Instructions:

    \n" -"

    The description of the project can be improved using the Markdown syntax.

    \n" -msgstr "" -"\n" -"

    Instructions :

    \n" -"

    La description du projet peut être enrichie 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é." - -#: 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" -"

    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" - -#: IDF/gettexttemplates/idf/admin/source.html.php:3 -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 -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 "" -"

    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" -"\n" -"
      \n" -"
    • http://domaine.com/commit
    • \n" -"
    • http://domaine.com/commit?mon%20param
    • \n" -"
    \n" -"\n" -"

    De plusl'URL peut contenir la mention \"%\", qui\n" -"sera remplacée avec des valeurs spécifiques du projet pour chaque commit:Tickets ouverts : %%open%%\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" -"l'URL de post-commit http://domaine.com/%p/%r enverrait une requête à\n" -"http://domaine.com/mon-project/123.

    " +"

    Tickets fermés : %%closed%%

    \n" -#: IDF/gettexttemplates/idf/admin/source.html.php:26 -msgid "" -"The form contains some errors. Please correct them to update the source " -"configuration." -msgstr "" -"Le formulaire contient des erreurs. Merci de les corriger pour mettre à jour " -"la configuration du dépôt." +#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 +msgid "Label:" +msgstr "Étiquette :" -#: IDF/gettexttemplates/idf/admin/source.html.php:27 -msgid "Repository type:" -msgstr "Type de dépôt :" - -#: IDF/gettexttemplates/idf/admin/source.html.php:28 -msgid "Repository access:" -msgstr "Accès au dépôt :" - -#: IDF/gettexttemplates/idf/admin/source.html.php:29 -msgid "Repository size:" -msgstr "Taille des dépôts :" - -#: IDF/gettexttemplates/idf/admin/source.html.php:30 -msgid "Post-commit authentication key:" -msgstr "Clef d'authentification post-commit : " - -#: IDF/gettexttemplates/idf/admin/base.html.php:3 -msgid "Project Summary" -msgstr "Résumé du projet" - -#: IDF/gettexttemplates/idf/admin/base.html.php:6 -msgid "Issue Tracking" -msgstr "Gestionnaire des tickets" - -#: IDF/gettexttemplates/idf/admin/base.html.php:8 -msgid "Project Members" -msgstr "Membres du projet" - -#: IDF/gettexttemplates/idf/admin/base.html.php:9 -msgid "Tabs Access and Notifications" -msgstr "Accès aux onglets et notifications" +#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 +msgid "Completion:" +msgstr "Accomplissement :" #: IDF/gettexttemplates/idf/issues/create.html.php:3 msgid "" @@ -2652,6 +2189,15 @@ msgstr "" "Le formulaire contient des erreurs. Corrigez s'il vous plaît ces erreurs " "pour soumettre le ticket." +#: 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 +#: IDF/gettexttemplates/idf/wiki/create.html.php:5 +#: IDF/gettexttemplates/idf/wiki/update.html.php:5 +msgid "Preview" +msgstr "Prévisualisation" + #: IDF/gettexttemplates/idf/issues/create.html.php:12 msgid "Submit Issue" msgstr "Soumettre le ticket" @@ -2668,35 +2214,42 @@ msgstr "Attacher un fichier" msgid "Attach another file" msgstr "Attacher un autre fichier" -#: 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 "Nouveau ticket" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/view.html.php:17 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:40 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:6 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:11 +#: IDF/IssueComment.php:151 +msgid "Summary:" +msgstr "Résumé :" -#: IDF/gettexttemplates/idf/issues/search.html.php:4 -msgid "Found issues:" -msgstr "Tickets trouvés:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:13 +#: IDF/gettexttemplates/idf/issues/view.html.php:18 +#: IDF/gettexttemplates/idf/issues/view.html.php:28 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:6 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:10 +#: IDF/gettexttemplates/idf/review/view.html.php:41 IDF/IssueComment.php:153 +msgid "Status:" +msgstr "Statut :" -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 -msgid "The following issue has been updated:" -msgstr "Le ticket suivant a été mis à jour :" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:5 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:19 +#: IDF/gettexttemplates/idf/issues/view.html.php:29 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:5 +#: IDF/IssueComment.php:155 +msgid "Owner:" +msgstr "Propriétaire :" -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 -msgid "Comments (last first):" -msgstr "Commentaires (le dernier en premier) :" - -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 -#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 -msgid "Issue:" -msgstr "Ticket :" - -#: 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/issues/project-watchlist.html.php:3 #, php-format msgid "" "

    Open issues: %%open%%

    \n" @@ -2708,37 +2261,92 @@ msgstr "" "

    Tickets fermés : %%closed%%

    " -#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 -#, php-format -msgid "" -"

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" -msgstr "" -"

    Tickets ouverts : %%open%%\n" -"

    Tickets fermés : %%closed%%

    \n" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" -msgstr "Étiquette :" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 -msgid "Completion:" -msgstr "Accomplissement :" - #: 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é :" +#: 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 :" + +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 +msgid "Issue:" +msgstr "Ticket :" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 +msgid "The following issue has been updated:" +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 +#, php-format +msgid "By %%who%%, %%c.creation_dtime%%:" +msgstr "Par %%who%%, %%c.creation_dtime%%" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12 +msgid "URL:" +msgstr "URL :" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 +msgid "Comments (last first):" +msgstr "Commentaires (le dernier en premier) :" + +#: IDF/gettexttemplates/idf/issues/my-issues.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 +#, php-format +msgid "" +"See the %%nb_owner_closed%% closed." +msgid_plural "" +"See the %%nb_owner_closed%% closed." +msgstr[0] "Voir le ticket fermé." +msgstr[1] "" +"Voir les %%nb_owner_closed%% fermés." + +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:6 +#: IDF/gettexttemplates/idf/user/dashboard.html.php:7 +msgid "Submitted issues:" +msgstr "Tickets soumis :" + +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7 +#: IDF/gettexttemplates/idf/user/dashboard.html.php:6 +msgid "Working issues:" +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.php:3 #, php-format msgid "Reported by %%submitter%%, %%c.creation_dtime%%" msgstr "Soumis par %%submitter%%, %%c.creation_dtime%%" +#: IDF/gettexttemplates/idf/issues/view.html.php:4 +#: IDF/gettexttemplates/idf/review/view.html.php:22 +#, php-format +msgid "" +"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%" +msgstr "" +"Commentaire %%i%% par %%submitter%%, %%c." +"creation_dtime%%" + #: IDF/gettexttemplates/idf/issues/view.html.php:5 #, php-format msgid "Sign in to reply to this comment." @@ -2806,60 +2414,78 @@ msgstr "Soumettre les changements" msgid "Followed by:" msgstr "Suivi par :" -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 +#: IDF/gettexttemplates/idf/login_form.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." +"If you don't have an account yet, you can create one here." +msgstr "" -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 +#: IDF/gettexttemplates/idf/login_form.html.php:4 +msgid "What is your account information?" +msgstr "Quels sont vos identifiants de compte ?" + +#: IDF/gettexttemplates/idf/login_form.html.php:5 +msgid "My login is" +msgstr "Mon identifiant est" + +#: IDF/gettexttemplates/idf/login_form.html.php:6 +msgid "My password is" +msgstr "Mon mot de passe est" + +#: IDF/gettexttemplates/idf/login_form.html.php:7 +msgid "Sign in" +msgstr "Vous identifier" + +#: IDF/gettexttemplates/idf/login_form.html.php:8 +msgid "I lost my password!" +msgstr "J'ai perdu mon mot de passe !" + +#: IDF/gettexttemplates/idf/login_form.html.php:9 +msgid "Welcome." +msgstr "Bienvenue." + +#: IDF/gettexttemplates/idf/login_form.html.php:10 +#, fuzzy +msgid "It takes less than a minute to create your account." +msgstr "La création d'un compte prend moins d'une minute." + +#: IDF/gettexttemplates/idf/main-menu.html.php:3 #, php-format msgid "" -"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." +"Welcome, %%user%%." +msgstr "" +"Bienvenue, %%user%%." -#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 -#, php-format -msgid "Attachment to issue %%issue.id%%" -msgstr "Pièce jointe au ticket %%issue.id%%" +#: IDF/gettexttemplates/idf/main-menu.html.php:4 +msgid "Sign Out" +msgstr "Se déconnecter" -#: IDF/gettexttemplates/idf/issues/base.html.php:3 -msgid "Open Issues" -msgstr "Tickets ouverts" +#: IDF/gettexttemplates/idf/main-menu.html.php:5 +msgid "Sign in or create your account" +msgstr "Identifiez-vous ou créez votre compte" -#: IDF/gettexttemplates/idf/issues/base.html.php:5 -msgid "My Issues" -msgstr "Mes tickets" +#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 +msgid "Forge Management" +msgstr "Administration de la forge" -#: IDF/gettexttemplates/idf/issues/base.html.php:6 -msgid "My watch list" -msgstr "Ma liste de surveillance" +#: IDF/gettexttemplates/idf/main-menu.html.php:9 +msgid "Help and accessibility features" +msgstr "Aide et accessibilité" -#: IDF/gettexttemplates/idf/issues/base.html.php:8 -msgid "Back to the issue" -msgstr "Retour au ticket" +#: IDF/gettexttemplates/idf/main-menu.html.php:10 +#: 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 +msgid "Help" +msgstr "Aide" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" -msgstr "Dernières mises à jour" - -#: IDF/gettexttemplates/idf/project/timeline.html.php:5 #: IDF/gettexttemplates/idf/project/home.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html.php:5 msgid "Latest Updates" msgstr "Dernières mises à jour" -#: IDF/gettexttemplates/idf/project/timeline.html.php:6 -msgid "Filter by type" -msgstr "Filtrer par type" - #: IDF/gettexttemplates/idf/project/home.html.php:5 msgid "Featured Downloads" msgstr "Téléchargements importants" @@ -2885,124 +2511,1277 @@ msgstr "Administrateurs" msgid "Happy Crew" msgstr "Équipe sympa" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:3 -msgid "" -"Attention! If you want to delete a specific version of your " -"software, maybe, someone is depending on this specific version to run his " -"systems. Are you sure, you will not affect anybody when removing this file?" -msgstr "" -"Attention ! Si vous voulez supprimer une version spécifique " -"de votre logiciel, peut-être que quelqu'un dépend encore de cette version. " -"Êtes-vous certain que supprimer ce fichier ne va pas importuner certaines " -"personnes ?" +#: IDF/gettexttemplates/idf/project/timeline.html.php:3 +msgid "Latest updates" +msgstr "Dernières mises à jour" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html.php:6 +msgid "Filter by type" +msgstr "Filtrer par type" + +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 #, php-format msgid "" -"Instead of deleting the file, you could mark it as " -"deprecated." +"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 "" -"Au lieu de supprimer un fichier, vous pouvez le marquer " -"comme obsolète." +"Bonjour,\n" +"\n" +"Vous avez demandé la création d'un compte\n" +"pour participer à la vie d'un projet logiciel.\n" +"\n" +"Pour confirmer votre compte, suivez ce lien :\n" +"\n" +"%%url%%\n" +"\n" +"Vous pouvez aussi aller sur cette page :\n" +"\n" +"%%urlik%%\n" +"\n" +"et fournir la clef de confirmation suivante :\n" +"\n" +"%%key%%\n" +"\n" +"Si vous n'êtes plus intéressés à participer\n" +"dans la vie de ce projet logiciel ou si vous ne\n" +"vous souvenez pas d'avoir fait cette demande,\n" +"veuillez accepter nos excuses et ignorer ce\n" +"message. \n" +"\n" +"Très cordialement,\n" +"l'équipe de développement.\n" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:6 -msgid "Delete File" -msgstr "Supprimer le fichier" +#: 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 "Oups, please check the form for errors." +msgstr "Oups, veuillez corriger les erreurs dans le formulaire." -#: IDF/gettexttemplates/idf/downloads/delete.html.php:8 -#: IDF/gettexttemplates/idf/downloads/view.html.php:13 -msgid "Uploaded:" -msgstr "Mis en ligne :" +#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 +msgid "Email:" +msgstr "Email :" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:6 +msgid "Enable Your Account" +msgstr "Activez votre compte" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 msgid "" -"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." +"This is the last step, but just be sure to have the cookies enabled to log in afterwards." 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." +"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/downloads/submit.html.php:6 +#: IDF/gettexttemplates/idf/register/index.html.php:3 +msgid "" +"Read the terms and conditions " +"– basically \"Please be nice, we respect you\"." +msgstr "" +"Lire les conditions d'usage " +"– en gros \"Soyez sympa, on vous respecte\"." + +#: IDF/gettexttemplates/idf/register/index.html.php:4 #, php-format msgid "" -"You can use the Markdown syntax for the description." +"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 "" -"Vous pouvez utiliser la syntaxe Markdown pour la " -"description." +"Avec votre compte vous pourrez participer à la vie de tous les projets " +"administrés ici. Participer à la vie d'un logiciel doit être sympa, alors si " +"vous rencontrez des problèmes, vous pouvez nous le faire " +"savoir à tout instant !" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:7 -msgid "The form contains some errors. Please correct them to submit the file." +#: IDF/gettexttemplates/idf/register/index.html.php:5 +msgid "Oups, please check the provided login and email address to register." msgstr "" -"Le formulaire contient des erreurs. Merci de les corriger pour mettre en " -"ligne le fichier." +"Oups, veuillez vérifier l'identifiant et l'adresse email pour vous " +"enregistrer." -#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 -msgid "Submit File" -msgstr "Mettre en ligne" +#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:88 +msgid "Create Your Account" +msgstr "Créez votre compte" -#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3 -msgid "Details" -msgstr "Détails" - -#: IDF/gettexttemplates/idf/downloads/index.html.php:3 -#, php-format -msgid "See the deprecated files." -msgstr "Voir les fichiers obsolètes." - -#: IDF/gettexttemplates/idf/downloads/index.html.php:4 -#: IDF/gettexttemplates/idf/downloads/base.html.php:4 -#: IDF/Views/Download.php:216 -msgid "New Download" -msgstr "Nouveau téléchargement" - -#: IDF/gettexttemplates/idf/downloads/index.html.php:5 -msgid "Number of files:" -msgstr "Nombre de fichiers :" - -#: IDF/gettexttemplates/idf/downloads/view.html.php:3 +#: IDF/gettexttemplates/idf/register/index.html.php:8 msgid "" -"Attention! This file is marked as deprecated, download it " -"only if you are sure you need this specific version." +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." msgstr "" -"Attention ! Ce fichier est marqué comme obsolète, " -"téléchargez ce fichier uniquement si vous avez besoin de cette version." +"Faites attention de bien fournir une adresse email valide car nous vous " +"enverrons un email de confirmation." -#: IDF/gettexttemplates/idf/downloads/view.html.php:5 -msgid "Changes" -msgstr "Changements" +#: IDF/gettexttemplates/idf/register/index.html.php:9 +msgid "Did you know?" +msgstr "Le saviez-vous ?" -#: IDF/gettexttemplates/idf/downloads/view.html.php:6 -msgid "The form contains some errors. Please correct them to update the file." +#: 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 "Oups, we found an error in the form." +msgstr "Oups, nous avons trouvé une erreur dans le formulaire." + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:4 +msgid "Confirm Your Account" +msgstr "Confirmez votre compte" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:7 +msgid "" +"Use your email software to read your emails and open your confirmation " +"email. Either click directly on the confirmation link or copy/paste the " +"confirmation key in the box and submit the form." msgstr "" -"Le formulaire contient des erreurs. Merci de les corriger pour mettre en " -"ligne le fichier." +"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/downloads/view.html.php:7 -msgid "Update File" -msgstr "Mettre à jour le fichier" +#: 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 "" +"Juste après avoir fourni la clef de confirmation, vous pourrez donner votre " +"mot de passe et utiliser complètement le site." -#: IDF/gettexttemplates/idf/downloads/view.html.php:9 -#: IDF/gettexttemplates/idf/downloads/view.html.php:11 -msgid "Remove this file" -msgstr "Supprimer ce fichier" +#: IDF/gettexttemplates/idf/review/base-full.html.php:3 +#: IDF/gettexttemplates/idf/review/base.html.php:3 +msgid "Open Reviews" +msgstr "Revues de code ouvertes" -#: IDF/gettexttemplates/idf/downloads/view.html.php:12 -msgid "Delete this file" -msgstr "Supprimer ce fichier" +#: IDF/gettexttemplates/idf/review/base.html.php:4 +#: IDF/gettexttemplates/idf/review/create.html.php:11 +#: IDF/gettexttemplates/idf/review/index.html.php:3 IDF/Views/Review.php:83 +msgid "Start Code Review" +msgstr "Nouvelle revue de code" -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3 -msgid "A new file is available for download:" -msgstr "Un nouveau fichier est disponible en téléchargement :" +#: IDF/gettexttemplates/idf/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" +"
    • Ensure your patch does not contain any passwords or confidential " +"information!
    • \n" +"
    " +msgstr "" +"

    Pour démarrer une revue de code vous devez fournir :

    \n" +"
      \n" +"
    • La révision ou le commit de référence qui a servi de base à votre " +"travail.
    • \n" +"
    • Un patch 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/downloads/download-created-email.txt.php:6 -msgid "Submitted by:" -msgstr "Soumis par :" +#: IDF/gettexttemplates/idf/review/create.html.php:9 +msgid "" +"The form contains some errors. Please correct them to submit the code review." +msgstr "" +"Le formulaire contient des erreurs. Merci de les corriger pour soumettre " +"votre revue de code." -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8 -msgid "Download:" -msgstr "Téléchargement :" +#: IDF/gettexttemplates/idf/review/create.html.php:10 +msgid "" +"Select the commit against which you created your patch to be sure it applies " +"correctly." +msgstr "" +"Sélectionnez le commit correspondant à votre patch pour être certain qu'il " +"puisse s'appliquer correctement." + +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:3 +msgid "The following review has been created:" +msgstr "La revue 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 :" + +#: 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 :" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5 +#, php-format +msgid "" +"By %%who%%, %%c.creation_dtime%%, on file:\n" +"%%c.cfile%%\n" +msgstr "" +"Par %%who%%, %%c.creation_dtime%%, à propos 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) :" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15 +msgid "Detailed file comments (last first):" +msgstr "Commentaires des fichiers (le dernier en premier) :" + +#: IDF/gettexttemplates/idf/review/view.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" +"different people discuss the code changes. The goal is\n" +"to improve the quality of the code and the\n" +"contributions, as such, you must be pragmatic when writing\n" +"your review. Correctly mention the line numbers (in the old or in the\n" +"new file) and try to keep a good balance between seriousness and fun.\n" +msgstr "" +"La revue de code est une discussion sur des changements du code, avant ou " +"après avoir fait les changements dans le dépôt. Le but est " +"d'améliorer la qualité du code et des contributions, pour " +"cela vous devez être pragmatique quand vous écrivez votre analyse. " +"Mentionnez bien le numéro des lignes (dans l'ancien et le nouveau fichier) " +"et essayer de garder un bon équilibre entre sérieux et humour dans vos " +"remarques.\n" + +#: 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 "" +"\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" + +#: IDF/gettexttemplates/idf/review/view.html.php:20 +#, php-format +msgid "" +"Comment %%i%% by %%who%%, " +"%%c.creation_dtime%%" +msgstr "" +"Commentaire %%i%% par %%who" +"%%, %%c.creation_dtime%%" + +#: IDF/gettexttemplates/idf/review/view.html.php:21 +#, php-format +msgid "Your comments on the changes in file %%file%%:" +msgstr "" +"Vos commentaires sur les changements proposés au fichier %%file%%:" + +#: IDF/gettexttemplates/idf/review/view.html.php:23 +#, php-format +msgid "Sign in to participate in the review." +msgstr "Connectez-vous pour participer à la revue." + +#: IDF/gettexttemplates/idf/review/view.html.php:24 +msgid "" +"The form contains some errors. Please correct them to submit your review." +msgstr "" +"Le formulaire contient des erreurs. 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 +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 +msgid "Commit:" +msgstr "Commit :" + +#: IDF/gettexttemplates/idf/review/view.html.php:29 +#: 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 +msgid "Download the corresponding diff file" +msgstr "Télécharger le fichier diff correspondant" + +#: IDF/gettexttemplates/idf/review/view.html.php:36 +msgid "How to Participate in a Code Review" +msgstr "Comment participer à une revue de code" + +#: 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 +msgid "Submit Code Review" +msgstr "Soumettre la revue de code" + +#: IDF/gettexttemplates/idf/source/base.html.php:3 +msgid "Source Tree" +msgstr "Arbre des sources" + +#: IDF/gettexttemplates/idf/source/base.html.php:4 +msgid "Change Log" +msgstr "Liste des changements" + +#: IDF/gettexttemplates/idf/source/base.html.php:6 +msgid "How To Get The Code" +msgstr "Comment obtenir le code" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:3 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/Views/Project.php:152 +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 +msgid "Message" +msgstr "Message" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:5 +msgid "Parent:" +msgstr "Parent : " + +#: IDF/gettexttemplates/idf/source/changelog.html.php:6 +#: IDF/gettexttemplates/idf/source/commit.html.php:10 +msgid "View corresponding commit" +msgstr "Voir le commit correspondant" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:8 +msgid "by" +msgstr "par" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:3 +msgid "A new commit has been created:" +msgstr "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 :" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8 +msgid "Created at:" +msgstr "Créé le :" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:9 +#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:8 +msgid "Content:" +msgstr "Contenu :" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10 +msgid "Commit details:" +msgstr "Détails de la révision :" + +#: IDF/gettexttemplates/idf/source/commit.html.php:4 +msgid "Date:" +msgstr "Date :" + +#: IDF/gettexttemplates/idf/source/commit.html.php:6 +msgid "Branch:" +msgstr "Branche :" + +#: IDF/gettexttemplates/idf/source/commit.html.php:9 +msgid "Parents:" +msgstr "Parents :" + +#: IDF/gettexttemplates/idf/source/commit.html.php:11 +msgid "Message:" +msgstr "Message :" + +#: 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 :" + +#: 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 +msgid "full" +msgstr "complet" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +msgid "renamed" +msgstr "renommé" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +msgid "added" +msgstr "ajouté" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +msgid "modified" +msgstr "modifié" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +msgid "properies changed" +msgstr "propriétés changées" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +msgid "removed" +msgstr "supprimé" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +msgid "File differences" +msgstr "Différences entre fichiers" + +#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:3 +#, php-format +msgid "" +"The revision identifier %%commit%% is ambiguous and can be\n" +"expanded to multiple valid revisions - please choose one:" +msgstr "" +"L'identifiant de révision %%commit%% est ambigu et peut être \n" +"associé à différentes révisions valides - Choisissez en une : " + +#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:5 +msgid "Title" +msgstr "Titre" + +#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:6 +msgid "Author" +msgstr "Auteur" + +#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:7 +msgid "Date" +msgstr "Date" + +#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:8 +msgid "Branch" +msgstr "Branche" + +#: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:9 +msgid "Revision" +msgstr "Révision" + +#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 +#, php-format +msgid "%%cproject.name%%: Commit %%c.scm_id%%" +msgstr "%%cproject.name%% : Commit %%c.scm_id%%" + +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:3 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3 +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:3 +msgid "Branches" +msgstr "Branches" + +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:4 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:4 +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:4 +msgid "filter branches" +msgstr "filtrer les branches" + +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:5 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:5 +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:5 +msgid "Tags" +msgstr "Tags" + +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:6 +msgid "filter tags" +msgstr "filtrer par tag" + +#: 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: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 "" +"Source at commit %%commit%% created " +"%%cobject.date%%." +msgstr "" +"Source au commit %%commit%% créé le " +"%%cobject.date%%." + +#: IDF/gettexttemplates/idf/source/git/file.html.php:4 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:4 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:4 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:4 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php: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 "By %%cobject.author%%, %%cobject.title%%" +msgstr "Par %%cobject.author%%, %%cobject.title%%" + +#: IDF/gettexttemplates/idf/source/git/file.html.php:5 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:5 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:5 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:5 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php: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 +msgid "Root" +msgstr "Racine" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the git software to manage the source\n" +"code." +msgstr "" +"L'équipe de développement du projet %%project%% 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 authentification." +msgstr "" +"Vous devez probablement fournir votre clef SSH. La " +"synchronisation de votre clef SSH peut prendre quelques minutes. Vous pouvez " +"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 :" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7 +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:7 +#, php-format +msgid "Find here more details on how to access %%project%% source code." +msgstr "" +"Trouvez ici plus de détails pour accéder au code du projet %%project%%." + +#: IDF/gettexttemplates/idf/source/git/help.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8 +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:8 +msgid "Command-Line Access" +msgstr "Accès en ligne de commande" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:10 +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9 +msgid "First Commit" +msgstr "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 +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 +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 +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 +msgid "or" +msgstr "ou" + +#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:3 +#, fuzzy, php-format +msgid "" +"The branch or revision %%commit%% is not valid or does not exist\n" +"in this repository." +msgstr "" +"La révision %%commit%% n'est pas valide ou bien n'existe pas\n" +"dans le dépôt." + +#: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5 +#, fuzzy +msgid "The following list shows all available branches:" +msgstr "Le ticket suivant a été mis à jour :" + +#: 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." +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" +"sur comment accéder au dépôt. " + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the Mercurial software to manage the source\n" +"code." +msgstr "" +"L'équipe de développement du projet %%project%% utilise Mercurial pour gérer le code source." + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:6 +#, php-format +msgid "" +"To get write access to the repository, you need to use your username and " +"your extra password." +msgstr "" +"Pour avoir accès en écriture au dépôt, vous devez utiliser votre login et " +"votre mot de passe supplémentaire." + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:9 +msgid "Write Access Authentication" +msgstr "Accès en écriture" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the monotone software to manage the source\n" +"code." +msgstr "" +"L'équipe de développement du projet %%project%% 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 +msgid "Revision:" +msgstr "Révision :" + +#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4 +#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4 +#: IDF/gettexttemplates/idf/source/svn/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/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the subversion software to manage the source\n" +"code." +msgstr "" +"L'équipe de développement du projet %%project%% utilise Subversion pour gérer le code source." + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8 +msgid "Rev" +msgstr "Rev" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17 +msgid "Branches:" +msgstr "Branches :" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18 +msgid "Tags:" +msgstr "Tags :" + +#: IDF/gettexttemplates/idf/user/changeemail-email.txt.php:3 +#, php-format +msgid "" +"Hello %%user%%,\n" +"\n" +"To confirm that you want %%email%%\n" +"to be your new email address, just follow this link:\n" +"\n" +"%%url%%\n" +"\n" +"Alternatively, go to this page:\n" +"\n" +"%%urlik%%\n" +"\n" +"and provide the following verification key:\n" +"\n" +"%%key%%\n" +"\n" +"If you do not want to change your email address, \n" +"just ignore this message.\n" +"\n" +"Yours faithfully,\n" +"The development team.\n" +msgstr "" +"Bonjour %%user%%,\n" +"\n" +"Pour confirmer que vous voulez que %%email%%\n" +"soit votre nouvelle adresse email, suivez le lien suivant :\n" +"\n" +"%%url%%\n" +"\n" +"Vous pouvez allez aussi sur la page suivante :\n" +"\n" +"%%urlik%%\n" +"\n" +"et fournir la clef de confirmation suivante :\n" +"\n" +"%%key%%\n" +"\n" +"Si vous ne voulez pas changer votre adresse email,ignorez simplement ce " +"message.\n" +"Cordialement,\n" +"l'équipe de développement.\n" + +#: IDF/gettexttemplates/idf/user/changeemail.html.php:4 +msgid "Confirm Your New Email Address" +msgstr "Confirmez votre nouvelle adresse" + +#: IDF/gettexttemplates/idf/user/changeemail.html.php:7 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:7 +msgid "" +"Use your email software to read your emails and open your verification " +"email. Either click directly on the verification link or copy/paste the " +"verification key in the box and submit the form." +msgstr "" +"Utilisez votre logiciel de messagerie pour lire votre email de vérification. " +"Vous pouvez cliquer sur le lien fourni ou copier/coller la clef de " +"vérification dans le formulaire et le soumettre." + +#: IDF/gettexttemplates/idf/user/dashboard.html.php:3 +#, php-format +msgid "Update your account." +msgstr "Mettre à jour votre compte." + +#: IDF/gettexttemplates/idf/user/dashboard.html.php:4 +#, php-format +msgid "See your public profile." +msgstr "Voir votre profil public." + +#: IDF/gettexttemplates/idf/user/dashboard.html.php:5 +#, php-format +msgid "See your forge issue watch list." +msgstr "" +"Voir votre liste de surveillance de tickets sur la " +"forge." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:6 +msgid "Key Management" +msgstr "Administration des clefs" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:7 +msgid "Extra password" +msgstr "Mot de passe supplémentaire" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +msgid "" +"This password is used to access some of the external systems managed by our " +"infrastructure. It will be regenerated if you change your password." +msgstr "" +"Ce mot de passe est utilisé pour accéder à une partie des systèmes de notre " +"infrastructure. Il sera régénéré si vous changez votre mot de passe." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 +msgid "API key" +msgstr "Clé d'API" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +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." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "Update Your Account" +msgstr "Mettre à jour votre compte" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +msgid "Your Current Public Keys" +msgstr "Vos clefs publique jusqu'à présent" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Delete this key" +msgstr "Supprimer cette clef" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +msgid "" +"If possible, use your real name. By using your real name, people will have " +"more trust in your comments and remarks." +msgstr "" +"Si possible, utilisez votre vrai nom. En utilisant votre vrai nom, les " +"personnes utilisant ce site auront naturellement plus confiance en vos " +"commentaires et remarques." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 +msgid "" +"The extra password is used to access some of the external systems and the " +"API key is used to interact with this website using a program." +msgstr "" +"La 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." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 +msgid "Show API key and extra password" +msgstr "Montrer la clef d'API et le mot de passe supplémentaire" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 +msgid "" +"Oups, please check the provided login or email address to recover your " +"password." +msgstr "" +"Oups, veuillez vérifier l'identifiant ou l'adresse email pour récupérer " +"votre mot de passe." + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4 +msgid "Recover My Password" +msgstr "Récupérer mon mot de passe" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6 +msgid "" +"Provide either your login or email address, if a corresponding user is found " +"in the database, we will send you an email with the details on how to reset " +"your password." +msgstr "" +"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." + +#: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3 +#, php-format +msgid "" +"Hello %%user%%,\n" +"\n" +"You lost your password and wanted to recover it.\n" +"To provide a new password for your account, you\n" +"just have to follow the provided link. You will\n" +"get a simple form to provide a new password.\n" +"\n" +"%%url%%\n" +"\n" +"Alternatively, go to this page:\n" +"\n" +"%%urlik%%\n" +"\n" +"and provide the following verification key:\n" +"\n" +"%%key%%\n" +"\n" +"If you are not the one who requested to reset\n" +"your password, simply ignore this email, your\n" +"password will not be changed.\n" +"\n" +"Yours faithfully,\n" +"The development team.\n" +msgstr "" +"Bonjour %%user%%,\n" +"\n" +"Vous avez perdu votre mot de passe et voulez le retrouver. 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" +"Vous pouvez aussi aller sur cette page :\n" +"\n" +"%%urlik%%\n" +"\n" +"et fournir la clef de vérification suivante :\n" +"\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" +"\n" +"Très cordialement,\n" +"l'équipe de développement.\n" + +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4 +msgid "Recover Your Password" +msgstr "Récupérer votre mot de passe" + +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:8 +msgid "" +"Just after providing the confirmation key, you will be able to reset your " +"password and use again this website fully." +msgstr "" +"Juste après avoir fourni la clef de vérification, vous pourrez donner votre " +"mot de passe et réutiliser complètement le site." + +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 +msgid "Reset Your Password" +msgstr "Redéfinir votre mot de passe" + +#: IDF/gettexttemplates/idf/user/public.html.php:3 +#, php-format +msgid "You are looking at the public profile of %%member%%." +msgstr "Vous regardez le profil public de %%member%%." + +#: IDF/gettexttemplates/idf/user/public.html.php:5 +msgid "Twitter:" +msgstr "Twitter : " + +#: IDF/gettexttemplates/idf/user/public.html.php:6 +msgid "Public Email:" +msgstr "Email public :" + +#: IDF/gettexttemplates/idf/user/public.html.php:7 +msgid "Website:" +msgstr "Site internet : " + +#: IDF/gettexttemplates/idf/user/public.html.php:8 +msgid "Last time seen:" +msgstr "Vu la dernière fois :" + +#: IDF/gettexttemplates/idf/user/public.html.php:9 +msgid "Member since:" +msgstr "Membre depuis :" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:3 +msgid "List Pages" +msgstr "Liste des pages" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:4 +#: IDF/gettexttemplates/idf/wiki/index.html.php:4 +#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:175 +msgid "New Page" +msgstr "Nouvelle page" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:5 +msgid "Update This Page" +msgstr "Éditer cette page" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:3 +#: IDF/gettexttemplates/idf/wiki/update.html.php:3 +msgid "Preview of the Page" +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." + +#: IDF/gettexttemplates/idf/wiki/create.html.php:6 +msgid "Create Page" +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" +"%%page.title%%. This revision was created\n" +"by %%submitter%%." +msgstr "" +"Vous lisez une ancienne version (%%oldrev.summary%%) de la page \n" +"%%page.title%%. Cette version fut créée par\n" +" %%submitter%%." + +#: 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 "" +"Si vous supprimez cette vieille version, elle sera supprimée de la base de " +"données et vous ne pourrez pas la récupérer ultérieurement." + +#: IDF/gettexttemplates/idf/wiki/delete.html.php:9 +msgid "Delete Revision" +msgstr "Supprimer cette version" + +#: 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 "Anciennes versions" + +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:3 +msgid "" +"If you delete this documentation page, it will be removed from the database " +"with all the associated revisions and you will not be able to " +"recover it." +msgstr "" +"Si vous supprimez cette page, elle, ainsi que toutes les révisions " +"associées, seront supprimées de la base de données et vous ne " +"pourrez pas les récupérer ultérieurement." + +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:6 +msgid "Delete Page" +msgstr "Supprimer la page" + +#: IDF/gettexttemplates/idf/wiki/edit-info.html.php:3 +#, php-format +msgid "" +"\n" +"

    Instructions:

    \n" +"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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 "" +"\n" +"

    Instructions :

    \n" +"

    Le contenu de la page peut utiliser la syntaxe Markdown avec son extension Markdown Extra.

    \n" +"

    Vous pouvez faire un lien vers une autre page de la documentation en " +"utilisant des crochets doubles, comme cela [[UneAutrePage]].

    \n" +"

    Pour inclure directement le contenu d'un fichier du dépôt, entourez son " +"chemin avec des crochets triples : [[[chemin/vers/fichier.txt]]].

    \n" + +#: IDF/gettexttemplates/idf/wiki/index.html.php:3 +#, php-format +msgid "See the deprecated pages." +msgstr "Voir les pages obsolètes." + +#: IDF/gettexttemplates/idf/wiki/index.html.php:5 +msgid "Number of pages:" +msgstr "Nombre de pages :" + +#: IDF/gettexttemplates/idf/wiki/search.html.php:4 +msgid "Pages found:" +msgstr "Pages trouvées :" + +#: IDF/gettexttemplates/idf/wiki/update.html.php:4 +msgid "The form contains some errors. Please correct them to update the page." +msgstr "" +"Le formulaire contient des erreurs. Merci de les corriger pour mettre à jour " +"la page." + +#: IDF/gettexttemplates/idf/wiki/update.html.php:6 +msgid "Update Page" +msgstr "Mettre à jour" + +#: 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 "Supprimer cette page" + +#: 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 "" +"Attention ! Cette pages est marquée comme obsolète, " +"utilisez ces informations comme référence uniquement si vous avez besoin de " +"cette version particulière." + +#: 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 "" +"Vous lisez une ancienne version de la page \n" +"%%page.title%%. Cette version a été créée par\n" +" %%submitter%%." + +#: IDF/gettexttemplates/idf/wiki/view.html.php:10 +msgid "Table of Content" +msgstr "Sommaire" + +#: IDF/gettexttemplates/idf/wiki/view.html.php:11 +#: IDF/gettexttemplates/idf/wiki/view.html.php:13 +msgid "Delete this revision" +msgstr "Supprimer cette version" + +#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:3 +msgid "A new documentation page has been created:" +msgstr "Une nouvelle page de documentation a été créée :" + +#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14 +msgid "Documentation page:" +msgstr "Page de documentation :" + +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3 +msgid "The following documentation page has been updated:" +msgstr "La page de documentation suivante a été mise à jour :" + +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7 +msgid "Updated by:" +msgstr "Mise à jour par :" + +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13 +msgid "New content:" +msgstr "Nouveau contenu :" + +#: IDF/Issue.php:76 +msgid "owner" +msgstr "propriétaire" + +#: IDF/Issue.php:84 IDF/WikiPage.php:86 +msgid "interested users" +msgstr "personnes intéressées" + +#: IDF/Issue.php:85 +msgid "" +"Interested users will get an email notification when the issue is changed." +msgstr "" +"Les personnes intéressées reçoivent un email d'information quand le ticket " +"est changé." + +#: IDF/Issue.php:92 IDF/Review.php:95 IDF/Upload.php:93 IDF/WikiPage.php:94 +msgid "labels" +msgstr "étiquettes" + +#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114 +#: IDF/Upload.php:112 IDF/WikiPage.php:106 +msgid "modification date" +msgstr "date de modification" + +#: IDF/Issue.php:194 IDF/IssueComment.php:143 +#, php-format +msgid "" +"Issue %3$d, %4$s" +msgstr "" +"Ticket %3$d, " +"%4$s" + +#: IDF/Issue.php:196 +#, php-format +msgid "Creation of issue %d, by %s" +msgstr "Création du ticket %d, par %s" + +#: IDF/Issue.php:206 +#, php-format +msgid "%s: Issue %d created - %s" +msgstr "%s: Création du ticket %d - %s" + +#: IDF/Issue.php:272 +#, php-format +msgid "Issue %s - %s (%s)" +msgstr "Ticket %s - %s (%s)" + +#: IDF/Issue.php:318 +#, php-format +msgid "Updated Issue %s - %s (%s)" +msgstr "Mise à jour ticket %s - %s (%s)" + +#: IDF/IssueComment.php:51 +msgid "issue" +msgstr "ticket" + +#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62 +#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69 +msgid "comment" +msgstr "commentaire" + +#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63 +#: IDF/WikiRevision.php:85 +msgid "changes" +msgstr "changements" + +#: IDF/IssueComment.php:73 +msgid "Serialized array of the changes in the issue." +msgstr "Tableau sérialisé des changements du ticket." + +#: IDF/IssueComment.php:171 +#, php-format +msgid "Comment on issue %d, by %s" +msgstr "" +"Commentaire sur le ticket %d, par %s" + +#: IDF/IssueComment.php:182 +#, php-format +msgid "%s: Comment on issue %d - %s" +msgstr "%s: Commentaire sur le ticket %d - %s" #: IDF/IssueFile.php:64 msgid "file name" @@ -3028,6 +3807,153 @@ msgstr "Image" msgid "Other" msgstr "Autre" +#: IDF/Key.php:49 +msgid "user" +msgstr "utilisateur" + +#: IDF/Key.php:55 +msgid "public key" +msgstr "clef publique" + +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." +msgstr "Type ou format de la clée invalide." + +#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81 +#, php-format +msgid "The repository %s already exists." +msgstr "Le dépôt %s existe déjà." + +#: IDF/Plugin/SyncMercurial.php:142 +#, php-format +msgid "%s does not exist or is not writable." +msgstr "%s n'existe pas ou vous ne disposez pas des droits pour écrire dedans." + +#: 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\" doit être défini dans votre fichier de configuration." + +#: 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\" n'existe pas ou vous ne disposez pas des droits pour " +"écrire dedans." + +#: IDF/Plugin/SyncMonotone.php:100 +#, php-format +msgid "Could not find mtn-post-push script \"%s\"." +msgstr "Impossible de trouver le script mtn-post-push \"%s\"." + +#: IDF/Plugin/SyncMonotone.php:135 +#, php-format +msgid "The configuration file %s is missing." +msgstr "Le fichier de configuration %s est absent." + +#: IDF/Plugin/SyncMonotone.php:144 +#, php-format +msgid "The project path %s already exists." +msgstr "Le chemin du projet %s existe déjà." + +#: IDF/Plugin/SyncMonotone.php:150 +#, php-format +msgid "The project path %s could not be created." +msgstr "Le chemin du projet %s n'a pu être créé. " + +#: IDF/Plugin/SyncMonotone.php:187 IDF/Scm/Monotone/Stdio.php:87 +#, php-format +msgid "The key directory %s could not be created." +msgstr "Le répertoire de clef %s n'a pu être créé." + +#: IDF/Plugin/SyncMonotone.php:205 +#, php-format +msgid "Could not parse key information: %s" +msgstr "Impossible de partourir l'information de la clef: %s" + +#: IDF/Plugin/SyncMonotone.php:243 +#, php-format +msgid "Could not create configuration directory \"%s\"" +msgstr "Impossible de créer de répertoire de configuration \"%s\"" + +#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 +#, php-format +msgid "Could not create symlink \"%s\"" +msgstr "Impossible de créer le lien symbolique \"%s\"" + +#: IDF/Plugin/SyncMonotone.php:269 +#, php-format +msgid "Could not write configuration file \"%s\"" +msgstr "Impossible d'écrire le fichier de configuration \"%s\"" + +#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 +#, php-format +msgid "Could not parse usher configuration in \"%s\": %s" +msgstr "Impossible de parcourir la configuration d'usher dans \"%s\" : %s" + +#: IDF/Plugin/SyncMonotone.php:295 +#, php-format +msgid "usher configuration already contains a server entry named \"%s\"" +msgstr "" +"la configuration d'usher contient déja une entrée serveur appelée \"%s\"" + +#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 +#, php-format +msgid "Could not write usher configuration file \"%s\"" +msgstr "Impossible d'écrire le fichier de configuration d'usher \"%s\"" + +#: IDF/Plugin/SyncMonotone.php:366 +#, php-format +msgid "Could not write write-permissions file \"%s\"" +msgstr "Impossible d'écrire le fichier de permissions en écriture \"%s\"" + +#: IDF/Plugin/SyncMonotone.php:389 +#, php-format +msgid "Could not write read-permissions file \"%s\"" +msgstr "Impossible d'écrire le fichier de permissions de lecture \"%s\"" + +#: IDF/Plugin/SyncMonotone.php:406 +#, php-format +msgid "Could not remove symlink \"%s\"" +msgstr "Impossible de retirer le lien symbolique \"%s\"" + +#: IDF/Plugin/SyncMonotone.php:465 +#, php-format +msgid "One or more paths underknees %s could not be deleted." +msgstr "Un ou plusieurs autres chemins sous %s n'ont pu être supprimés." + +#: IDF/Plugin/SyncMonotone.php:477 +#, php-format +msgid "Could not delete client private key %s" +msgstr "Impossible de supprimer la clef privée cliente %s" + +#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676 +#, php-format +msgid "Could not parse read-permissions for project \"%s\": %s" +msgstr "" +"Impossible de parcourir les permissions de lecture pour le projet \"%s\" : " +"%s" + +#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 +#, php-format +msgid "Could not write read-permissions for project \"%s\"" +msgstr "Impossible d'écrire les permissions de lecture pour le projet \"%s\"" + +#: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 +#, php-format +msgid "Could not write write-permissions file for project \"%s\"" +msgstr "Impossible d'écrire les permissions d'écriture pour le projet \"%s\"" + +#: IDF/Plugin/SyncMonotone.php:790 +#, php-format +msgid "The project path %s does not exists." +msgstr "Le chemin du projet %s n'existe pas." + +#: IDF/Plugin/SyncMonotone.php:808 +#, php-format +msgid "The command \"%s\" could not be executed." +msgstr "La commande \"%s\" n'a pu être exécutée. " + #: IDF/Project.php:62 IDF/Tag.php:66 msgid "name" msgstr "nom" @@ -3048,11 +3974,6 @@ msgstr "" msgid "short description" msgstr "Petite description" -#: IDF/Project.php:79 IDF/Form/Admin/ProjectCreate.php:70 -#: IDF/Form/Admin/ProjectUpdate.php:51 -msgid "A one line description of the project." -msgstr "Une d'une ligne du projet." - #: IDF/Project.php:86 IDF/Review/Patch.php:74 msgid "description" msgstr "description" @@ -3070,6 +3991,86 @@ msgstr "privé" msgid "Project \"%s\" not found." msgstr "Projet \"%s\" non trouvé." +#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80 +msgid "patch" +msgstr "patch" + +#: IDF/Review/Comment.php:83 +msgid "vote" +msgstr "vote" + +#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151 +#, php-format +msgid "" +"Review %3$d, %4$s" +msgstr "" +"Revue %3$d, %4$s" + +#: IDF/Review/Comment.php:141 +#, php-format +msgid "Update of review %d, by %s" +msgstr "" +"Mise à jour de la revue %d, par %s" + +#: IDF/Review/Comment.php:151 +#, php-format +msgid "%s: Updated review %d - %s" +msgstr "%s: Revue mise à jour %d - %s" + +#: IDF/Review/Comment.php:216 +#, php-format +msgid "Updated Code Review %s - %s (%s)" +msgstr "Mise à jour de la revue de code %s - %s (%s)" + +#: IDF/Review/Patch.php:52 +msgid "review" +msgstr "revue de code" + +#: IDF/Review/Patch.php:67 +msgid "commit" +msgstr "commit" + +#: IDF/Review/Patch.php:153 +#, php-format +msgid "Creation of review %d, by %s" +msgstr "Création de la revue %d, par %s" + +#: IDF/Review/Patch.php:163 +#, php-format +msgid "%s: Creation of Review %d - %s" +msgstr "%s: Création de la revue %d - %s" + +#: IDF/Review/Patch.php:204 +#, php-format +msgid "New Code Review %s - %s (%s)" +msgstr "Nouvelle revue de code %s - %s (%s)" + +#: IDF/Scm/Git.php:183 +#, php-format +msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." +msgstr "Valeur invalide pour le paramètre %1$s: %2$s. Use %3$s." + +#: IDF/Scm/Git.php:234 IDF/Scm/Mercurial.php:140 +#, php-format +msgid "Folder %1$s not found in commit %2$s." +msgstr "Répertoire %1$s non trouvé dans le commit %2$s." + +#: IDF/Scm/Git.php:352 IDF/Scm/Mercurial.php:157 +#, php-format +msgid "Not a valid tree: %s." +msgstr "Arbre non valide : %s." + +#: IDF/Scm/Monotone/Stdio.php:79 +msgid "Monotone client key name or hash not in project conf." +msgstr "" +"Le nom ou le hash de la clef client monotone ne figure pas dans la config du " +"projet." + +#: IDF/Scm/Monotone/Stdio.php:98 +#, php-format +msgid "Could not write client key \"%s\"" +msgstr "Impossible d'écrire la clef client \"%s\"" + #: IDF/Search/Occ.php:33 msgid "occurence" msgstr "occurence" @@ -3086,555 +4087,75 @@ msgstr "occurrences" msgid "ponderated occurence" msgstr "occurrence pondérée" -#: IDF/Issue.php:76 -msgid "owner" -msgstr "propriétaire" +#: IDF/Tag.php:59 +msgid "tag class" +msgstr "classe de l'étiquette" -#: IDF/Issue.php:84 IDF/WikiPage.php:86 -msgid "interested users" -msgstr "personnes intéressées" +#: IDF/Tag.php:60 +msgid "The class of the tag." +msgstr "La classe de l'étiquette." -#: IDF/Issue.php:85 -msgid "" -"Interested users will get an email notification when the issue is changed." +#: IDF/Tag.php:73 +msgid "lcname" +msgstr "lcname" + +#: IDF/Tag.php:74 +msgid "Lower case version of the name for fast searching." +msgstr "Version minuscule du nom pour chercher rapidement." + +#: IDF/Template/Markdown.php:74 +msgid "Create this documentation page" +msgstr "Créer cette page de documentation" + +#: IDF/Template/ShowUser.php:51 +msgid "Anonymous" +msgstr "Anonyme" + +#: IDF/Template/ShowUser.php:54 +msgid "Me" +msgstr "Moi" + +#: IDF/Timeline/Paginator.php:49 +msgid "Today" +msgstr "Aujourd'hui" + +#: IDF/Upload.php:70 +msgid "file" +msgstr "fichier" + +#: IDF/Upload.php:71 +msgid "The path is relative to the upload path." +msgstr "Le chemin est relatif au répertoire de mise en ligne." + +#: IDF/Upload.php:78 +msgid "file size in bytes" +msgstr "taille du fichier en octets" + +#: IDF/Upload.php:100 +msgid "number of downloads" +msgstr "nombre de téléchargements" + +#: IDF/Upload.php:189 +#, php-format +msgid "Download %2$d, %3$s" msgstr "" -"Les personnes intéressées reçoivent un email d'information quand le ticket " -"est changé." +"Téléchargement %2$d, " +"%3$s" -#: IDF/Issue.php:196 +#: IDF/Upload.php:192 #, php-format -msgid "Creation of issue %d, by %s" -msgstr "Création du ticket %d, par %s" +msgid "Addition of download %d, by %s" +msgstr "Création du téléchargement %d, par %s" -#: IDF/Issue.php:206 +#: IDF/Upload.php:202 #, php-format -msgid "%s: Issue %d created - %s" -msgstr "%s: Création du ticket %d - %s" +msgid "%s: Download %d added - %s" +msgstr "%s: Ajout du téléchargement %d - %s" -#: IDF/Issue.php:272 +#: IDF/Upload.php:244 #, php-format -msgid "Issue %s - %s (%s)" -msgstr "Ticket %s - %s (%s)" - -#: IDF/Issue.php:318 -#, php-format -msgid "Updated Issue %s - %s (%s)" -msgstr "Mise à jour ticket %s - %s (%s)" - -#: IDF/Views/Wiki.php:41 -#, php-format -msgid "%s Documentation" -msgstr "Documentation de %s" - -#: IDF/Views/Wiki.php:48 -msgid "This table shows the documentation pages." -msgstr "Ce tableau liste les pages de documentation." - -#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149 -msgid "Page Title" -msgstr "Titre" - -#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:109 IDF/Views/Wiki.php:150 -#: IDF/Views/Download.php:65 IDF/Views/Download.php:295 IDF/Views/Issue.php:62 -#: IDF/Views/Issue.php:140 IDF/Views/Issue.php:221 IDF/Views/Issue.php:297 -#: IDF/Views/Issue.php:384 IDF/Views/Issue.php:563 IDF/Views/Issue.php:622 -#: IDF/Views/User.php:83 IDF/Views/Review.php:58 IDF/Form/Upload.php:40 -#: IDF/Form/ReviewCreate.php:45 IDF/Form/IssueUpdate.php:45 -#: IDF/Form/IssueCreate.php:53 IDF/Form/UpdateUpload.php:42 -#: IDF/Form/ReviewFileComment.php:71 -msgid "Summary" -msgstr "Résumé" - -#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:110 IDF/Views/Wiki.php:151 -msgid "Updated" -msgstr "Mise à jour" - -#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:155 -msgid "No documentation pages were found." -msgstr "Aucune page de documentation n'a été trouvée." - -#: IDF/Views/Wiki.php:92 -#, php-format -msgid "Documentation Search - %s" -msgstr "Recherche dans la documentation - %s" - -#: IDF/Views/Wiki.php:103 -msgid "This table shows the pages found." -msgstr "Ce tableau montre les pages trouvées." - -#: IDF/Views/Wiki.php:114 -msgid "No pages were found." -msgstr "Aucune page trouvée." - -#: IDF/Views/Wiki.php:133 -#, php-format -msgid "%1$s Documentation Pages with Label %2$s" -msgstr "Documentation de %1$s avec l'étiquette %2$s" - -#: IDF/Views/Wiki.php:143 -#, php-format -msgid "This table shows the documentation pages with label %s." -msgstr "Ce tableau liste les pages de documentation avec le label %s." - -#: IDF/Views/Wiki.php:188 -#, php-format -msgid "The page %s has been created." -msgstr "La page %s a été créée." - -#: IDF/Views/Wiki.php:275 -msgid "The old revision has been deleted." -msgstr "La vieille version a été supprimée." - -#: IDF/Views/Wiki.php:281 -#, php-format -msgid "Delete Old Revision of %s" -msgstr "Suppression de la vieille version de %s" - -#: IDF/Views/Wiki.php:314 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 -#, php-format -msgid "Update %s" -msgstr "Mise à jour de %s" - -#: IDF/Views/Wiki.php:326 -#, php-format -msgid "The page %s has been updated." -msgstr "La page %s a été mise à jour." - -#: IDF/Views/Wiki.php:364 -msgid "The documentation page has been deleted." -msgstr "La page de documentation a été supprimée." - -#: IDF/Views/Wiki.php:372 -#, php-format -msgid "Delete Page %s" -msgstr "Suppprimer la page %s" - -#: IDF/Views/Source.php:40 -#, php-format -msgid "%s Source Help" -msgstr "Aide des sources de %s" - -#: IDF/Views/Source.php:58 -#, php-format -msgid "%s Invalid Revision" -msgstr "%s Révision invalide" - -#: IDF/Views/Source.php:77 -#, php-format -msgid "%s Ambiguous Revision" -msgstr "%s Révision ambiguë " - -#: IDF/Views/Source.php:102 -#, php-format -msgid "%1$s %2$s Change Log" -msgstr "Changements %2$s de %1$s" - -#: IDF/Views/Source.php:142 IDF/Views/Source.php:223 IDF/Views/Source.php:355 -#, php-format -msgid "%1$s %2$s Source Tree" -msgstr "Arbre des sources %2$s de %1$s" - -#: IDF/Views/Source.php:299 -#, php-format -msgid "%s Commit Details" -msgstr "Détails d'un commit de %s" - -#: IDF/Views/Source.php:300 -#, php-format -msgid "%s Commit Details - %s" -msgstr "Détails d'un commit de %s - %s" - -#: IDF/Views/Download.php:45 -#, php-format -msgid "%s Downloads" -msgstr "Téléchargements de %s" - -#: IDF/Views/Download.php:51 -msgid "This table shows the files to download." -msgstr "Ce tableau présente la liste des fichiers en téléchargement." - -#: IDF/Views/Download.php:67 IDF/Views/Download.php:297 -msgid "Uploaded" -msgstr "Mis en ligne" - -#: IDF/Views/Download.php:71 IDF/Views/Download.php:301 -msgid "No downloads were found." -msgstr "Aucun fichier n'a été trouvé." - -#: IDF/Views/Download.php:96 -#, php-format -msgid "Download %s" -msgstr "Télécharger %s" - -#: IDF/Views/Download.php:113 -#, php-format -msgid "The file %2$s has been updated." -msgstr "Le fichier %2$s a été mis à jour." - -#: IDF/Views/Download.php:146 -#, php-format -msgid "Delete Download %s" -msgstr "Supprimer le fichier %s" - -#: IDF/Views/Download.php:179 -msgid "The file has been deleted." -msgstr "Le fichier a été supprimé." - -#: IDF/Views/Download.php:225 -#, php-format -msgid "The file has been uploaded." -msgstr "Le fichier a été mis en ligne." - -#: IDF/Views/Download.php:279 -#, php-format -msgid "%1$s Downloads with Label %2$s" -msgstr "Téléchargements avec l'étiquette %2$s de %1$s" - -#: IDF/Views/Download.php:289 -#, php-format -msgid "This table shows the downloads with label %s." -msgstr "Ce tableau montre les téléchargements avec l'étiquette %s." - -#: IDF/Views/Project.php:72 -msgid "All Updates" -msgstr "Mises à jour" - -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" -msgstr "Tickets et commentaires" - -#: IDF/Views/Project.php:76 -msgid "Documents" -msgstr "Documents" - -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" -msgstr "Revues et Patchs" - -#: IDF/Views/Project.php:142 -msgid "This table shows the project updates." -msgstr "Ce tableau montre les mises à jour du projet." - -#: IDF/Views/Project.php:153 -msgid "Change" -msgstr "Changement" - -#: IDF/Views/Project.php:157 -msgid "No changes were found." -msgstr "Aucun changement trouvé." - -#: IDF/Views/Project.php:248 -#, php-format -msgid "%s Project Summary" -msgstr "Résumé du projet %s" - -#: IDF/Views/Project.php:256 IDF/Views/Admin.php:101 -msgid "The project has been updated." -msgstr "Le projet a été mis à jour." - -#: IDF/Views/Project.php:283 -#, php-format -msgid "%s Issue Tracking Configuration" -msgstr "Configuration du gestionnaire de tickets de %s" - -#: IDF/Views/Project.php:292 -msgid "The issue tracking configuration has been saved." -msgstr "La configuration du gestionnaire de tickets a été sauvegardée." - -#: IDF/Views/Project.php:328 -#, php-format -msgid "%s Downloads Configuration" -msgstr "Configuration des Téléchargements de %s" - -#: IDF/Views/Project.php:337 -msgid "The downloads configuration has been saved." -msgstr "La configuration des téléchargements a été sauvegardée." - -#: IDF/Views/Project.php:371 -#, php-format -msgid "%s Documentation Configuration" -msgstr "Configuration de la documentation de %s" - -#: IDF/Views/Project.php:380 -msgid "The documentation configuration has been saved." -msgstr "La configuration de la documentation a été sauvegardée." - -#: IDF/Views/Project.php:414 -#, php-format -msgid "%s Project Members" -msgstr "Membres du projet %s" - -#: IDF/Views/Project.php:423 -msgid "The project membership has been saved." -msgstr "Les membres du projet ont été sauvegardés." - -#: IDF/Views/Project.php:446 -#, php-format -msgid "%s Tabs Access Rights" -msgstr "Accès aux onglets de %s" - -#: IDF/Views/Project.php:460 -msgid "The project tabs access rights have been saved." -msgstr "Les droits d'accès aux onglets du projet ont été sauvegardés." - -#: IDF/Views/Project.php:506 -#, php-format -msgid "%s Source" -msgstr "Source de %s" - -#: IDF/Views/Project.php:520 -msgid "The project source configuration has been saved." -msgstr "La configuration du dépôt a été sauvegardée." - -#: IDF/Views/Project.php:540 IDF/Form/Admin/ProjectCreate.php:38 -msgid "git" -msgstr "git" - -#: IDF/Views/Project.php:541 IDF/Form/Admin/ProjectCreate.php:39 -msgid "Subversion" -msgstr "Subversion" - -#: IDF/Views/Project.php:542 IDF/Form/Admin/ProjectCreate.php:40 -msgid "mercurial" -msgstr "mercurial" - -#: IDF/Views/Project.php:543 IDF/Form/Admin/ProjectCreate.php:41 -msgid "monotone" -msgstr "monotone" - -#: IDF/Views/Issue.php:41 -#, php-format -msgid "%s Open Issues" -msgstr "Tickets ouverts de %s" - -#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:288 IDF/Views/User.php:75 -msgid "This table shows the open issues." -msgstr "Ce tableau montre les tickets ouverts." - -#: IDF/Views/Issue.php:61 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/User.php:81 IDF/Views/Review.php:57 -msgid "Id" -msgstr "Id" - -#: IDF/Views/Issue.php:63 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/User.php:84 IDF/Views/Review.php:59 -#: IDF/Form/ReviewCreate.php:103 IDF/Form/IssueUpdate.php:88 -#: IDF/Form/IssueCreate.php:95 IDF/Form/ReviewFileComment.php:81 -msgid "Status" -msgstr "Statut" - -#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:142 IDF/Views/Issue.php:224 -#: IDF/Views/Issue.php:299 IDF/Views/Issue.php:386 IDF/Views/Issue.php:565 -#: IDF/Views/Issue.php:624 IDF/Views/User.php:85 IDF/Views/Review.php:60 -msgid "Last Updated" -msgstr "Dernière mise à jour" - -#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:146 IDF/Views/Issue.php:228 -#: IDF/Views/Issue.php:303 IDF/Views/Issue.php:390 IDF/Views/Issue.php:569 -#: IDF/Views/Issue.php:628 -msgid "No issues were found." -msgstr "Aucun ticket n'a été trouvé." - -#: IDF/Views/Issue.php:113 -#, php-format -msgid "Watch List: Closed Issues for %s" -msgstr "Liste de surveillance : Tickets fermés de %s" - -#: IDF/Views/Issue.php:114 -#, php-format -msgid "This table shows the closed issues in your watch list for %s project." -msgstr "" -"Ce tableau montre les tickets fermés dans votre liste de surveillance pour " -"le projet %s." - -#: IDF/Views/Issue.php:119 -#, php-format -msgid "Watch List: Open Issues for %s" -msgstr "Liste de surveillance : Tickets ouverts pour %s" - -#: IDF/Views/Issue.php:120 -#, php-format -msgid "This table shows the open issues in your watch list for %s project." -msgstr "" -"Ce tableau montre les tickets ouverts dans votre liste de surveillance pour " -"le projet %s." - -#: IDF/Views/Issue.php:196 -msgid "Watch List: Closed Issues" -msgstr "Liste de surveillance : Tickets fermés" - -#: IDF/Views/Issue.php:197 -msgid "This table shows the closed issues in your watch list." -msgstr "Ce tableau montre les tickets fermés dans votre liste de surveillance." - -#: IDF/Views/Issue.php:202 -msgid "Watch List: Open Issues" -msgstr "Liste de surveillance : Tickets ouverts" - -#: IDF/Views/Issue.php:203 -msgid "This table shows the open issues in your watch list." -msgstr "" -"Ce tableau montre les tickets ouverts dans votre liste de surveillance." - -#: IDF/Views/Issue.php:222 IDF/Views/User.php:82 -msgid "Project" -msgstr "Projet" - -#: IDF/Views/Issue.php:255 -#, php-format -msgid "My Submitted %s Issues" -msgstr "Mes tickets soumis pour %s" - -#: IDF/Views/Issue.php:259 -#, php-format -msgid "My Closed Submitted %s Issues" -msgstr "Mes tickets soumis et fermés pour %s" - -#: IDF/Views/Issue.php:263 -#, php-format -msgid "My Closed Working %s Issues" -msgstr "Mes tickets fermés pour %s" - -#: IDF/Views/Issue.php:267 -#, php-format -msgid "My Working %s Issues" -msgstr "Mes tickets en cours pour %s" - -#: IDF/Views/Issue.php:322 -msgid "Submit a new issue" -msgstr "Soumettre un nouveau ticket" - -#: IDF/Views/Issue.php:338 -#, php-format -msgid "Issue %d has been created." -msgstr "Le ticket %d a été créé." - -#: IDF/Views/Issue.php:367 -#, php-format -msgid "Search Issues - %s" -msgstr "Recherche de tickets - %s" - -#: IDF/Views/Issue.php:379 -msgid "This table shows the found issues." -msgstr "Ce tableau montre les tickets trouvés." - -#: IDF/Views/Issue.php:409 -#, php-format -msgid "Issue %d: %s" -msgstr "Ticket %d : %s" - -#: IDF/Views/Issue.php:433 -#, php-format -msgid "Issue %d has been updated." -msgstr "Le ticket %d a été mis à jour." - -#: IDF/Views/Issue.php:522 -#, php-format -msgid "View %s" -msgstr "Voir %s" - -#: IDF/Views/Issue.php:542 -#, php-format -msgid "%s Closed Issues" -msgstr "Tickets fermés de %s" - -#: IDF/Views/Issue.php:552 -msgid "This table shows the closed issues." -msgstr "Ce tableau montre les tickets fermés." - -#: IDF/Views/Issue.php:595 -#, php-format -msgid "%1$s Issues with Label %2$s" -msgstr "%1$s tickets avec l'étiquette %2$s" - -#: IDF/Views/Issue.php:598 -#, php-format -msgid "%1$s Closed Issues with Label %2$s" -msgstr "Tickets fermés de %1$s avec l'étiquette %2$s" - -#: IDF/Views/Issue.php:611 -#, php-format -msgid "This table shows the issues with label %s." -msgstr "Ce tableau montre les tickets avec l'étiquette %s." - -#: IDF/Views/Issue.php:661 -msgid "The issue has been removed from your watch list." -msgstr "Le ticket a été supprimé de votre liste de surveillance." - -#: IDF/Views/Issue.php:664 -msgid "The issue has been added to your watch list." -msgstr "Le ticket a été ajouté à votre liste de surveillance." - -#: IDF/Views/Issue.php:753 -msgid "On your watch list." -msgstr "Dans votre liste de surveillance." - -#: IDF/Views/User.php:59 -msgid "Your Dashboard - Working Issues" -msgstr "Votre dashboard - Tickets en cours" - -#: IDF/Views/User.php:62 -msgid "Your Dashboard - Submitted Issues" -msgstr "Votre dashboard - Tickets soumis" - -#: IDF/Views/User.php:89 -msgid "No issues are assigned to you, yeah!" -msgstr "Aucun ticket en cours pour vous, yeah !" - -#: IDF/Views/User.php:89 -msgid "All the issues you submitted are fixed, yeah!" -msgstr "Tous les tickets que vous avez soumis ont été fixés, yeah !" - -#: IDF/Views/User.php:121 -msgid "Your personal information has been updated." -msgstr "Vos informations personnelles ont été mises à jour." - -#: IDF/Views/User.php:132 -msgid "Your Account" -msgstr "Votre compte" - -#: IDF/Views/User.php:155 -msgid "The public key has been deleted." -msgstr "La clef clef publique a été supprimée." - -#: IDF/Views/User.php:178 -msgid "Confirm The Email Change" -msgstr "Confirmez le changement d'adresse" - -#: IDF/Views/User.php:203 -#, php-format -msgid "Your new email address \"%s\" has been validated. Thank you!" -msgstr "Votre nouvelle adresse email \"%s\" a été validée. Merci !" - -#: IDF/Views/Review.php:41 -#, php-format -msgid "%s Code Reviews" -msgstr "Revues de code de %s" - -#: IDF/Views/Review.php:48 -msgid "This table shows the latest reviews." -msgstr "Ce tableau montre les dernières revues de code." - -#: IDF/Views/Review.php:64 -msgid "No reviews were found." -msgstr "Aucune revue de code trouvée." - -#: IDF/Views/Review.php:94 -#, php-format -msgid "The code review %d has been created." -msgstr "La revue de code %d a été créée." - -#: IDF/Views/Review.php:140 -#, php-format -msgid "Review %d: %s" -msgstr "Revue de code %d : %s" - -#: IDF/Views/Review.php:160 -#, php-format -msgid "Your code review %d has been published." -msgstr "Votre revue de code %d a été publiée." +msgid "New download - %s (%s)" +msgstr "Nouveau téléchargement - %s (%s)" #: IDF/Views/Admin.php:60 msgid "This table shows the projects in the forge." @@ -3644,11 +4165,6 @@ msgstr "Ce tableau montre les projets de la forge." msgid "Short Name" msgstr "Nom court" -#: IDF/Views/Admin.php:66 IDF/Views/Admin.php:210 -#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 -msgid "Name" -msgstr "Nom" - #: IDF/Views/Admin.php:67 msgid "Repository Size" msgstr "Taille du dépôt" @@ -3657,6 +4173,15 @@ msgstr "Taille du dépôt" msgid "No projects were found." msgstr "Aucun projet n'a été trouvé." +#: IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:312 +#, php-format +msgid "Update %s" +msgstr "Mise à jour de %s" + +#: IDF/Views/Admin.php:101 IDF/Views/Project.php:256 +msgid "The project has been updated." +msgstr "Le projet a été mis à jour." + #: IDF/Views/Admin.php:134 msgid "The project has been created." msgstr "Le projet a été créé." @@ -3682,18 +4207,10 @@ msgstr "Ce tableau montre les utilisateurs de la forge." msgid "login" msgstr "identifiant" -#: IDF/Views/Admin.php:211 IDF/Form/Admin/UserUpdate.php:161 -msgid "Staff" -msgstr "Staff" - #: IDF/Views/Admin.php:212 msgid "Admin" msgstr "Admin" -#: IDF/Views/Admin.php:213 IDF/Form/Admin/UserUpdate.php:172 -msgid "Active" -msgstr "Actif" - #: IDF/Views/Admin.php:214 msgid "Last Login" msgstr "Dernier login" @@ -3768,785 +4285,537 @@ msgstr "Oui" msgid "No" msgstr "Non" -#: 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" +#: IDF/Views/Download.php:45 +#, php-format +msgid "%s Downloads" +msgstr "Téléchargements de %s" + +#: IDF/Views/Download.php:51 +msgid "This table shows the files to download." +msgstr "Ce tableau présente la liste des fichiers en téléchargement." + +#: IDF/Views/Download.php:67 IDF/Views/Download.php:295 +msgid "Uploaded" +msgstr "Mis en ligne" + +#: IDF/Views/Download.php:71 IDF/Views/Download.php:299 +msgid "No downloads were found." +msgstr "Aucun fichier n'a été trouvé." + +#: IDF/Views/Download.php:94 +#, php-format +msgid "Download %s" +msgstr "Télécharger %s" + +#: IDF/Views/Download.php:111 +#, php-format +msgid "The file %2$s has been updated." +msgstr "Le fichier %2$s a été mis à jour." + +#: IDF/Views/Download.php:144 +#, php-format +msgid "Delete Download %s" +msgstr "Supprimer le fichier %s" + +#: IDF/Views/Download.php:177 +msgid "The file has been deleted." +msgstr "Le fichier a été supprimé." + +#: IDF/Views/Download.php:223 +#, php-format +msgid "The file has been uploaded." +msgstr "Le fichier a été mis en ligne." + +#: IDF/Views/Download.php:277 +#, php-format +msgid "%1$s Downloads with Label %2$s" +msgstr "Téléchargements avec l'étiquette %2$s de %1$s" + +#: IDF/Views/Download.php:287 +#, php-format +msgid "This table shows the downloads with label %s." +msgstr "Ce tableau montre les téléchargements avec l'étiquette %s." + +#: IDF/Views/Issue.php:41 +#, php-format +msgid "%s Open Issues" +msgstr "Tickets ouverts de %s" + +#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:287 IDF/Views/User.php:75 +msgid "This table shows the open issues." +msgstr "Ce tableau montre les tickets ouverts." + +#: 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 +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 +msgid "Last Updated" +msgstr "Dernière mise à jour" + +#: 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 +msgid "No issues were found." +msgstr "Aucun ticket n'a été trouvé." + +#: IDF/Views/Issue.php:112 +#, php-format +msgid "Watch List: Closed Issues for %s" +msgstr "Liste de surveillance : Tickets fermés de %s" + +#: IDF/Views/Issue.php:113 +#, php-format +msgid "This table shows the closed issues in your watch list for %s project." msgstr "" -"# Introduction\n" -"\n" -"Ajoutez votre contenu ici.\n" -"\n" -"\n" -"# Détails\n" -"\n" -"Ajoutez votre contenu ici. Vous pouvez avoir :\n" -"\n" -"* du texte en **gras** ou *italique* ;\n" -"* des titres, paragraphes ou listes ;\n" -"* des liens vers d'autres [[PageDeDocumentation]].\n" +"Ce tableau montre les tickets fermés dans votre liste de surveillance pour " +"le projet %s." -#: IDF/Form/WikiCreate.php:57 -msgid "PageName" -msgstr "NomDeLaPage" +#: IDF/Views/Issue.php:118 +#, php-format +msgid "Watch List: Open Issues for %s" +msgstr "Liste de surveillance : Tickets ouverts pour %s" -#: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50 -msgid "Page title" +#: IDF/Views/Issue.php:119 +#, php-format +msgid "This table shows the open issues in your watch list for %s project." +msgstr "" +"Ce tableau montre les tickets ouverts dans votre liste de surveillance pour " +"le projet %s." + +#: IDF/Views/Issue.php:195 +msgid "Watch List: Closed Issues" +msgstr "Liste de surveillance : Tickets fermés" + +#: IDF/Views/Issue.php:196 +msgid "This table shows the closed issues in your watch list." +msgstr "Ce tableau montre les tickets fermés dans votre liste de surveillance." + +#: IDF/Views/Issue.php:201 +msgid "Watch List: Open Issues" +msgstr "Liste de surveillance : Tickets ouverts" + +#: IDF/Views/Issue.php:202 +msgid "This table shows the open issues in your watch list." +msgstr "" +"Ce tableau montre les tickets ouverts dans votre liste de surveillance." + +#: IDF/Views/Issue.php:221 IDF/Views/User.php:82 +msgid "Project" +msgstr "Projet" + +#: IDF/Views/Issue.php:254 +#, php-format +msgid "My Submitted %s Issues" +msgstr "Mes tickets soumis pour %s" + +#: IDF/Views/Issue.php:258 +#, php-format +msgid "My Closed Submitted %s Issues" +msgstr "Mes tickets soumis et fermés pour %s" + +#: IDF/Views/Issue.php:262 +#, php-format +msgid "My Closed Working %s Issues" +msgstr "Mes tickets fermés pour %s" + +#: IDF/Views/Issue.php:266 +#, php-format +msgid "My Working %s Issues" +msgstr "Mes tickets en cours pour %s" + +#: IDF/Views/Issue.php:321 +msgid "Submit a new issue" +msgstr "Soumettre un nouveau ticket" + +#: IDF/Views/Issue.php:337 +#, php-format +msgid "Issue %d has been created." +msgstr "Le ticket %d a été créé." + +#: IDF/Views/Issue.php:366 +#, php-format +msgid "Search Issues - %s" +msgstr "Recherche de tickets - %s" + +#: IDF/Views/Issue.php:378 +msgid "This table shows the found issues." +msgstr "Ce tableau montre les tickets trouvés." + +#: IDF/Views/Issue.php:408 +#, php-format +msgid "Issue %d: %s" +msgstr "Ticket %d : %s" + +#: IDF/Views/Issue.php:432 +#, php-format +msgid "Issue %d has been updated." +msgstr "Le ticket %d a été mis à jour." + +#: IDF/Views/Issue.php:521 +#, php-format +msgid "View %s" +msgstr "Voir %s" + +#: IDF/Views/Issue.php:541 +#, php-format +msgid "%s Closed Issues" +msgstr "Tickets fermés de %s" + +#: IDF/Views/Issue.php:551 +msgid "This table shows the closed issues." +msgstr "Ce tableau montre les tickets fermés." + +#: IDF/Views/Issue.php:594 +#, php-format +msgid "%1$s Issues with Label %2$s" +msgstr "%1$s tickets avec l'étiquette %2$s" + +#: IDF/Views/Issue.php:597 +#, php-format +msgid "%1$s Closed Issues with Label %2$s" +msgstr "Tickets fermés de %1$s avec l'étiquette %2$s" + +#: IDF/Views/Issue.php:610 +#, php-format +msgid "This table shows the issues with label %s." +msgstr "Ce tableau montre les tickets avec l'étiquette %s." + +#: IDF/Views/Issue.php:660 +msgid "The issue has been removed from your watch list." +msgstr "Le ticket a été supprimé de votre liste de surveillance." + +#: IDF/Views/Issue.php:663 +msgid "The issue has been added to your watch list." +msgstr "Le ticket a été ajouté à votre liste de surveillance." + +#: IDF/Views/Issue.php:752 +msgid "On your watch list." +msgstr "Dans votre liste de surveillance." + +#: IDF/Views/Project.php:72 +msgid "All Updates" +msgstr "Mises à jour" + +#: IDF/Views/Project.php:74 +msgid "Issues and Comments" +msgstr "Tickets et commentaires" + +#: IDF/Views/Project.php:76 +msgid "Documents" +msgstr "Documents" + +#: IDF/Views/Project.php:77 +msgid "Reviews and Patches" +msgstr "Revues et Patchs" + +#: IDF/Views/Project.php:142 +msgid "This table shows the project updates." +msgstr "Ce tableau montre les mises à jour du projet." + +#: IDF/Views/Project.php:153 +msgid "Change" +msgstr "Changement" + +#: IDF/Views/Project.php:157 +msgid "No changes were found." +msgstr "Aucun changement trouvé." + +#: IDF/Views/Project.php:248 +#, php-format +msgid "%s Project Summary" +msgstr "Résumé du projet %s" + +#: IDF/Views/Project.php:283 +#, php-format +msgid "%s Issue Tracking Configuration" +msgstr "Configuration du gestionnaire de tickets de %s" + +#: IDF/Views/Project.php:292 +msgid "The issue tracking configuration has been saved." +msgstr "La configuration du gestionnaire de tickets a été sauvegardée." + +#: IDF/Views/Project.php:328 +#, php-format +msgid "%s Downloads Configuration" +msgstr "Configuration des Téléchargements de %s" + +#: IDF/Views/Project.php:337 +msgid "The downloads configuration has been saved." +msgstr "La configuration des téléchargements a été sauvegardée." + +#: IDF/Views/Project.php:371 +#, php-format +msgid "%s Documentation Configuration" +msgstr "Configuration de la documentation de %s" + +#: IDF/Views/Project.php:380 +msgid "The documentation configuration has been saved." +msgstr "La configuration de la documentation a été sauvegardée." + +#: IDF/Views/Project.php:414 +#, php-format +msgid "%s Project Members" +msgstr "Membres du projet %s" + +#: IDF/Views/Project.php:423 +msgid "The project membership has been saved." +msgstr "Les membres du projet ont été sauvegardés." + +#: IDF/Views/Project.php:446 +#, php-format +msgid "%s Tabs Access Rights" +msgstr "Accès aux onglets de %s" + +#: IDF/Views/Project.php:460 +msgid "The project tabs access rights have been saved." +msgstr "Les droits d'accès aux onglets du projet ont été sauvegardés." + +#: IDF/Views/Project.php:506 +#, php-format +msgid "%s Source" +msgstr "Source de %s" + +#: IDF/Views/Project.php:520 +msgid "The project source configuration has been saved." +msgstr "La configuration du dépôt a été sauvegardée." + +#: IDF/Views/Review.php:41 +#, php-format +msgid "%s Code Reviews" +msgstr "Revues de code de %s" + +#: IDF/Views/Review.php:48 +msgid "This table shows the latest reviews." +msgstr "Ce tableau montre les dernières revues de code." + +#: IDF/Views/Review.php:64 +msgid "No reviews were found." +msgstr "Aucune revue de code trouvée." + +#: IDF/Views/Review.php:94 +#, php-format +msgid "The code review %d has been created." +msgstr "La revue de code %d a été créée." + +#: IDF/Views/Review.php:140 +#, php-format +msgid "Review %d: %s" +msgstr "Revue de code %d : %s" + +#: IDF/Views/Review.php:160 +#, php-format +msgid "Your code review %d has been published." +msgstr "Votre revue de code %d a été publiée." + +#: IDF/Views/Source.php:40 +#, php-format +msgid "%s Source Help" +msgstr "Aide des sources de %s" + +#: IDF/Views/Source.php:58 +#, php-format +msgid "%s Invalid Revision" +msgstr "%s Révision invalide" + +#: IDF/Views/Source.php:81 +#, php-format +msgid "%s Ambiguous Revision" +msgstr "%s Révision ambiguë " + +#: IDF/Views/Source.php:106 +#, php-format +msgid "%1$s %2$s Change Log" +msgstr "Changements %2$s de %1$s" + +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#, php-format +msgid "%1$s %2$s Source Tree" +msgstr "Arbre des sources %2$s de %1$s" + +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" +msgstr "Détails d'un commit de %s" + +#: IDF/Views/Source.php:304 +#, php-format +msgid "%s Commit Details - %s" +msgstr "Détails d'un commit de %s - %s" + +#: IDF/Views/User.php:59 +msgid "Your Dashboard - Working Issues" +msgstr "Votre dashboard - Tickets en cours" + +#: IDF/Views/User.php:62 +msgid "Your Dashboard - Submitted Issues" +msgstr "Votre dashboard - Tickets soumis" + +#: IDF/Views/User.php:89 +msgid "No issues are assigned to you, yeah!" +msgstr "Aucun ticket en cours pour vous, yeah !" + +#: IDF/Views/User.php:89 +msgid "All the issues you submitted are fixed, yeah!" +msgstr "Tous les tickets que vous avez soumis ont été fixés, yeah !" + +#: IDF/Views/User.php:121 +msgid "Your personal information has been updated." +msgstr "Vos informations personnelles ont été mises à jour." + +#: IDF/Views/User.php:132 +msgid "Your Account" +msgstr "Votre compte" + +#: IDF/Views/User.php:155 +msgid "The public key has been deleted." +msgstr "La clef clef publique a été supprimée." + +#: IDF/Views/User.php:178 +msgid "Confirm The Email Change" +msgstr "Confirmez le changement d'adresse" + +#: IDF/Views/User.php:203 +#, php-format +msgid "Your new email address \"%s\" has been validated. Thank you!" +msgstr "Votre nouvelle adresse email \"%s\" a été validée. Merci !" + +#: IDF/Views/Wiki.php:41 +#, php-format +msgid "%s Documentation" +msgstr "Documentation de %s" + +#: IDF/Views/Wiki.php:48 +msgid "This table shows the documentation pages." +msgstr "Ce tableau liste les pages de documentation." + +#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:106 IDF/Views/Wiki.php:147 +msgid "Page Title" msgstr "Titre" -#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56 -msgid "" -"The page name must contains only letters, digits and the dash (-) character." -msgstr "" -"Le nom de la page ne doit contenir que des lettres, chiffres et le tiret (-)." +#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149 +msgid "Updated" +msgstr "Mise à jour" -#: IDF/Form/WikiCreate.php:70 IDF/Form/Upload.php:49 -#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/ReviewCreate.php:54 -#: IDF/Form/UserAccount.php:99 IDF/Form/IssueCreate.php:62 -#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 -msgid "Description" -msgstr "Description" +#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:153 +msgid "No documentation pages were found." +msgstr "Aucune page de documentation n'a été trouvée." -#: IDF/Form/WikiCreate.php:71 IDF/Form/WikiUpdate.php:61 -msgid "This one line description is displayed in the list of pages." -msgstr "Cette description est affichée dans la liste des pages." - -#: IDF/Form/WikiCreate.php:80 IDF/Form/WikiUpdate.php:72 -msgid "Content" -msgstr "Contenu" - -#: IDF/Form/WikiCreate.php:93 IDF/Form/Upload.php:70 -#: IDF/Form/IssueUpdate.php:117 IDF/Form/IssueCreate.php:150 -#: IDF/Form/WikiUpdate.php:104 IDF/Form/UpdateUpload.php:71 -msgid "Labels" -msgstr "Étiquettes" - -#: IDF/Form/WikiCreate.php:108 IDF/Form/WikiUpdate.php:119 -msgid "The title contains invalid characters." -msgstr "Le titre contient des caractères non valides." - -#: IDF/Form/WikiCreate.php:114 IDF/Form/WikiUpdate.php:125 -msgid "A page with this title already exists." -msgstr "Une page avec ce titre existe déjà." - -#: IDF/Form/WikiCreate.php:150 IDF/Form/WikiUpdate.php:161 +#: IDF/Views/Wiki.php:90 #, php-format -msgid "You cannot provide more than label from the %s class to a page." -msgstr "" -"Vous ne pouvez pas fournir plus d'une étiquette de la classe %s à une page." +msgid "Documentation Search - %s" +msgstr "Recherche dans la documentation - %s" -#: IDF/Form/WikiCreate.php:151 IDF/Form/Upload.php:120 -#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 -#: IDF/Form/WikiUpdate.php:162 IDF/Form/UpdateUpload.php:110 -msgid "You provided an invalid label." -msgstr "Vous avez donné une étiquette invalide." +#: IDF/Views/Wiki.php:101 +msgid "This table shows the pages found." +msgstr "Ce tableau montre les pages trouvées." -#: IDF/Form/WikiCreate.php:167 IDF/Form/Upload.php:148 -#: IDF/Form/Admin/UserCreate.php:106 IDF/Form/Admin/ProjectCreate.php:279 -#: IDF/Form/Admin/ProjectDelete.php:78 IDF/Form/Admin/UserUpdate.php:191 -#: IDF/Form/Admin/ProjectUpdate.php:121 IDF/Form/Password.php:76 -#: IDF/Form/ReviewCreate.php:187 IDF/Form/Register.php:114 -#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 -#: IDF/Form/UserAccount.php:178 IDF/Form/IssueCreate.php:263 -#: IDF/Form/MembersConf.php:64 IDF/Form/WikiUpdate.php:178 -#: IDF/Form/UpdateUpload.php:126 IDF/Form/TabsConf.php:98 -#: IDF/Form/UserChangeEmail.php:80 IDF/Form/ReviewFileComment.php:125 -msgid "Cannot save the model from an invalid form." -msgstr "Ne peut pas sauvegarder le modèle depuis un formulaire invalide." +#: IDF/Views/Wiki.php:112 +msgid "No pages were found." +msgstr "Aucune page trouvée." -#: IDF/Form/WikiCreate.php:200 -msgid "Initial page creation" -msgstr "Création de la page" - -#: IDF/Form/Upload.php:86 IDF/Form/Admin/UserUpdate.php:301 -#: IDF/Form/UserAccount.php:367 -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/Upload.php:119 IDF/Form/IssueCreate.php:199 -#: IDF/Form/UpdateUpload.php:109 +#: IDF/Views/Wiki.php:131 #, 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." +msgid "%1$s Documentation Pages with Label %2$s" +msgstr "Documentation de %1$s avec l'étiquette %2$s" -#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 -#: IDF/Form/UserAccount.php:40 IDF/Form/RegisterConfirmation.php:50 -msgid "First name" -msgstr "Prénom" - -#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 -#: IDF/Form/UserAccount.php:49 IDF/Form/RegisterConfirmation.php:59 -msgid "Last name" -msgstr "Nom de famille" - -#: IDF/Form/Admin/UserCreate.php:56 -msgid "Login" -msgstr "Identifiant" - -#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 -msgid "" -"The login must be between 3 and 15 characters long and contains only letters " -"and digits." -msgstr "" -"L'identifiant doit avoir entre 3 et 15 caractères et ne doit contenir que " -"des lettres et des chiffres." - -#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 -msgid "Email" -msgstr "Email" - -#: IDF/Form/Admin/UserCreate.php:71 -msgid "" -"Double check the email address as the password is directly sent to the user." -msgstr "" -"Vérifiez particulièrement l'adresse email car le mot de passe est " -"directement envoyé à l'utilisateur." - -#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 -#: IDF/Form/UserAccount.php:66 -msgid "Language" -msgstr "Langage" - -#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:159 -msgid "Add a public key" -msgstr "Ajouter une clef publique" - -#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:164 -msgid "" -"Paste a SSH or monotone public key. Be careful to not provide your private " -"key here!" -msgstr "" -"Copiez une clef publique SSH ou monotone. Faites bien attention à ne pas y " -"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:400 +#: IDF/Views/Wiki.php:141 #, php-format -msgid "The email \"%s\" is already used." -msgstr "L'adresse email \"%s\" est déjà utilisée." +msgid "This table shows the documentation pages with label %s." +msgstr "Ce tableau liste les pages de documentation avec le label %s." -#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 +#: IDF/Views/Wiki.php:186 #, php-format -msgid "The login \"%s\" can only contain letters and digits." -msgstr "L'identifiant \"%s\" ne doit contenir que des lettres et des chiffres." +msgid "The page %s has been created." +msgstr "La page %s a été créée." -#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 +#: IDF/Views/Wiki.php:273 +msgid "The old revision has been deleted." +msgstr "La vieille version a été supprimée." + +#: IDF/Views/Wiki.php:279 #, php-format -msgid "The login \"%s\" is already used, please find another one." -msgstr "L'identifiant \"%s\" est déjà utilisé, merci d'en choisir un autre." +msgid "Delete Old Revision of %s" +msgstr "Suppression de la vieille version de %s" -#: IDF/Form/Admin/ProjectCreate.php:62 -msgid "Shortname" -msgstr "Nom court" - -#: IDF/Form/Admin/ProjectCreate.php:64 -msgid "" -"It must be unique for each project and composed only of letters, digits and " -"dash (-) like \"my-project\"." -msgstr "" -"Il doit être unique pour chaque projet et ne doit contenir que des lettres, " -"des chiffres et le tiret (-) comme \"mon-projet\"." - -#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 -msgid "Short description" -msgstr "Petite description" - -#: IDF/Form/Admin/ProjectCreate.php:77 -msgid "Repository type" -msgstr "Type de dépôt" - -#: IDF/Form/Admin/ProjectCreate.php:85 -msgid "Remote Subversion repository" -msgstr "Dépôt Subversion distant" - -#: IDF/Form/Admin/ProjectCreate.php:92 IDF/Form/SourceConf.php:40 -msgid "Repository username" -msgstr "Identifiant d'accès" - -#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:47 -msgid "Repository password" -msgstr "Mot de passe du dépôt" - -#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/Admin/ProjectUpdate.php:59 -msgid "Master branch" -msgstr "Branche principale" - -#: 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 "" -"Cela doit être une identifiant unique sur la planète entière. Une notation " -"DNS inverse comme \"com.my-domain.my-project\" est une bonne idée. " - -#: 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 "Propriétaires du projet" - -#: 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 "Membres du projet" - -#: IDF/Form/Admin/ProjectCreate.php:136 -msgid "Project template" -msgstr "Gabarit de projet" - -#: 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 "" -"Utiliser le projet fourni pour démarrer le nouveau projet. Les droits " -"d'accès et la configuration générale seront extraits du projet gabarit." - -#: IDF/Form/Admin/ProjectCreate.php:185 -msgid "" -"Only a remote repository available throught http or https are allowed. For " -"example \"http://somewhere.com/svn/trunk\"." -msgstr "" -"Only a remote repository available throught http or https are allowed. For " -"example \"http://somewhere.com/svn/trunk\"." - -#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 -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 " -"(.)." - -#: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101 -msgid "This master branch is already used. Please select another one." -msgstr "" -"Cette branche principale est déjà utilisée. Veuillez en sélectionner une " -"autre." - -#: IDF/Form/Admin/ProjectCreate.php:222 -msgid "" -"This shortname contains illegal characters, please use only letters, digits " -"and dash (-)." -msgstr "" -"Ce nom court contient des caractères non autorisés, il ne doit être composé " -"que de lettres, de chiffres et du tiret (-)." - -#: IDF/Form/Admin/ProjectCreate.php:225 -msgid "The shortname cannot start with the dash (-) character." -msgstr "Le nom court ne doit pas démarrer avec un tiret (-)." - -#: IDF/Form/Admin/ProjectCreate.php:228 -msgid "The shortname cannot end with the dash (-) character." -msgstr "Le nom court ne doit pas se terminer avec un tiret (-)." - -#: IDF/Form/Admin/ProjectCreate.php:233 -msgid "This shortname is already used. Please select another one." -msgstr "Ce nom court est déjà utilisé, veuillez en sélectionner un autre." - -#: IDF/Form/Admin/ProjectCreate.php:295 -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." - -#: IDF/Form/Admin/ProjectCreate.php:362 -msgid "This project is not available." -msgstr "Ce projet n'est pas disponible." - -#: IDF/Form/Admin/ProjectDelete.php:41 -msgid "Confirmation code" -msgstr "Code de confirmation" - -#: IDF/Form/Admin/ProjectDelete.php:46 -msgid "I have made a backup of all the important data of this project." -msgstr "" -"J'ai réalisé une copie de sauvegarde des informations importantes de ce " -"projet." - -#: IDF/Form/Admin/ProjectDelete.php:55 -msgid "" -"The confirmation code does not match. Please provide a valid confirmation " -"code to delete the project." -msgstr "" -"Le code de confirmation ne correspond pas. Merci de fournir un code de " -"confirmation valide pour supprimer ce projet." - -#: IDF/Form/Admin/ProjectDelete.php:63 -msgid "Sorry, you really need to backup your data before deletion." -msgstr "" -"Désolé, vous devez vraiment faire une copie de sauvegarde des informations " -"importantes de ce projet." - -#: IDF/Form/Admin/UserUpdate.php:78 -msgid "Password" -msgstr "Mot de passe" - -#: IDF/Form/Admin/UserUpdate.php:81 -msgid "Leave blank if you do not want to change the password." -msgstr "Laissez vide si vous ne voulez pas changer le mot de passe." - -#: IDF/Form/Admin/UserUpdate.php:81 -msgid "" -"The password must be hard for other people to find it, but easy for the user " -"to remember." -msgstr "" -"Le mot de passe doit être difficile à trouver pour d'autres personnes, mais " -"simple à retenir pour l'utilisateur." - -#: IDF/Form/Admin/UserUpdate.php:89 -msgid "Confirm password" -msgstr "Confirmation du mot de passe" - -#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:108 -msgid "Twitter username" -msgstr "Nom d'utilisateur twitter" - -#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:118 -msgid "Public email address" -msgstr "Adesse email publique" - -#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:128 -msgid "Website URL" -msgstr "URL de site web" - -#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:138 -msgid "Upload custom avatar" -msgstr "Télécharger un avatar personnel" - -#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:145 -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)." - -#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:150 -msgid "Remove custom avatar" -msgstr "Supprimer l'avatar" - -#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:154 -msgid "Tick this to delete the custom avatar." -msgstr "Cochez ici pour supprimer l'avatar" - -#: IDF/Form/Admin/UserUpdate.php:164 -msgid "If you give staff rights to a user, you really need to trust him." -msgstr "" -"Si vous donnez les droits de staff à un utilisateur, vous devez vraiment lui " -"faire confiance." - -#: 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 his account here." -msgstr "" -"Si l'utilisateur ne reçoit pas l'email de confirmation ou s'il abuse du " -"système, vous pouvez directement activer ou désactiver son compte ici." - -#: IDF/Form/Admin/UserUpdate.php:274 -msgid "--- is not a valid first name." -msgstr "--- n'est pas un prénom acceptable." - -#: IDF/Form/Admin/UserUpdate.php:290 -msgid "" -"A user with this email already exists, please provide another email address." -msgstr "" -"Un utilisateur avec cet email existe déjà, merci de fournir une autre " -"adresse email." - -#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:423 -msgid "The passwords do not match. Please give them again." -msgstr "" -"Les mots de passe ne sont pas identiques, veuillez les donner de nouveau." - -#: IDF/Form/Password.php:34 -msgid "Your login or email" -msgstr "Votre identifiant ou email" - -#: IDF/Form/Password.php:35 -msgid "Provide either your login or your email to recover your password." -msgstr "" -"Fournissez 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 "" -"Sorry, we cannot find a user with this email address or login. Feel free to " -"try again." -msgstr "" -"Désolé, mais nous n'avons pas trouvé d'utilisateur avec cette adresse email " -"ou cet identifiant. Vous pouvez essayer de nouveau." - -#: IDF/Form/Password.php:100 -msgid "Password Recovery - InDefero" -msgstr "Récupération de votre mot de passe - InDefero" - -#: IDF/Form/PasswordReset.php:39 IDF/Form/PasswordInputKey.php:36 -#: IDF/Form/UserChangeEmail.php:36 -msgid "Your verification key" -msgstr "Votre clef de vérification" - -#: IDF/Form/PasswordReset.php:45 IDF/Form/UserAccount.php:77 -#: IDF/Form/RegisterConfirmation.php:69 -msgid "Your password" -msgstr "Votre mot de passe" - -#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80 -#: IDF/Form/RegisterConfirmation.php:72 -msgid "" -"Your password must be hard for other people to find it, but easy for you to " -"remember." -msgstr "" -"Votre mot de passe doit être difficile à trouver pour d'autres personnes, " -"mais simple à retenir pour vous." - -#: IDF/Form/PasswordReset.php:56 IDF/Form/UserAccount.php:88 -#: IDF/Form/RegisterConfirmation.php:80 -msgid "Confirm your password" -msgstr "Confirmez votre mot de passe" - -#: IDF/Form/PasswordReset.php:74 IDF/Form/RegisterConfirmation.php:122 -msgid "The two passwords must be the same." -msgstr "Les deux mots de passe doivent être identiques." - -#: IDF/Form/PasswordReset.php:77 -msgid "" -"This account is not active. Please contact the forge administrator to " -"activate it." -msgstr "" -"Ce compte n'est pas actif. Veuillez contacter un administrateur de la forge " -"pour l'activer." - -#: IDF/Form/PasswordReset.php:89 IDF/Form/PasswordInputKey.php:50 -msgid "" -"We are sorry but this validation key is not valid. Maybe you should directly " -"copy/paste it from your validation email." -msgstr "" -"Nous sommes désolés mais cette clef de validation est invalide. Vous devriez " -"peut-être faire directement un copier/coller depuis votre email de " -"validation." - -#: IDF/Form/PasswordReset.php:100 IDF/Form/PasswordInputKey.php:61 -msgid "" -"Sorry, but this verification key has expired, please restart the password " -"recovery sequence. For security reasons, the verification key is only valid " -"24h." -msgstr "" -"Désolé mais votre clef de vérification a expiré, merci de recommencer la " -"procédure de récupération de votre mot de passe. Pour des raisons de " -"sécurité, la clef de vérification n'est valide que 24h." - -#: IDF/Form/PasswordReset.php:108 IDF/Form/PasswordInputKey.php:76 -#: IDF/Form/RegisterInputKey.php:72 IDF/Form/RegisterConfirmation.php:137 -msgid "Cannot save an invalid form." -msgstr "Ne peut pas sauvegarder un formulaire invalide." - -#: IDF/Form/ReviewCreate.php:83 IDF/Form/IssueUpdate.php:65 -#: IDF/Form/IssueCreate.php:72 -msgid "The \"upload_issue_path\" configuration variable was not set." -msgstr "" -"La variable de configuration \"upload_issue_path\" n'a pas été définie." - -#: IDF/Form/ReviewCreate.php:92 -msgid "Patch" -msgstr "Patch" - -#: IDF/Form/ReviewCreate.php:119 -msgid "We were not able to parse your patch. Please provide a valid patch." -msgstr "" -"Nous n'avons pas réussi à interpréter votre patch. Merci de fournir un patch " -"valid." - -#: IDF/Form/ReviewCreate.php:128 -msgid "You provided an invalid commit." -msgstr "Vous avez fourni un commit invalide." - -#: IDF/Form/ReviewCreate.php:159 IDF/Form/IssueCreate.php:233 -msgid "You provided an invalid status." -msgstr "Vous avez fourni un statut invalide." - -#: IDF/Form/ReviewCreate.php:202 -msgid "Initial patch to be reviewed." -msgstr "Patch initial à discuter." - -#: IDF/Form/Register.php:41 -msgid "Your login" -msgstr "Votre identifiant" - -#: IDF/Form/Register.php:53 -msgid "Your email" -msgstr "Votre email" - -#: IDF/Form/Register.php:55 -msgid "We will never send you any unsolicited emails. We hate spams too!" -msgstr "" -"Nous ne vous enverrons aucun message non sollicité. Comme vous, nous avons " -"ras le bol du spam." - -#: IDF/Form/Register.php:60 -msgid "I agree to the terms and conditions." -msgstr "J'accepte les conditions d'usage du service." - -#: IDF/Form/Register.php:88 -msgid "" -"We know, this is boring, but you need to agree with the terms and conditions." -msgstr "" -"Nous savons que c'est inintéressant, mais vous devez accepter les conditions " -"d'usage du service." - -#: IDF/Form/Register.php:99 +#: IDF/Views/Wiki.php:324 #, php-format -msgid "" -"The email \"%s\" is already used. If you need, click on the help link to " -"recover your password." -msgstr "" -"L'email \"%s\" est déjà utilisé. Si vous devez, vous pouvez récupérer votre " -"mot de passe via le lien d'aide." +msgid "The page %s has been updated." +msgstr "La page %s a été mise à jour." -#: IDF/Form/Register.php:150 -msgid "Confirm the creation of your account." -msgstr "Confirmez la création de votre compte." +#: IDF/Views/Wiki.php:362 +msgid "The documentation page has been deleted." +msgstr "La page de documentation a été supprimée." -#: IDF/Form/SourceConf.php:56 -msgid "Webhook URL" -msgstr "URL du Webhook" - -#: IDF/Form/SourceConf.php:58 +#: IDF/Views/Wiki.php:370 #, php-format -msgid "Learn more about the post-commit web hooks." -msgstr "En savoir plus à propos des Webhooks post-commit." +msgid "Delete Page %s" +msgstr "Suppprimer la page %s" -#: IDF/Form/IssueUpdate.php:55 IDF/Form/WikiUpdate.php:82 -#: IDF/Form/ReviewFileComment.php:45 -msgid "Comment" -msgstr "Commentaire" +#: IDF/Views.php:124 IDF/Views.php:150 +msgid "Confirm Your Account Creation" +msgstr "Confirmez la création de votre compte" -#: IDF/Form/IssueUpdate.php:75 IDF/Form/IssueCreate.php:82 -msgid "Attach a file" -msgstr "Attacher un fichier" - -#: IDF/Form/IssueUpdate.php:98 IDF/Form/IssueCreate.php:104 -msgid "Owner" -msgstr "Propriétaire" - -#: IDF/Form/IssueUpdate.php:147 IDF/Form/IssueCreate.php:210 -msgid "You need to provide a description of the issue." -msgstr "Vous devez fournir une description du problème." - -#: IDF/Form/IssueUpdate.php:219 -msgid "No changes were entered." -msgstr "Aucun changement n'a été entré." - -#: IDF/Form/WikiDelete.php:39 -msgid "Yes, I understand that the page and all its revisions will be deleted." +#: IDF/Views.php:170 +msgid "Welcome! You can now participate in the life of your project of choice." msgstr "" -"Oui, j'ai compris que la page ainsi que toutes les révisions vont être " -"supprimées." +"Bienvenue ! Vous pouvez maintenant prendre part à la vie du projet de votre " +"choix." -#: IDF/Form/WikiDelete.php:50 -msgid "You need to confirm the deletion." -msgstr "Vous devez confirmer la suppression." +#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 +msgid "Password Recovery" +msgstr "Récupération du mot de passe" -#: IDF/Form/UserAccount.php:59 -msgid "Your mail" -msgstr "Votre email" - -#: IDF/Form/UserAccount.php:61 +#: IDF/Views.php:240 msgid "" -"If you change your email address, an email will be sent to the new address " -"to confirm it." +"Welcome back! Next time, you can use your broswer options to remember the " +"password." msgstr "" -"Si vous changez votre adresse email, un email sera envoyé à la nouvelle " -"adresse pour confirmation." +"Re bienvenue ! La prochaine fois, vous pouvez utiliser les options de votre " +"navigateur pour qu'il se souvienne de votre mot de passe." -#: IDF/Form/UserAccount.php:80 -msgid "Leave blank if you do not want to change your password." -msgstr "Laissez vide si vous ne voulez pas changer votre mot de passe." +#: IDF/Views.php:282 +msgid "Here to Help You!" +msgstr "Ici pour vous aider !" -#: IDF/Form/UserAccount.php:207 -msgid "Confirm your new email address." -msgstr "Confirmez votre nouvelle adresse email." +#: IDF/Views.php:298 +msgid "InDefero API (Application Programming Interface)" +msgstr "API d'InDefero (Interface de Programmation de l'Application)" -#: IDF/Form/UserAccount.php:210 +#: IDF/WikiPage.php:62 +msgid "title" +msgstr "titre" + +#: 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 "" +"Le titre de la page ne doit contenir que des lettres, chiffres ou le tiret. " +"Par exemple : Ma-Page." + +#: IDF/WikiPage.php:71 +msgid "A one line description of the page content." +msgstr "Une petite description du contenu de la page." + +#: IDF/WikiPage.php:196 IDF/WikiRevision.php:167 #, php-format -msgid "" -"A validation email has been sent to \"%s\" to validate the email address " -"change." -msgstr "Un email a été envoyé à \"%s\" pour valider le changement d'adresse." +msgid "%2$s, %3$s" +msgstr "%2$s, %3$s" -#: IDF/Form/UserAccount.php:312 -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/WikiPage.php:198 +#, php-format +msgid "Creation of page %s, by %s" +msgstr "Création de la page %s, par %s" -#: IDF/Form/UserAccount.php:332 -msgid "" -"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:340 -msgid "Public key looks neither like a 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:352 -msgid "You already have uploaded this key." -msgstr "Vous avez déjà cette clef SSH dans votre trousseau." - -#: IDF/Form/RegisterInputKey.php:36 IDF/Form/RegisterConfirmation.php:40 -msgid "Your confirmation key" -msgstr "Votre clef de confirmation" - -#: IDF/Form/RegisterInputKey.php:50 IDF/Form/RegisterConfirmation.php:99 -msgid "" -"We are sorry but this confirmation key is not valid. Maybe you should " -"directly copy/paste it from your confirmation email." -msgstr "" -"Nous sommes désolés mais cette clef de confirmation est invalide. Vous " -"devriez peut-être faire directement un copier/coller depuis votre email de " -"confirmation." - -#: IDF/Form/IssueCreate.php:192 -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" -"\"." - -#: IDF/Form/IssueTrackingConf.php:80 -msgid "" -"Define an issue template to hint the reporter to provide certain information" -msgstr "" -"Définissez un ticket gabarit pour inciter le rapporteur à fournir certaines " -"informations" - -#: IDF/Form/IssueTrackingConf.php:89 -msgid "Open issue status values" -msgstr "Valeurs des statuts des tickets ouverts" - -#: IDF/Form/IssueTrackingConf.php:97 -msgid "Closed issue status values" -msgstr "Valeurs des statuts des tickets fermés" - -#: IDF/Form/IssueTrackingConf.php:106 -msgid "Predefined issue labels" -msgstr "Étiquettes prédéfinies des tickets" - -#: IDF/Form/IssueTrackingConf.php:108 -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. " - -#: IDF/Form/IssueTrackingConf.php:116 -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/WikiConf.php:49 -msgid "Predefined documentation page labels" -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" -msgstr "" -"Chaque page ne peut avoir qu'une seule étiquette pour chacune de ces classes" - -#: IDF/Form/MembersConf.php:104 -#, fuzzy, 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." - -#: IDF/Form/WikiUpdate.php:83 -msgid "One line to describe the changes you made." -msgstr "Une ligne pour décrire les changements que vous avez faits." - -#: IDF/Form/TabsConf.php:50 -msgid "Open to all" -msgstr "Ouvert à tous" - -#: IDF/Form/TabsConf.php:51 -msgid "Signed in users" -msgstr "Utilisateurs authentifiés" - -#: IDF/Form/TabsConf.php:54 -msgid "Closed" -msgstr "Fermé" - -#: IDF/Form/TabsConf.php:83 -msgid "Extra authorized users" -msgstr "Utilisateurs autorisés supplémentaires" - -#: IDF/Form/UserChangeEmail.php:63 -msgid "" -"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 " -"confirmation." - -#: IDF/Form/UploadConf.php:53 -msgid "Predefined download labels" -msgstr "Étiquettes prédéfinies des téléchargements" - -#: IDF/Form/UploadConf.php:62 -msgid "Each download may have at most one label with each of these classes" -msgstr "" -"Chaque téléchargement ne peut avoir qu'une seule étiquette pour chacune de " -"ces classes" - -#: IDF/Form/ReviewFileComment.php:56 -msgid "General comment" -msgstr "Commentaire général" - -#: IDF/Form/ReviewFileComment.php:102 -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:109 -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/RegisterConfirmation.php:110 -msgid "" -"This account has already been confirmed. Maybe should you try to recover " -"your password using the help link." -msgstr "" -"Ce compte a déjà été confirmé. Peut-être devez vous essayer de retrouver " -"votre mot de passe via le lien d'aide." - -#: IDF/Form/Field/EmailList.php:45 -msgid "Please enter one or more valid email addresses." -msgstr "Veuillez entrer une ou plusieurs adresse email valides." +#: IDF/WikiPage.php:208 +#, php-format +msgid "%s: Documentation page %s added - %s" +msgstr "%s: Page de documentation %s ajoutée - %s" #: IDF/WikiRevision.php:48 msgid "page" @@ -4560,11 +4829,6 @@ msgstr "Une petite description des changements faits." msgid "content" msgstr "contenu" -#: IDF/WikiRevision.php:167 IDF/WikiPage.php:196 -#, php-format -msgid "%2$s, %3$s" -msgstr "%2$s, %3$s" - #: IDF/WikiRevision.php:189 #, php-format msgid "Change of %s, by %s" @@ -4584,266 +4848,3 @@ msgstr "Nouvelle page de documentation %s - %s (%s)" #, php-format msgid "Documentation Page Changed %s - %s (%s)" msgstr "Changement de documentation %s - %s (%s)" - -#: IDF/Review/Patch.php:52 -msgid "review" -msgstr "revue de code" - -#: IDF/Review/Patch.php:67 -msgid "commit" -msgstr "commit" - -#: IDF/Review/Patch.php:80 IDF/Review/Comment.php:55 -msgid "patch" -msgstr "patch" - -#: IDF/Review/Patch.php:151 IDF/Review/Comment.php:139 -#, php-format -msgid "" -"Review %3$d, %4$s" -msgstr "" -"Revue %3$d, %4$s" - -#: IDF/Review/Patch.php:153 -#, php-format -msgid "Creation of review %d, by %s" -msgstr "Création de la revue %d, par %s" - -#: IDF/Review/Patch.php:163 -#, php-format -msgid "%s: Creation of Review %d - %s" -msgstr "%s: Création de la revue %d - %s" - -#: IDF/Review/Patch.php:204 -#, php-format -msgid "New Code Review %s - %s (%s)" -msgstr "Nouvelle revue de code %s - %s (%s)" - -#: IDF/Review/Comment.php:83 -msgid "vote" -msgstr "vote" - -#: IDF/Review/Comment.php:141 -#, php-format -msgid "Update of review %d, by %s" -msgstr "" -"Mise à jour de la revue %d, par %s" - -#: IDF/Review/Comment.php:151 -#, php-format -msgid "%s: Updated review %d - %s" -msgstr "%s: Revue mise à jour %d - %s" - -#: IDF/Review/Comment.php:216 -#, php-format -msgid "Updated Code Review %s - %s (%s)" -msgstr "Mise à jour de la revue de code %s - %s (%s)" - -#: IDF/Plugin/SyncSvn.php:81 IDF/Plugin/SyncMercurial.php:78 -#, php-format -msgid "The repository %s already exists." -msgstr "Le dépôt %s existe déjà." - -#: 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\" doit être défini dans votre fichier de configuration." - -#: 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\" n'existe pas ou vous ne disposez pas des droits pour " -"écrire dedans." - -#: IDF/Plugin/SyncMonotone.php:100 -#, php-format -msgid "Could not find mtn-post-push script \"%s\"." -msgstr "Impossible de trouver le script mtn-post-push \"%s\"." - -#: IDF/Plugin/SyncMonotone.php:135 -#, php-format -msgid "The configuration file %s is missing." -msgstr "Le fichier de configuration %s est absent." - -#: IDF/Plugin/SyncMonotone.php:144 -#, php-format -msgid "The project path %s already exists." -msgstr "Le chemin du projet %s existe déjà." - -#: IDF/Plugin/SyncMonotone.php:150 -#, php-format -msgid "The project path %s could not be created." -msgstr "Le chemin du projet %s n'a pu être créé. " - -#: IDF/Plugin/SyncMonotone.php:205 -#, php-format -msgid "Could not parse key information: %s" -msgstr "Impossible de partourir l'information de la clef: %s" - -#: IDF/Plugin/SyncMonotone.php:243 -#, php-format -msgid "Could not create configuration directory \"%s\"" -msgstr "Impossible de créer de répertoire de configuration \"%s\"" - -#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 -#, php-format -msgid "Could not create symlink \"%s\"" -msgstr "Impossible de créer le lien symbolique \"%s\"" - -#: IDF/Plugin/SyncMonotone.php:269 -#, php-format -msgid "Could not write configuration file \"%s\"" -msgstr "Impossible d'écrire le fichier de configuration \"%s\"" - -#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 -#, php-format -msgid "Could not parse usher configuration in \"%s\": %s" -msgstr "Impossible de parcourir la configuration d'usher dans \"%s\" : %s" - -#: IDF/Plugin/SyncMonotone.php:295 -#, php-format -msgid "usher configuration already contains a server entry named \"%s\"" -msgstr "" -"la configuration d'usher contient déja une entrée serveur appelée \"%s\"" - -#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 -#, php-format -msgid "Could not write usher configuration file \"%s\"" -msgstr "Impossible d'écrire le fichier de configuration d'usher \"%s\"" - -#: IDF/Plugin/SyncMonotone.php:366 -#, php-format -msgid "Could not write write-permissions file \"%s\"" -msgstr "Impossible d'écrire le fichier de permissions en écriture \"%s\"" - -#: IDF/Plugin/SyncMonotone.php:389 -#, php-format -msgid "Could not write read-permissions file \"%s\"" -msgstr "Impossible d'écrire le fichier de permissions de lecture \"%s\"" - -#: IDF/Plugin/SyncMonotone.php:406 -#, php-format -msgid "Could not remove symlink \"%s\"" -msgstr "Impossible de retirer le lien symbolique \"%s\"" - -#: IDF/Plugin/SyncMonotone.php:465 -#, php-format -msgid "One or more paths underknees %s could not be deleted." -msgstr "Un ou plusieurs autres chemins sous %s n'ont pu être supprimés." - -#: IDF/Plugin/SyncMonotone.php:477 -#, php-format -msgid "Could not delete client private key %s" -msgstr "Impossible de supprimer la clef privée cliente %s" - -#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676 -#, php-format -msgid "Could not parse read-permissions for project \"%s\": %s" -msgstr "" -"Impossible de parcourir les permissions de lecture pour le projet \"%s\" : %" -"s" - -#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 -#, php-format -msgid "Could not write read-permissions for project \"%s\"" -msgstr "Impossible d'écrire les permissions de lecture pour le projet \"%s\"" - -#: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 -#, php-format -msgid "Could not write write-permissions file for project \"%s\"" -msgstr "Impossible d'écrire les permissions d'écriture pour le projet \"%s\"" - -#: IDF/Plugin/SyncMonotone.php:790 -#, php-format -msgid "The project path %s does not exists." -msgstr "Le chemin du projet %s n'existe pas." - -#: IDF/Plugin/SyncMonotone.php:808 -#, php-format -msgid "The command \"%s\" could not be executed." -msgstr "La commande \"%s\" n'a pu être exécutée. " - -#: IDF/Plugin/SyncMercurial.php:142 -#, php-format -msgid "%s does not exist or is not writable." -msgstr "%s n'existe pas ou vous ne disposez pas des droits pour écrire dedans." - -#: IDF/Timeline/Paginator.php:49 -msgid "Today" -msgstr "Aujourd'hui" - -#: IDF/WikiPage.php:62 -msgid "title" -msgstr "titre" - -#: 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 "" -"Le titre de la page ne doit contenir que des lettres, chiffres ou le tiret. " -"Par exemple : Ma-Page." - -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." -msgstr "Une petite description du contenu de la page." - -#: IDF/WikiPage.php:198 -#, php-format -msgid "Creation of page %s, by %s" -msgstr "Création de la page %s, par %s" - -#: IDF/WikiPage.php:208 -#, php-format -msgid "%s: Documentation page %s added - %s" -msgstr "%s: Page de documentation %s ajoutée - %s" - -#: IDF/Tag.php:59 -msgid "tag class" -msgstr "classe de l'étiquette" - -#: IDF/Tag.php:60 -msgid "The class of the tag." -msgstr "La classe de l'étiquette." - -#: IDF/Tag.php:73 -msgid "lcname" -msgstr "lcname" - -#: IDF/Tag.php:74 -msgid "Lower case version of the name for fast searching." -msgstr "Version minuscule du nom pour chercher rapidement." - -#: IDF/Key.php:49 -msgid "user" -msgstr "utilisateur" - -#: IDF/Key.php:55 -msgid "public key" -msgstr "clef publique" - -#: IDF/Key.php:87 -msgid "Invalid or unknown key data detected." -msgstr "Type ou format de la clée invalide." - -#: IDF/Template/ShowUser.php:51 -msgid "Anonymous" -msgstr "Anonyme" - -#: IDF/Template/ShowUser.php:54 -msgid "Me" -msgstr "Moi" - -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" -msgstr "Créer cette page de documentation" - -#~ msgid "Managed Projects:" -#~ msgstr "Projets supervisés :" - -#~ msgid "Do you have a password?" -#~ msgstr "Avez-vous un mot de passe ?" - -#~ msgid "No, I am a new here." -#~ msgstr "Non, je suis nouveau ici." diff --git a/src/IDF/locale/idf.pot b/src/IDF/locale/idf.pot index 7f0e39f..283817a 100644 --- a/src/IDF/locale/idf.pot +++ b/src/IDF/locale/idf.pot @@ -8,178 +8,44 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-23 16:05+0100\n" +"POT-Creation-Date: 2011-02-23 23:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\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 "" - -#: 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 "" - -#: 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/Review/Comment.php:69 IDF/Review.php:80 +#: IDF/Upload.php:85 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 "" - #: IDF/Commit.php:93 msgid "changelog" msgstr "" +#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79 +#: IDF/IssueFile.php:96 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 +msgid "creation date" +msgstr "" + #: IDF/Commit.php:238 #, php-format msgid "Commit %s, by %s" @@ -190,6 +56,800 @@ 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/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:540 +msgid "git" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:541 +msgid "Subversion" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:542 +msgid "mercurial" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:543 +msgid "monotone" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 +#: 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/index.html.php:6 +#: IDF/gettexttemplates/idf/main-menu.html.php:7 +msgid "Private project" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:62 +msgid "Shortname" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:64 +msgid "" +"It must be unique for each project and composed only of letters, digits and " +"dash (-) like \"my-project\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 +msgid "Short description" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51 +#: IDF/Project.php:79 +msgid "A one line description of the project." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:77 +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 throught http or https are allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 +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:263 +#: IDF/Form/IssueUpdate.php:232 IDF/Form/MembersConf.php:64 +#: IDF/Form/Password.php:76 IDF/Form/Register.php:114 +#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:125 +#: IDF/Form/TabsConf.php:98 IDF/Form/UpdateUpload.php:126 +#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:180 +#: 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:362 +msgid "This project is not available." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:41 +msgid "Confirmation code" +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:46 +msgid "I have made a backup of all the important data of this project." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:55 +msgid "" +"The confirmation code does not match. Please provide a valid confirmation " +"code to delete the project." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:63 +msgid "Sorry, you really need to backup your data before deletion." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 +#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40 +msgid "First name" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 +#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49 +msgid "Last name" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:56 +msgid "Login" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 +msgid "" +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is directly sent 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 IDF/Form/UserAccount.php:166 +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:402 +#, php-format +msgid "The email \"%s\" is already used." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 +#, php-format +msgid "The login \"%s\" can only contain letters and digits." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 +#, php-format +msgid "The login \"%s\" is already used, please find another one." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:78 +msgid "Password" +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "Leave blank if you do not want to change the password." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "" +"The password must be hard for other people to find it, 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: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 +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 him." +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 his 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/Upload.php:86 +#: IDF/Form/UserAccount.php:369 +msgid "For security reason, you cannot upload a file with this extension." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:425 +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:53 IDF/Form/IssueUpdate.php:45 +#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:71 +#: 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 +msgid "Summary" +msgstr "" + +#: IDF/Form/IssueCreate.php:72 IDF/Form/IssueUpdate.php:65 +#: IDF/Form/ReviewCreate.php:83 +msgid "The \"upload_issue_path\" configuration variable was not set." +msgstr "" + +#: IDF/Form/IssueCreate.php:82 IDF/Form/IssueUpdate.php:75 +msgid "Attach a file" +msgstr "" + +#: IDF/Form/IssueCreate.php:95 IDF/Form/IssueUpdate.php:88 +#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:81 +#: 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 +msgid "Status" +msgstr "" + +#: IDF/Form/IssueCreate.php:104 IDF/Form/IssueUpdate.php:98 +msgid "Owner" +msgstr "" + +#: IDF/Form/IssueCreate.php:150 IDF/Form/IssueUpdate.php:117 +#: 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:192 +msgid "You cannot add a label with the \"Status\" prefix to an issue." +msgstr "" + +#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 +#: 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:199 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:210 IDF/Form/IssueUpdate.php:147 +msgid "You need to provide a description of the issue." +msgstr "" + +#: IDF/Form/IssueCreate.php:233 IDF/Form/ReviewCreate.php:159 +msgid "You provided an invalid status." +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:80 +msgid "" +"Define an issue template to hint the reporter to provide certain information" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:89 +msgid "Open issue status values" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:97 +msgid "Closed issue status values" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:106 +msgid "Predefined issue labels" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:108 +msgid "" +"The first \"Type:\" and \"Priority:\" entries found in this list are " +"automatically chosen as defaults for new issues." +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:116 +msgid "Each issue may have at most one label with each of these classes" +msgstr "" + +#: IDF/Form/IssueUpdate.php:55 IDF/Form/ReviewFileComment.php:45 +#: IDF/Form/WikiUpdate.php:82 +msgid "Comment" +msgstr "" + +#: IDF/Form/IssueUpdate.php:219 +msgid "No changes were entered." +msgstr "" + +#: IDF/Form/MembersConf.php:104 +#, php-format +msgid "The following login is invalid: %s." +msgid_plural "The following logins are invalid: %s." +msgstr[0] "" +msgstr[1] "" + +#: IDF/Form/Password.php:34 +msgid "Your login or email" +msgstr "" + +#: IDF/Form/Password.php:35 +msgid "Provide either your login or your email to recover your password." +msgstr "" + +#: IDF/Form/Password.php:49 IDF/Form/Password.php:64 +msgid "" +"Sorry, we cannot find a user with this email address or login. Feel free to " +"try again." +msgstr "" + +#: IDF/Form/Password.php:100 +msgid "Password Recovery - InDefero" +msgstr "" + +#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39 +#: IDF/Form/UserChangeEmail.php:36 +msgid "Your verification key" +msgstr "" + +#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89 +msgid "" +"We are sorry but this validation key is not valid. Maybe you should directly " +"copy/paste it from your validation email." +msgstr "" + +#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100 +msgid "" +"Sorry, but this verification key has expired, please restart the password " +"recovery sequence. For security reasons, the verification key is only valid " +"24h." +msgstr "" + +#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108 +#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72 +msgid "Cannot save an invalid form." +msgstr "" + +#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69 +#: IDF/Form/UserAccount.php:77 +msgid "Your password" +msgstr "" + +#: IDF/Form/PasswordReset.php:48 IDF/Form/RegisterConfirmation.php:72 +#: 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/Register.php:41 +msgid "Your login" +msgstr "" + +#: 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 spams 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:99 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need, click on the help link to " +"recover your password." +msgstr "" + +#: IDF/Form/Register.php:150 +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: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:102 +msgid "You need to provide comments on at least one file." +msgstr "" + +#: IDF/Form/ReviewFileComment.php:109 +msgid "You need to provide your general comment about the proposal." +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.orig.php:5 +#: IDF/gettexttemplates/idf/base-full.html.php:5 +#: IDF/gettexttemplates/idf/base.html.orig.php:5 +#: IDF/gettexttemplates/idf/base.html.php:5 +#: IDF/gettexttemplates/idf/downloads/base.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14 +#: IDF/Views/Project.php:75 +msgid "Downloads" +msgstr "" + +#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.orig.php:9 +#: IDF/gettexttemplates/idf/base-full.html.php:9 +#: IDF/gettexttemplates/idf/base.html.orig.php:9 +#: IDF/gettexttemplates/idf/base.html.php:9 +msgid "Code Review" +msgstr "" + +#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:6 +#: IDF/gettexttemplates/idf/base-full.html.php:6 +#: IDF/gettexttemplates/idf/base.html.orig.php:6 +#: IDF/gettexttemplates/idf/base.html.php:6 +msgid "Documentation" +msgstr "" + +#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:8 +#: IDF/gettexttemplates/idf/base-full.html.php:8 +#: IDF/gettexttemplates/idf/base.html.orig.php:8 +#: IDF/gettexttemplates/idf/base.html.php:8 +msgid "Source" +msgstr "" + +#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.orig.php:7 +#: IDF/gettexttemplates/idf/base-full.html.php:7 +#: IDF/gettexttemplates/idf/base.html.orig.php:7 +#: IDF/gettexttemplates/idf/base.html.php:7 +#: 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:6 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6 +#: IDF/Views/Download.php:64 IDF/Views/Download.php:292 +msgid "File" +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:209 +msgid "Confirm your new email address." +msgstr "" + +#: IDF/Form/UserAccount.php:212 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" + +#: IDF/Form/UserAccount.php:314 +msgid "" +"Please check the key as it does not appear to be a valid SSH public key." +msgstr "" + +#: IDF/Form/UserAccount.php:334 +msgid "" +"Please check the key as it does not appear to be a valid monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:342 +msgid "Public key looks neither like a SSH nor monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:354 +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,78 +858,452 @@ msgstr "" msgid "model id" msgstr "" -#: IDF/Gconf.php:73 IDF/Conf.php:61 -msgid "key" +#: IDF/gettexttemplates/idf/admin/base.html.php:3 +msgid "Project Summary" msgstr "" -#: IDF/Gconf.php:79 IDF/Conf.php:67 -msgid "value" +#: IDF/gettexttemplates/idf/admin/base.html.php:6 +msgid "Issue Tracking" msgstr "" -#: IDF/Views.php:45 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/index.html.php:3 IDF/Views/Admin.php:57 -msgid "Projects" +#: IDF/gettexttemplates/idf/admin/base.html.php:8 +msgid "Project Members" msgstr "" -#: IDF/Views.php:88 IDF/gettexttemplates/idf/register/index.html.php:6 -msgid "Create Your Account" +#: IDF/gettexttemplates/idf/admin/base.html.php:9 +msgid "Tabs Access and Notifications" msgstr "" -#: IDF/Views.php:124 IDF/Views.php:150 -msgid "Confirm Your Account Creation" -msgstr "" - -#: IDF/Views.php:170 -msgid "Welcome! You can now participate in the life of your project of choice." -msgstr "" - -#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 -msgid "Password Recovery" -msgstr "" - -#: IDF/Views.php:240 +#: 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 "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." +"\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/Views.php:282 -msgid "Here to Help You!" +#: IDF/gettexttemplates/idf/admin/downloads.html.php:8 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8 +#: IDF/gettexttemplates/idf/admin/members.html.php:13 +#: IDF/gettexttemplates/idf/admin/source.html.php:31 +#: IDF/gettexttemplates/idf/admin/summary.html.php:8 +#: IDF/gettexttemplates/idf/admin/tabs.html.php:15 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:8 +msgid "Save Changes" msgstr "" -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" +#: IDF/gettexttemplates/idf/admin/members.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/update.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 "" -#: IDF/Scm/Mercurial.php:140 IDF/Scm/Git.php:234 +#: IDF/gettexttemplates/idf/admin/members.html.php:8 +#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 +msgid "" +"\n" +"

    Notes:

    \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 "" + +#: 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 "Folder %1$s not found in commit %2$s." +msgid "" +"\n" +"

    Instructions:

    \n" +"

    The description of the project can be improved using the Markdown syntax.

    \n" msgstr "" -#: IDF/Scm/Mercurial.php:157 IDF/Scm/Git.php:352 +#: 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/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 "Not a valid tree: %s." +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/Scm/Monotone/Stdio.php:79 -msgid "Monotone client key name or hash not in project conf." +#: 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/Scm/Monotone/Stdio.php:87 IDF/Plugin/SyncMonotone.php:187 +#: 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.orig.php:3 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.orig.php:3 +#: IDF/gettexttemplates/idf/base.html.php:3 #, php-format -msgid "The key directory %s could not be created." +msgid "" +"Sign in or create your account to create issues or " +"add comments" msgstr "" -#: IDF/Scm/Monotone/Stdio.php:98 -#, php-format -msgid "Could not write client key \"%s\"" +#: IDF/gettexttemplates/idf/base-full.html.orig.php:4 +#: IDF/gettexttemplates/idf/base-full.html.php:4 +#: IDF/gettexttemplates/idf/base.html.orig.php:4 +#: IDF/gettexttemplates/idf/base.html.php:4 +msgid "Project Home" msgstr "" -#: IDF/Scm/Git.php:183 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:10 +#: IDF/gettexttemplates/idf/base-full.html.php:10 +#: IDF/gettexttemplates/idf/base.html.orig.php:10 +#: IDF/gettexttemplates/idf/base.html.php:10 +msgid "Project Management" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/base.html.php:4 +#: IDF/gettexttemplates/idf/downloads/index.html.php:4 +#: IDF/Views/Download.php:214 +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 "Invalid value for the parameter %1$s: %2$s. Use %3$s." +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:8 +#: 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:25 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: 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/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +#: 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:13 +msgid "Uploaded:" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:27 +#: IDF/gettexttemplates/idf/review/view.html.php:26 +#: 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:15 +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:12 +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:16 +#: 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:20 +#: IDF/gettexttemplates/idf/issues/view.html.php:31 +#: 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:30 +#: 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 "Changes" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:6 +msgid "The form contains some errors. Please correct them to update the file." +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:7 +msgid "Update File" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:11 +msgid "Remove this file" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:10 +#: 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:12 +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:45 +msgid "Projects" msgstr "" #: IDF/gettexttemplates/idf/faq.html.php:3 @@ -377,158 +1411,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 "Oups, 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 "" -#: 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:12 -#: 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" +#: 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: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 "Oups, 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 "Oups, 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 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 @@ -551,19 +1464,6 @@ msgid "" "

    Separate the logins with commas and/or new lines.

    \n" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 -#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 -#: IDF/gettexttemplates/idf/admin/members.html.php:8 -msgid "" -"\n" -"

    Notes:

    \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 "" - #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14 msgid "" "The form contains some errors. Please correct them to create the project." @@ -573,18 +1473,6 @@ msgstr "" 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 #, php-format msgid "" @@ -617,15 +1505,6 @@ msgstr "" 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 "" @@ -635,12 +1514,6 @@ msgstr "" 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 "" @@ -664,18 +1537,11 @@ 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 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 msgid "Attachments:" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 -#: IDF/gettexttemplates/idf/index.html.php:12 -#: 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 "" @@ -684,16 +1550,6 @@ msgstr "" 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 "" - #: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13 msgid "" "The form contains some errors. Please correct them to update the project." @@ -713,35 +1569,29 @@ msgstr "" 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" +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 -msgid "Change Project Details" +#: 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: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 "" @@ -794,6 +1644,13 @@ msgstr "" 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" @@ -803,14 +1660,21 @@ msgstr "" msgid "Administrative" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13 -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4 -msgid "Update User" +#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 +msgid "Configured servers" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" +#: 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/control.html.php:3 @@ -913,967 +1777,9 @@ msgstr "" 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 -msgid "What is your account information?" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:4 -msgid "My login is" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:5 -msgid "My password is" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:6 -msgid "Sign in" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:7 -msgid "I lost my password!" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:8 -msgid "Welcome." -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:9 -msgid "If you don't have an account yet, you can create one" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:10 -msgid "here" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:11 -msgid "It takes less than a minute to create your account" -msgstr "" - -#: IDF/gettexttemplates/idf/user/public.html.php:3 +#: IDF/gettexttemplates/idf/index.atom.php:3 #, php-format -msgid "You are looking at the public profile of %%member%%." -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:" -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 -#, 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/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/myaccount.html.php:6 -msgid "Key Management" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:7 -msgid "Extra password" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 -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:9 -msgid "API key" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 -msgid "" -"Your API key will be regenerated automatically if you change your password." -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 -msgid "Update Your Account" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 -msgid "Your Current Public Keys" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 -msgid "Delete this key" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 -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:16 -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:17 -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 "" - -#: 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 -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/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 again 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 -msgid "" -"Oups, 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 "" - -#: 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" -"

    Instructions:

    \n" -"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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/search.html.php:3 -#: IDF/gettexttemplates/idf/wiki/index.html.php:4 -#: IDF/gettexttemplates/idf/wiki/base.html.php:4 IDF/Views/Wiki.php:177 -msgid "New Page" -msgstr "" - -#: IDF/gettexttemplates/idf/wiki/search.html.php:4 -msgid "Pages found:" -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 -msgid "Changes:" -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/wiki-updated-email.txt.php:3 -msgid "The following documentation page has been updated:" -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/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/wiki/wiki-updated-email.txt.php:7 -msgid "Updated by:" -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 -msgid "Created by:" -msgstr "" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13 -msgid "New content:" -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 "" - -#: 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 -msgid "Content:" -msgstr "" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:3 -msgid "List Pages" -msgstr "" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:5 -msgid "Update This Page" -msgstr "" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:6 -#: IDF/gettexttemplates/idf/issues/base.html.php:7 -msgid "Search" -msgstr "" - -#: IDF/gettexttemplates/idf/source/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/invalid_revision.html.php:5 -#, 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/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/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/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/review/view.html.php:3 -#, php-format -msgid "%%ndiff%% diff" -msgid_plural "%%ndiff%% diffs" -msgstr[0] "" -msgstr[1] "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:4 -msgid "Date:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:5 -#: IDF/gettexttemplates/idf/review/view.html.php:27 -msgid "Author:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:6 -msgid "Branch:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:8 -#: IDF/gettexttemplates/idf/review/view.html.php:29 -msgid "View corresponding source tree" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:9 -msgid "Parents:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:10 -#: IDF/gettexttemplates/idf/source/changelog.html.php:6 -msgid "View corresponding commit" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:11 -msgid "Message:" -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:17 -msgid "full" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:15 -msgid "renamed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:16 -msgid "added" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:18 -msgid "modified" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:19 -msgid "properies changed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:20 -msgid "removed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.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/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/review/view.html.php:35 -msgid "Download the corresponding diff file" -msgstr "" - -#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 -#, php-format -msgid "%%cproject.name%%: Commit %%c.scm_id%%" -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 "" - -#: 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:294 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:296 -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 authentification." -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" +msgid "Personal project feed for %%user%%." msgstr "" #: IDF/gettexttemplates/idf/index.html.php:4 @@ -1904,368 +1810,85 @@ msgstr "" msgid "Code reviews:" msgstr "" -#: IDF/gettexttemplates/idf/base-full.html.php:3 -#: IDF/gettexttemplates/idf/base.html.php:3 +#: 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:34 +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +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:7 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:9 +msgid "Download this file" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:7 +#: IDF/gettexttemplates/idf/issues/view.html.php:26 +#: IDF/gettexttemplates/idf/review/view.html.php:25 +#: 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:3 +msgid "Open Issues" +msgstr "" + +#: 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 "" + +#: 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/wiki/base.html.php:6 +msgid "Search" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/base.html.php:8 +msgid "Back to the issue" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 #, php-format msgid "" -"Sign in or create your account to create issues or " -"add comments" +"

    Open issues: %%open%%

    \n" +"

    Closed issues: %%closed%%

    \n" msgstr "" -#: IDF/gettexttemplates/idf/base-full.html.php:4 -#: IDF/gettexttemplates/idf/base.html.php:4 -msgid "Project Home" +#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 +msgid "Label:" 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 -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" -"
    • Ensure your patch does not contain any passwords 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 "" - -#: 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] "" -msgstr[1] "" - -#: 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 "" - -#: 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.

    " -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" +#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 +msgid "Completion:" msgstr "" #: IDF/gettexttemplates/idf/issues/create.html.php:3 @@ -2285,6 +1908,15 @@ msgstr "" msgid "The form contains some errors. Please correct them to submit the issue." msgstr "" +#: 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 +#: IDF/gettexttemplates/idf/wiki/create.html.php:5 +#: IDF/gettexttemplates/idf/wiki/update.html.php:5 +msgid "Preview" +msgstr "" + #: IDF/gettexttemplates/idf/issues/create.html.php:12 msgid "Submit Issue" msgstr "" @@ -2301,35 +1933,42 @@ msgstr "" 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" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/view.html.php:17 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:40 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:6 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:11 +#: IDF/IssueComment.php:151 +msgid "Summary:" msgstr "" -#: IDF/gettexttemplates/idf/issues/search.html.php:4 -msgid "Found issues:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:13 +#: IDF/gettexttemplates/idf/issues/view.html.php:18 +#: IDF/gettexttemplates/idf/issues/view.html.php:28 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:6 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:10 +#: IDF/gettexttemplates/idf/review/view.html.php:41 IDF/IssueComment.php:153 +msgid "Status:" msgstr "" -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 -msgid "The following issue has been updated:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:5 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:19 +#: IDF/gettexttemplates/idf/issues/view.html.php:29 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:5 +#: IDF/IssueComment.php:155 +msgid "Owner:" 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/issues/project-watchlist.html.php:3 #, php-format msgid "" "

    Open issues: %%open%%

    \n" @@ -2337,33 +1976,88 @@ msgid "" "a>

    " msgstr "" -#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 -#, php-format -msgid "" -"

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" -msgstr "" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" -msgstr "" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 -msgid "Completion:" -msgstr "" - #: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3 msgid "" "A new issue has been created and assigned\n" "to you:" msgstr "" +#: 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 "" + +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 +msgid "Issue:" +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:4 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 +#, php-format +msgid "By %%who%%, %%c.creation_dtime%%:" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12 +msgid "URL:" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 +msgid "Comments (last first):" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/my-issues.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/my-issues.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/my-issues.html.php:6 +#: IDF/gettexttemplates/idf/user/dashboard.html.php:7 +msgid "Submitted issues:" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7 +#: IDF/gettexttemplates/idf/user/dashboard.html.php:6 +msgid "Working issues:" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/search.html.php:4 +msgid "Found 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." @@ -2426,58 +2120,76 @@ msgstr "" msgid "Followed by:" msgstr "" -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 +#: IDF/gettexttemplates/idf/login_form.html.php:3 #, php-format msgid "" -"See the %%nb_submit_closed%% closed." -msgid_plural "" -"See the %%nb_submit_closed%% closed." -msgstr[0] "" -msgstr[1] "" +"If you don't have an account yet, you can create one here." +msgstr "" -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 +#: 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 "" -"See the %%nb_owner_closed%% closed." -msgid_plural "" -"See the %%nb_owner_closed%% closed." -msgstr[0] "" -msgstr[1] "" - -#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 -#, php-format -msgid "Attachment to issue %%issue.id%%" +"Welcome, %%user%%." msgstr "" -#: IDF/gettexttemplates/idf/issues/base.html.php:3 -msgid "Open Issues" +#: IDF/gettexttemplates/idf/main-menu.html.php:4 +msgid "Sign Out" msgstr "" -#: IDF/gettexttemplates/idf/issues/base.html.php:5 -msgid "My Issues" +#: IDF/gettexttemplates/idf/main-menu.html.php:5 +msgid "Sign in or create your account" msgstr "" -#: IDF/gettexttemplates/idf/issues/base.html.php:6 -msgid "My watch list" +#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 +msgid "Forge Management" msgstr "" -#: IDF/gettexttemplates/idf/issues/base.html.php:8 -msgid "Back to the issue" +#: IDF/gettexttemplates/idf/main-menu.html.php:9 +msgid "Help and accessibility features" msgstr "" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" +#: IDF/gettexttemplates/idf/main-menu.html.php:10 +#: 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 +msgid "Help" msgstr "" -#: IDF/gettexttemplates/idf/project/timeline.html.php:5 #: IDF/gettexttemplates/idf/project/home.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html.php:5 msgid "Latest Updates" msgstr "" -#: IDF/gettexttemplates/idf/project/timeline.html.php:6 -msgid "Filter by type" -msgstr "" - #: IDF/gettexttemplates/idf/project/home.html.php:5 msgid "Featured Downloads" msgstr "" @@ -2503,106 +2215,1080 @@ msgstr "" msgid "Happy Crew" 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?" +#: IDF/gettexttemplates/idf/project/timeline.html.php:3 +msgid "Latest updates" msgstr "" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html.php:6 +msgid "Filter by type" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 #, php-format msgid "" -"Instead of deleting the file, you could mark it as " -"deprecated." +"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/downloads/delete.html.php:6 -msgid "Delete File" +#: 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 "Oups, please check the form for errors." msgstr "" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:8 -#: IDF/gettexttemplates/idf/downloads/view.html.php:13 -msgid "Uploaded:" +#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 +msgid "Email:" msgstr "" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 +#: 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 "" -"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." +"This is the last step, but just be sure to have the cookies enabled to log in afterwards." msgstr "" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 +#: 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 "" -"You can use the Markdown syntax for the description." +"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/downloads/submit.html.php:7 -msgid "The form contains some errors. Please correct them to submit the file." +#: IDF/gettexttemplates/idf/register/index.html.php:5 +msgid "Oups, please check the provided login and email address to register." msgstr "" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 -msgid "Submit File" +#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:88 +msgid "Create Your Account" 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:4 -#: IDF/gettexttemplates/idf/downloads/base.html.php:4 -#: IDF/Views/Download.php:216 -msgid "New Download" -msgstr "" - -#: IDF/gettexttemplates/idf/downloads/index.html.php:5 -msgid "Number of files:" -msgstr "" - -#: IDF/gettexttemplates/idf/downloads/view.html.php:3 +#: IDF/gettexttemplates/idf/register/index.html.php:8 msgid "" -"Attention! This file is marked as deprecated, download it " -"only if you are sure you need this specific version." +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:5 -msgid "Changes" +#: IDF/gettexttemplates/idf/register/index.html.php:9 +msgid "Did you know?" msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:6 -msgid "The form contains some errors. Please correct them to update the file." +#: 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 "Oups, we found an error in the form." msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:7 -msgid "Update File" +#: IDF/gettexttemplates/idf/register/inputkey.html.php:4 +msgid "Confirm Your Account" msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:9 -#: IDF/gettexttemplates/idf/downloads/view.html.php:11 -msgid "Remove this file" +#: 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/downloads/view.html.php:12 -msgid "Delete this file" +#: 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/downloads/download-created-email.txt.php:3 -msgid "A new file is available for download:" +#: IDF/gettexttemplates/idf/review/base-full.html.php:3 +#: IDF/gettexttemplates/idf/review/base.html.php:3 +msgid "Open Reviews" msgstr "" -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6 -msgid "Submitted by:" +#: 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/downloads/download-created-email.txt.php:8 -msgid "Download:" +#: 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" +"
    • Ensure your patch does not contain any passwords 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 +#: 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:4 +#, php-format +msgid "%%nc%% comment" +msgid_plural "%%nc%% comments" +msgstr[0] "" +msgstr[1] "" + +#: 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: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:27 +#: IDF/gettexttemplates/idf/source/commit.html.php:5 +msgid "Author:" +msgstr "" + +#: 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 +msgid "Commit:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:29 +#: IDF/gettexttemplates/idf/source/commit.html.php:8 +msgid "View corresponding source tree" +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:35 +#: IDF/gettexttemplates/idf/source/commit.html.php:23 +msgid "Download the corresponding diff file" +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/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:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/Views/Project.php:152 +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:8 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9 +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:17 +msgid "full" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +msgid "renamed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +msgid "added" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +msgid "modified" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +msgid "properies changed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +msgid "removed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +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: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 "" +"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: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 "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: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 +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 authentification." +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:9 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10 +#: IDF/Views/Download.php:66 IDF/Views/Download.php:294 +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:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13 +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 +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:13 +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 +msgid "The following list shows all available branches:" +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." +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/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:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15 +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:11 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16 +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/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/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/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 "Extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +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:9 +msgid "API key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "Update Your Account" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +msgid "Your Current Public Keys" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Delete this key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +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:16 +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:17 +msgid "Show API key and extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 +msgid "" +"Oups, 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 again 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:175 +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" +"

    Instructions:

    \n" +"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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 "" + +#: 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:93 IDF/WikiPage.php:94 +msgid "labels" +msgstr "" + +#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114 +#: IDF/Upload.php:112 IDF/WikiPage.php:106 +msgid "modification date" +msgstr "" + +#: IDF/Issue.php:194 IDF/IssueComment.php:143 +#, php-format +msgid "" +"Issue %3$d, %4$s" +msgstr "" + +#: IDF/Issue.php:196 +#, php-format +msgid "Creation of issue %d, by %s" +msgstr "" + +#: IDF/Issue.php:206 +#, php-format +msgid "%s: Issue %d created - %s" +msgstr "" + +#: IDF/Issue.php:272 +#, php-format +msgid "Issue %s - %s (%s)" +msgstr "" + +#: IDF/Issue.php:318 +#, php-format +msgid "Updated Issue %s - %s (%s)" +msgstr "" + +#: IDF/IssueComment.php:51 +msgid "issue" +msgstr "" + +#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62 +#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69 +msgid "comment" +msgstr "" + +#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63 +#: IDF/WikiRevision.php:85 +msgid "changes" +msgstr "" + +#: IDF/IssueComment.php:73 +msgid "Serialized array of the changes in the issue." +msgstr "" + +#: IDF/IssueComment.php:171 +#, php-format +msgid "Comment on issue %d, by %s" +msgstr "" + +#: IDF/IssueComment.php:182 +#, php-format +msgid "%s: Comment on issue %d - %s" msgstr "" #: IDF/IssueFile.php:64 @@ -2629,1502 +3315,28 @@ msgstr "" msgid "Other" msgstr "" -#: IDF/Project.php:62 IDF/Tag.php:66 -msgid "name" +#: IDF/Key.php:49 +msgid "user" msgstr "" -#: IDF/Project.php:69 -msgid "short name" +#: IDF/Key.php:55 +msgid "public key" msgstr "" -#: IDF/Project.php:70 -msgid "" -"Used in the url to access the project, must be short with only letters and " -"numbers." +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." msgstr "" -#: IDF/Project.php:78 -msgid "short description" -msgstr "" - -#: IDF/Project.php:79 IDF/Form/Admin/ProjectCreate.php:70 -#: IDF/Form/Admin/ProjectUpdate.php:51 -msgid "A one line description of the project." -msgstr "" - -#: IDF/Project.php:86 IDF/Review/Patch.php:74 -msgid "description" -msgstr "" - -#: IDF/Project.php:87 -msgid "The description can be extended using the markdown syntax." -msgstr "" - -#: IDF/Project.php:93 -msgid "private" -msgstr "" - -#: IDF/Project.php:130 -#, php-format -msgid "Project \"%s\" not found." -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/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:196 -#, php-format -msgid "Creation of issue %d, by %s" -msgstr "" - -#: IDF/Issue.php:206 -#, php-format -msgid "%s: Issue %d created - %s" -msgstr "" - -#: IDF/Issue.php:272 -#, php-format -msgid "Issue %s - %s (%s)" -msgstr "" - -#: IDF/Issue.php:318 -#, php-format -msgid "Updated Issue %s - %s (%s)" -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:108 IDF/Views/Wiki.php:149 -msgid "Page Title" -msgstr "" - -#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:109 IDF/Views/Wiki.php:150 -#: IDF/Views/Download.php:65 IDF/Views/Download.php:295 IDF/Views/Issue.php:62 -#: IDF/Views/Issue.php:140 IDF/Views/Issue.php:221 IDF/Views/Issue.php:297 -#: IDF/Views/Issue.php:384 IDF/Views/Issue.php:563 IDF/Views/Issue.php:622 -#: IDF/Views/User.php:83 IDF/Views/Review.php:58 IDF/Form/Upload.php:40 -#: IDF/Form/ReviewCreate.php:45 IDF/Form/IssueUpdate.php:45 -#: IDF/Form/IssueCreate.php:53 IDF/Form/UpdateUpload.php:42 -#: IDF/Form/ReviewFileComment.php:71 -msgid "Summary" -msgstr "" - -#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:110 IDF/Views/Wiki.php:151 -msgid "Updated" -msgstr "" - -#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:155 -msgid "No documentation pages were found." -msgstr "" - -#: IDF/Views/Wiki.php:92 -#, php-format -msgid "Documentation Search - %s" -msgstr "" - -#: IDF/Views/Wiki.php:103 -msgid "This table shows the pages found." -msgstr "" - -#: IDF/Views/Wiki.php:114 -msgid "No pages were found." -msgstr "" - -#: IDF/Views/Wiki.php:133 -#, php-format -msgid "%1$s Documentation Pages with Label %2$s" -msgstr "" - -#: IDF/Views/Wiki.php:143 -#, php-format -msgid "This table shows the documentation pages with label %s." -msgstr "" - -#: IDF/Views/Wiki.php:188 -#, php-format -msgid "The page %s has been created." -msgstr "" - -#: IDF/Views/Wiki.php:275 -msgid "The old revision has been deleted." -msgstr "" - -#: IDF/Views/Wiki.php:281 -#, php-format -msgid "Delete Old Revision of %s" -msgstr "" - -#: IDF/Views/Wiki.php:314 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 -#, php-format -msgid "Update %s" -msgstr "" - -#: IDF/Views/Wiki.php:326 -#, php-format -msgid "The page %s has been updated." -msgstr "" - -#: IDF/Views/Wiki.php:364 -msgid "The documentation page has been deleted." -msgstr "" - -#: IDF/Views/Wiki.php:372 -#, php-format -msgid "Delete Page %s" -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:77 -#, php-format -msgid "%s Ambiguous Revision" -msgstr "" - -#: IDF/Views/Source.php:102 -#, php-format -msgid "%1$s %2$s Change Log" -msgstr "" - -#: IDF/Views/Source.php:142 IDF/Views/Source.php:223 IDF/Views/Source.php:355 -#, php-format -msgid "%1$s %2$s Source Tree" -msgstr "" - -#: IDF/Views/Source.php:299 -#, php-format -msgid "%s Commit Details" -msgstr "" - -#: IDF/Views/Source.php:300 -#, php-format -msgid "%s Commit Details - %s" -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:297 -msgid "Uploaded" -msgstr "" - -#: IDF/Views/Download.php:71 IDF/Views/Download.php:301 -msgid "No downloads were found." -msgstr "" - -#: IDF/Views/Download.php:96 -#, php-format -msgid "Download %s" -msgstr "" - -#: IDF/Views/Download.php:113 -#, php-format -msgid "The file %2$s has been updated." -msgstr "" - -#: IDF/Views/Download.php:146 -#, php-format -msgid "Delete Download %s" -msgstr "" - -#: IDF/Views/Download.php:179 -msgid "The file has been deleted." -msgstr "" - -#: IDF/Views/Download.php:225 -#, php-format -msgid "The file has been uploaded." -msgstr "" - -#: IDF/Views/Download.php:279 -#, php-format -msgid "%1$s Downloads with Label %2$s" -msgstr "" - -#: IDF/Views/Download.php:289 -#, php-format -msgid "This table shows the downloads with label %s." -msgstr "" - -#: IDF/Views/Project.php:72 -msgid "All Updates" -msgstr "" - -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" -msgstr "" - -#: IDF/Views/Project.php:76 -msgid "Documents" -msgstr "" - -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" -msgstr "" - -#: IDF/Views/Project.php:142 -msgid "This table shows the project updates." -msgstr "" - -#: IDF/Views/Project.php:153 -msgid "Change" -msgstr "" - -#: IDF/Views/Project.php:157 -msgid "No changes were found." -msgstr "" - -#: IDF/Views/Project.php:248 -#, php-format -msgid "%s Project Summary" -msgstr "" - -#: IDF/Views/Project.php:256 IDF/Views/Admin.php:101 -msgid "The project has been updated." -msgstr "" - -#: IDF/Views/Project.php:283 -#, php-format -msgid "%s Issue Tracking Configuration" -msgstr "" - -#: IDF/Views/Project.php:292 -msgid "The issue tracking configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:328 -#, php-format -msgid "%s Downloads Configuration" -msgstr "" - -#: IDF/Views/Project.php:337 -msgid "The downloads configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:371 -#, php-format -msgid "%s Documentation Configuration" -msgstr "" - -#: IDF/Views/Project.php:380 -msgid "The documentation configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:414 -#, php-format -msgid "%s Project Members" -msgstr "" - -#: IDF/Views/Project.php:423 -msgid "The project membership has been saved." -msgstr "" - -#: IDF/Views/Project.php:446 -#, php-format -msgid "%s Tabs Access Rights" -msgstr "" - -#: IDF/Views/Project.php:460 -msgid "The project tabs access rights have been saved." -msgstr "" - -#: IDF/Views/Project.php:506 -#, php-format -msgid "%s Source" -msgstr "" - -#: IDF/Views/Project.php:520 -msgid "The project source configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:540 IDF/Form/Admin/ProjectCreate.php:38 -msgid "git" -msgstr "" - -#: IDF/Views/Project.php:541 IDF/Form/Admin/ProjectCreate.php:39 -msgid "Subversion" -msgstr "" - -#: IDF/Views/Project.php:542 IDF/Form/Admin/ProjectCreate.php:40 -msgid "mercurial" -msgstr "" - -#: IDF/Views/Project.php:543 IDF/Form/Admin/ProjectCreate.php:41 -msgid "monotone" -msgstr "" - -#: IDF/Views/Issue.php:41 -#, php-format -msgid "%s Open Issues" -msgstr "" - -#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:288 IDF/Views/User.php:75 -msgid "This table shows the open issues." -msgstr "" - -#: IDF/Views/Issue.php:61 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/User.php:81 IDF/Views/Review.php:57 -msgid "Id" -msgstr "" - -#: IDF/Views/Issue.php:63 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/User.php:84 IDF/Views/Review.php:59 -#: IDF/Form/ReviewCreate.php:103 IDF/Form/IssueUpdate.php:88 -#: IDF/Form/IssueCreate.php:95 IDF/Form/ReviewFileComment.php:81 -msgid "Status" -msgstr "" - -#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:142 IDF/Views/Issue.php:224 -#: IDF/Views/Issue.php:299 IDF/Views/Issue.php:386 IDF/Views/Issue.php:565 -#: IDF/Views/Issue.php:624 IDF/Views/User.php:85 IDF/Views/Review.php:60 -msgid "Last Updated" -msgstr "" - -#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:146 IDF/Views/Issue.php:228 -#: IDF/Views/Issue.php:303 IDF/Views/Issue.php:390 IDF/Views/Issue.php:569 -#: IDF/Views/Issue.php:628 -msgid "No issues were found." -msgstr "" - -#: IDF/Views/Issue.php:113 -#, php-format -msgid "Watch List: Closed Issues for %s" -msgstr "" - -#: IDF/Views/Issue.php:114 -#, php-format -msgid "This table shows the closed issues in your watch list for %s project." -msgstr "" - -#: IDF/Views/Issue.php:119 -#, php-format -msgid "Watch List: Open Issues for %s" -msgstr "" - -#: IDF/Views/Issue.php:120 -#, php-format -msgid "This table shows the open issues in your watch list for %s project." -msgstr "" - -#: IDF/Views/Issue.php:196 -msgid "Watch List: Closed Issues" -msgstr "" - -#: IDF/Views/Issue.php:197 -msgid "This table shows the closed issues in your watch list." -msgstr "" - -#: IDF/Views/Issue.php:202 -msgid "Watch List: Open Issues" -msgstr "" - -#: IDF/Views/Issue.php:203 -msgid "This table shows the open issues in your watch list." -msgstr "" - -#: IDF/Views/Issue.php:222 IDF/Views/User.php:82 -msgid "Project" -msgstr "" - -#: IDF/Views/Issue.php:255 -#, php-format -msgid "My Submitted %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:259 -#, php-format -msgid "My Closed Submitted %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:263 -#, php-format -msgid "My Closed Working %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:267 -#, php-format -msgid "My Working %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:322 -msgid "Submit a new issue" -msgstr "" - -#: IDF/Views/Issue.php:338 -#, php-format -msgid "Issue %d has been created." -msgstr "" - -#: IDF/Views/Issue.php:367 -#, php-format -msgid "Search Issues - %s" -msgstr "" - -#: IDF/Views/Issue.php:379 -msgid "This table shows the found issues." -msgstr "" - -#: IDF/Views/Issue.php:409 -#, php-format -msgid "Issue %d: %s" -msgstr "" - -#: IDF/Views/Issue.php:433 -#, php-format -msgid "Issue %d has been updated." -msgstr "" - -#: IDF/Views/Issue.php:522 -#, php-format -msgid "View %s" -msgstr "" - -#: IDF/Views/Issue.php:542 -#, php-format -msgid "%s Closed Issues" -msgstr "" - -#: IDF/Views/Issue.php:552 -msgid "This table shows the closed issues." -msgstr "" - -#: IDF/Views/Issue.php:595 -#, php-format -msgid "%1$s Issues with Label %2$s" -msgstr "" - -#: IDF/Views/Issue.php:598 -#, php-format -msgid "%1$s Closed Issues with Label %2$s" -msgstr "" - -#: IDF/Views/Issue.php:611 -#, php-format -msgid "This table shows the issues with label %s." -msgstr "" - -#: IDF/Views/Issue.php:661 -msgid "The issue has been removed from your watch list." -msgstr "" - -#: IDF/Views/Issue.php:664 -msgid "The issue has been added to your watch list." -msgstr "" - -#: IDF/Views/Issue.php:753 -msgid "On your watch list." -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:132 -msgid "Your Account" -msgstr "" - -#: IDF/Views/User.php:155 -msgid "The public key has been deleted." -msgstr "" - -#: IDF/Views/User.php:178 -msgid "Confirm The Email Change" -msgstr "" - -#: IDF/Views/User.php:203 -#, php-format -msgid "Your new email address \"%s\" has been validated. Thank you!" -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/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:66 IDF/Views/Admin.php:210 -#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 -msgid "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: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:211 IDF/Form/Admin/UserUpdate.php:161 -msgid "Staff" -msgstr "" - -#: IDF/Views/Admin.php:212 -msgid "Admin" -msgstr "" - -#: IDF/Views/Admin.php:213 IDF/Form/Admin/UserUpdate.php:172 -msgid "Active" -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 "" - -#: IDF/Views/Admin.php:471 -msgid "No" -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:70 IDF/Form/Upload.php:49 -#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/ReviewCreate.php:54 -#: IDF/Form/UserAccount.php:99 IDF/Form/IssueCreate.php:62 -#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 -msgid "Description" -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:93 IDF/Form/Upload.php:70 -#: IDF/Form/IssueUpdate.php:117 IDF/Form/IssueCreate.php:150 -#: IDF/Form/WikiUpdate.php:104 IDF/Form/UpdateUpload.php:71 -msgid "Labels" -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:151 IDF/Form/Upload.php:120 -#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 -#: IDF/Form/WikiUpdate.php:162 IDF/Form/UpdateUpload.php:110 -msgid "You provided an invalid label." -msgstr "" - -#: IDF/Form/WikiCreate.php:167 IDF/Form/Upload.php:148 -#: IDF/Form/Admin/UserCreate.php:106 IDF/Form/Admin/ProjectCreate.php:279 -#: IDF/Form/Admin/ProjectDelete.php:78 IDF/Form/Admin/UserUpdate.php:191 -#: IDF/Form/Admin/ProjectUpdate.php:121 IDF/Form/Password.php:76 -#: IDF/Form/ReviewCreate.php:187 IDF/Form/Register.php:114 -#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 -#: IDF/Form/UserAccount.php:178 IDF/Form/IssueCreate.php:263 -#: IDF/Form/MembersConf.php:64 IDF/Form/WikiUpdate.php:178 -#: IDF/Form/UpdateUpload.php:126 IDF/Form/TabsConf.php:98 -#: IDF/Form/UserChangeEmail.php:80 IDF/Form/ReviewFileComment.php:125 -msgid "Cannot save the model from an invalid form." -msgstr "" - -#: IDF/Form/WikiCreate.php:200 -msgid "Initial page creation" -msgstr "" - -#: IDF/Form/Upload.php:86 IDF/Form/Admin/UserUpdate.php:301 -#: IDF/Form/UserAccount.php:367 -msgid "For security reason, you cannot upload a file with this extension." -msgstr "" - -#: IDF/Form/Upload.php:119 IDF/Form/IssueCreate.php:199 -#: IDF/Form/UpdateUpload.php:109 -#, php-format -msgid "You cannot provide more than label from the %s class to an issue." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 -#: IDF/Form/UserAccount.php:40 IDF/Form/RegisterConfirmation.php:50 -msgid "First name" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 -#: IDF/Form/UserAccount.php:49 IDF/Form/RegisterConfirmation.php:59 -msgid "Last name" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:56 -msgid "Login" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 -msgid "" -"The login must be between 3 and 15 characters long and contains only letters " -"and digits." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 -msgid "Email" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:71 -msgid "" -"Double check the email address as the password is directly sent 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:159 -msgid "Add a public key" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:164 -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:400 -#, php-format -msgid "The email \"%s\" is already used." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 -#, php-format -msgid "The login \"%s\" can only contain letters and digits." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 -#, php-format -msgid "The login \"%s\" is already used, please find another one." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:62 -msgid "Shortname" -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:64 -msgid "" -"It must be unique for each project and composed only of letters, digits and " -"dash (-) like \"my-project\"." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 -msgid "Short description" -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php: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 throught http or https are allowed. For " -"example \"http://somewhere.com/svn/trunk\"." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 -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:295 -msgid "" -"Click on the Project Management tab to set the description of your project." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:362 -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/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 find it, but easy for the user " -"to remember." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:89 -msgid "Confirm password" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:108 -msgid "Twitter username" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:118 -msgid "Public email address" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:128 -msgid "Website URL" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:138 -msgid "Upload custom avatar" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:145 -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:150 -msgid "Remove custom avatar" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:154 -msgid "Tick this to delete the custom avatar." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:164 -msgid "If you give staff rights to a user, you really need to trust him." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:176 -msgid "" -"If the user is not getting the confirmation email or is abusing the system, " -"you can directly enable or disable his 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:316 IDF/Form/UserAccount.php:423 -msgid "The passwords do not match. Please give them again." -msgstr "" - -#: IDF/Form/Password.php:34 -msgid "Your login or email" -msgstr "" - -#: IDF/Form/Password.php:35 -msgid "Provide either your login or your email to recover your password." -msgstr "" - -#: IDF/Form/Password.php:49 IDF/Form/Password.php:64 -msgid "" -"Sorry, we cannot find a user with this email address or login. Feel free to " -"try again." -msgstr "" - -#: IDF/Form/Password.php:100 -msgid "Password Recovery - InDefero" -msgstr "" - -#: IDF/Form/PasswordReset.php:39 IDF/Form/PasswordInputKey.php:36 -#: IDF/Form/UserChangeEmail.php:36 -msgid "Your verification key" -msgstr "" - -#: IDF/Form/PasswordReset.php:45 IDF/Form/UserAccount.php:77 -#: IDF/Form/RegisterConfirmation.php:69 -msgid "Your password" -msgstr "" - -#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80 -#: IDF/Form/RegisterConfirmation.php:72 -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/UserAccount.php:88 -#: IDF/Form/RegisterConfirmation.php:80 -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/PasswordReset.php:89 IDF/Form/PasswordInputKey.php:50 -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/PasswordReset.php:100 IDF/Form/PasswordInputKey.php:61 -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/PasswordReset.php:108 IDF/Form/PasswordInputKey.php:76 -#: IDF/Form/RegisterInputKey.php:72 IDF/Form/RegisterConfirmation.php:137 -msgid "Cannot save an invalid form." -msgstr "" - -#: IDF/Form/ReviewCreate.php:83 IDF/Form/IssueUpdate.php:65 -#: IDF/Form/IssueCreate.php:72 -msgid "The \"upload_issue_path\" configuration variable was not set." -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:159 IDF/Form/IssueCreate.php:233 -msgid "You provided an invalid status." -msgstr "" - -#: IDF/Form/ReviewCreate.php:202 -msgid "Initial patch to be reviewed." -msgstr "" - -#: IDF/Form/Register.php:41 -msgid "Your login" -msgstr "" - -#: 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 spams 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:99 -#, php-format -msgid "" -"The email \"%s\" is already used. If you need, click on the help link to " -"recover your password." -msgstr "" - -#: IDF/Form/Register.php:150 -msgid "Confirm the creation of your account." -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/IssueUpdate.php:55 IDF/Form/WikiUpdate.php:82 -#: IDF/Form/ReviewFileComment.php:45 -msgid "Comment" -msgstr "" - -#: IDF/Form/IssueUpdate.php:75 IDF/Form/IssueCreate.php:82 -msgid "Attach a file" -msgstr "" - -#: IDF/Form/IssueUpdate.php:98 IDF/Form/IssueCreate.php:104 -msgid "Owner" -msgstr "" - -#: IDF/Form/IssueUpdate.php:147 IDF/Form/IssueCreate.php:210 -msgid "You need to provide a description of the issue." -msgstr "" - -#: IDF/Form/IssueUpdate.php:219 -msgid "No changes were entered." -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/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:207 -msgid "Confirm your new email address." -msgstr "" - -#: IDF/Form/UserAccount.php:210 -#, php-format -msgid "" -"A validation email has been sent to \"%s\" to validate the email address " -"change." -msgstr "" - -#: IDF/Form/UserAccount.php:312 -msgid "" -"Please check the key as it does not appear to be a valid SSH public key." -msgstr "" - -#: IDF/Form/UserAccount.php:332 -msgid "" -"Please check the key as it does not appear to be a valid monotone public key." -msgstr "" - -#: IDF/Form/UserAccount.php:340 -msgid "Public key looks neither like a SSH nor monotone public key." -msgstr "" - -#: IDF/Form/UserAccount.php:352 -msgid "You already have uploaded this key." -msgstr "" - -#: IDF/Form/RegisterInputKey.php:36 IDF/Form/RegisterConfirmation.php:40 -msgid "Your confirmation key" -msgstr "" - -#: IDF/Form/RegisterInputKey.php:50 IDF/Form/RegisterConfirmation.php:99 -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/IssueCreate.php:192 -msgid "You cannot add a label with the \"Status\" prefix to an issue." -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:80 -msgid "" -"Define an issue template to hint the reporter to provide certain information" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:89 -msgid "Open issue status values" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:97 -msgid "Closed issue status values" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:106 -msgid "Predefined issue labels" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:108 -msgid "" -"The first \"Type:\" and \"Priority:\" entries found in this list are " -"automatically chosen as defaults for new issues." -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:116 -msgid "Each issue may have at most one label with each of these classes" -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/MembersConf.php:104 -#, php-format -msgid "The following login is invalid: %s." -msgid_plural "The following logins are invalid: %s." -msgstr[0] "" -msgstr[1] "" - -#: IDF/Form/WikiUpdate.php:83 -msgid "One line to describe the changes you made." -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/UserChangeEmail.php:63 -msgid "" -"The validation key is not valid. Please copy/paste it from your confirmation " -"email." -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/ReviewFileComment.php:56 -msgid "General comment" -msgstr "" - -#: IDF/Form/ReviewFileComment.php:102 -msgid "You need to provide comments on at least one file." -msgstr "" - -#: IDF/Form/ReviewFileComment.php:109 -msgid "You need to provide your general comment about the proposal." -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/Field/EmailList.php:45 -msgid "Please enter one or more valid email addresses." -msgstr "" - -#: IDF/WikiRevision.php:48 -msgid "page" -msgstr "" - -#: IDF/WikiRevision.php:66 -msgid "A one line description of the changes." -msgstr "" - -#: IDF/WikiRevision.php:72 -msgid "content" -msgstr "" - -#: IDF/WikiRevision.php:167 IDF/WikiPage.php:196 -#, php-format -msgid "%2$s, %3$s" -msgstr "" - -#: 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 "" - -#: IDF/Review/Patch.php:52 -msgid "review" -msgstr "" - -#: IDF/Review/Patch.php:67 -msgid "commit" -msgstr "" - -#: IDF/Review/Patch.php:80 IDF/Review/Comment.php:55 -msgid "patch" -msgstr "" - -#: IDF/Review/Patch.php:151 IDF/Review/Comment.php:139 -#, php-format -msgid "" -"Review %3$d, %4$s" -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/Review/Comment.php:83 -msgid "vote" -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/Plugin/SyncSvn.php:81 IDF/Plugin/SyncMercurial.php:78 +#: 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:86 IDF/Plugin/SyncMonotone.php:457 #: IDF/Plugin/SyncMonotone.php:783 msgid "\"mtn_repositories\" must be defined in your configuration file." @@ -4154,6 +3366,11 @@ msgstr "" msgid "The project path %s could not be created." msgstr "" +#: IDF/Plugin/SyncMonotone.php:187 IDF/Scm/Monotone/Stdio.php:87 +#, php-format +msgid "The key directory %s could not be created." +msgstr "" + #: IDF/Plugin/SyncMonotone.php:205 #, php-format msgid "Could not parse key information: %s" @@ -4239,37 +3456,131 @@ msgstr "" msgid "The command \"%s\" could not be executed." msgstr "" -#: IDF/Plugin/SyncMercurial.php:142 -#, php-format -msgid "%s does not exist or is not writable." +#: IDF/Project.php:62 IDF/Tag.php:66 +msgid "name" msgstr "" -#: IDF/Timeline/Paginator.php:49 -msgid "Today" +#: IDF/Project.php:69 +msgid "short name" msgstr "" -#: IDF/WikiPage.php:62 -msgid "title" -msgstr "" - -#: IDF/WikiPage.php:63 +#: IDF/Project.php:70 msgid "" -"The title of the page must only contain letters, digits or the dash " -"character. For example: My-new-Wiki-Page." +"Used in the url to access the project, must be short with only letters and " +"numbers." msgstr "" -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." +#: IDF/Project.php:78 +msgid "short description" msgstr "" -#: IDF/WikiPage.php:198 +#: IDF/Project.php:86 IDF/Review/Patch.php:74 +msgid "description" +msgstr "" + +#: IDF/Project.php:87 +msgid "The description can be extended using the markdown syntax." +msgstr "" + +#: IDF/Project.php:93 +msgid "private" +msgstr "" + +#: IDF/Project.php:130 #, php-format -msgid "Creation of page %s, by %s" +msgid "Project \"%s\" not found." msgstr "" -#: IDF/WikiPage.php:208 +#: 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 "%s: Documentation page %s added - %s" +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:183 +#, php-format +msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." +msgstr "" + +#: IDF/Scm/Git.php:234 IDF/Scm/Mercurial.php:140 +#, php-format +msgid "Folder %1$s not found in commit %2$s." +msgstr "" + +#: IDF/Scm/Git.php:352 IDF/Scm/Mercurial.php:157 +#, 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:98 +#, 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 @@ -4288,16 +3599,8 @@ msgstr "" msgid "Lower case version of the name for fast searching." msgstr "" -#: IDF/Key.php:49 -msgid "user" -msgstr "" - -#: IDF/Key.php:55 -msgid "public key" -msgstr "" - -#: IDF/Key.php:87 -msgid "Invalid or unknown key data detected." +#: IDF/Template/Markdown.php:74 +msgid "Create this documentation page" msgstr "" #: IDF/Template/ShowUser.php:51 @@ -4308,6 +3611,723 @@ msgstr "" msgid "Me" msgstr "" -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" +#: IDF/Timeline/Paginator.php:49 +msgid "Today" +msgstr "" + +#: IDF/Upload.php:70 +msgid "file" +msgstr "" + +#: IDF/Upload.php:71 +msgid "The path is relative to the upload path." +msgstr "" + +#: IDF/Upload.php:78 +msgid "file size in bytes" +msgstr "" + +#: IDF/Upload.php:100 +msgid "number of downloads" +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 "" + +#: 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:312 +#, php-format +msgid "Update %s" +msgstr "" + +#: IDF/Views/Admin.php:101 IDF/Views/Project.php:256 +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 "" + +#: 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:295 +msgid "Uploaded" +msgstr "" + +#: IDF/Views/Download.php:71 IDF/Views/Download.php:299 +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:223 +#, php-format +msgid "The file has been uploaded." +msgstr "" + +#: IDF/Views/Download.php:277 +#, php-format +msgid "%1$s Downloads with Label %2$s" +msgstr "" + +#: IDF/Views/Download.php:287 +#, 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:287 IDF/Views/User.php:75 +msgid "This table shows the open issues." +msgstr "" + +#: 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 +msgid "Id" +msgstr "" + +#: 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 +msgid "Last Updated" +msgstr "" + +#: 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 +msgid "No issues were found." +msgstr "" + +#: IDF/Views/Issue.php:112 +#, php-format +msgid "Watch List: Closed Issues for %s" +msgstr "" + +#: IDF/Views/Issue.php:113 +#, php-format +msgid "This table shows the closed issues in your watch list for %s project." +msgstr "" + +#: IDF/Views/Issue.php:118 +#, php-format +msgid "Watch List: Open Issues for %s" +msgstr "" + +#: IDF/Views/Issue.php:119 +#, php-format +msgid "This table shows the open issues in your watch list for %s project." +msgstr "" + +#: IDF/Views/Issue.php:195 +msgid "Watch List: Closed Issues" +msgstr "" + +#: IDF/Views/Issue.php:196 +msgid "This table shows the closed issues in your watch list." +msgstr "" + +#: IDF/Views/Issue.php:201 +msgid "Watch List: Open Issues" +msgstr "" + +#: IDF/Views/Issue.php:202 +msgid "This table shows the open issues in your watch list." +msgstr "" + +#: IDF/Views/Issue.php:221 IDF/Views/User.php:82 +msgid "Project" +msgstr "" + +#: IDF/Views/Issue.php:254 +#, php-format +msgid "My Submitted %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:258 +#, php-format +msgid "My Closed Submitted %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:262 +#, php-format +msgid "My Closed Working %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:266 +#, php-format +msgid "My Working %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:321 +msgid "Submit a new issue" +msgstr "" + +#: IDF/Views/Issue.php:337 +#, php-format +msgid "Issue %d has been created." +msgstr "" + +#: IDF/Views/Issue.php:366 +#, php-format +msgid "Search Issues - %s" +msgstr "" + +#: IDF/Views/Issue.php:378 +msgid "This table shows the found issues." +msgstr "" + +#: IDF/Views/Issue.php:408 +#, php-format +msgid "Issue %d: %s" +msgstr "" + +#: IDF/Views/Issue.php:432 +#, php-format +msgid "Issue %d has been updated." +msgstr "" + +#: IDF/Views/Issue.php:521 +#, php-format +msgid "View %s" +msgstr "" + +#: IDF/Views/Issue.php:541 +#, php-format +msgid "%s Closed Issues" +msgstr "" + +#: IDF/Views/Issue.php:551 +msgid "This table shows the closed issues." +msgstr "" + +#: IDF/Views/Issue.php:594 +#, php-format +msgid "%1$s Issues with Label %2$s" +msgstr "" + +#: IDF/Views/Issue.php:597 +#, php-format +msgid "%1$s Closed Issues with Label %2$s" +msgstr "" + +#: IDF/Views/Issue.php:610 +#, php-format +msgid "This table shows the issues with label %s." +msgstr "" + +#: IDF/Views/Issue.php:660 +msgid "The issue has been removed from your watch list." +msgstr "" + +#: IDF/Views/Issue.php:663 +msgid "The issue has been added to your watch list." +msgstr "" + +#: IDF/Views/Issue.php:752 +msgid "On your watch list." +msgstr "" + +#: IDF/Views/Project.php:72 +msgid "All Updates" +msgstr "" + +#: IDF/Views/Project.php:74 +msgid "Issues and Comments" +msgstr "" + +#: IDF/Views/Project.php:76 +msgid "Documents" +msgstr "" + +#: IDF/Views/Project.php:77 +msgid "Reviews and Patches" +msgstr "" + +#: IDF/Views/Project.php:142 +msgid "This table shows the project updates." +msgstr "" + +#: IDF/Views/Project.php:153 +msgid "Change" +msgstr "" + +#: IDF/Views/Project.php:157 +msgid "No changes were found." +msgstr "" + +#: IDF/Views/Project.php:248 +#, php-format +msgid "%s Project Summary" +msgstr "" + +#: IDF/Views/Project.php:283 +#, php-format +msgid "%s Issue Tracking Configuration" +msgstr "" + +#: IDF/Views/Project.php:292 +msgid "The issue tracking configuration has been saved." +msgstr "" + +#: IDF/Views/Project.php:328 +#, php-format +msgid "%s Downloads Configuration" +msgstr "" + +#: IDF/Views/Project.php:337 +msgid "The downloads configuration has been saved." +msgstr "" + +#: IDF/Views/Project.php:371 +#, php-format +msgid "%s Documentation Configuration" +msgstr "" + +#: IDF/Views/Project.php:380 +msgid "The documentation configuration has been saved." +msgstr "" + +#: IDF/Views/Project.php:414 +#, php-format +msgid "%s Project Members" +msgstr "" + +#: IDF/Views/Project.php:423 +msgid "The project membership has been saved." +msgstr "" + +#: IDF/Views/Project.php:446 +#, php-format +msgid "%s Tabs Access Rights" +msgstr "" + +#: IDF/Views/Project.php:460 +msgid "The project tabs access rights have been saved." +msgstr "" + +#: IDF/Views/Project.php:506 +#, php-format +msgid "%s Source" +msgstr "" + +#: IDF/Views/Project.php:520 +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:81 +#, php-format +msgid "%s Ambiguous Revision" +msgstr "" + +#: IDF/Views/Source.php:106 +#, php-format +msgid "%1$s %2$s Change Log" +msgstr "" + +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#, php-format +msgid "%1$s %2$s Source Tree" +msgstr "" + +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" +msgstr "" + +#: IDF/Views/Source.php:304 +#, 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:132 +msgid "Your Account" +msgstr "" + +#: IDF/Views/User.php:155 +msgid "The public key has been deleted." +msgstr "" + +#: IDF/Views/User.php:178 +msgid "Confirm The Email Change" +msgstr "" + +#: IDF/Views/User.php:203 +#, 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:186 +#, php-format +msgid "The page %s has been created." +msgstr "" + +#: IDF/Views/Wiki.php:273 +msgid "The old revision has been deleted." +msgstr "" + +#: IDF/Views/Wiki.php:279 +#, php-format +msgid "Delete Old Revision of %s" +msgstr "" + +#: IDF/Views/Wiki.php:324 +#, php-format +msgid "The page %s has been updated." +msgstr "" + +#: IDF/Views/Wiki.php:362 +msgid "The documentation page has been deleted." +msgstr "" + +#: IDF/Views/Wiki.php:370 +#, php-format +msgid "Delete Page %s" +msgstr "" + +#: IDF/Views.php:124 IDF/Views.php:150 +msgid "Confirm Your Account Creation" +msgstr "" + +#: IDF/Views.php:170 +msgid "Welcome! You can now participate in the life of your project of choice." +msgstr "" + +#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 +msgid "Password Recovery" +msgstr "" + +#: IDF/Views.php:240 +msgid "" +"Welcome back! Next time, you can use your broswer options to remember the " +"password." +msgstr "" + +#: IDF/Views.php:282 +msgid "Here to Help You!" +msgstr "" + +#: IDF/Views.php:298 +msgid "InDefero API (Application Programming Interface)" +msgstr "" + +#: IDF/WikiPage.php:62 +msgid "title" +msgstr "" + +#: 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 "" + +#: IDF/WikiRevision.php:66 +msgid "A one line description of the changes." +msgstr "" + +#: IDF/WikiRevision.php:72 +msgid "content" +msgstr "" + +#: 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 26a4aa9..02dbf7f 100644 --- a/src/IDF/locale/ru/idf.po +++ b/src/IDF/locale/ru/idf.po @@ -7,182 +7,45 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-23 16:05+0100\n" +"POT-Creation-Date: 2011-02-23 23:36+0100\n" "PO-Revision-Date: 2011-02-23 00:05+0000\n" "Last-Translator: Delkia \n" "Language-Team: Russian <>\n" +"Language: 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=4; 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, %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/Review/Comment.php:69 IDF/Review.php:80 +#: IDF/Upload.php:85 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/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 +msgid "creation date" +msgstr "дата создания" + #: IDF/Commit.php:238 #, php-format msgid "Commit %s, by %s" @@ -193,6 +56,812 @@ 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/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:540 +msgid "git" +msgstr "git" + +#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:541 +msgid "Subversion" +msgstr "Subversion" + +#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:542 +msgid "mercurial" +msgstr "mercurial" + +#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:543 +msgid "monotone" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 +#: 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/index.html.php:6 +#: IDF/gettexttemplates/idf/main-menu.html.php:7 +msgid "Private project" +msgstr "Частный проект" + +#: IDF/Form/Admin/ProjectCreate.php:62 +msgid "Shortname" +msgstr "Краткое имя" + +#: IDF/Form/Admin/ProjectCreate.php:64 +msgid "" +"It must be unique for each project and composed only of letters, digits and " +"dash (-) like \"my-project\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 +msgid "Short description" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51 +#: IDF/Project.php:79 +msgid "A one line description of the project." +msgstr "Краткое описание проекта." + +#: IDF/Form/Admin/ProjectCreate.php:77 +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 "" + +#: 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 throught http or https are allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 +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:263 +#: IDF/Form/IssueUpdate.php:232 IDF/Form/MembersConf.php:64 +#: IDF/Form/Password.php:76 IDF/Form/Register.php:114 +#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:125 +#: IDF/Form/TabsConf.php:98 IDF/Form/UpdateUpload.php:126 +#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:180 +#: 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:362 +msgid "This project is not available." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:41 +msgid "Confirmation code" +msgstr "Код подтверждения" + +#: IDF/Form/Admin/ProjectDelete.php:46 +msgid "I have made a backup of all the important data of this project." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:55 +msgid "" +"The confirmation code does not match. Please provide a valid confirmation " +"code to delete the project." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:63 +msgid "Sorry, you really need to backup your data before deletion." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 +#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40 +msgid "First name" +msgstr "Имя" + +#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 +#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49 +msgid "Last name" +msgstr "Фамилия" + +#: IDF/Form/Admin/UserCreate.php:56 +msgid "Login" +msgstr "Логин" + +#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 +msgid "" +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "Эл. адрес" + +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is directly sent 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 IDF/Form/UserAccount.php:166 +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:402 +#, 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 "" + +#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 +#, php-format +msgid "The login \"%s\" is already used, please find another one." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:78 +msgid "Password" +msgstr "Пароль" + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "Leave blank if you do not want to change the password." +msgstr "Оставьте пустым если Вы не хотите менять пароль." + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "" +"The password must be hard for other people to find it, 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: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 +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 him." +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 his 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/Upload.php:86 +#: IDF/Form/UserAccount.php:369 +msgid "For security reason, you cannot upload a file with this extension." +msgstr "В целях безопасности, вы не можете загрузить файл с таким расширением." + +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:425 +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:53 IDF/Form/IssueUpdate.php:45 +#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:71 +#: 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 +msgid "Summary" +msgstr "Краткое описание" + +#: IDF/Form/IssueCreate.php:72 IDF/Form/IssueUpdate.php:65 +#: IDF/Form/ReviewCreate.php:83 +msgid "The \"upload_issue_path\" configuration variable was not set." +msgstr "" + +#: IDF/Form/IssueCreate.php:82 IDF/Form/IssueUpdate.php:75 +msgid "Attach a file" +msgstr "Приложить файл" + +#: IDF/Form/IssueCreate.php:95 IDF/Form/IssueUpdate.php:88 +#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:81 +#: 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 +msgid "Status" +msgstr "Статус" + +#: IDF/Form/IssueCreate.php:104 IDF/Form/IssueUpdate.php:98 +msgid "Owner" +msgstr "Владелец" + +#: IDF/Form/IssueCreate.php:150 IDF/Form/IssueUpdate.php:117 +#: 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:192 +msgid "You cannot add a label with the \"Status\" prefix to an issue." +msgstr "Вы не можете добавить ярлык с префиксом \"Статус\" к проблеме." + +#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 +#: 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:199 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:210 IDF/Form/IssueUpdate.php:147 +msgid "You need to provide a description of the issue." +msgstr "Вам необходимо ввести описание проблемы." + +#: IDF/Form/IssueCreate.php:233 IDF/Form/ReviewCreate.php:159 +msgid "You provided an invalid status." +msgstr "Вы ввели неверный статус." + +#: IDF/Form/IssueTrackingConf.php:80 +msgid "" +"Define an issue template to hint the reporter to provide certain information" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:89 +msgid "Open issue status values" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:97 +msgid "Closed issue status values" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:106 +msgid "Predefined issue labels" +msgstr "Предопределенные ярлыки для проблемы" + +#: IDF/Form/IssueTrackingConf.php:108 +msgid "" +"The first \"Type:\" and \"Priority:\" entries found in this list are " +"automatically chosen as defaults for new issues." +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:116 +msgid "Each issue may have at most one label with each of these classes" +msgstr "" + +#: IDF/Form/IssueUpdate.php:55 IDF/Form/ReviewFileComment.php:45 +#: IDF/Form/WikiUpdate.php:82 +msgid "Comment" +msgstr "Комментарий" + +#: IDF/Form/IssueUpdate.php:219 +msgid "No changes were entered." +msgstr "Никакие изменения не были введены." + +#: IDF/Form/MembersConf.php:104 +#, php-format +msgid "The following login is invalid: %s." +msgid_plural "The following logins are invalid: %s." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: IDF/Form/Password.php:34 +msgid "Your login or email" +msgstr "Ваш логин или эл. адрес" + +#: IDF/Form/Password.php:35 +msgid "Provide either your login or your email to recover your password." +msgstr "" + +#: IDF/Form/Password.php:49 IDF/Form/Password.php:64 +msgid "" +"Sorry, we cannot find a user with this email address or login. Feel free to " +"try again." +msgstr "" + +#: IDF/Form/Password.php:100 +msgid "Password Recovery - InDefero" +msgstr "Восстановение пароля - 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 "" + +#: 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/RegisterConfirmation.php:72 +#: 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/Register.php:41 +msgid "Your login" +msgstr "Ваш логин" + +#: 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 spams 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:99 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need, click on the help link to " +"recover your password." +msgstr "" + +#: IDF/Form/Register.php:150 +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: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:102 +msgid "You need to provide comments on at least one file." +msgstr "Вы должны указать комментарий как минимум для одного файла." + +#: IDF/Form/ReviewFileComment.php:109 +msgid "You need to provide your general comment about the proposal." +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.orig.php:5 +#: IDF/gettexttemplates/idf/base-full.html.php:5 +#: IDF/gettexttemplates/idf/base.html.orig.php:5 +#: IDF/gettexttemplates/idf/base.html.php:5 +#: IDF/gettexttemplates/idf/downloads/base.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14 +#: IDF/Views/Project.php:75 +msgid "Downloads" +msgstr "Файлы" + +#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.orig.php:9 +#: IDF/gettexttemplates/idf/base-full.html.php:9 +#: IDF/gettexttemplates/idf/base.html.orig.php:9 +#: IDF/gettexttemplates/idf/base.html.php:9 +msgid "Code Review" +msgstr "Аудит кода" + +#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:6 +#: IDF/gettexttemplates/idf/base-full.html.php:6 +#: IDF/gettexttemplates/idf/base.html.orig.php:6 +#: IDF/gettexttemplates/idf/base.html.php:6 +msgid "Documentation" +msgstr "Документация" + +#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:8 +#: IDF/gettexttemplates/idf/base-full.html.php:8 +#: IDF/gettexttemplates/idf/base.html.orig.php:8 +#: IDF/gettexttemplates/idf/base.html.php:8 +msgid "Source" +msgstr "Исходный код" + +#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.orig.php:7 +#: IDF/gettexttemplates/idf/base-full.html.php:7 +#: IDF/gettexttemplates/idf/base.html.orig.php:7 +#: IDF/gettexttemplates/idf/base.html.php:7 +#: 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:6 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6 +#: IDF/Views/Download.php:64 IDF/Views/Download.php:292 +msgid "File" +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:209 +msgid "Confirm your new email address." +msgstr "Подтвердите ваш новый адрес электронной почты." + +#: IDF/Form/UserAccount.php:212 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" + +#: IDF/Form/UserAccount.php:314 +msgid "" +"Please check the key as it does not appear to be a valid SSH public key." +msgstr "" + +#: IDF/Form/UserAccount.php:334 +msgid "" +"Please check the key as it does not appear to be a valid monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:342 +msgid "Public key looks neither like a SSH nor monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:354 +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,83 +870,496 @@ 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" +"

    При необходимости, используйте знак равенства для описания значение " +"каждого статуса.

    \n" + +#: IDF/gettexttemplates/idf/admin/downloads.html.php:8 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8 +#: IDF/gettexttemplates/idf/admin/members.html.php:13 +#: IDF/gettexttemplates/idf/admin/source.html.php:31 +#: IDF/gettexttemplates/idf/admin/summary.html.php:8 +#: IDF/gettexttemplates/idf/admin/tabs.html.php:15 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:8 +msgid "Save Changes" +msgstr "Сохранить изменения" + +#: IDF/gettexttemplates/idf/admin/members.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/update.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/admin/members.html.php:8 +#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 +msgid "" +"\n" +"

    Notes:

    \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 "" + +#: 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" +msgstr "" +"\n" +"

    Инструкции:

    \n" +"

    Описание проекта может быть оформлено с использованием Markdown синтаксиса.

    \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/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.orig.php:3 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.orig.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.orig.php:4 +#: IDF/gettexttemplates/idf/base-full.html.php:4 +#: IDF/gettexttemplates/idf/base.html.orig.php:4 +#: IDF/gettexttemplates/idf/base.html.php:4 +msgid "Project Home" +msgstr "Проект" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:10 +#: IDF/gettexttemplates/idf/base-full.html.php:10 +#: IDF/gettexttemplates/idf/base.html.orig.php:10 +#: IDF/gettexttemplates/idf/base.html.php:10 +msgid "Project Management" +msgstr "Управление проектом" + +#: IDF/gettexttemplates/idf/downloads/base.html.php:4 +#: IDF/gettexttemplates/idf/downloads/index.html.php:4 +#: IDF/Views/Download.php:214 +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:8 +#: 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:25 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: 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/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +#: 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:13 +msgid "Uploaded:" +msgstr "Загружено:" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:27 +#: IDF/gettexttemplates/idf/review/view.html.php:26 +#: 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:15 +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:12 +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:16 +#: 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:20 +#: IDF/gettexttemplates/idf/issues/view.html.php:31 +#: 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:30 +#: 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 "Changes" +msgstr "Изменения" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:6 +msgid "The form contains some errors. Please correct them to update the file." +msgstr "Форма содержит ошибки. Пожалуйста исправьте их для обновления файла." + +#: IDF/gettexttemplates/idf/downloads/view.html.php:7 +msgid "Update File" +msgstr "Обновить файл" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:11 +msgid "Remove this file" +msgstr "Удалить этот файл" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:10 +#: 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:12 +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:45 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:45 msgid "Projects" msgstr "Проекты" -#: IDF/Views.php:88 IDF/gettexttemplates/idf/register/index.html.php:6 -msgid "Create Your Account" -msgstr "Создайте Ваш аккаунт" - -#: IDF/Views.php:124 IDF/Views.php:150 -msgid "Confirm Your Account Creation" -msgstr "Подтвердите создание аккаунта" - -#: IDF/Views.php:170 -msgid "Welcome! You can now participate in the life of your project of choice." -msgstr "" -"Добро пожаловать! Теперь Вы можете учавствовать в жизни выбранного проекта." - -#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 -msgid "Password Recovery" -msgstr "Восстановление пароля" - -#: IDF/Views.php:240 -msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." -msgstr "" -"Рады Вас снова видеть! Следющий раз Вы можете использовать функцию " -"сохранения пароля в Вашем браузере." - -#: IDF/Views.php:282 -msgid "Here to Help You!" -msgstr "Здесь чтобы помогать Вам!" - -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" -msgstr "InDefero API (Application Programming Interface)" - -#: IDF/Scm/Mercurial.php:140 IDF/Scm/Git.php:234 -#, php-format -msgid "Folder %1$s not found in commit %2$s." -msgstr "" - -#: IDF/Scm/Mercurial.php:157 IDF/Scm/Git.php:352 -#, 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:183 -#, php-format -msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." -msgstr "Неверное значение параметра %1$s: %2$s. Используйте %3$s." - #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

    This is simple:

    \n" @@ -393,164 +1475,38 @@ 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/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 "Oups, 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:12 -#: 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." +#: 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: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/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/index.html.php:3 -msgid "" -"Read the terms and conditions " -"– basically \"Please be nice, we respect you\"." -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/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/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/index.html.php:5 -msgid "Oups, 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 "Oups, 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 to log in afterwards." -msgstr "" -"Это последний шаг, но убедитесь, что включены 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/base.html.php:5 +msgid "Change Project Details" +msgstr "Изменить данные о проекте" #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:3 msgid "" @@ -574,19 +1530,6 @@ msgid "" "

    Separate the logins with commas and/or new lines.

    \n" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 -#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 -#: IDF/gettexttemplates/idf/admin/members.html.php:8 -msgid "" -"\n" -"

    Notes:

    \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 "" - #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14 msgid "" "The form contains some errors. Please correct them to create the project." @@ -596,18 +1539,6 @@ msgstr "Форма содержит ошибки. Пожалуйста испр 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 #, php-format msgid "" @@ -642,15 +1573,6 @@ msgstr "" 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 "Аудит кода" @@ -660,12 +1582,6 @@ msgstr "Аудит кода" 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 "" @@ -689,18 +1605,11 @@ 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 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 msgid "Attachments:" msgstr "Вложения:" -#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 -#: IDF/gettexttemplates/idf/index.html.php:12 -#: 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 "Базы данных:" @@ -709,21 +1618,6 @@ msgstr "Базы данных:" 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." @@ -743,25 +1637,24 @@ msgstr "Обновить проект" 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/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" +msgstr "Список пользователей" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 -msgid "Change Project Details" -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." @@ -769,11 +1662,6 @@ 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 "Пароль пользователя будет выслан ему по электронной почте." @@ -830,6 +1718,13 @@ 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" @@ -839,15 +1734,22 @@ msgstr "" 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/usher/base.html.php:3 +msgid "Configured servers" +msgstr "" -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" -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/control.html.php:3 msgid "current server status:" @@ -949,1014 +1851,10 @@ msgstr "" 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 -#, fuzzy -msgid "What is your account information?" -msgstr "Какой ваш логин?" - -#: IDF/gettexttemplates/idf/login_form.html.php:4 -msgid "My login is" -msgstr "Мой логин" - -#: IDF/gettexttemplates/idf/login_form.html.php:5 -#, fuzzy -msgid "My password is" -msgstr "мой пароль" - -#: IDF/gettexttemplates/idf/login_form.html.php:6 -msgid "Sign in" -msgstr "Войти" - -#: IDF/gettexttemplates/idf/login_form.html.php:7 -msgid "I lost my password!" -msgstr "Я забыл пароль!" - -#: IDF/gettexttemplates/idf/login_form.html.php:8 -#, fuzzy -msgid "Welcome." -msgstr "Добро пожаловать" - -#: IDF/gettexttemplates/idf/login_form.html.php:9 -msgid "If you don't have an account yet, you can create one" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:10 -#, fuzzy -msgid "here" -msgstr "Другой" - -#: IDF/gettexttemplates/idf/login_form.html.php:11 -#, fuzzy -msgid "It takes less than a minute to create your account" -msgstr "Войти или создать аккаунт" - -#: IDF/gettexttemplates/idf/user/public.html.php:3 +#: IDF/gettexttemplates/idf/index.atom.php:3 #, php-format -msgid "You are looking at the public profile of %%member%%." -msgstr "Вы просматриваете публичный профиль %%member%%." - -#: 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:" -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 -#, 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/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/myaccount.html.php:6 -msgid "Key Management" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:7 -msgid "Extra password" -msgstr "Дополнительный пароль" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 -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:9 -msgid "API key" -msgstr "API ключ" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 -msgid "" -"Your API key will be regenerated automatically if you change your password." -msgstr "API ключ будет сгенерирован автоматически при смене Вашего пароль." - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 -msgid "Update Your Account" -msgstr "Обновить профиль" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 -msgid "Your Current Public Keys" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 -msgid "Delete this key" -msgstr "Удалить этот ключ" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 -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:16 -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:17 -msgid "Show API key and extra password" -msgstr "Показать ключ API и дополнительный пароль" - -#: 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 -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/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 again 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 -msgid "" -"Oups, 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 "Создан:" - -#: 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" -"

    Instructions:

    \n" -"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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/search.html.php:3 -#: IDF/gettexttemplates/idf/wiki/index.html.php:4 -#: IDF/gettexttemplates/idf/wiki/base.html.php:4 IDF/Views/Wiki.php:177 -msgid "New Page" -msgstr "Новая страница" - -#: IDF/gettexttemplates/idf/wiki/search.html.php:4 -msgid "Pages found:" -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 -msgid "Changes:" -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/wiki-updated-email.txt.php:3 -msgid "The following documentation page has been updated:" -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/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/wiki/wiki-updated-email.txt.php:7 -msgid "Updated by:" -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 -msgid "Created by:" -msgstr "Создатель:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13 -msgid "New content:" -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 -msgid "Content:" -msgstr "Содежимое:" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:3 -msgid "List Pages" -msgstr "Список страниц" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:5 -msgid "Update This Page" -msgstr "Обновить эту страницу" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:6 -#: IDF/gettexttemplates/idf/issues/base.html.php:7 -msgid "Search" -msgstr "Искать" - -#: IDF/gettexttemplates/idf/source/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/invalid_revision.html.php:5 -#, 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/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/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/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/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 -msgid "Date:" -msgstr "Дата:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:5 -#: IDF/gettexttemplates/idf/review/view.html.php:27 -msgid "Author:" -msgstr "Автор:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:6 -msgid "Branch:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:8 -#: IDF/gettexttemplates/idf/review/view.html.php:29 -msgid "View corresponding source tree" -msgstr "Просмотреть соответствующие дерево исходных текстов" - -#: IDF/gettexttemplates/idf/source/commit.html.php:9 -msgid "Parents:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:10 -#: IDF/gettexttemplates/idf/source/changelog.html.php:6 -msgid "View corresponding commit" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:11 -msgid "Message:" -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:17 -msgid "full" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:15 -msgid "renamed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:16 -msgid "added" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:18 -msgid "modified" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:19 -msgid "properies changed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:20 -msgid "removed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.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/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/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 -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 "" -"Исходный код в комите %%commit%% " -"создан %%cobject.date%%." - -#: 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 "%%cobject.author%%, %%cobject.title%%" - -#: 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 "Скачать этот файл" - -#: 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:294 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:296 -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 "" -"The team behind %%project%% is using\n" -"the git software to manage the source\n" -"code." -msgstr "" -"Команда проекта %%project%% использует\n" -"git для управления исходными текстами." - -#: IDF/gettexttemplates/idf/source/git/help.html.php:6 -#, php-format -msgid "" -"You may need to provide your SSH key. The " -"synchronization of your SSH key can take a couple of minutes. You can learn " -"more about SSH key authentification." -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 "Справка и специальные возможности" +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." @@ -1992,419 +1890,90 @@ msgstr "Документация" msgid "Code reviews:" msgstr "Аудит кода" -#: IDF/gettexttemplates/idf/base-full.html.php:3 -#: IDF/gettexttemplates/idf/base.html.php:3 +#: 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:34 +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +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:7 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:9 +msgid "Download this file" +msgstr "Скачать этот файл" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:7 +#: IDF/gettexttemplates/idf/issues/view.html.php:26 +#: IDF/gettexttemplates/idf/review/view.html.php:25 +#: 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:3 +msgid "Open Issues" +msgstr "Открытые проблемы" + +#: 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 "Новая проблема" + +#: 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/wiki/base.html.php:6 +msgid "Search" +msgstr "Искать" + +#: IDF/gettexttemplates/idf/issues/base.html.php:8 +msgid "Back to the issue" +msgstr "Назад к проблеме" + +#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 #, php-format msgid "" -"Sign in or create your account to create issues or " -"add comments" +"

    Open issues: %%open%%

    \n" +"

    Closed issues: %%closed%%

    \n" msgstr "" -"Войдите или зарегистрируйтесь что бы добавить " -"проблему или комментарий" +"

    Открытых проблем: %%open%%\n" +"

    Закрытых проблем: %%closed%%

    \n" -#: IDF/gettexttemplates/idf/base-full.html.php:4 -#: IDF/gettexttemplates/idf/base.html.php:4 -msgid "Project Home" -msgstr "Проект" +#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 +msgid "Label:" +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 -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" -"
    • Ensure your patch does not contain any passwords 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 "%%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 "" -"By %%who%%, %%c.creation_dtime%%, on file:\n" -"%%c.cfile%%\n" - -#: 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 -#, 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 "" -"Рецензирование кода - это процесс, при котором до или после комитов " -"отправленых в репозиторий, разные люди обсуждают изменения в коде. Целью " -"является улучшение качества кода и участия, таким образом, " -"вы должны быть прагматичными при написании обзора. Правильно отметить номера " -"строк (в старом или в новом файле) и попытаться сохранить хороший баланс " -"между серьезностью и шуткой.\n" - -#: 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 "" -"\n" -"Предложение кода для рецензирования пугает. Знайте, вы " -"будете получать критику, поэтому, пожалуйста, как рецензент, " -"воспринимать этот процесс с улыбкой, использовать его, " -"чтобы помочь вашей команде узнать ваши стандарты кодирования и структуры " -"кода и сделать так, что бы они продолжили участие в проекте .\n" - -#: IDF/gettexttemplates/idf/review/view.html.php:20 -#, php-format -msgid "" -"Comment
    %%i%% by %%who%%, " -"%%c.creation_dtime%%" -msgstr "" -"Комментарий %%i%% %%who%%, %%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 "" -"\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 "" -"\n" -"

    Инструкции:

    \n" -"

    Описание проекта может быть оформлено с использованием Markdown синтаксиса.

    \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" -"

    Указывайте значение статуса по одному на строку в нужном порядке.

    \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/by-label.html.php:8 +msgid "Completion:" +msgstr "Завершение:" #: IDF/gettexttemplates/idf/issues/create.html.php:3 msgid "" @@ -2431,6 +2000,15 @@ msgstr "" msgid "The form contains some errors. Please correct them to submit the issue." msgstr "Форма содержит ошибки. Пожалуйста исправте их чтобы добавить проблему." +#: 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 +#: IDF/gettexttemplates/idf/wiki/create.html.php:5 +#: IDF/gettexttemplates/idf/wiki/update.html.php:5 +msgid "Preview" +msgstr "Предпросмотр" + #: IDF/gettexttemplates/idf/issues/create.html.php:12 msgid "Submit Issue" msgstr "Отправить проблему" @@ -2447,35 +2025,42 @@ msgstr "Приложить файл" 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/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/view.html.php:17 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:40 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:6 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:11 +#: IDF/IssueComment.php:151 +msgid "Summary:" +msgstr "Краткое описание:" -#: IDF/gettexttemplates/idf/issues/search.html.php:4 -msgid "Found issues:" -msgstr "Найти проблему:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:13 +#: IDF/gettexttemplates/idf/issues/view.html.php:18 +#: IDF/gettexttemplates/idf/issues/view.html.php:28 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:6 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:10 +#: IDF/gettexttemplates/idf/review/view.html.php:41 IDF/IssueComment.php:153 +msgid "Status:" +msgstr "Статус:" -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 -msgid "The following issue has been updated:" -msgstr "Следующая проблема была обновлена:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:5 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:19 +#: IDF/gettexttemplates/idf/issues/view.html.php:29 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:5 +#: IDF/IssueComment.php:155 +msgid "Owner:" +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/issues/project-watchlist.html.php:3 #, php-format msgid "" "

    Open issues: %%open%%

    \n" @@ -2487,26 +2072,6 @@ msgstr "" "

    Закрытых проблем: %%closed%%

    " -#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 -#, php-format -msgid "" -"

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" -msgstr "" -"

    Открытых проблем: %%open%%\n" -"

    Закрытых проблем: %%closed%%

    \n" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" -msgstr "Ярлык:" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 -msgid "Completion:" -msgstr "Завершение:" - #: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3 msgid "" "A new issue has been created and assigned\n" @@ -2515,11 +2080,88 @@ msgstr "" "Новая проблема была создана и назначена\n" "на Вас:" +#: 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 "Сообщил:" + +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 +msgid "Issue:" +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:4 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 +#, php-format +msgid "By %%who%%, %%c.creation_dtime%%:" +msgstr "%%who%%, %%c.creation_dtime%%:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12 +msgid "URL:" +msgstr "URL:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 +msgid "Comments (last first):" +msgstr "Комментарии (последние первыми):" + +#: IDF/gettexttemplates/idf/issues/my-issues.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/my-issues.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/my-issues.html.php:6 +#: IDF/gettexttemplates/idf/user/dashboard.html.php:7 +msgid "Submitted issues:" +msgstr "Отправленные проблемы:" + +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7 +#: IDF/gettexttemplates/idf/user/dashboard.html.php:6 +msgid "Working issues:" +msgstr "Проблемы в работе:" + +#: IDF/gettexttemplates/idf/issues/search.html.php:4 +msgid "Found 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." @@ -2587,62 +2229,81 @@ msgstr "Сохранить изменения" msgid "Followed by:" msgstr "Наблюдатели:" -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 +#: IDF/gettexttemplates/idf/login_form.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/my-issues.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/attachment.html.php:3 -#, php-format -msgid "Attachment to issue %%issue.id%%" -msgstr "Вложение к тикету %%issue.id%%" - -#: IDF/gettexttemplates/idf/issues/base.html.php:3 -msgid "Open 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" +"If you don't have an account yet, you can create one here." msgstr "" -#: IDF/gettexttemplates/idf/issues/base.html.php:8 -msgid "Back to the issue" -msgstr "Назад к проблеме" +#: IDF/gettexttemplates/idf/login_form.html.php:4 +#, fuzzy +msgid "What is your account information?" +msgstr "Какой ваш логин?" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" -msgstr "Последние изменения" +#: IDF/gettexttemplates/idf/login_form.html.php:5 +msgid "My login is" +msgstr "Мой логин" + +#: IDF/gettexttemplates/idf/login_form.html.php:6 +#, fuzzy +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 +#, fuzzy +msgid "Welcome." +msgstr "Добро пожаловать" + +#: IDF/gettexttemplates/idf/login_form.html.php:10 +#, fuzzy +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: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/main-menu.html.php:10 +#: 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 +msgid "Help" +msgstr "Помощь" -#: IDF/gettexttemplates/idf/project/timeline.html.php:5 #: IDF/gettexttemplates/idf/project/home.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html.php:5 msgid "Latest Updates" msgstr "Последние изменения" -#: IDF/gettexttemplates/idf/project/timeline.html.php:6 -msgid "Filter by type" -msgstr "" - #: IDF/gettexttemplates/idf/project/home.html.php:5 msgid "Featured Downloads" msgstr "Рекомендуемые загрузки" @@ -2668,119 +2329,1153 @@ msgstr "Админы" msgid "Happy Crew" 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/project/timeline.html.php:3 +msgid "Latest updates" +msgstr "Последние изменения" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html.php:6 +msgid "Filter by type" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 #, php-format msgid "" -"Instead of deleting the file, you could mark it as " -"deprecated." +"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/downloads/delete.html.php:6 -msgid "Delete File" -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 "Oups, please check the form for errors." +msgstr "Упс, пожалуйста, проверьте форму на наличие ошибок." -#: IDF/gettexttemplates/idf/downloads/delete.html.php:8 -#: IDF/gettexttemplates/idf/downloads/view.html.php:13 -msgid "Uploaded:" -msgstr "Загружено:" +#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 +msgid "Email:" +msgstr "Эл. почта:" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 +#: 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 "" -"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." +"This is the last step, but just be sure to have the cookies enabled to log in afterwards." msgstr "" -"Каждый файл должен иметь уникальное имя и содержимое файла не может быть " -"изменено, так что не забудьте включить номер релиза в каждом имени файла." +"Это последний шаг, но убедитесь, что включены cookies чтобы " +"войдите потом." -#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 +#: 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 "" -"You can use the Markdown syntax for the description." +"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 "" -"Вы можете использовать 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/register/index.html.php:5 +msgid "Oups, please check the provided login and email address to register." +msgstr "" +"Упс, пожалуйста, проверьте логин и адрес электронной почты для регистрации." -#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 -msgid "Submit File" -msgstr "Послать файл" +#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:88 +msgid "Create Your Account" +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:4 -#: IDF/gettexttemplates/idf/downloads/base.html.php:4 -#: IDF/Views/Download.php:216 -msgid "New Download" -msgstr "Добавить файл" - -#: IDF/gettexttemplates/idf/downloads/index.html.php:5 -msgid "Number of files:" -msgstr "Количество файлов:" - -#: IDF/gettexttemplates/idf/downloads/view.html.php:3 +#: IDF/gettexttemplates/idf/register/index.html.php:8 msgid "" -"Attention! This file is marked as deprecated, download it " -"only if you are sure you need this specific version." +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." msgstr "" -"Внимание! Этот файл помечен как устаревший. Скачивайте его, " -"только если вы уверены, что вам необходима именно эта конкретная версия." +"Не забудьте указать действительный адрес электронной почты, т.к. на него " +"будет оправлена ссылка для подтверждения регистрации." -#: IDF/gettexttemplates/idf/downloads/view.html.php:5 -msgid "Changes" -msgstr "Изменения" +#: IDF/gettexttemplates/idf/register/index.html.php:9 +msgid "Did you know?" +msgstr "Знаете ли Вы?" -#: IDF/gettexttemplates/idf/downloads/view.html.php:6 -msgid "The form contains some errors. Please correct them to update the file." -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 "Oups, we found an error in the form." +msgstr "Упс, мы обнаружили ошибку в форме." -#: IDF/gettexttemplates/idf/downloads/view.html.php:7 -msgid "Update File" -msgstr "Обновить файл" +#: IDF/gettexttemplates/idf/register/inputkey.html.php:4 +msgid "Confirm Your Account" +msgstr "Подтвердить ваш аккаунт" -#: IDF/gettexttemplates/idf/downloads/view.html.php:9 -#: IDF/gettexttemplates/idf/downloads/view.html.php:11 -msgid "Remove this file" -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/downloads/view.html.php:12 -msgid "Delete this file" -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/downloads/download-created-email.txt.php:3 -msgid "A new file is available for download:" -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/downloads/download-created-email.txt.php:6 -msgid "Submitted by:" -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/downloads/download-created-email.txt.php:8 -msgid "Download:" -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" +"
    • Ensure your patch does not contain any passwords 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 "" +"By %%who%%, %%c.creation_dtime%%, on file:\n" +"%%c.cfile%%\n" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:14 +msgid "General comments (last first):" +msgstr "Общие комментарии (последние в начале):" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15 +msgid "Detailed file comments (last first):" +msgstr "Подробные комментарии файла (новые в начале):" + +#: IDF/gettexttemplates/idf/review/view.html.php:3 +#: 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: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 "" +"Рецензирование кода - это процесс, при котором до или после комитов " +"отправленых в репозиторий, разные люди обсуждают изменения в коде. Целью " +"является улучшение качества кода и участия, таким образом, " +"вы должны быть прагматичными при написании обзора. Правильно отметить номера " +"строк (в старом или в новом файле) и попытаться сохранить хороший баланс " +"между серьезностью и шуткой.\n" + +#: 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 "" +"\n" +"Предложение кода для рецензирования пугает. Знайте, вы " +"будете получать критику, поэтому, пожалуйста, как рецензент, " +"воспринимать этот процесс с улыбкой, использовать его, " +"чтобы помочь вашей команде узнать ваши стандарты кодирования и структуры " +"кода и сделать так, что бы они продолжили участие в проекте .\n" + +#: IDF/gettexttemplates/idf/review/view.html.php:20 +#, php-format +msgid "" +"Comment %%i%% by %%who%%, " +"%%c.creation_dtime%%" +msgstr "" +"Комментарий %%i%% %%who%%, %%c.creation_dtime%%" + +#: IDF/gettexttemplates/idf/review/view.html.php:21 +#, php-format +msgid "Your comments on the changes in file %%file%%:" +msgstr "Ваши комментарии на изменения в файле %%file%%:" + +#: IDF/gettexttemplates/idf/review/view.html.php:23 +#, php-format +msgid "Sign in to participate in the review." +msgstr "Войдите что бы учавствовать в рецензировании." + +#: IDF/gettexttemplates/idf/review/view.html.php:24 +msgid "" +"The form contains some errors. Please correct them to submit your review." +msgstr "" +"Форма содержит ошибки. Пожалуйста исправьте их чтобы отправить вашу рецензию." + +#: IDF/gettexttemplates/idf/review/view.html.php:27 +#: IDF/gettexttemplates/idf/source/commit.html.php:5 +msgid "Author:" +msgstr "Автор:" + +#: 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 +msgid "Commit:" +msgstr "Комит:" + +#: IDF/gettexttemplates/idf/review/view.html.php:29 +#: IDF/gettexttemplates/idf/source/commit.html.php:8 +msgid "View corresponding source tree" +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:35 +#: IDF/gettexttemplates/idf/source/commit.html.php:23 +msgid "Download the corresponding diff file" +msgstr "Скачать соответствующий diff файл." + +#: 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/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:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/Views/Project.php:152 +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:8 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9 +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:17 +msgid "full" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +msgid "renamed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +msgid "added" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +msgid "modified" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +msgid "properies changed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +msgid "removed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +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 "%%cproject.name%%: Комит %%c.scm_id%%" + +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:3 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3 +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:3 +msgid "Branches" +msgstr "" + +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:4 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:4 +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:4 +msgid "filter branches" +msgstr "" + +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:5 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:5 +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:5 +msgid "Tags" +msgstr "" + +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:6 +msgid "filter tags" +msgstr "" + +#: IDF/gettexttemplates/idf/source/git/file.html.php:3 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:3 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:3 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:3 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php: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 "" +"Source at commit %%commit%% created " +"%%cobject.date%%." +msgstr "" +"Исходный код в комите %%commit%% " +"создан %%cobject.date%%." + +#: IDF/gettexttemplates/idf/source/git/file.html.php:4 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:4 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:4 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:4 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php: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 "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: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 +msgid "Root" +msgstr "Корень" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the git software to manage the source\n" +"code." +msgstr "" +"Команда проекта %%project%% использует\n" +"git для управления исходными текстами." + +#: IDF/gettexttemplates/idf/source/git/help.html.php:6 +#, php-format +msgid "" +"You may need to provide your SSH key. The " +"synchronization of your SSH key can take a couple of minutes. You can learn " +"more about SSH key authentification." +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 "" +"Найти здесь более подробную информацию о том, как получить доступ к " +"исходному коду проекта %%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:9 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10 +#: IDF/Views/Download.php:66 IDF/Views/Download.php:294 +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:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13 +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 +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:13 +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 +#, fuzzy +msgid "The following list shows all available branches:" +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." +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/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:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15 +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:11 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16 +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/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/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/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 "Extra password" +msgstr "Дополнительный пароль" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +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:9 +msgid "API key" +msgstr "API ключ" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "API ключ будет сгенерирован автоматически при смене Вашего пароль." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "Update Your Account" +msgstr "Обновить профиль" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +msgid "Your Current Public Keys" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Delete this key" +msgstr "Удалить этот ключ" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +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:16 +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:17 +msgid "Show API key and extra password" +msgstr "Показать ключ API и дополнительный пароль" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 +msgid "" +"Oups, 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 again this website fully." +msgstr "" +"Сразу после предоставления подтверждающего ключа, вы сможете изменить пароль " +"и снова использовать этот веб-сайт полностью." + +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 +msgid "Reset Your Password" +msgstr "Сбросить пароль" + +#: IDF/gettexttemplates/idf/user/public.html.php:3 +#, php-format +msgid "You are looking at the public profile of %%member%%." +msgstr "Вы просматриваете публичный профиль %%member%%." + +#: IDF/gettexttemplates/idf/user/public.html.php:5 +msgid "Twitter:" +msgstr "" + +#: IDF/gettexttemplates/idf/user/public.html.php:6 +msgid "Public Email:" +msgstr "" + +#: IDF/gettexttemplates/idf/user/public.html.php:7 +msgid "Website:" +msgstr "" + +#: IDF/gettexttemplates/idf/user/public.html.php:8 +msgid "Last time seen:" +msgstr "Последний раз был здесь:" + +#: IDF/gettexttemplates/idf/user/public.html.php:9 +msgid "Member since:" +msgstr "Участник с:" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:3 +msgid "List Pages" +msgstr "Список страниц" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:4 +#: IDF/gettexttemplates/idf/wiki/index.html.php:4 +#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:175 +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" +"

    Instructions:

    \n" +"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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 "" +"Вы смотрите на старую версию страницы \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/wiki-created-email.txt.php:3 +msgid "A new documentation page has been created:" +msgstr "Новая страница документации была создана:" + +#: IDF/gettexttemplates/idf/wiki/wiki-created-email.txt.php:9 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:14 +msgid "Documentation page:" +msgstr "Страница документации:" + +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:3 +msgid "The following documentation page has been updated:" +msgstr "Следующая страница документации была обновлена:" + +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7 +msgid "Updated by:" +msgstr "Обновлена:" + +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13 +msgid "New content:" +msgstr "Новое содержимое:" + +#: IDF/Issue.php:76 +msgid "owner" +msgstr "владелец" + +#: IDF/Issue.php:84 IDF/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:93 IDF/WikiPage.php:94 +msgid "labels" +msgstr "метки" + +#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114 +#: IDF/Upload.php:112 IDF/WikiPage.php:106 +msgid "modification date" +msgstr "дата модификации" + +#: IDF/Issue.php:194 IDF/IssueComment.php:143 +#, php-format +msgid "" +"Issue %3$d, %4$s" +msgstr "" +"Проблема %3$d, %4$s" + +#: IDF/Issue.php:196 +#, php-format +msgid "Creation of issue %d, by %s" +msgstr "Создание проблемы %d, %s" + +#: IDF/Issue.php:206 +#, php-format +msgid "%s: Issue %d created - %s" +msgstr "%s: Проблема %d создана - %s" + +#: IDF/Issue.php:272 +#, php-format +msgid "Issue %s - %s (%s)" +msgstr "Проблема %s - %s (%s)" + +#: IDF/Issue.php:318 +#, php-format +msgid "Updated Issue %s - %s (%s)" +msgstr "Обновить проблему %s - %s (%s)" + +#: IDF/IssueComment.php:51 +msgid "issue" +msgstr "проблема" + +#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62 +#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69 +msgid "comment" +msgstr "комментарий" + +#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63 +#: IDF/WikiRevision.php:85 +msgid "changes" +msgstr "изменения" + +#: IDF/IssueComment.php:73 +msgid "Serialized array of the changes in the issue." +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/IssueFile.php:64 msgid "file name" @@ -2806,1515 +3501,28 @@ msgstr "Изображение" msgid "Other" msgstr "Другой" -#: IDF/Project.php:62 IDF/Tag.php:66 -msgid "name" -msgstr "имя" +#: IDF/Key.php:49 +msgid "user" +msgstr "пользователь" -#: IDF/Project.php:69 -msgid "short name" -msgstr "краткое имя" - -#: IDF/Project.php:70 -msgid "" -"Used in the url to access the project, must be short with only letters and " -"numbers." -msgstr "Используется в адресе для доступа к проекту. Только буквы и цифры." - -#: IDF/Project.php:78 -msgid "short description" -msgstr "краткое описания" - -#: IDF/Project.php:79 IDF/Form/Admin/ProjectCreate.php:70 -#: IDF/Form/Admin/ProjectUpdate.php:51 -msgid "A one line description of the project." -msgstr "Краткое описание проекта." - -#: IDF/Project.php:86 IDF/Review/Patch.php:74 -msgid "description" -msgstr "описания" - -#: IDF/Project.php:87 -msgid "The description can be extended using the markdown syntax." -msgstr "Описание может быть расширенно использованием markdown синтакса." - -#: IDF/Project.php:93 -msgid "private" -msgstr "частный" - -#: IDF/Project.php:130 -#, php-format -msgid "Project \"%s\" not found." -msgstr "Проект \"%s\" не найден." - -#: 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/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:196 -#, php-format -msgid "Creation of issue %d, by %s" -msgstr "Создание проблемы %d, %s" - -#: IDF/Issue.php:206 -#, php-format -msgid "%s: Issue %d created - %s" -msgstr "%s: Проблема %d создана - %s" - -#: IDF/Issue.php:272 -#, php-format -msgid "Issue %s - %s (%s)" -msgstr "Проблема %s - %s (%s)" - -#: IDF/Issue.php:318 -#, php-format -msgid "Updated Issue %s - %s (%s)" -msgstr "Обновить проблему %s - %s (%s)" - -#: IDF/Views/Wiki.php:41 -#, php-format -msgid "%s Documentation" -msgstr "Документация для %s" - -#: IDF/Views/Wiki.php:48 -msgid "This table shows the documentation pages." -msgstr "" - -#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149 -msgid "Page Title" -msgstr "Заголовок страницы" - -#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:109 IDF/Views/Wiki.php:150 -#: IDF/Views/Download.php:65 IDF/Views/Download.php:295 IDF/Views/Issue.php:62 -#: IDF/Views/Issue.php:140 IDF/Views/Issue.php:221 IDF/Views/Issue.php:297 -#: IDF/Views/Issue.php:384 IDF/Views/Issue.php:563 IDF/Views/Issue.php:622 -#: IDF/Views/User.php:83 IDF/Views/Review.php:58 IDF/Form/Upload.php:40 -#: IDF/Form/ReviewCreate.php:45 IDF/Form/IssueUpdate.php:45 -#: IDF/Form/IssueCreate.php:53 IDF/Form/UpdateUpload.php:42 -#: IDF/Form/ReviewFileComment.php:71 -msgid "Summary" -msgstr "Краткое описание" - -#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:110 IDF/Views/Wiki.php:151 -msgid "Updated" -msgstr "Обновлено" - -#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:155 -msgid "No documentation pages were found." -msgstr "" - -#: IDF/Views/Wiki.php:92 -#, php-format -msgid "Documentation Search - %s" -msgstr "" - -#: IDF/Views/Wiki.php:103 -msgid "This table shows the pages found." -msgstr "" - -#: IDF/Views/Wiki.php:114 -msgid "No pages were found." -msgstr "Страниц не найдено." - -#: IDF/Views/Wiki.php:133 -#, php-format -msgid "%1$s Documentation Pages with Label %2$s" -msgstr "" - -#: IDF/Views/Wiki.php:143 -#, php-format -msgid "This table shows the documentation pages with label %s." -msgstr "" - -#: IDF/Views/Wiki.php:188 -#, php-format -msgid "The page %s has been created." -msgstr "" - -#: IDF/Views/Wiki.php:275 -msgid "The old revision has been deleted." -msgstr "" - -#: IDF/Views/Wiki.php:281 -#, php-format -msgid "Delete Old Revision of %s" -msgstr "Удалить старую ревизию of %s" - -#: IDF/Views/Wiki.php:314 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 -#, php-format -msgid "Update %s" -msgstr "" - -#: IDF/Views/Wiki.php:326 -#, php-format -msgid "The page %s has been updated." -msgstr "" - -#: IDF/Views/Wiki.php:364 -msgid "The documentation page has been deleted." -msgstr "" - -#: IDF/Views/Wiki.php:372 -#, php-format -msgid "Delete Page %s" -msgstr "" - -#: IDF/Views/Source.php:40 -#, php-format -msgid "%s Source Help" -msgstr "Помощь по исходному коду для %s" - -#: IDF/Views/Source.php:58 -#, php-format -msgid "%s Invalid Revision" -msgstr "" - -#: IDF/Views/Source.php:77 -#, php-format -msgid "%s Ambiguous Revision" -msgstr "" - -#: IDF/Views/Source.php:102 -#, php-format -msgid "%1$s %2$s Change Log" -msgstr "" - -#: IDF/Views/Source.php:142 IDF/Views/Source.php:223 IDF/Views/Source.php:355 -#, php-format -msgid "%1$s %2$s Source Tree" -msgstr "" - -#: IDF/Views/Source.php:299 -#, php-format -msgid "%s Commit Details" -msgstr "" - -#: IDF/Views/Source.php:300 -#, php-format -msgid "%s Commit Details - %s" -msgstr "" - -#: IDF/Views/Download.php:45 -#, php-format -msgid "%s Downloads" -msgstr "Файлы для %s" - -#: IDF/Views/Download.php:51 -msgid "This table shows the files to download." -msgstr "" - -#: IDF/Views/Download.php:67 IDF/Views/Download.php:297 -msgid "Uploaded" -msgstr "Загружено" - -#: IDF/Views/Download.php:71 IDF/Views/Download.php:301 -msgid "No downloads were found." -msgstr "Файлов не найдено" - -#: IDF/Views/Download.php:96 -#, php-format -msgid "Download %s" -msgstr "Скачать %s" - -#: IDF/Views/Download.php:113 -#, php-format -msgid "The file %2$s has been updated." -msgstr "" - -#: IDF/Views/Download.php:146 -#, php-format -msgid "Delete Download %s" -msgstr "Удалить файл %s" - -#: IDF/Views/Download.php:179 -msgid "The file has been deleted." -msgstr "Файл был удален." - -#: IDF/Views/Download.php:225 -#, php-format -msgid "The file has been uploaded." -msgstr "" - -#: IDF/Views/Download.php:279 -#, php-format -msgid "%1$s Downloads with Label %2$s" -msgstr "" - -#: IDF/Views/Download.php:289 -#, php-format -msgid "This table shows the downloads with label %s." -msgstr "" - -#: IDF/Views/Project.php:72 -msgid "All Updates" -msgstr "" - -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" -msgstr "" - -#: IDF/Views/Project.php:76 -msgid "Documents" -msgstr "" - -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" -msgstr "" - -#: IDF/Views/Project.php:142 -msgid "This table shows the project updates." -msgstr "" - -#: IDF/Views/Project.php:153 -msgid "Change" -msgstr "Изменить" - -#: IDF/Views/Project.php:157 -msgid "No changes were found." -msgstr "Изменений не найдено." - -#: IDF/Views/Project.php:248 -#, php-format -msgid "%s Project Summary" -msgstr "Краткое описание %s" - -#: IDF/Views/Project.php:256 IDF/Views/Admin.php:101 -msgid "The project has been updated." -msgstr "Проект был обновлен." - -#: IDF/Views/Project.php:283 -#, php-format -msgid "%s Issue Tracking Configuration" -msgstr "" - -#: IDF/Views/Project.php:292 -msgid "The issue tracking configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:328 -#, php-format -msgid "%s Downloads Configuration" -msgstr "" - -#: IDF/Views/Project.php:337 -msgid "The downloads configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:371 -#, php-format -msgid "%s Documentation Configuration" -msgstr "" - -#: IDF/Views/Project.php:380 -msgid "The documentation configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:414 -#, php-format -msgid "%s Project Members" -msgstr "Участники проекта %s" - -#: IDF/Views/Project.php:423 -msgid "The project membership has been saved." -msgstr "" - -#: IDF/Views/Project.php:446 -#, php-format -msgid "%s Tabs Access Rights" -msgstr "" - -#: IDF/Views/Project.php:460 -msgid "The project tabs access rights have been saved." -msgstr "" - -#: IDF/Views/Project.php:506 -#, php-format -msgid "%s Source" -msgstr "" - -#: IDF/Views/Project.php:520 -msgid "The project source configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:540 IDF/Form/Admin/ProjectCreate.php:38 -msgid "git" -msgstr "git" - -#: IDF/Views/Project.php:541 IDF/Form/Admin/ProjectCreate.php:39 -msgid "Subversion" -msgstr "Subversion" - -#: IDF/Views/Project.php:542 IDF/Form/Admin/ProjectCreate.php:40 -msgid "mercurial" -msgstr "mercurial" - -#: IDF/Views/Project.php:543 IDF/Form/Admin/ProjectCreate.php:41 -msgid "monotone" -msgstr "" - -#: IDF/Views/Issue.php:41 -#, php-format -msgid "%s Open Issues" -msgstr "Открытые проблемы для %s" - -#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:288 IDF/Views/User.php:75 -msgid "This table shows the open issues." -msgstr "" - -#: IDF/Views/Issue.php:61 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/User.php:81 IDF/Views/Review.php:57 -msgid "Id" -msgstr "" - -#: IDF/Views/Issue.php:63 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/User.php:84 IDF/Views/Review.php:59 -#: IDF/Form/ReviewCreate.php:103 IDF/Form/IssueUpdate.php:88 -#: IDF/Form/IssueCreate.php:95 IDF/Form/ReviewFileComment.php:81 -msgid "Status" -msgstr "Статус" - -#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:142 IDF/Views/Issue.php:224 -#: IDF/Views/Issue.php:299 IDF/Views/Issue.php:386 IDF/Views/Issue.php:565 -#: IDF/Views/Issue.php:624 IDF/Views/User.php:85 IDF/Views/Review.php:60 -msgid "Last Updated" -msgstr "Последнее обновление" - -#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:146 IDF/Views/Issue.php:228 -#: IDF/Views/Issue.php:303 IDF/Views/Issue.php:390 IDF/Views/Issue.php:569 -#: IDF/Views/Issue.php:628 -msgid "No issues were found." -msgstr "Проблем на найдено." - -#: IDF/Views/Issue.php:113 -#, php-format -msgid "Watch List: Closed Issues for %s" -msgstr "" - -#: IDF/Views/Issue.php:114 -#, php-format -msgid "This table shows the closed issues in your watch list for %s project." -msgstr "" - -#: IDF/Views/Issue.php:119 -#, php-format -msgid "Watch List: Open Issues for %s" -msgstr "" - -#: IDF/Views/Issue.php:120 -#, php-format -msgid "This table shows the open issues in your watch list for %s project." -msgstr "" - -#: IDF/Views/Issue.php:196 -msgid "Watch List: Closed Issues" -msgstr "" - -#: IDF/Views/Issue.php:197 -msgid "This table shows the closed issues in your watch list." -msgstr "" - -#: IDF/Views/Issue.php:202 -msgid "Watch List: Open Issues" -msgstr "" - -#: IDF/Views/Issue.php:203 -msgid "This table shows the open issues in your watch list." -msgstr "" - -#: IDF/Views/Issue.php:222 IDF/Views/User.php:82 -msgid "Project" -msgstr "Проект" - -#: IDF/Views/Issue.php:255 -#, php-format -msgid "My Submitted %s Issues" -msgstr "Отправленные мной проблемы для %s" - -#: IDF/Views/Issue.php:259 -#, php-format -msgid "My Closed Submitted %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:263 -#, php-format -msgid "My Closed Working %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:267 -#, php-format -msgid "My Working %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:322 -msgid "Submit a new issue" -msgstr "Добавить проблему" - -#: IDF/Views/Issue.php:338 -#, php-format -msgid "Issue %d has been created." -msgstr "" - -#: IDF/Views/Issue.php:367 -#, php-format -msgid "Search Issues - %s" -msgstr "Поиск проблем - %s" - -#: IDF/Views/Issue.php:379 -msgid "This table shows the found issues." -msgstr "Эта таблица показывает найденные проблемы." - -#: IDF/Views/Issue.php:409 -#, php-format -msgid "Issue %d: %s" -msgstr "" - -#: IDF/Views/Issue.php:433 -#, php-format -msgid "Issue %d has been updated." -msgstr "" - -#: IDF/Views/Issue.php:522 -#, php-format -msgid "View %s" -msgstr "Смотреть %s" - -#: IDF/Views/Issue.php:542 -#, php-format -msgid "%s Closed Issues" -msgstr "%s закрытых проблем" - -#: IDF/Views/Issue.php:552 -msgid "This table shows the closed issues." -msgstr "" - -#: IDF/Views/Issue.php:595 -#, php-format -msgid "%1$s Issues with Label %2$s" -msgstr "" - -#: IDF/Views/Issue.php:598 -#, php-format -msgid "%1$s Closed Issues with Label %2$s" -msgstr "" - -#: IDF/Views/Issue.php:611 -#, php-format -msgid "This table shows the issues with label %s." -msgstr "" - -#: IDF/Views/Issue.php:661 -msgid "The issue has been removed from your watch list." -msgstr "" - -#: IDF/Views/Issue.php:664 -msgid "The issue has been added to your watch list." -msgstr "" - -#: IDF/Views/Issue.php:753 -msgid "On your watch list." -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:132 -msgid "Your Account" -msgstr "Ваш аккаунт" - -#: IDF/Views/User.php:155 -msgid "The public key has been deleted." -msgstr "" - -#: IDF/Views/User.php:178 -msgid "Confirm The Email Change" -msgstr "Подтвердите изменения эл. адреса" - -#: IDF/Views/User.php:203 -#, php-format -msgid "Your new email address \"%s\" has been validated. Thank you!" -msgstr "" - -#: IDF/Views/Review.php:41 -#, php-format -msgid "%s Code Reviews" -msgstr "Аудит кода для %s" - -#: IDF/Views/Review.php:48 -msgid "This table shows the latest reviews." -msgstr "Эта таблица показывает последние аудиты." - -#: IDF/Views/Review.php:64 -msgid "No reviews were found." -msgstr "Аудитов не найдено." - -#: IDF/Views/Review.php:94 -#, php-format -msgid "The code review %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/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:66 IDF/Views/Admin.php:210 -#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 -msgid "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:134 -msgid "The project has been created." -msgstr "Проект был создан." - -#: IDF/Views/Admin.php:160 -#, php-format -msgid "Delete %s Project" -msgstr "Удалить проект %s" - -#: 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:211 IDF/Form/Admin/UserUpdate.php:161 -msgid "Staff" -msgstr "Персонал" - -#: IDF/Views/Admin.php:212 -msgid "Admin" -msgstr "Админ" - -#: IDF/Views/Admin.php:213 IDF/Form/Admin/UserUpdate.php:172 -msgid "Active" -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" +#: IDF/Key.php:55 +msgid "public key" msgstr "" -#: IDF/Views/Admin.php:425 -#, php-format -msgid "The server \"%s\" has been killed" +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." 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 "Да" - -#: IDF/Views/Admin.php:471 -msgid "No" -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:70 IDF/Form/Upload.php:49 -#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/ReviewCreate.php:54 -#: IDF/Form/UserAccount.php:99 IDF/Form/IssueCreate.php:62 -#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 -msgid "Description" -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:93 IDF/Form/Upload.php:70 -#: IDF/Form/IssueUpdate.php:117 IDF/Form/IssueCreate.php:150 -#: IDF/Form/WikiUpdate.php:104 IDF/Form/UpdateUpload.php:71 -msgid "Labels" -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:151 IDF/Form/Upload.php:120 -#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 -#: IDF/Form/WikiUpdate.php:162 IDF/Form/UpdateUpload.php:110 -msgid "You provided an invalid label." -msgstr "Вы ввели недопустимый ярлык." - -#: IDF/Form/WikiCreate.php:167 IDF/Form/Upload.php:148 -#: IDF/Form/Admin/UserCreate.php:106 IDF/Form/Admin/ProjectCreate.php:279 -#: IDF/Form/Admin/ProjectDelete.php:78 IDF/Form/Admin/UserUpdate.php:191 -#: IDF/Form/Admin/ProjectUpdate.php:121 IDF/Form/Password.php:76 -#: IDF/Form/ReviewCreate.php:187 IDF/Form/Register.php:114 -#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 -#: IDF/Form/UserAccount.php:178 IDF/Form/IssueCreate.php:263 -#: IDF/Form/MembersConf.php:64 IDF/Form/WikiUpdate.php:178 -#: IDF/Form/UpdateUpload.php:126 IDF/Form/TabsConf.php:98 -#: IDF/Form/UserChangeEmail.php:80 IDF/Form/ReviewFileComment.php:125 -msgid "Cannot save the model from an invalid form." -msgstr "" - -#: IDF/Form/WikiCreate.php:200 -msgid "Initial page creation" -msgstr "Создание первоначальной страницы" - -#: IDF/Form/Upload.php:86 IDF/Form/Admin/UserUpdate.php:301 -#: IDF/Form/UserAccount.php:367 -msgid "For security reason, you cannot upload a file with this extension." -msgstr "В целях безопасности, вы не можете загрузить файл с таким расширением." - -#: IDF/Form/Upload.php:119 IDF/Form/IssueCreate.php:199 -#: IDF/Form/UpdateUpload.php:109 -#, php-format -msgid "You cannot provide more than label from the %s class to an issue." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 -#: IDF/Form/UserAccount.php:40 IDF/Form/RegisterConfirmation.php:50 -msgid "First name" -msgstr "Имя" - -#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 -#: IDF/Form/UserAccount.php:49 IDF/Form/RegisterConfirmation.php:59 -msgid "Last name" -msgstr "Фамилия" - -#: IDF/Form/Admin/UserCreate.php:56 -msgid "Login" -msgstr "Логин" - -#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 -msgid "" -"The login must be between 3 and 15 characters long and contains only letters " -"and digits." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 -msgid "Email" -msgstr "Эл. адрес" - -#: IDF/Form/Admin/UserCreate.php:71 -msgid "" -"Double check the email address as the password is directly sent 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:159 -msgid "Add a public key" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:164 -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:400 -#, 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 "" - -#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 -#, php-format -msgid "The login \"%s\" is already used, please find another one." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:62 -msgid "Shortname" -msgstr "Краткое имя" - -#: IDF/Form/Admin/ProjectCreate.php:64 -msgid "" -"It must be unique for each project and composed only of letters, digits and " -"dash (-) like \"my-project\"." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 -msgid "Short description" -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php: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 "" - -#: 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 throught http or https are allowed. For " -"example \"http://somewhere.com/svn/trunk\"." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 -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:295 -msgid "" -"Click on the Project Management tab to set the description of your project." -msgstr "" -"Кликните на закладку Управление проектом, чтобы задать описание Вашего " -"проекта." - -#: IDF/Form/Admin/ProjectCreate.php:362 -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/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 find it, but easy for the user " -"to remember." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:89 -msgid "Confirm password" -msgstr "Подтверждение пароля" - -#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:108 -msgid "Twitter username" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:118 -msgid "Public email address" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:128 -msgid "Website URL" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:138 -msgid "Upload custom avatar" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:145 -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:150 -msgid "Remove custom avatar" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:154 -msgid "Tick this to delete the custom avatar." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:164 -msgid "If you give staff rights to a user, you really need to trust him." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:176 -msgid "" -"If the user is not getting the confirmation email or is abusing the system, " -"you can directly enable or disable his 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:316 IDF/Form/UserAccount.php:423 -msgid "The passwords do not match. Please give them again." -msgstr "Пароли не совпадают. Пожалуйста, повторите ввод." - -#: 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/PasswordReset.php:39 IDF/Form/PasswordInputKey.php:36 -#: IDF/Form/UserChangeEmail.php:36 -msgid "Your verification key" -msgstr "Код подтверждения" - -#: IDF/Form/PasswordReset.php:45 IDF/Form/UserAccount.php:77 -#: IDF/Form/RegisterConfirmation.php:69 -msgid "Your password" -msgstr "Пароль" - -#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80 -#: IDF/Form/RegisterConfirmation.php:72 -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/UserAccount.php:88 -#: IDF/Form/RegisterConfirmation.php:80 -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/PasswordReset.php:89 IDF/Form/PasswordInputKey.php:50 -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/PasswordReset.php:100 IDF/Form/PasswordInputKey.php:61 -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/PasswordReset.php:108 IDF/Form/PasswordInputKey.php:76 -#: IDF/Form/RegisterInputKey.php:72 IDF/Form/RegisterConfirmation.php:137 -msgid "Cannot save an invalid form." -msgstr "Немогу сохранить неправильную форму." - -#: IDF/Form/ReviewCreate.php:83 IDF/Form/IssueUpdate.php:65 -#: IDF/Form/IssueCreate.php:72 -msgid "The \"upload_issue_path\" configuration variable was not set." -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:159 IDF/Form/IssueCreate.php:233 -msgid "You provided an invalid status." -msgstr "Вы ввели неверный статус." - -#: IDF/Form/ReviewCreate.php:202 -msgid "Initial patch to be reviewed." -msgstr "Первоначальный патч для рецензирования." - -#: IDF/Form/Register.php:41 -msgid "Your login" -msgstr "Ваш логин" - -#: 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 spams 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:99 -#, php-format -msgid "" -"The email \"%s\" is already used. If you need, click on the help link to " -"recover your password." -msgstr "" - -#: IDF/Form/Register.php:150 -msgid "Confirm the creation of your account." -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/IssueUpdate.php:55 IDF/Form/WikiUpdate.php:82 -#: IDF/Form/ReviewFileComment.php:45 -msgid "Comment" -msgstr "Комментарий" - -#: IDF/Form/IssueUpdate.php:75 IDF/Form/IssueCreate.php:82 -msgid "Attach a file" -msgstr "Приложить файл" - -#: IDF/Form/IssueUpdate.php:98 IDF/Form/IssueCreate.php:104 -msgid "Owner" -msgstr "Владелец" - -#: IDF/Form/IssueUpdate.php:147 IDF/Form/IssueCreate.php:210 -msgid "You need to provide a description of the issue." -msgstr "Вам необходимо ввести описание проблемы." - -#: IDF/Form/IssueUpdate.php:219 -msgid "No changes were entered." -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/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:207 -msgid "Confirm your new email address." -msgstr "Подтвердите ваш новый адрес электронной почты." - -#: IDF/Form/UserAccount.php:210 -#, php-format -msgid "" -"A validation email has been sent to \"%s\" to validate the email address " -"change." -msgstr "" - -#: IDF/Form/UserAccount.php:312 -msgid "" -"Please check the key as it does not appear to be a valid SSH public key." -msgstr "" - -#: IDF/Form/UserAccount.php:332 -msgid "" -"Please check the key as it does not appear to be a valid monotone public key." -msgstr "" - -#: IDF/Form/UserAccount.php:340 -msgid "Public key looks neither like a SSH nor monotone public key." -msgstr "" - -#: IDF/Form/UserAccount.php:352 -msgid "You already have uploaded this key." -msgstr "" - -#: IDF/Form/RegisterInputKey.php:36 IDF/Form/RegisterConfirmation.php:40 -msgid "Your confirmation key" -msgstr "Ваш код подтверждения" - -#: IDF/Form/RegisterInputKey.php:50 IDF/Form/RegisterConfirmation.php:99 -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/IssueCreate.php:192 -msgid "You cannot add a label with the \"Status\" prefix to an issue." -msgstr "Вы не можете добавить ярлык с префиксом \"Статус\" к проблеме." - -#: IDF/Form/IssueTrackingConf.php:80 -msgid "" -"Define an issue template to hint the reporter to provide certain information" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:89 -msgid "Open issue status values" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:97 -msgid "Closed issue status values" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:106 -msgid "Predefined issue labels" -msgstr "Предопределенные ярлыки для проблемы" - -#: IDF/Form/IssueTrackingConf.php:108 -msgid "" -"The first \"Type:\" and \"Priority:\" entries found in this list are " -"automatically chosen as defaults for new issues." -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:116 -msgid "Each issue may have at most one label with each of these classes" -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/MembersConf.php:104 -#, php-format -msgid "The following login is invalid: %s." -msgid_plural "The following logins are invalid: %s." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: IDF/Form/WikiUpdate.php:83 -msgid "One line to describe the changes you made." -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/UserChangeEmail.php:63 -msgid "" -"The validation key is not valid. Please copy/paste it from your confirmation " -"email." -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/ReviewFileComment.php:56 -msgid "General comment" -msgstr "Общий комментарий" - -#: IDF/Form/ReviewFileComment.php:102 -msgid "You need to provide comments on at least one file." -msgstr "Вы должны указать комментарий как минимум для одного файла." - -#: IDF/Form/ReviewFileComment.php:109 -msgid "You need to provide your general comment about the proposal." -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/Field/EmailList.php:45 -msgid "Please enter one or more valid email addresses." -msgstr "" - -#: IDF/WikiRevision.php:48 -msgid "page" -msgstr "страница" - -#: IDF/WikiRevision.php:66 -msgid "A one line description of the changes." -msgstr "Описание изменений в одну строку." - -#: IDF/WikiRevision.php:72 -msgid "content" -msgstr "содержание" - -#: IDF/WikiRevision.php:167 IDF/WikiPage.php:196 -#, php-format -msgid "%2$s, %3$s" -msgstr "%2$s, %3$s" - -#: IDF/WikiRevision.php:189 -#, php-format -msgid "Change of %s, by %s" -msgstr "Изменение %s, %s" - -#: IDF/WikiRevision.php:208 -#, php-format -msgid "%s: Documentation page %s updated - %s" -msgstr "%s: Страница документации %s обновлена - %s" - -#: IDF/WikiRevision.php:262 -#, php-format -msgid "New Documentation Page %s - %s (%s)" -msgstr "Новая страница документации %s - %s (%s)" - -#: IDF/WikiRevision.php:268 -#, php-format -msgid "Documentation Page Changed %s - %s (%s)" -msgstr "Страница документации изменена %s - %s (%s)" - -#: IDF/Review/Patch.php:52 -msgid "review" -msgstr "аудит" - -#: IDF/Review/Patch.php:67 -msgid "commit" -msgstr "комит" - -#: IDF/Review/Patch.php:80 IDF/Review/Comment.php:55 -msgid "patch" -msgstr "патч" - -#: IDF/Review/Patch.php:151 IDF/Review/Comment.php:139 -#, php-format -msgid "" -"Review %3$d, %4$s" -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 "%s: Создание рецензии %d - %s" - -#: IDF/Review/Patch.php:204 -#, php-format -msgid "New Code Review %s - %s (%s)" -msgstr "Новая рецензия кода %s - %s (%s)" - -#: IDF/Review/Comment.php:83 -msgid "vote" -msgstr "голос" - -#: IDF/Review/Comment.php:141 -#, php-format -msgid "Update of review %d, by %s" -msgstr "Обновление рецензии %d, %s" - -#: IDF/Review/Comment.php:151 -#, php-format -msgid "%s: Updated review %d - %s" -msgstr "%s: Обновленная рецензия %d - %s" - -#: IDF/Review/Comment.php:216 -#, php-format -msgid "Updated Code Review %s - %s (%s)" -msgstr "Обновленная рецензия кода %s - %s (%s)" - -#: IDF/Plugin/SyncSvn.php:81 IDF/Plugin/SyncMercurial.php:78 +#: 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:86 IDF/Plugin/SyncMonotone.php:457 #: IDF/Plugin/SyncMonotone.php:783 msgid "\"mtn_repositories\" must be defined in your configuration file." @@ -4344,6 +3552,11 @@ msgstr "" msgid "The project path %s could not be created." msgstr "" +#: IDF/Plugin/SyncMonotone.php:187 IDF/Scm/Monotone/Stdio.php:87 +#, php-format +msgid "The key directory %s could not be created." +msgstr "" + #: IDF/Plugin/SyncMonotone.php:205 #, php-format msgid "Could not parse key information: %s" @@ -4429,40 +3642,132 @@ msgstr "" msgid "The command \"%s\" could not be executed." msgstr "" -#: IDF/Plugin/SyncMercurial.php:142 -#, php-format -msgid "%s does not exist or is not writable." -msgstr "" +#: IDF/Project.php:62 IDF/Tag.php:66 +msgid "name" +msgstr "имя" -#: IDF/Timeline/Paginator.php:49 -msgid "Today" -msgstr "Сегодня" +#: IDF/Project.php:69 +msgid "short name" +msgstr "краткое имя" -#: IDF/WikiPage.php:62 -msgid "title" -msgstr "заголовок" - -#: IDF/WikiPage.php:63 +#: IDF/Project.php:70 msgid "" -"The title of the page must only contain letters, digits or the dash " -"character. For example: My-new-Wiki-Page." +"Used in the url to access the project, must be short with only letters and " +"numbers." +msgstr "Используется в адресе для доступа к проекту. Только буквы и цифры." + +#: IDF/Project.php:78 +msgid "short description" +msgstr "краткое описания" + +#: IDF/Project.php:86 IDF/Review/Patch.php:74 +msgid "description" +msgstr "описания" + +#: IDF/Project.php:87 +msgid "The description can be extended using the markdown syntax." +msgstr "Описание может быть расширенно использованием markdown синтакса." + +#: IDF/Project.php:93 +msgid "private" +msgstr "частный" + +#: IDF/Project.php:130 +#, php-format +msgid "Project \"%s\" not found." +msgstr "Проект \"%s\" не найден." + +#: 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/WikiPage.php:71 -msgid "A one line description of the page content." -msgstr "Описание содержимого страницы в одну строчку." - -#: IDF/WikiPage.php:198 +#: IDF/Review/Comment.php:141 #, php-format -msgid "Creation of page %s, by %s" -msgstr "Создание страницы %s, %s" +msgid "Update of review %d, by %s" +msgstr "Обновление рецензии %d, %s" -#: IDF/WikiPage.php:208 +#: IDF/Review/Comment.php:151 #, php-format -msgid "%s: Documentation page %s added - %s" -msgstr "%s: Страницы документации %s добавлена - %s" +msgid "%s: Updated review %d - %s" +msgstr "%s: Обновленная рецензия %d - %s" + +#: IDF/Review/Comment.php:216 +#, php-format +msgid "Updated Code Review %s - %s (%s)" +msgstr "Обновленная рецензия кода %s - %s (%s)" + +#: IDF/Review/Patch.php:52 +msgid "review" +msgstr "аудит" + +#: IDF/Review/Patch.php:67 +msgid "commit" +msgstr "комит" + +#: IDF/Review/Patch.php:153 +#, 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 "%s: Создание рецензии %d - %s" + +#: IDF/Review/Patch.php:204 +#, php-format +msgid "New Code Review %s - %s (%s)" +msgstr "Новая рецензия кода %s - %s (%s)" + +#: IDF/Scm/Git.php:183 +#, php-format +msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." +msgstr "Неверное значение параметра %1$s: %2$s. Используйте %3$s." + +#: IDF/Scm/Git.php:234 IDF/Scm/Mercurial.php:140 +#, php-format +msgid "Folder %1$s not found in commit %2$s." +msgstr "" + +#: IDF/Scm/Git.php:352 IDF/Scm/Mercurial.php:157 +#, 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:98 +#, 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" @@ -4480,16 +3785,8 @@ msgstr "lcname" msgid "Lower case version of the name for fast searching." msgstr "Имя в нижнем регистре для быстрого поиска." -#: IDF/Key.php:49 -msgid "user" -msgstr "пользователь" - -#: IDF/Key.php:55 -msgid "public key" -msgstr "" - -#: IDF/Key.php:87 -msgid "Invalid or unknown key data detected." +#: IDF/Template/Markdown.php:74 +msgid "Create this documentation page" msgstr "" #: IDF/Template/ShowUser.php:51 @@ -4500,10 +3797,736 @@ msgstr "Аноним" msgid "Me" msgstr "Я" -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" +#: IDF/Timeline/Paginator.php:49 +msgid "Today" +msgstr "Сегодня" + +#: IDF/Upload.php:70 +msgid "file" +msgstr "файл" + +#: IDF/Upload.php:71 +msgid "The path is relative to the upload path." +msgstr "Путь относителен пути загрузки." + +#: IDF/Upload.php:78 +msgid "file size in bytes" +msgstr "размер файла в байтах" + +#: IDF/Upload.php:100 +msgid "number of downloads" +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/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:312 +#, php-format +msgid "Update %s" +msgstr "" + +#: IDF/Views/Admin.php:101 IDF/Views/Project.php:256 +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 "Удалить проект %s" + +#: 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 "Да" + +#: IDF/Views/Admin.php:471 +msgid "No" +msgstr "Нет" + +#: IDF/Views/Download.php:45 +#, php-format +msgid "%s Downloads" +msgstr "Файлы для %s" + +#: IDF/Views/Download.php:51 +msgid "This table shows the files to download." +msgstr "" + +#: IDF/Views/Download.php:67 IDF/Views/Download.php:295 +msgid "Uploaded" +msgstr "Загружено" + +#: IDF/Views/Download.php:71 IDF/Views/Download.php:299 +msgid "No downloads were found." +msgstr "Файлов не найдено" + +#: IDF/Views/Download.php:94 +#, php-format +msgid "Download %s" +msgstr "Скачать %s" + +#: IDF/Views/Download.php:111 +#, php-format +msgid "The file %2$s has been updated." +msgstr "" + +#: IDF/Views/Download.php:144 +#, php-format +msgid "Delete Download %s" +msgstr "Удалить файл %s" + +#: IDF/Views/Download.php:177 +msgid "The file has been deleted." +msgstr "Файл был удален." + +#: IDF/Views/Download.php:223 +#, php-format +msgid "The file has been uploaded." +msgstr "" + +#: IDF/Views/Download.php:277 +#, php-format +msgid "%1$s Downloads with Label %2$s" +msgstr "" + +#: IDF/Views/Download.php:287 +#, php-format +msgid "This table shows the downloads with label %s." +msgstr "" + +#: IDF/Views/Issue.php:41 +#, php-format +msgid "%s Open Issues" +msgstr "Открытые проблемы для %s" + +#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:287 IDF/Views/User.php:75 +msgid "This table shows the open issues." +msgstr "" + +#: 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 +msgid "Id" +msgstr "" + +#: 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 +msgid "Last Updated" +msgstr "Последнее обновление" + +#: 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 +msgid "No issues were found." +msgstr "Проблем на найдено." + +#: IDF/Views/Issue.php:112 +#, php-format +msgid "Watch List: Closed Issues for %s" +msgstr "" + +#: IDF/Views/Issue.php:113 +#, php-format +msgid "This table shows the closed issues in your watch list for %s project." +msgstr "" + +#: IDF/Views/Issue.php:118 +#, php-format +msgid "Watch List: Open Issues for %s" +msgstr "" + +#: IDF/Views/Issue.php:119 +#, php-format +msgid "This table shows the open issues in your watch list for %s project." +msgstr "" + +#: IDF/Views/Issue.php:195 +msgid "Watch List: Closed Issues" +msgstr "" + +#: IDF/Views/Issue.php:196 +msgid "This table shows the closed issues in your watch list." +msgstr "" + +#: IDF/Views/Issue.php:201 +msgid "Watch List: Open Issues" +msgstr "" + +#: IDF/Views/Issue.php:202 +msgid "This table shows the open issues in your watch list." +msgstr "" + +#: IDF/Views/Issue.php:221 IDF/Views/User.php:82 +msgid "Project" +msgstr "Проект" + +#: IDF/Views/Issue.php:254 +#, php-format +msgid "My Submitted %s Issues" +msgstr "Отправленные мной проблемы для %s" + +#: IDF/Views/Issue.php:258 +#, php-format +msgid "My Closed Submitted %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:262 +#, php-format +msgid "My Closed Working %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:266 +#, php-format +msgid "My Working %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:321 +msgid "Submit a new issue" +msgstr "Добавить проблему" + +#: IDF/Views/Issue.php:337 +#, php-format +msgid "Issue %d has been created." +msgstr "" + +#: IDF/Views/Issue.php:366 +#, php-format +msgid "Search Issues - %s" +msgstr "Поиск проблем - %s" + +#: IDF/Views/Issue.php:378 +msgid "This table shows the found issues." +msgstr "Эта таблица показывает найденные проблемы." + +#: IDF/Views/Issue.php:408 +#, php-format +msgid "Issue %d: %s" +msgstr "" + +#: IDF/Views/Issue.php:432 +#, php-format +msgid "Issue %d has been updated." +msgstr "" + +#: IDF/Views/Issue.php:521 +#, php-format +msgid "View %s" +msgstr "Смотреть %s" + +#: IDF/Views/Issue.php:541 +#, php-format +msgid "%s Closed Issues" +msgstr "%s закрытых проблем" + +#: IDF/Views/Issue.php:551 +msgid "This table shows the closed issues." +msgstr "" + +#: IDF/Views/Issue.php:594 +#, php-format +msgid "%1$s Issues with Label %2$s" +msgstr "" + +#: IDF/Views/Issue.php:597 +#, php-format +msgid "%1$s Closed Issues with Label %2$s" +msgstr "" + +#: IDF/Views/Issue.php:610 +#, php-format +msgid "This table shows the issues with label %s." +msgstr "" + +#: IDF/Views/Issue.php:660 +msgid "The issue has been removed from your watch list." +msgstr "" + +#: IDF/Views/Issue.php:663 +msgid "The issue has been added to your watch list." +msgstr "" + +#: IDF/Views/Issue.php:752 +msgid "On your watch list." +msgstr "В Вашем списке наблюдения." + +#: IDF/Views/Project.php:72 +msgid "All Updates" +msgstr "" + +#: IDF/Views/Project.php:74 +msgid "Issues and Comments" +msgstr "" + +#: IDF/Views/Project.php:76 +msgid "Documents" +msgstr "" + +#: IDF/Views/Project.php:77 +msgid "Reviews and Patches" +msgstr "" + +#: IDF/Views/Project.php:142 +msgid "This table shows the project updates." +msgstr "" + +#: IDF/Views/Project.php:153 +msgid "Change" +msgstr "Изменить" + +#: IDF/Views/Project.php:157 +msgid "No changes were found." +msgstr "Изменений не найдено." + +#: IDF/Views/Project.php:248 +#, php-format +msgid "%s Project Summary" +msgstr "Краткое описание %s" + +#: IDF/Views/Project.php:283 +#, php-format +msgid "%s Issue Tracking Configuration" +msgstr "" + +#: IDF/Views/Project.php:292 +msgid "The issue tracking configuration has been saved." +msgstr "" + +#: IDF/Views/Project.php:328 +#, php-format +msgid "%s Downloads Configuration" +msgstr "" + +#: IDF/Views/Project.php:337 +msgid "The downloads configuration has been saved." +msgstr "" + +#: IDF/Views/Project.php:371 +#, php-format +msgid "%s Documentation Configuration" +msgstr "" + +#: IDF/Views/Project.php:380 +msgid "The documentation configuration has been saved." +msgstr "" + +#: IDF/Views/Project.php:414 +#, php-format +msgid "%s Project Members" +msgstr "Участники проекта %s" + +#: IDF/Views/Project.php:423 +msgid "The project membership has been saved." +msgstr "" + +#: IDF/Views/Project.php:446 +#, php-format +msgid "%s Tabs Access Rights" +msgstr "" + +#: IDF/Views/Project.php:460 +msgid "The project tabs access rights have been saved." +msgstr "" + +#: IDF/Views/Project.php:506 +#, php-format +msgid "%s Source" +msgstr "" + +#: IDF/Views/Project.php:520 +msgid "The project source configuration has been saved." +msgstr "" + +#: IDF/Views/Review.php:41 +#, php-format +msgid "%s Code Reviews" +msgstr "Аудит кода для %s" + +#: IDF/Views/Review.php:48 +msgid "This table shows the latest reviews." +msgstr "Эта таблица показывает последние аудиты." + +#: IDF/Views/Review.php:64 +msgid "No reviews were found." +msgstr "Аудитов не найдено." + +#: IDF/Views/Review.php:94 +#, php-format +msgid "The code review %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 "Помощь по исходному коду для %s" + +#: IDF/Views/Source.php:58 +#, php-format +msgid "%s Invalid Revision" +msgstr "" + +#: IDF/Views/Source.php:81 +#, php-format +msgid "%s Ambiguous Revision" +msgstr "" + +#: IDF/Views/Source.php:106 +#, php-format +msgid "%1$s %2$s Change Log" +msgstr "" + +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#, php-format +msgid "%1$s %2$s Source Tree" +msgstr "" + +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" +msgstr "" + +#: IDF/Views/Source.php:304 +#, 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:132 +msgid "Your Account" +msgstr "Ваш аккаунт" + +#: IDF/Views/User.php:155 +msgid "The public key has been deleted." +msgstr "" + +#: IDF/Views/User.php:178 +msgid "Confirm The Email Change" +msgstr "Подтвердите изменения эл. адреса" + +#: IDF/Views/User.php:203 +#, php-format +msgid "Your new email address \"%s\" has been validated. Thank you!" +msgstr "" + +#: IDF/Views/Wiki.php:41 +#, php-format +msgid "%s Documentation" +msgstr "Документация для %s" + +#: IDF/Views/Wiki.php:48 +msgid "This table shows the documentation pages." +msgstr "" + +#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php: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:186 +#, php-format +msgid "The page %s has been created." +msgstr "" + +#: IDF/Views/Wiki.php:273 +msgid "The old revision has been deleted." +msgstr "" + +#: IDF/Views/Wiki.php:279 +#, php-format +msgid "Delete Old Revision of %s" +msgstr "Удалить старую ревизию of %s" + +#: IDF/Views/Wiki.php:324 +#, php-format +msgid "The page %s has been updated." +msgstr "" + +#: IDF/Views/Wiki.php:362 +msgid "The documentation page has been deleted." +msgstr "" + +#: IDF/Views/Wiki.php:370 +#, php-format +msgid "Delete Page %s" +msgstr "" + +#: IDF/Views.php:124 IDF/Views.php:150 +msgid "Confirm Your Account Creation" +msgstr "Подтвердите создание аккаунта" + +#: IDF/Views.php:170 +msgid "Welcome! You can now participate in the life of your project of choice." +msgstr "" +"Добро пожаловать! Теперь Вы можете учавствовать в жизни выбранного проекта." + +#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 +msgid "Password Recovery" +msgstr "Восстановление пароля" + +#: IDF/Views.php:240 +msgid "" +"Welcome back! Next time, you can use your broswer options to remember the " +"password." +msgstr "" +"Рады Вас снова видеть! Следющий раз Вы можете использовать функцию " +"сохранения пароля в Вашем браузере." + +#: IDF/Views.php:282 +msgid "Here to Help You!" +msgstr "Здесь чтобы помогать Вам!" + +#: IDF/Views.php:298 +msgid "InDefero API (Application Programming Interface)" +msgstr "InDefero API (Application Programming Interface)" + +#: IDF/WikiPage.php:62 +msgid "title" +msgstr "заголовок" + +#: 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 "%2$s, %3$s" + +#: IDF/WikiPage.php:198 +#, php-format +msgid "Creation of page %s, by %s" +msgstr "Создание страницы %s, %s" + +#: IDF/WikiPage.php:208 +#, php-format +msgid "%s: Documentation page %s added - %s" +msgstr "%s: Страницы документации %s добавлена - %s" + +#: IDF/WikiRevision.php:48 +msgid "page" +msgstr "страница" + +#: IDF/WikiRevision.php:66 +msgid "A one line description of the changes." +msgstr "Описание изменений в одну строку." + +#: IDF/WikiRevision.php:72 +msgid "content" +msgstr "содержание" + +#: IDF/WikiRevision.php:189 +#, php-format +msgid "Change of %s, by %s" +msgstr "Изменение %s, %s" + +#: IDF/WikiRevision.php:208 +#, php-format +msgid "%s: Documentation page %s updated - %s" +msgstr "%s: Страница документации %s обновлена - %s" + +#: IDF/WikiRevision.php:262 +#, php-format +msgid "New Documentation Page %s - %s (%s)" +msgstr "Новая страница документации %s - %s (%s)" + +#: IDF/WikiRevision.php:268 +#, php-format +msgid "Documentation Page Changed %s - %s (%s)" +msgstr "Страница документации изменена %s - %s (%s)" + +#, fuzzy +#~ msgid "here" +#~ msgstr "Другой" + #~ msgid "Managed Projects:" #~ msgstr "Ваших проектов:" diff --git a/src/IDF/locale/sl/idf.po b/src/IDF/locale/sl/idf.po index c7eed6d..aee6707 100644 --- a/src/IDF/locale/sl/idf.po +++ b/src/IDF/locale/sl/idf.po @@ -7,180 +7,45 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-23 16:05+0100\n" +"POT-Creation-Date: 2011-02-23 23:36+0100\n" "PO-Revision-Date: 2011-02-23 00:05+0000\n" "Last-Translator: Delkia \n" "Language-Team: LANGUAGE \n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3)\n" -#: IDF/IssueComment.php:51 -msgid "issue" -msgstr "zadeva" - -#: 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 "komentar" - -#: 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 "pošiljatelj" - -#: IDF/IssueComment.php:72 IDF/Upload.php:63 IDF/WikiRevision.php:85 -#: IDF/Review/Comment.php:75 -msgid "changes" -msgstr "spremembe" - -#: 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 "datum nastanka" - -#: IDF/IssueComment.php:143 IDF/Issue.php:194 -#, php-format -msgid "" -"Issue %3$d, %4$s" -msgstr "" - -#: 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 "Povzetek:" - -#: 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 "Stanje:" - -#: 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 "Lastnik:" - -#: 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 "Oznake:" - -#: IDF/IssueComment.php:171 -#, php-format -msgid "Comment on issue %d, by %s" -msgstr "" - -#: 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 "projekt" -#: 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/Review/Comment.php:69 IDF/Review.php:80 +#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79 +msgid "submitter" +msgstr "pošiljatelj" + +#: IDF/Commit.php:87 IDF/Issue.php:60 IDF/Review/Patch.php:60 +#: IDF/Review.php:73 IDF/Upload.php:57 IDF/WikiPage.php:70 +#: IDF/WikiRevision.php:65 msgid "summary" msgstr "povzetek" -#: IDF/Upload.php:70 -msgid "file" -msgstr "datoteka" - -#: IDF/Upload.php:71 -msgid "The path is relative to the upload path." -msgstr "" - -#: IDF/Upload.php:78 -msgid "file size in bytes" -msgstr "Velikost v bajtih" - -#: IDF/Upload.php:93 IDF/Issue.php:92 IDF/Review.php:95 IDF/WikiPage.php:94 -msgid "labels" -msgstr "oznake" - -#: IDF/Upload.php:100 -msgid "number of downloads" -msgstr "število prenosov" - -#: IDF/Upload.php:112 IDF/IssueFile.php:102 IDF/Issue.php:111 -#: IDF/Review.php:114 IDF/WikiPage.php:106 -msgid "modification date" -msgstr "datum spremembe" - -#: 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 "" - #: IDF/Commit.php:93 msgid "changelog" msgstr "dnevnik sprememb" +#: IDF/Commit.php:100 IDF/Issue.php:105 IDF/IssueComment.php:79 +#: IDF/IssueFile.php:96 IDF/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 +msgid "creation date" +msgstr "datum nastanka" + #: IDF/Commit.php:238 #, php-format msgid "Commit %s, by %s" @@ -191,6 +56,802 @@ msgstr "" msgid "New Commit %s - %s (%s)" msgstr "" +#: IDF/Conf.php:61 IDF/Gconf.php:73 +msgid "key" +msgstr "ključ" + +#: IDF/Conf.php:67 IDF/Gconf.php:79 +msgid "value" +msgstr "vrednost" + +#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:540 +msgid "git" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:541 +msgid "Subversion" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:542 +msgid "mercurial" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:543 +msgid "monotone" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 +#: IDF/Views/Admin.php:66 IDF/Views/Admin.php:210 +msgid "Name" +msgstr "Ime" + +#: 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 +msgid "Private project" +msgstr "Zaseben projekt" + +#: IDF/Form/Admin/ProjectCreate.php:62 +msgid "Shortname" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:64 +msgid "" +"It must be unique for each project and composed only of letters, digits and " +"dash (-) like \"my-project\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 +msgid "Short description" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51 +#: IDF/Project.php:79 +msgid "A one line description of the project." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:77 +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 "Lastniki projekta" + +#: 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 "Člani projekta" + +#: 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 throught http or https are allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 +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:263 +#: IDF/Form/IssueUpdate.php:232 IDF/Form/MembersConf.php:64 +#: IDF/Form/Password.php:76 IDF/Form/Register.php:114 +#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:125 +#: IDF/Form/TabsConf.php:98 IDF/Form/UpdateUpload.php:126 +#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:180 +#: 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:362 +msgid "This project is not available." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:41 +msgid "Confirmation code" +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:46 +msgid "I have made a backup of all the important data of this project." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:55 +msgid "" +"The confirmation code does not match. Please provide a valid confirmation " +"code to delete the project." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:63 +msgid "Sorry, you really need to backup your data before deletion." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 +#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40 +msgid "First name" +msgstr "Ime" + +#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 +#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49 +msgid "Last name" +msgstr "Priimek" + +#: IDF/Form/Admin/UserCreate.php:56 +msgid "Login" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 +msgid "" +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "E-naslov" + +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is directly sent to the user." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 +#: IDF/Form/UserAccount.php:66 +msgid "Language" +msgstr "Jezik" + +#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161 +msgid "Add a public key" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:166 +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:402 +#, php-format +msgid "The email \"%s\" is already used." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 +#, php-format +msgid "The login \"%s\" can only contain letters and digits." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 +#, php-format +msgid "The login \"%s\" is already used, please find another one." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:78 +msgid "Password" +msgstr "Geslo" + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "Leave blank if you do not want to change the password." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:81 +msgid "" +"The password must be hard for other people to find it, but easy for the user " +"to remember." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:89 +msgid "Confirm password" +msgstr "Potrditev gesla" + +#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/IssueCreate.php: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 +msgid "Description" +msgstr "Opis" + +#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110 +msgid "Twitter username" +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120 +msgid "Public email address" +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130 +msgid "Website URL" +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140 +msgid "Upload custom avatar" +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147 +msgid "" +"An image file with a width and height not larger than 60 pixels (bigger " +"images are scaled down)." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152 +msgid "Remove custom avatar" +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156 +msgid "Tick this to delete the custom avatar." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:161 IDF/Views/Admin.php:211 +msgid "Staff" +msgstr "Osebje" + +#: IDF/Form/Admin/UserUpdate.php:164 +msgid "If you give staff rights to a user, you really need to trust him." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:213 +msgid "Active" +msgstr "Aktiven" + +#: IDF/Form/Admin/UserUpdate.php:176 +msgid "" +"If the user is not getting the confirmation email or is abusing the system, " +"you can directly enable or disable his 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/Upload.php:86 +#: IDF/Form/UserAccount.php:369 +msgid "For security reason, you cannot upload a file with this extension." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:425 +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:53 IDF/Form/IssueUpdate.php:45 +#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:71 +#: 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 +msgid "Summary" +msgstr "Povzetek" + +#: IDF/Form/IssueCreate.php:72 IDF/Form/IssueUpdate.php:65 +#: IDF/Form/ReviewCreate.php:83 +msgid "The \"upload_issue_path\" configuration variable was not set." +msgstr "" + +#: IDF/Form/IssueCreate.php:82 IDF/Form/IssueUpdate.php:75 +msgid "Attach a file" +msgstr "Izberi datoteko" + +#: IDF/Form/IssueCreate.php:95 IDF/Form/IssueUpdate.php:88 +#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:81 +#: 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 +msgid "Status" +msgstr "Stanje" + +#: IDF/Form/IssueCreate.php:104 IDF/Form/IssueUpdate.php:98 +msgid "Owner" +msgstr "Lastnik" + +#: IDF/Form/IssueCreate.php:150 IDF/Form/IssueUpdate.php:117 +#: IDF/Form/UpdateUpload.php:71 IDF/Form/Upload.php:70 +#: IDF/Form/WikiCreate.php:93 IDF/Form/WikiUpdate.php:104 +msgid "Labels" +msgstr "Oznake" + +#: IDF/Form/IssueCreate.php:192 +msgid "You cannot add a label with the \"Status\" prefix to an issue." +msgstr "" + +#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 +#: 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:199 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:210 IDF/Form/IssueUpdate.php:147 +msgid "You need to provide a description of the issue." +msgstr "" + +#: IDF/Form/IssueCreate.php:233 IDF/Form/ReviewCreate.php:159 +msgid "You provided an invalid status." +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:80 +msgid "" +"Define an issue template to hint the reporter to provide certain information" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:89 +msgid "Open issue status values" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:97 +msgid "Closed issue status values" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:106 +msgid "Predefined issue labels" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:108 +msgid "" +"The first \"Type:\" and \"Priority:\" entries found in this list are " +"automatically chosen as defaults for new issues." +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:116 +msgid "Each issue may have at most one label with each of these classes" +msgstr "" + +#: IDF/Form/IssueUpdate.php:55 IDF/Form/ReviewFileComment.php:45 +#: IDF/Form/WikiUpdate.php:82 +msgid "Comment" +msgstr "Komentar" + +#: IDF/Form/IssueUpdate.php:219 +msgid "No changes were entered." +msgstr "" + +#: IDF/Form/MembersConf.php:104 +#, php-format +msgid "The following login is invalid: %s." +msgid_plural "The following logins are invalid: %s." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: IDF/Form/Password.php:34 +msgid "Your login or email" +msgstr "" + +#: IDF/Form/Password.php:35 +msgid "Provide either your login or your email to recover your password." +msgstr "" + +#: IDF/Form/Password.php:49 IDF/Form/Password.php:64 +msgid "" +"Sorry, we cannot find a user with this email address or login. Feel free to " +"try again." +msgstr "" + +#: IDF/Form/Password.php:100 +msgid "Password Recovery - InDefero" +msgstr "" + +#: IDF/Form/PasswordInputKey.php:36 IDF/Form/PasswordReset.php:39 +#: IDF/Form/UserChangeEmail.php:36 +msgid "Your verification key" +msgstr "" + +#: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89 +msgid "" +"We are sorry but this validation key is not valid. Maybe you should directly " +"copy/paste it from your validation email." +msgstr "" + +#: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100 +msgid "" +"Sorry, but this verification key has expired, please restart the password " +"recovery sequence. For security reasons, the verification key is only valid " +"24h." +msgstr "" + +#: IDF/Form/PasswordInputKey.php:76 IDF/Form/PasswordReset.php:108 +#: IDF/Form/RegisterConfirmation.php:137 IDF/Form/RegisterInputKey.php:72 +msgid "Cannot save an invalid form." +msgstr "" + +#: IDF/Form/PasswordReset.php:45 IDF/Form/RegisterConfirmation.php:69 +#: IDF/Form/UserAccount.php:77 +msgid "Your password" +msgstr "Vaše geslo" + +#: IDF/Form/PasswordReset.php:48 IDF/Form/RegisterConfirmation.php:72 +#: 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/Register.php:41 +msgid "Your login" +msgstr "" + +#: IDF/Form/Register.php:53 +msgid "Your email" +msgstr "E-naslov" + +#: IDF/Form/Register.php:55 +msgid "We will never send you any unsolicited emails. We hate spams 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:99 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need, click on the help link to " +"recover your password." +msgstr "" + +#: IDF/Form/Register.php:150 +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: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:102 +msgid "You need to provide comments on at least one file." +msgstr "" + +#: IDF/Form/ReviewFileComment.php:109 +msgid "You need to provide your general comment about the proposal." +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.orig.php:5 +#: IDF/gettexttemplates/idf/base-full.html.php:5 +#: IDF/gettexttemplates/idf/base.html.orig.php:5 +#: IDF/gettexttemplates/idf/base.html.php:5 +#: IDF/gettexttemplates/idf/downloads/base.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14 +#: IDF/Views/Project.php:75 +msgid "Downloads" +msgstr "Prenosi" + +#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.orig.php:9 +#: IDF/gettexttemplates/idf/base-full.html.php:9 +#: IDF/gettexttemplates/idf/base.html.orig.php:9 +#: IDF/gettexttemplates/idf/base.html.php:9 +msgid "Code Review" +msgstr "Revizije Izvorne kode" + +#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:6 +#: IDF/gettexttemplates/idf/base-full.html.php:6 +#: IDF/gettexttemplates/idf/base.html.orig.php:6 +#: IDF/gettexttemplates/idf/base.html.php:6 +msgid "Documentation" +msgstr "Dokumentacija" + +#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:8 +#: IDF/gettexttemplates/idf/base-full.html.php:8 +#: IDF/gettexttemplates/idf/base.html.orig.php:8 +#: IDF/gettexttemplates/idf/base.html.php:8 +msgid "Source" +msgstr "Izvorna koda" + +#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.orig.php:7 +#: IDF/gettexttemplates/idf/base-full.html.php:7 +#: IDF/gettexttemplates/idf/base.html.orig.php:7 +#: IDF/gettexttemplates/idf/base.html.php:7 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17 +msgid "Issues" +msgstr "Napake/Predlogi" + +#: IDF/Form/TabsConf.php:50 +msgid "Open to all" +msgstr "Odprto za vse" + +#: IDF/Form/TabsConf.php:51 +msgid "Signed in users" +msgstr "Prijavljeni uporabniki" + +#: IDF/Form/TabsConf.php:54 +msgid "Closed" +msgstr "Zaprta" + +#: IDF/Form/TabsConf.php:83 +msgid "Extra authorized users" +msgstr "Ostali odobreni uporabniki" + +#: 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 +msgid "File" +msgstr "Datoteka" + +#: 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 "Vaš e-naslov" + +#: 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:209 +msgid "Confirm your new email address." +msgstr "" + +#: IDF/Form/UserAccount.php:212 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" + +#: IDF/Form/UserAccount.php:314 +msgid "" +"Please check the key as it does not appear to be a valid SSH public key." +msgstr "" + +#: IDF/Form/UserAccount.php:334 +msgid "" +"Please check the key as it does not appear to be a valid monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:342 +msgid "Public key looks neither like a SSH nor monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:354 +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 "Naslov strani" + +#: 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 "Vsebina" + +#: 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 "" @@ -199,80 +860,454 @@ msgstr "" msgid "model id" msgstr "" -#: IDF/Gconf.php:73 IDF/Conf.php:61 -msgid "key" -msgstr "ključ" +#: IDF/gettexttemplates/idf/admin/base.html.php:3 +msgid "Project Summary" +msgstr "Splošno o projektu" -#: IDF/Gconf.php:79 IDF/Conf.php:67 -msgid "value" -msgstr "vrednost" +#: IDF/gettexttemplates/idf/admin/base.html.php:6 +msgid "Issue Tracking" +msgstr "Sledenje zadevam" + +#: IDF/gettexttemplates/idf/admin/base.html.php:8 +msgid "Project Members" +msgstr "Osebje Projekta" + +#: IDF/gettexttemplates/idf/admin/base.html.php:9 +msgid "Tabs Access and Notifications" +msgstr "Dostop in obvestila" + +#: IDF/gettexttemplates/idf/admin/downloads.html.php:3 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:3 +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/downloads.html.php:8 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8 +#: IDF/gettexttemplates/idf/admin/members.html.php:13 +#: IDF/gettexttemplates/idf/admin/source.html.php:31 +#: IDF/gettexttemplates/idf/admin/summary.html.php:8 +#: IDF/gettexttemplates/idf/admin/tabs.html.php:15 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:8 +msgid "Save Changes" +msgstr "Shrani spremembe" + +#: IDF/gettexttemplates/idf/admin/members.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/update.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 "" + +#: IDF/gettexttemplates/idf/admin/members.html.php:8 +#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 +msgid "" +"\n" +"

    Notes:

    \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 "" + +#: 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" +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/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.orig.php:3 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.orig.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.orig.php:4 +#: IDF/gettexttemplates/idf/base-full.html.php:4 +#: IDF/gettexttemplates/idf/base.html.orig.php:4 +#: IDF/gettexttemplates/idf/base.html.php:4 +msgid "Project Home" +msgstr "Projekt" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:10 +#: IDF/gettexttemplates/idf/base-full.html.php:10 +#: IDF/gettexttemplates/idf/base.html.orig.php:10 +#: IDF/gettexttemplates/idf/base.html.php:10 +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:214 +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:8 +#: 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:25 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: 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/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +#: 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:13 +msgid "Uploaded:" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:27 +#: IDF/gettexttemplates/idf/review/view.html.php:26 +#: 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:15 +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:12 +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:16 +#: 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:20 +#: IDF/gettexttemplates/idf/issues/view.html.php:31 +#: 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:30 +#: 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 "Changes" +msgstr "Spremembe" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:6 +msgid "The form contains some errors. Please correct them to update the file." +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:7 +msgid "Update File" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:11 +msgid "Remove this file" +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:10 +#: 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:12 +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:45 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:45 msgid "Projects" msgstr "Projekti" -#: IDF/Views.php:88 IDF/gettexttemplates/idf/register/index.html.php:6 -msgid "Create Your Account" -msgstr "Ustvari Uporabniški Račun" - -#: IDF/Views.php:124 IDF/Views.php:150 -msgid "Confirm Your Account Creation" -msgstr "" - -#: IDF/Views.php:170 -msgid "Welcome! You can now participate in the life of your project of choice." -msgstr "" - -#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 -msgid "Password Recovery" -msgstr "Ponastavitev gesla" - -#: IDF/Views.php:240 -msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." -msgstr "" - -#: IDF/Views.php:282 -msgid "Here to Help You!" -msgstr "Tukaj da pomagamo!" - -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" -msgstr "" - -#: IDF/Scm/Mercurial.php:140 IDF/Scm/Git.php:234 -#, php-format -msgid "Folder %1$s not found in commit %2$s." -msgstr "" - -#: IDF/Scm/Mercurial.php:157 IDF/Scm/Git.php:352 -#, 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:183 -#, php-format -msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." -msgstr "" - #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

    This is simple:

    \n" @@ -378,158 +1413,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 "Oups, 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:12 -#: 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 "Oups, 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 "Oups, 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 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 @@ -552,19 +1466,6 @@ msgid "" "

    Separate the logins with commas and/or new lines.

    \n" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 -#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 -#: IDF/gettexttemplates/idf/admin/members.html.php:8 -msgid "" -"\n" -"

    Notes:

    \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 "" - #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14 msgid "" "The form contains some errors. Please correct them to create the project." @@ -574,18 +1475,6 @@ msgstr "" 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 "Ustvari nov projekt" - -#: 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 "Navodila:" - #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3 #, php-format msgid "" @@ -618,15 +1507,6 @@ msgstr "" msgid "Number" msgstr "Številka" -#: 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 "Prenosi" - #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15 msgid "Code reviews" msgstr "" @@ -636,12 +1516,6 @@ msgstr "" 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 "Napake/Predlogi" - #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:18 msgid "Documentation pages" msgstr "" @@ -665,18 +1539,11 @@ msgid "Repositories:" msgstr "Repozitoriji:" #: 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 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 msgid "Attachments:" msgstr "Priponke:" -#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 -#: IDF/gettexttemplates/idf/index.html.php:12 -#: 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 "Zbirka podatkov:" @@ -685,16 +1552,6 @@ msgstr "Zbirka podatkov:" msgid "Total Forge:" msgstr "Skupaj razvoj:" -#: 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 "" - #: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13 msgid "" "The form contains some errors. Please correct them to update the project." @@ -714,35 +1571,29 @@ msgstr "Uredi projekt" msgid "Delete this project" msgstr "Izbriši ta projekt" -#: 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 "Smeti" - #: 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 "Seznam projektov" +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" +msgstr "Seznam uporabnikov" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 -msgid "Change Project Details" +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:13 +msgid "Update User" +msgstr "Osveži uporabnika" + +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5 +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4 +msgid "Create User" msgstr "" #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3 msgid "The form contains some errors. Please correct them to create the user." msgstr "" -#: IDF/gettexttemplates/idf/gadmin/users/create.html.php: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 "" @@ -795,6 +1646,13 @@ msgstr "" 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" @@ -804,15 +1662,22 @@ msgstr "" 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 "Osveži uporabnika" +#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 +msgid "Configured servers" +msgstr "" -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" -msgstr "Seznam uporabnikov" +#: 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/control.html.php:3 msgid "current server status:" @@ -914,976 +1779,9 @@ msgstr "" 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 "Ljudje" - -#: 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 "Dobrodošel" - -#: IDF/gettexttemplates/idf/login_form.html.php:3 -#, fuzzy -msgid "What is your account information?" -msgstr "Kakšno je tvoje uporabniško ime?" - -#: IDF/gettexttemplates/idf/login_form.html.php:4 -msgid "My login is" -msgstr "Sem uporabnik" - -#: IDF/gettexttemplates/idf/login_form.html.php:5 -#, fuzzy -msgid "My password is" -msgstr "moje geslo" - -#: IDF/gettexttemplates/idf/login_form.html.php:6 -msgid "Sign in" -msgstr "Prijavi se" - -#: IDF/gettexttemplates/idf/login_form.html.php:7 -msgid "I lost my password!" -msgstr "Pozabil sem geslo!" - -#: IDF/gettexttemplates/idf/login_form.html.php:8 -#, fuzzy -msgid "Welcome." -msgstr "Dobrodošel" - -#: IDF/gettexttemplates/idf/login_form.html.php:9 -msgid "If you don't have an account yet, you can create one" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:10 -#, fuzzy -msgid "here" -msgstr "Ostalo" - -#: IDF/gettexttemplates/idf/login_form.html.php:11 -#, fuzzy -msgid "It takes less than a minute to create your account" -msgstr "Prijavi se ali pa ustvari uporabniški račun" - -#: IDF/gettexttemplates/idf/user/public.html.php:3 +#: IDF/gettexttemplates/idf/index.atom.php:3 #, php-format -msgid "You are looking at the public profile of %%member%%." -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:" -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 -#, 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/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/myaccount.html.php:6 -msgid "Key Management" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:7 -msgid "Extra password" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 -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:9 -msgid "API key" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 -msgid "" -"Your API key will be regenerated automatically if you change your password." -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 -msgid "Update Your Account" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 -msgid "Your Current Public Keys" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 -msgid "Delete this key" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 -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:16 -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:17 -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 -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/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 again 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 -msgid "" -"Oups, 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 "Predogled" - -#: IDF/gettexttemplates/idf/wiki/create.html.php:6 -msgid "Create Page" -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" -"%%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 "" - -#: 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" -"

    Instructions:

    \n" -"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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/search.html.php:3 -#: IDF/gettexttemplates/idf/wiki/index.html.php:4 -#: IDF/gettexttemplates/idf/wiki/base.html.php:4 IDF/Views/Wiki.php:177 -msgid "New Page" -msgstr "Nova stran" - -#: IDF/gettexttemplates/idf/wiki/search.html.php:4 -msgid "Pages found:" -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 -msgid "Changes:" -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/wiki-updated-email.txt.php:3 -msgid "The following documentation page has been updated:" -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 "Živjo," - -#: 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 "Projekt:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:7 -msgid "Updated by:" -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 -msgid "Created by:" -msgstr "" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13 -msgid "New content:" -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 "Število strani:" - -#: 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/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" -msgstr "" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:6 -#: IDF/gettexttemplates/idf/issues/base.html.php:7 -msgid "Search" -msgstr "Iskanje" - -#: IDF/gettexttemplates/idf/source/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/invalid_revision.html.php:5 -#, 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/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/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/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/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 -msgid "Date:" -msgstr "Datum:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:5 -#: IDF/gettexttemplates/idf/review/view.html.php:27 -msgid "Author:" -msgstr "Avtor:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:6 -msgid "Branch:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:8 -#: IDF/gettexttemplates/idf/review/view.html.php:29 -msgid "View corresponding source tree" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:9 -msgid "Parents:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:10 -#: IDF/gettexttemplates/idf/source/changelog.html.php:6 -msgid "View corresponding commit" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:11 -msgid "Message:" -msgstr "Sporočilo:" - -#: 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:17 -msgid "full" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:15 -msgid "renamed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:16 -msgid "added" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:18 -msgid "modified" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:19 -msgid "properies changed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:20 -msgid "removed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.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/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/review/view.html.php:35 -msgid "Download the corresponding diff file" -msgstr "" - -#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 -#, php-format -msgid "%%cproject.name%%: Commit %%c.scm_id%%" -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 "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:294 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:296 -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 authentification." -msgstr "" - -#: IDF/gettexttemplates/idf/main-menu.html.php:3 -#, php-format -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: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" +msgid "Personal project feed for %%user%%." msgstr "" #: IDF/gettexttemplates/idf/index.html.php:4 @@ -1920,371 +1818,86 @@ msgstr "Dokumentacija" msgid "Code reviews:" msgstr "Revizije Izvorne kode" -#: IDF/gettexttemplates/idf/base-full.html.php:3 -#: IDF/gettexttemplates/idf/base.html.php:3 +#: 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:34 +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +msgid "Archive" +msgstr "Arhiv" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:6 +#: IDF/gettexttemplates/idf/source/git/file.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:7 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:9 +msgid "Download this file" +msgstr "Prenesi to datoteko" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:7 +#: IDF/gettexttemplates/idf/issues/view.html.php:26 +#: IDF/gettexttemplates/idf/review/view.html.php:25 +#: 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 "Ustvarjeno:" + +#: IDF/gettexttemplates/idf/issues/base.html.php:3 +msgid "Open Issues" +msgstr "Odprte zadeve" + +#: 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 "Nova zadeva" + +#: IDF/gettexttemplates/idf/issues/base.html.php:5 +msgid "My Issues" +msgstr "Moje zadeve" + +#: IDF/gettexttemplates/idf/issues/base.html.php:6 +msgid "My watch list" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/base.html.php:7 +#: IDF/gettexttemplates/idf/wiki/base.html.php:6 +msgid "Search" +msgstr "Iskanje" + +#: IDF/gettexttemplates/idf/issues/base.html.php:8 +msgid "Back to the issue" +msgstr "Nazaj na zadevo" + +#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 #, php-format msgid "" -"Sign in or create your account to create issues or " -"add comments" +"

    Open issues: %%open%%

    \n" +"

    Closed issues: %%closed%%

    \n" msgstr "" -#: IDF/gettexttemplates/idf/base-full.html.php:4 -#: IDF/gettexttemplates/idf/base.html.php:4 -msgid "Project Home" -msgstr "Projekt" +#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 +msgid "Label:" +msgstr "Oznaka:" -#: 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.\n" -"
    • Ensure your patch does not contain any passwords 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.

    " -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 "Splošno o projektu" - -#: IDF/gettexttemplates/idf/admin/base.html.php:6 -msgid "Issue Tracking" -msgstr "Sledenje zadevam" - -#: IDF/gettexttemplates/idf/admin/base.html.php:8 -msgid "Project Members" -msgstr "Osebje Projekta" - -#: IDF/gettexttemplates/idf/admin/base.html.php:9 -msgid "Tabs Access and Notifications" -msgstr "Dostop in obvestila" +#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 +msgid "Completion:" +msgstr "Ocena končanosti:" #: IDF/gettexttemplates/idf/issues/create.html.php:3 msgid "" @@ -2303,6 +1916,15 @@ msgstr "" msgid "The form contains some errors. Please correct them to submit the issue." msgstr "" +#: 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 +#: IDF/gettexttemplates/idf/wiki/create.html.php:5 +#: IDF/gettexttemplates/idf/wiki/update.html.php:5 +msgid "Preview" +msgstr "Predogled" + #: IDF/gettexttemplates/idf/issues/create.html.php:12 msgid "Submit Issue" msgstr "Objavi zadevo" @@ -2319,35 +1941,42 @@ msgstr "Dodaj datoteko ..." msgid "Attach another file" msgstr "Naloži novo datoteke" -#: 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 "Nova zadeva" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/view.html.php:17 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:40 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:6 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:11 +#: IDF/IssueComment.php:151 +msgid "Summary:" +msgstr "Povzetek:" -#: IDF/gettexttemplates/idf/issues/search.html.php:4 -msgid "Found issues:" -msgstr "" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:13 +#: IDF/gettexttemplates/idf/issues/view.html.php:18 +#: IDF/gettexttemplates/idf/issues/view.html.php:28 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:6 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:10 +#: IDF/gettexttemplates/idf/review/view.html.php:41 IDF/IssueComment.php:153 +msgid "Status:" +msgstr "Stanje:" -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 -msgid "The following issue has been updated:" -msgstr "" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:5 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:19 +#: IDF/gettexttemplates/idf/issues/view.html.php:29 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:5 +#: IDF/IssueComment.php:155 +msgid "Owner:" +msgstr "Lastnik:" -#: 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 "Zadeve:" - -#: 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/issues/project-watchlist.html.php:3 #, php-format msgid "" "

    Open issues: %%open%%

    \n" @@ -2359,33 +1988,92 @@ msgstr "" "

    Zaprtih zadev: %%closed%%

    " -#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 -#, php-format -msgid "" -"

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" -msgstr "" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" -msgstr "Oznaka:" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 -msgid "Completion:" -msgstr "Ocena končanosti:" - #: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3 msgid "" "A new issue has been created and assigned\n" "to you:" msgstr "" +#: 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 "Sporočil:" + +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 +msgid "Issue:" +msgstr "Zadeve:" + +#: 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:4 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 +#, php-format +msgid "By %%who%%, %%c.creation_dtime%%:" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12 +msgid "URL:" +msgstr "URL:" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 +msgid "Comments (last first):" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/my-issues.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/my-issues.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/my-issues.html.php:6 +#: IDF/gettexttemplates/idf/user/dashboard.html.php:7 +msgid "Submitted issues:" +msgstr "Poslanih zadev:" + +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7 +#: IDF/gettexttemplates/idf/user/dashboard.html.php:6 +msgid "Working issues:" +msgstr "Zadeve v nastajanju:" + +#: IDF/gettexttemplates/idf/issues/search.html.php:4 +msgid "Found 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." @@ -2450,62 +2138,82 @@ msgstr "Shrani spremembe" msgid "Followed by:" msgstr "" -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 +#: IDF/gettexttemplates/idf/login_form.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] "" +"If you don't have an account yet, you can create one here." +msgstr "" -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 +#: IDF/gettexttemplates/idf/login_form.html.php:4 +#, fuzzy +msgid "What is your account information?" +msgstr "Kakšno je tvoje uporabniško ime?" + +#: IDF/gettexttemplates/idf/login_form.html.php:5 +msgid "My login is" +msgstr "Sem uporabnik" + +#: IDF/gettexttemplates/idf/login_form.html.php:6 +#, fuzzy +msgid "My password is" +msgstr "moje geslo" + +#: IDF/gettexttemplates/idf/login_form.html.php:7 +msgid "Sign in" +msgstr "Prijavi se" + +#: IDF/gettexttemplates/idf/login_form.html.php:8 +msgid "I lost my password!" +msgstr "Pozabil sem geslo!" + +#: IDF/gettexttemplates/idf/login_form.html.php:9 +#, fuzzy +msgid "Welcome." +msgstr "Dobrodošel" + +#: IDF/gettexttemplates/idf/login_form.html.php:10 +#, fuzzy +msgid "It takes less than a minute to create your account." +msgstr "Prijavi se ali pa ustvari uporabniški račun" + +#: IDF/gettexttemplates/idf/main-menu.html.php:3 #, 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] "" +"Welcome, %%user%%." +msgstr "" +"Dobrodošel, %%user%%." -#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 -#, php-format -msgid "Attachment to issue %%issue.id%%" +#: 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: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/issues/base.html.php:3 -msgid "Open Issues" -msgstr "Odprte zadeve" +#: IDF/gettexttemplates/idf/main-menu.html.php:10 +#: 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 +msgid "Help" +msgstr "Pomoč" -#: IDF/gettexttemplates/idf/issues/base.html.php:5 -msgid "My Issues" -msgstr "Moje zadeve" - -#: IDF/gettexttemplates/idf/issues/base.html.php:6 -msgid "My watch list" -msgstr "" - -#: IDF/gettexttemplates/idf/issues/base.html.php:8 -msgid "Back to the issue" -msgstr "Nazaj na zadevo" - -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" -msgstr "Zadnje spremembe" - -#: IDF/gettexttemplates/idf/project/timeline.html.php:5 #: 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/timeline.html.php:6 -msgid "Filter by type" -msgstr "" - #: IDF/gettexttemplates/idf/project/home.html.php:5 msgid "Featured Downloads" msgstr "Pomembni prenosi" @@ -2531,106 +2239,1084 @@ msgstr "Administratorji" msgid "Happy Crew" msgstr "Ostali člani" -#: 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?" +#: IDF/gettexttemplates/idf/project/timeline.html.php:3 +msgid "Latest updates" +msgstr "Zadnje spremembe" + +#: IDF/gettexttemplates/idf/project/timeline.html.php:6 +msgid "Filter by type" msgstr "" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 #, php-format msgid "" -"Instead of deleting the file, you could mark it as " -"deprecated." +"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/downloads/delete.html.php:6 -msgid "Delete File" -msgstr "Izbriši datoteko" - -#: IDF/gettexttemplates/idf/downloads/delete.html.php:8 -#: IDF/gettexttemplates/idf/downloads/view.html.php:13 -msgid "Uploaded:" +#: 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 "Oups, please check the form for errors." msgstr "" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 +#: 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 "" -"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." +"This is the last step, but just be sure to have the cookies enabled to log in afterwards." msgstr "" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 +#: 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 "" -"You can use the Markdown syntax for the description." +"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/downloads/submit.html.php:7 -msgid "The form contains some errors. Please correct them to submit the file." +#: IDF/gettexttemplates/idf/register/index.html.php:5 +msgid "Oups, please check the provided login and email address to register." msgstr "" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 -msgid "Submit File" -msgstr "" +#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:88 +msgid "Create Your Account" +msgstr "Ustvari Uporabniški Račun" -#: 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:4 -#: IDF/gettexttemplates/idf/downloads/base.html.php:4 -#: IDF/Views/Download.php:216 -msgid "New Download" -msgstr "" - -#: IDF/gettexttemplates/idf/downloads/index.html.php:5 -msgid "Number of files:" -msgstr "" - -#: IDF/gettexttemplates/idf/downloads/view.html.php:3 +#: IDF/gettexttemplates/idf/register/index.html.php:8 msgid "" -"Attention! This file is marked as deprecated, download it " -"only if you are sure you need this specific version." +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:5 -msgid "Changes" -msgstr "Spremembe" +#: IDF/gettexttemplates/idf/register/index.html.php:9 +msgid "Did you know?" +msgstr "Ali ste vedeli, da ..." -#: IDF/gettexttemplates/idf/downloads/view.html.php:6 -msgid "The form contains some errors. Please correct them to update the file." +#: 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 "Oups, we found an error in the form." msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:7 -msgid "Update File" +#: 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/downloads/view.html.php:9 -#: IDF/gettexttemplates/idf/downloads/view.html.php:11 -msgid "Remove this file" +#: 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/downloads/view.html.php:12 -msgid "Delete this file" +#: IDF/gettexttemplates/idf/review/base-full.html.php:3 +#: IDF/gettexttemplates/idf/review/base.html.php:3 +msgid "Open Reviews" msgstr "" -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3 -msgid "A new file is available for download:" +#: 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/downloads/download-created-email.txt.php:6 -msgid "Submitted by:" +#: 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" +"
    • Ensure your patch does not contain any passwords or confidential " +"information!
    • \n" +"
    " msgstr "" -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8 -msgid "Download:" +#: 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 +#: 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: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: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:27 +#: IDF/gettexttemplates/idf/source/commit.html.php:5 +msgid "Author:" +msgstr "Avtor:" + +#: 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 +msgid "Commit:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:29 +#: IDF/gettexttemplates/idf/source/commit.html.php:8 +msgid "View corresponding source tree" +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:35 +#: IDF/gettexttemplates/idf/source/commit.html.php:23 +msgid "Download the corresponding diff file" +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 "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/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:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/Views/Project.php:152 +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:8 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9 +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:17 +msgid "full" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +msgid "renamed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +msgid "added" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +msgid "modified" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +msgid "properies changed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +msgid "removed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +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: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 "" +"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: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 "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: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 +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 authentification." +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:9 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10 +#: IDF/Views/Download.php:66 IDF/Views/Download.php:294 +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:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13 +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 +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:13 +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 +msgid "The following list shows all available branches:" +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." +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/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:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15 +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:11 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16 +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/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/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/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 "Extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +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:9 +msgid "API key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "Update Your Account" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +msgid "Your Current Public Keys" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Delete this key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +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:16 +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:17 +msgid "Show API key and extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 +msgid "" +"Oups, 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 again 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 "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:175 +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 +#: 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 "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" +"%%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" +"

    Instructions:

    \n" +"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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 "Š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" +"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 "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:93 IDF/WikiPage.php:94 +msgid "labels" +msgstr "oznake" + +#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114 +#: IDF/Upload.php:112 IDF/WikiPage.php:106 +msgid "modification date" +msgstr "datum spremembe" + +#: IDF/Issue.php:194 IDF/IssueComment.php:143 +#, php-format +msgid "" +"Issue %3$d, %4$s" +msgstr "" + +#: IDF/Issue.php:196 +#, php-format +msgid "Creation of issue %d, by %s" +msgstr "" + +#: IDF/Issue.php:206 +#, php-format +msgid "%s: Issue %d created - %s" +msgstr "" + +#: IDF/Issue.php:272 +#, php-format +msgid "Issue %s - %s (%s)" +msgstr "" + +#: IDF/Issue.php:318 +#, php-format +msgid "Updated Issue %s - %s (%s)" +msgstr "" + +#: IDF/IssueComment.php:51 +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/IssueComment.php:171 +#, php-format +msgid "Comment on issue %d, by %s" +msgstr "" + +#: IDF/IssueComment.php:182 +#, php-format +msgid "%s: Comment on issue %d - %s" msgstr "" #: IDF/IssueFile.php:64 @@ -2657,1504 +3343,28 @@ msgstr "Slika" msgid "Other" msgstr "Ostalo" -#: IDF/Project.php:62 IDF/Tag.php:66 -msgid "name" -msgstr "ime" +#: IDF/Key.php:49 +msgid "user" +msgstr "uporabnik" -#: IDF/Project.php:69 -msgid "short name" -msgstr "kratko ime" - -#: IDF/Project.php:70 -msgid "" -"Used in the url to access the project, must be short with only letters and " -"numbers." -msgstr "" - -#: IDF/Project.php:78 -msgid "short description" -msgstr "Dostopen opis" - -#: IDF/Project.php:79 IDF/Form/Admin/ProjectCreate.php:70 -#: IDF/Form/Admin/ProjectUpdate.php:51 -msgid "A one line description of the project." -msgstr "" - -#: IDF/Project.php:86 IDF/Review/Patch.php:74 -msgid "description" -msgstr "opis" - -#: IDF/Project.php:87 -msgid "The description can be extended using the markdown syntax." -msgstr "" - -#: IDF/Project.php:93 -msgid "private" -msgstr "zasebno" - -#: IDF/Project.php:130 -#, php-format -msgid "Project \"%s\" not found." -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/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:196 -#, php-format -msgid "Creation of issue %d, by %s" -msgstr "" - -#: IDF/Issue.php:206 -#, php-format -msgid "%s: Issue %d created - %s" -msgstr "" - -#: IDF/Issue.php:272 -#, php-format -msgid "Issue %s - %s (%s)" -msgstr "" - -#: IDF/Issue.php:318 -#, php-format -msgid "Updated Issue %s - %s (%s)" -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:108 IDF/Views/Wiki.php:149 -msgid "Page Title" -msgstr "Naslov strani" - -#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:109 IDF/Views/Wiki.php:150 -#: IDF/Views/Download.php:65 IDF/Views/Download.php:295 IDF/Views/Issue.php:62 -#: IDF/Views/Issue.php:140 IDF/Views/Issue.php:221 IDF/Views/Issue.php:297 -#: IDF/Views/Issue.php:384 IDF/Views/Issue.php:563 IDF/Views/Issue.php:622 -#: IDF/Views/User.php:83 IDF/Views/Review.php:58 IDF/Form/Upload.php:40 -#: IDF/Form/ReviewCreate.php:45 IDF/Form/IssueUpdate.php:45 -#: IDF/Form/IssueCreate.php:53 IDF/Form/UpdateUpload.php:42 -#: IDF/Form/ReviewFileComment.php:71 -msgid "Summary" -msgstr "Povzetek" - -#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:110 IDF/Views/Wiki.php:151 -msgid "Updated" -msgstr "Zadnjič posodobljeno" - -#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:155 -msgid "No documentation pages were found." -msgstr "" - -#: IDF/Views/Wiki.php:92 -#, php-format -msgid "Documentation Search - %s" -msgstr "" - -#: IDF/Views/Wiki.php:103 -msgid "This table shows the pages found." -msgstr "" - -#: IDF/Views/Wiki.php:114 -msgid "No pages were found." -msgstr "Nisem našel strani." - -#: IDF/Views/Wiki.php:133 -#, php-format -msgid "%1$s Documentation Pages with Label %2$s" -msgstr "" - -#: IDF/Views/Wiki.php:143 -#, php-format -msgid "This table shows the documentation pages with label %s." -msgstr "" - -#: IDF/Views/Wiki.php:188 -#, php-format -msgid "The page %s has been created." -msgstr "" - -#: IDF/Views/Wiki.php:275 -msgid "The old revision has been deleted." -msgstr "" - -#: IDF/Views/Wiki.php:281 -#, php-format -msgid "Delete Old Revision of %s" -msgstr "" - -#: IDF/Views/Wiki.php:314 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 -#, php-format -msgid "Update %s" -msgstr "" - -#: IDF/Views/Wiki.php:326 -#, php-format -msgid "The page %s has been updated." -msgstr "" - -#: IDF/Views/Wiki.php:364 -msgid "The documentation page has been deleted." -msgstr "" - -#: IDF/Views/Wiki.php:372 -#, php-format -msgid "Delete Page %s" -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:77 -#, php-format -msgid "%s Ambiguous Revision" -msgstr "" - -#: IDF/Views/Source.php:102 -#, php-format -msgid "%1$s %2$s Change Log" -msgstr "" - -#: IDF/Views/Source.php:142 IDF/Views/Source.php:223 IDF/Views/Source.php:355 -#, php-format -msgid "%1$s %2$s Source Tree" -msgstr "" - -#: IDF/Views/Source.php:299 -#, php-format -msgid "%s Commit Details" -msgstr "" - -#: IDF/Views/Source.php:300 -#, php-format -msgid "%s Commit Details - %s" -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:297 -msgid "Uploaded" -msgstr "" - -#: IDF/Views/Download.php:71 IDF/Views/Download.php:301 -msgid "No downloads were found." -msgstr "" - -#: IDF/Views/Download.php:96 -#, php-format -msgid "Download %s" -msgstr "" - -#: IDF/Views/Download.php:113 -#, php-format -msgid "The file %2$s has been updated." -msgstr "" - -#: IDF/Views/Download.php:146 -#, php-format -msgid "Delete Download %s" -msgstr "" - -#: IDF/Views/Download.php:179 -msgid "The file has been deleted." -msgstr "" - -#: IDF/Views/Download.php:225 -#, php-format -msgid "The file has been uploaded." -msgstr "" - -#: IDF/Views/Download.php:279 -#, php-format -msgid "%1$s Downloads with Label %2$s" -msgstr "" - -#: IDF/Views/Download.php:289 -#, php-format -msgid "This table shows the downloads with label %s." -msgstr "" - -#: IDF/Views/Project.php:72 -msgid "All Updates" -msgstr "" - -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" -msgstr "" - -#: IDF/Views/Project.php:76 -msgid "Documents" -msgstr "" - -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" -msgstr "" - -#: IDF/Views/Project.php:142 -msgid "This table shows the project updates." -msgstr "" - -#: IDF/Views/Project.php:153 -msgid "Change" -msgstr "Spremeni" - -#: IDF/Views/Project.php:157 -msgid "No changes were found." -msgstr "" - -#: IDF/Views/Project.php:248 -#, php-format -msgid "%s Project Summary" -msgstr "" - -#: IDF/Views/Project.php:256 IDF/Views/Admin.php:101 -msgid "The project has been updated." -msgstr "" - -#: IDF/Views/Project.php:283 -#, php-format -msgid "%s Issue Tracking Configuration" -msgstr "" - -#: IDF/Views/Project.php:292 -msgid "The issue tracking configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:328 -#, php-format -msgid "%s Downloads Configuration" -msgstr "" - -#: IDF/Views/Project.php:337 -msgid "The downloads configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:371 -#, php-format -msgid "%s Documentation Configuration" -msgstr "" - -#: IDF/Views/Project.php:380 -msgid "The documentation configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:414 -#, php-format -msgid "%s Project Members" -msgstr "" - -#: IDF/Views/Project.php:423 -msgid "The project membership has been saved." -msgstr "" - -#: IDF/Views/Project.php:446 -#, php-format -msgid "%s Tabs Access Rights" -msgstr "" - -#: IDF/Views/Project.php:460 -msgid "The project tabs access rights have been saved." -msgstr "" - -#: IDF/Views/Project.php:506 -#, php-format -msgid "%s Source" -msgstr "" - -#: IDF/Views/Project.php:520 -msgid "The project source configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:540 IDF/Form/Admin/ProjectCreate.php:38 -msgid "git" -msgstr "" - -#: IDF/Views/Project.php:541 IDF/Form/Admin/ProjectCreate.php:39 -msgid "Subversion" -msgstr "" - -#: IDF/Views/Project.php:542 IDF/Form/Admin/ProjectCreate.php:40 -msgid "mercurial" -msgstr "" - -#: IDF/Views/Project.php:543 IDF/Form/Admin/ProjectCreate.php:41 -msgid "monotone" -msgstr "" - -#: IDF/Views/Issue.php:41 -#, php-format -msgid "%s Open Issues" -msgstr "" - -#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:288 IDF/Views/User.php:75 -msgid "This table shows the open issues." -msgstr "" - -#: IDF/Views/Issue.php:61 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/User.php:81 IDF/Views/Review.php:57 -msgid "Id" -msgstr "Id" - -#: IDF/Views/Issue.php:63 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/User.php:84 IDF/Views/Review.php:59 -#: IDF/Form/ReviewCreate.php:103 IDF/Form/IssueUpdate.php:88 -#: IDF/Form/IssueCreate.php:95 IDF/Form/ReviewFileComment.php:81 -msgid "Status" -msgstr "Stanje" - -#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:142 IDF/Views/Issue.php:224 -#: IDF/Views/Issue.php:299 IDF/Views/Issue.php:386 IDF/Views/Issue.php:565 -#: IDF/Views/Issue.php:624 IDF/Views/User.php:85 IDF/Views/Review.php:60 -msgid "Last Updated" -msgstr "" - -#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:146 IDF/Views/Issue.php:228 -#: IDF/Views/Issue.php:303 IDF/Views/Issue.php:390 IDF/Views/Issue.php:569 -#: IDF/Views/Issue.php:628 -msgid "No issues were found." -msgstr "" - -#: IDF/Views/Issue.php:113 -#, php-format -msgid "Watch List: Closed Issues for %s" -msgstr "" - -#: IDF/Views/Issue.php:114 -#, php-format -msgid "This table shows the closed issues in your watch list for %s project." -msgstr "" - -#: IDF/Views/Issue.php:119 -#, php-format -msgid "Watch List: Open Issues for %s" -msgstr "" - -#: IDF/Views/Issue.php:120 -#, php-format -msgid "This table shows the open issues in your watch list for %s project." -msgstr "" - -#: IDF/Views/Issue.php:196 -msgid "Watch List: Closed Issues" -msgstr "" - -#: IDF/Views/Issue.php:197 -msgid "This table shows the closed issues in your watch list." -msgstr "" - -#: IDF/Views/Issue.php:202 -msgid "Watch List: Open Issues" -msgstr "" - -#: IDF/Views/Issue.php:203 -msgid "This table shows the open issues in your watch list." -msgstr "" - -#: IDF/Views/Issue.php:222 IDF/Views/User.php:82 -msgid "Project" -msgstr "Projekt" - -#: IDF/Views/Issue.php:255 -#, php-format -msgid "My Submitted %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:259 -#, php-format -msgid "My Closed Submitted %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:263 -#, php-format -msgid "My Closed Working %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:267 -#, php-format -msgid "My Working %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:322 -msgid "Submit a new issue" -msgstr "Pošiljanje nove zadeve" - -#: IDF/Views/Issue.php:338 -#, php-format -msgid "Issue %d has been created." -msgstr "" - -#: IDF/Views/Issue.php:367 -#, php-format -msgid "Search Issues - %s" -msgstr "" - -#: IDF/Views/Issue.php:379 -msgid "This table shows the found issues." -msgstr "" - -#: IDF/Views/Issue.php:409 -#, php-format -msgid "Issue %d: %s" -msgstr "" - -#: IDF/Views/Issue.php:433 -#, php-format -msgid "Issue %d has been updated." -msgstr "" - -#: IDF/Views/Issue.php:522 -#, php-format -msgid "View %s" -msgstr "Poglej %s" - -#: IDF/Views/Issue.php:542 -#, php-format -msgid "%s Closed Issues" -msgstr "" - -#: IDF/Views/Issue.php:552 -msgid "This table shows the closed issues." -msgstr "" - -#: IDF/Views/Issue.php:595 -#, php-format -msgid "%1$s Issues with Label %2$s" -msgstr "" - -#: IDF/Views/Issue.php:598 -#, php-format -msgid "%1$s Closed Issues with Label %2$s" -msgstr "" - -#: IDF/Views/Issue.php:611 -#, php-format -msgid "This table shows the issues with label %s." -msgstr "" - -#: IDF/Views/Issue.php:661 -msgid "The issue has been removed from your watch list." -msgstr "" - -#: IDF/Views/Issue.php:664 -msgid "The issue has been added to your watch list." -msgstr "" - -#: IDF/Views/Issue.php:753 -msgid "On your watch list." -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:132 -msgid "Your Account" -msgstr "Vaš račun" - -#: IDF/Views/User.php:155 -msgid "The public key has been deleted." -msgstr "" - -#: IDF/Views/User.php:178 -msgid "Confirm The Email Change" -msgstr "" - -#: IDF/Views/User.php:203 -#, php-format -msgid "Your new email address \"%s\" has been validated. Thank you!" -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/Admin.php:60 -msgid "This table shows the projects in the forge." -msgstr "" - -#: IDF/Views/Admin.php:65 -msgid "Short Name" -msgstr "Kratko ime" - -#: IDF/Views/Admin.php:66 IDF/Views/Admin.php:210 -#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 -msgid "Name" -msgstr "Ime" - -#: IDF/Views/Admin.php:67 -msgid "Repository Size" -msgstr "Velikost repozitorija" - -#: IDF/Views/Admin.php:73 -msgid "No projects were found." -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:211 IDF/Form/Admin/UserUpdate.php:161 -msgid "Staff" -msgstr "Osebje" - -#: IDF/Views/Admin.php:212 -msgid "Admin" -msgstr "Administrator" - -#: IDF/Views/Admin.php:213 IDF/Form/Admin/UserUpdate.php:172 -msgid "Active" -msgstr "Aktiven" - -#: IDF/Views/Admin.php:214 -msgid "Last Login" -msgstr "Zadnja prijava" - -#: IDF/Views/Admin.php:221 -msgid "No users were found." -msgstr "Nisem našel uporabnikov!" - -#: 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 "Da" - -#: IDF/Views/Admin.php:471 -msgid "No" -msgstr "Ne" - -#: 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 "Naslov strani" - -#: 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:70 IDF/Form/Upload.php:49 -#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/ReviewCreate.php:54 -#: IDF/Form/UserAccount.php:99 IDF/Form/IssueCreate.php:62 -#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 -msgid "Description" -msgstr "Opis" - -#: 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 "Vsebina" - -#: IDF/Form/WikiCreate.php:93 IDF/Form/Upload.php:70 -#: IDF/Form/IssueUpdate.php:117 IDF/Form/IssueCreate.php:150 -#: IDF/Form/WikiUpdate.php:104 IDF/Form/UpdateUpload.php:71 -msgid "Labels" -msgstr "Oznake" - -#: 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:151 IDF/Form/Upload.php:120 -#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 -#: IDF/Form/WikiUpdate.php:162 IDF/Form/UpdateUpload.php:110 -msgid "You provided an invalid label." -msgstr "" - -#: IDF/Form/WikiCreate.php:167 IDF/Form/Upload.php:148 -#: IDF/Form/Admin/UserCreate.php:106 IDF/Form/Admin/ProjectCreate.php:279 -#: IDF/Form/Admin/ProjectDelete.php:78 IDF/Form/Admin/UserUpdate.php:191 -#: IDF/Form/Admin/ProjectUpdate.php:121 IDF/Form/Password.php:76 -#: IDF/Form/ReviewCreate.php:187 IDF/Form/Register.php:114 -#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 -#: IDF/Form/UserAccount.php:178 IDF/Form/IssueCreate.php:263 -#: IDF/Form/MembersConf.php:64 IDF/Form/WikiUpdate.php:178 -#: IDF/Form/UpdateUpload.php:126 IDF/Form/TabsConf.php:98 -#: IDF/Form/UserChangeEmail.php:80 IDF/Form/ReviewFileComment.php:125 -msgid "Cannot save the model from an invalid form." -msgstr "" - -#: IDF/Form/WikiCreate.php:200 -msgid "Initial page creation" -msgstr "" - -#: IDF/Form/Upload.php:86 IDF/Form/Admin/UserUpdate.php:301 -#: IDF/Form/UserAccount.php:367 -msgid "For security reason, you cannot upload a file with this extension." -msgstr "" - -#: IDF/Form/Upload.php:119 IDF/Form/IssueCreate.php:199 -#: IDF/Form/UpdateUpload.php:109 -#, php-format -msgid "You cannot provide more than label from the %s class to an issue." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 -#: IDF/Form/UserAccount.php:40 IDF/Form/RegisterConfirmation.php:50 -msgid "First name" -msgstr "Ime" - -#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 -#: IDF/Form/UserAccount.php:49 IDF/Form/RegisterConfirmation.php:59 -msgid "Last name" -msgstr "Priimek" - -#: IDF/Form/Admin/UserCreate.php:56 -msgid "Login" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 -msgid "" -"The login must be between 3 and 15 characters long and contains only letters " -"and digits." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 -msgid "Email" -msgstr "E-naslov" - -#: IDF/Form/Admin/UserCreate.php:71 -msgid "" -"Double check the email address as the password is directly sent to the user." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 -#: IDF/Form/UserAccount.php:66 -msgid "Language" -msgstr "Jezik" - -#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:159 -msgid "Add a public key" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:164 -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:400 -#, php-format -msgid "The email \"%s\" is already used." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 -#, php-format -msgid "The login \"%s\" can only contain letters and digits." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 -#, php-format -msgid "The login \"%s\" is already used, please find another one." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:62 -msgid "Shortname" -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:64 -msgid "" -"It must be unique for each project and composed only of letters, digits and " -"dash (-) like \"my-project\"." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 -msgid "Short description" -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php: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 "Lastniki projekta" - -#: 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 "Člani projekta" - -#: 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 throught http or https are allowed. For " -"example \"http://somewhere.com/svn/trunk\"." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 -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:295 -msgid "" -"Click on the Project Management tab to set the description of your project." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:362 -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/UserUpdate.php:78 -msgid "Password" -msgstr "Geslo" - -#: IDF/Form/Admin/UserUpdate.php:81 -msgid "Leave blank if you do not want to change the password." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:81 -msgid "" -"The password must be hard for other people to find it, but easy for the user " -"to remember." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:89 -msgid "Confirm password" -msgstr "Potrditev gesla" - -#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:108 -msgid "Twitter username" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:118 -msgid "Public email address" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:128 -msgid "Website URL" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:138 -msgid "Upload custom avatar" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:145 -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:150 -msgid "Remove custom avatar" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:154 -msgid "Tick this to delete the custom avatar." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:164 -msgid "If you give staff rights to a user, you really need to trust him." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:176 -msgid "" -"If the user is not getting the confirmation email or is abusing the system, " -"you can directly enable or disable his 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:316 IDF/Form/UserAccount.php:423 -msgid "The passwords do not match. Please give them again." -msgstr "" - -#: IDF/Form/Password.php:34 -msgid "Your login or email" -msgstr "" - -#: IDF/Form/Password.php:35 -msgid "Provide either your login or your email to recover your password." -msgstr "" - -#: IDF/Form/Password.php:49 IDF/Form/Password.php:64 -msgid "" -"Sorry, we cannot find a user with this email address or login. Feel free to " -"try again." -msgstr "" - -#: IDF/Form/Password.php:100 -msgid "Password Recovery - InDefero" -msgstr "" - -#: IDF/Form/PasswordReset.php:39 IDF/Form/PasswordInputKey.php:36 -#: IDF/Form/UserChangeEmail.php:36 -msgid "Your verification key" -msgstr "" - -#: IDF/Form/PasswordReset.php:45 IDF/Form/UserAccount.php:77 -#: IDF/Form/RegisterConfirmation.php:69 -msgid "Your password" -msgstr "Vaše geslo" - -#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80 -#: IDF/Form/RegisterConfirmation.php:72 -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/UserAccount.php:88 -#: IDF/Form/RegisterConfirmation.php:80 -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/PasswordReset.php:89 IDF/Form/PasswordInputKey.php:50 -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/PasswordReset.php:100 IDF/Form/PasswordInputKey.php:61 -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/PasswordReset.php:108 IDF/Form/PasswordInputKey.php:76 -#: IDF/Form/RegisterInputKey.php:72 IDF/Form/RegisterConfirmation.php:137 -msgid "Cannot save an invalid form." -msgstr "" - -#: IDF/Form/ReviewCreate.php:83 IDF/Form/IssueUpdate.php:65 -#: IDF/Form/IssueCreate.php:72 -msgid "The \"upload_issue_path\" configuration variable was not set." -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:159 IDF/Form/IssueCreate.php:233 -msgid "You provided an invalid status." -msgstr "" - -#: IDF/Form/ReviewCreate.php:202 -msgid "Initial patch to be reviewed." -msgstr "" - -#: IDF/Form/Register.php:41 -msgid "Your login" -msgstr "" - -#: IDF/Form/Register.php:53 -msgid "Your email" -msgstr "E-naslov" - -#: IDF/Form/Register.php:55 -msgid "We will never send you any unsolicited emails. We hate spams 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:99 -#, php-format -msgid "" -"The email \"%s\" is already used. If you need, click on the help link to " -"recover your password." -msgstr "" - -#: IDF/Form/Register.php:150 -msgid "Confirm the creation of your account." -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/IssueUpdate.php:55 IDF/Form/WikiUpdate.php:82 -#: IDF/Form/ReviewFileComment.php:45 -msgid "Comment" -msgstr "Komentar" - -#: IDF/Form/IssueUpdate.php:75 IDF/Form/IssueCreate.php:82 -msgid "Attach a file" -msgstr "Izberi datoteko" - -#: IDF/Form/IssueUpdate.php:98 IDF/Form/IssueCreate.php:104 -msgid "Owner" -msgstr "Lastnik" - -#: IDF/Form/IssueUpdate.php:147 IDF/Form/IssueCreate.php:210 -msgid "You need to provide a description of the issue." -msgstr "" - -#: IDF/Form/IssueUpdate.php:219 -msgid "No changes were entered." -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/UserAccount.php:59 -msgid "Your mail" -msgstr "Vaš e-naslov" - -#: 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:207 -msgid "Confirm your new email address." -msgstr "" - -#: IDF/Form/UserAccount.php:210 -#, php-format -msgid "" -"A validation email has been sent to \"%s\" to validate the email address " -"change." -msgstr "" - -#: IDF/Form/UserAccount.php:312 -msgid "" -"Please check the key as it does not appear to be a valid SSH public key." -msgstr "" - -#: IDF/Form/UserAccount.php:332 -msgid "" -"Please check the key as it does not appear to be a valid monotone public key." -msgstr "" - -#: IDF/Form/UserAccount.php:340 -msgid "Public key looks neither like a SSH nor monotone public key." -msgstr "" - -#: IDF/Form/UserAccount.php:352 -msgid "You already have uploaded this key." -msgstr "" - -#: IDF/Form/RegisterInputKey.php:36 IDF/Form/RegisterConfirmation.php:40 -msgid "Your confirmation key" -msgstr "" - -#: IDF/Form/RegisterInputKey.php:50 IDF/Form/RegisterConfirmation.php:99 -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/IssueCreate.php:192 -msgid "You cannot add a label with the \"Status\" prefix to an issue." -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:80 -msgid "" -"Define an issue template to hint the reporter to provide certain information" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:89 -msgid "Open issue status values" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:97 -msgid "Closed issue status values" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:106 -msgid "Predefined issue labels" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:108 -msgid "" -"The first \"Type:\" and \"Priority:\" entries found in this list are " -"automatically chosen as defaults for new issues." -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:116 -msgid "Each issue may have at most one label with each of these classes" -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/MembersConf.php:104 -#, php-format -msgid "The following login is invalid: %s." -msgid_plural "The following logins are invalid: %s." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: IDF/Form/WikiUpdate.php:83 -msgid "One line to describe the changes you made." -msgstr "" - -#: IDF/Form/TabsConf.php:50 -msgid "Open to all" -msgstr "Odprto za vse" - -#: IDF/Form/TabsConf.php:51 -msgid "Signed in users" -msgstr "Prijavljeni uporabniki" - -#: IDF/Form/TabsConf.php:54 -msgid "Closed" -msgstr "Zaprta" - -#: IDF/Form/TabsConf.php:83 -msgid "Extra authorized users" -msgstr "Ostali odobreni uporabniki" - -#: IDF/Form/UserChangeEmail.php:63 -msgid "" -"The validation key is not valid. Please copy/paste it from your confirmation " -"email." -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/ReviewFileComment.php:56 -msgid "General comment" -msgstr "" - -#: IDF/Form/ReviewFileComment.php:102 -msgid "You need to provide comments on at least one file." -msgstr "" - -#: IDF/Form/ReviewFileComment.php:109 -msgid "You need to provide your general comment about the proposal." -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/Field/EmailList.php:45 -msgid "Please enter one or more valid email addresses." -msgstr "" - -#: IDF/WikiRevision.php:48 -msgid "page" -msgstr "stran" - -#: IDF/WikiRevision.php:66 -msgid "A one line description of the changes." -msgstr "" - -#: IDF/WikiRevision.php:72 -msgid "content" -msgstr "vsebina" - -#: IDF/WikiRevision.php:167 IDF/WikiPage.php:196 -#, php-format -msgid "%2$s, %3$s" -msgstr "" - -#: 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 "" - -#: IDF/Review/Patch.php:52 -msgid "review" -msgstr "" - -#: IDF/Review/Patch.php:67 -msgid "commit" -msgstr "" - -#: IDF/Review/Patch.php:80 IDF/Review/Comment.php:55 -msgid "patch" -msgstr "" - -#: IDF/Review/Patch.php:151 IDF/Review/Comment.php:139 -#, php-format -msgid "" -"Review %3$d, %4$s" -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/Review/Comment.php:83 -msgid "vote" -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" +#: IDF/Key.php:55 +msgid "public key" msgstr "" -#: IDF/Review/Comment.php:216 -#, php-format -msgid "Updated Code Review %s - %s (%s)" +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." msgstr "" -#: IDF/Plugin/SyncSvn.php:81 IDF/Plugin/SyncMercurial.php:78 +#: 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:86 IDF/Plugin/SyncMonotone.php:457 #: IDF/Plugin/SyncMonotone.php:783 msgid "\"mtn_repositories\" must be defined in your configuration file." @@ -4184,6 +3394,11 @@ msgstr "" msgid "The project path %s could not be created." msgstr "" +#: IDF/Plugin/SyncMonotone.php:187 IDF/Scm/Monotone/Stdio.php:87 +#, php-format +msgid "The key directory %s could not be created." +msgstr "" + #: IDF/Plugin/SyncMonotone.php:205 #, php-format msgid "Could not parse key information: %s" @@ -4269,37 +3484,131 @@ msgstr "" msgid "The command \"%s\" could not be executed." msgstr "" -#: IDF/Plugin/SyncMercurial.php:142 -#, php-format -msgid "%s does not exist or is not writable." -msgstr "" +#: IDF/Project.php:62 IDF/Tag.php:66 +msgid "name" +msgstr "ime" -#: IDF/Timeline/Paginator.php:49 -msgid "Today" -msgstr "Danes" +#: IDF/Project.php:69 +msgid "short name" +msgstr "kratko ime" -#: IDF/WikiPage.php:62 -msgid "title" -msgstr "naslov" - -#: IDF/WikiPage.php:63 +#: IDF/Project.php:70 msgid "" -"The title of the page must only contain letters, digits or the dash " -"character. For example: My-new-Wiki-Page." +"Used in the url to access the project, must be short with only letters and " +"numbers." msgstr "" -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." +#: IDF/Project.php:78 +msgid "short description" +msgstr "Dostopen opis" + +#: IDF/Project.php:86 IDF/Review/Patch.php:74 +msgid "description" +msgstr "opis" + +#: IDF/Project.php:87 +msgid "The description can be extended using the markdown syntax." msgstr "" -#: IDF/WikiPage.php:198 +#: IDF/Project.php:93 +msgid "private" +msgstr "zasebno" + +#: IDF/Project.php:130 #, php-format -msgid "Creation of page %s, by %s" +msgid "Project \"%s\" not found." msgstr "" -#: IDF/WikiPage.php:208 +#: 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 "%s: Documentation page %s added - %s" +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:183 +#, php-format +msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." +msgstr "" + +#: IDF/Scm/Git.php:234 IDF/Scm/Mercurial.php:140 +#, php-format +msgid "Folder %1$s not found in commit %2$s." +msgstr "" + +#: IDF/Scm/Git.php:352 IDF/Scm/Mercurial.php:157 +#, 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:98 +#, 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 @@ -4318,16 +3627,8 @@ msgstr "" msgid "Lower case version of the name for fast searching." msgstr "" -#: IDF/Key.php:49 -msgid "user" -msgstr "uporabnik" - -#: IDF/Key.php:55 -msgid "public key" -msgstr "" - -#: IDF/Key.php:87 -msgid "Invalid or unknown key data detected." +#: IDF/Template/Markdown.php:74 +msgid "Create this documentation page" msgstr "" #: IDF/Template/ShowUser.php:51 @@ -4338,10 +3639,731 @@ msgstr "" msgid "Me" msgstr "Jaz" -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" +#: IDF/Timeline/Paginator.php:49 +msgid "Today" +msgstr "Danes" + +#: IDF/Upload.php:70 +msgid "file" +msgstr "datoteka" + +#: IDF/Upload.php:71 +msgid "The path is relative to the upload path." msgstr "" +#: IDF/Upload.php:78 +msgid "file size in bytes" +msgstr "Velikost v bajtih" + +#: IDF/Upload.php:100 +msgid "number of downloads" +msgstr "število prenosov" + +#: 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 "" + +#: IDF/Views/Admin.php:60 +msgid "This table shows the projects in the forge." +msgstr "" + +#: IDF/Views/Admin.php:65 +msgid "Short Name" +msgstr "Kratko ime" + +#: IDF/Views/Admin.php:67 +msgid "Repository Size" +msgstr "Velikost repozitorija" + +#: 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:312 +#, php-format +msgid "Update %s" +msgstr "" + +#: IDF/Views/Admin.php:101 IDF/Views/Project.php:256 +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 "Administrator" + +#: IDF/Views/Admin.php:214 +msgid "Last Login" +msgstr "Zadnja prijava" + +#: IDF/Views/Admin.php:221 +msgid "No users were found." +msgstr "Nisem našel uporabnikov!" + +#: 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 "Da" + +#: IDF/Views/Admin.php:471 +msgid "No" +msgstr "Ne" + +#: IDF/Views/Download.php:45 +#, php-format +msgid "%s Downloads" +msgstr "" + +#: IDF/Views/Download.php:51 +msgid "This table shows the files to download." +msgstr "" + +#: IDF/Views/Download.php:67 IDF/Views/Download.php:295 +msgid "Uploaded" +msgstr "" + +#: IDF/Views/Download.php:71 IDF/Views/Download.php:299 +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:223 +#, php-format +msgid "The file has been uploaded." +msgstr "" + +#: IDF/Views/Download.php:277 +#, php-format +msgid "%1$s Downloads with Label %2$s" +msgstr "" + +#: IDF/Views/Download.php:287 +#, 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:287 IDF/Views/User.php:75 +msgid "This table shows the open issues." +msgstr "" + +#: 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 +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 +msgid "Last Updated" +msgstr "" + +#: 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 +msgid "No issues were found." +msgstr "" + +#: IDF/Views/Issue.php:112 +#, php-format +msgid "Watch List: Closed Issues for %s" +msgstr "" + +#: IDF/Views/Issue.php:113 +#, php-format +msgid "This table shows the closed issues in your watch list for %s project." +msgstr "" + +#: IDF/Views/Issue.php:118 +#, php-format +msgid "Watch List: Open Issues for %s" +msgstr "" + +#: IDF/Views/Issue.php:119 +#, php-format +msgid "This table shows the open issues in your watch list for %s project." +msgstr "" + +#: IDF/Views/Issue.php:195 +msgid "Watch List: Closed Issues" +msgstr "" + +#: IDF/Views/Issue.php:196 +msgid "This table shows the closed issues in your watch list." +msgstr "" + +#: IDF/Views/Issue.php:201 +msgid "Watch List: Open Issues" +msgstr "" + +#: IDF/Views/Issue.php:202 +msgid "This table shows the open issues in your watch list." +msgstr "" + +#: IDF/Views/Issue.php:221 IDF/Views/User.php:82 +msgid "Project" +msgstr "Projekt" + +#: IDF/Views/Issue.php:254 +#, php-format +msgid "My Submitted %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:258 +#, php-format +msgid "My Closed Submitted %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:262 +#, php-format +msgid "My Closed Working %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:266 +#, php-format +msgid "My Working %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:321 +msgid "Submit a new issue" +msgstr "Pošiljanje nove zadeve" + +#: IDF/Views/Issue.php:337 +#, php-format +msgid "Issue %d has been created." +msgstr "" + +#: IDF/Views/Issue.php:366 +#, php-format +msgid "Search Issues - %s" +msgstr "" + +#: IDF/Views/Issue.php:378 +msgid "This table shows the found issues." +msgstr "" + +#: IDF/Views/Issue.php:408 +#, php-format +msgid "Issue %d: %s" +msgstr "" + +#: IDF/Views/Issue.php:432 +#, php-format +msgid "Issue %d has been updated." +msgstr "" + +#: IDF/Views/Issue.php:521 +#, php-format +msgid "View %s" +msgstr "Poglej %s" + +#: IDF/Views/Issue.php:541 +#, php-format +msgid "%s Closed Issues" +msgstr "" + +#: IDF/Views/Issue.php:551 +msgid "This table shows the closed issues." +msgstr "" + +#: IDF/Views/Issue.php:594 +#, php-format +msgid "%1$s Issues with Label %2$s" +msgstr "" + +#: IDF/Views/Issue.php:597 +#, php-format +msgid "%1$s Closed Issues with Label %2$s" +msgstr "" + +#: IDF/Views/Issue.php:610 +#, php-format +msgid "This table shows the issues with label %s." +msgstr "" + +#: IDF/Views/Issue.php:660 +msgid "The issue has been removed from your watch list." +msgstr "" + +#: IDF/Views/Issue.php:663 +msgid "The issue has been added to your watch list." +msgstr "" + +#: IDF/Views/Issue.php:752 +msgid "On your watch list." +msgstr "" + +#: IDF/Views/Project.php:72 +msgid "All Updates" +msgstr "" + +#: IDF/Views/Project.php:74 +msgid "Issues and Comments" +msgstr "" + +#: IDF/Views/Project.php:76 +msgid "Documents" +msgstr "" + +#: IDF/Views/Project.php:77 +msgid "Reviews and Patches" +msgstr "" + +#: IDF/Views/Project.php:142 +msgid "This table shows the project updates." +msgstr "" + +#: IDF/Views/Project.php:153 +msgid "Change" +msgstr "Spremeni" + +#: IDF/Views/Project.php:157 +msgid "No changes were found." +msgstr "" + +#: IDF/Views/Project.php:248 +#, php-format +msgid "%s Project Summary" +msgstr "" + +#: IDF/Views/Project.php:283 +#, php-format +msgid "%s Issue Tracking Configuration" +msgstr "" + +#: IDF/Views/Project.php:292 +msgid "The issue tracking configuration has been saved." +msgstr "" + +#: IDF/Views/Project.php:328 +#, php-format +msgid "%s Downloads Configuration" +msgstr "" + +#: IDF/Views/Project.php:337 +msgid "The downloads configuration has been saved." +msgstr "" + +#: IDF/Views/Project.php:371 +#, php-format +msgid "%s Documentation Configuration" +msgstr "" + +#: IDF/Views/Project.php:380 +msgid "The documentation configuration has been saved." +msgstr "" + +#: IDF/Views/Project.php:414 +#, php-format +msgid "%s Project Members" +msgstr "" + +#: IDF/Views/Project.php:423 +msgid "The project membership has been saved." +msgstr "" + +#: IDF/Views/Project.php:446 +#, php-format +msgid "%s Tabs Access Rights" +msgstr "" + +#: IDF/Views/Project.php:460 +msgid "The project tabs access rights have been saved." +msgstr "" + +#: IDF/Views/Project.php:506 +#, php-format +msgid "%s Source" +msgstr "" + +#: IDF/Views/Project.php:520 +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:81 +#, php-format +msgid "%s Ambiguous Revision" +msgstr "" + +#: IDF/Views/Source.php:106 +#, php-format +msgid "%1$s %2$s Change Log" +msgstr "" + +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#, php-format +msgid "%1$s %2$s Source Tree" +msgstr "" + +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" +msgstr "" + +#: IDF/Views/Source.php:304 +#, 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:132 +msgid "Your Account" +msgstr "Vaš račun" + +#: IDF/Views/User.php:155 +msgid "The public key has been deleted." +msgstr "" + +#: IDF/Views/User.php:178 +msgid "Confirm The Email Change" +msgstr "" + +#: IDF/Views/User.php:203 +#, 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 "Naslov strani" + +#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149 +msgid "Updated" +msgstr "Zadnjič posodobljeno" + +#: 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 "Nisem našel strani." + +#: 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:186 +#, php-format +msgid "The page %s has been created." +msgstr "" + +#: IDF/Views/Wiki.php:273 +msgid "The old revision has been deleted." +msgstr "" + +#: IDF/Views/Wiki.php:279 +#, php-format +msgid "Delete Old Revision of %s" +msgstr "" + +#: IDF/Views/Wiki.php:324 +#, php-format +msgid "The page %s has been updated." +msgstr "" + +#: IDF/Views/Wiki.php:362 +msgid "The documentation page has been deleted." +msgstr "" + +#: IDF/Views/Wiki.php:370 +#, php-format +msgid "Delete Page %s" +msgstr "" + +#: IDF/Views.php:124 IDF/Views.php:150 +msgid "Confirm Your Account Creation" +msgstr "" + +#: IDF/Views.php:170 +msgid "Welcome! You can now participate in the life of your project of choice." +msgstr "" + +#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 +msgid "Password Recovery" +msgstr "Ponastavitev gesla" + +#: IDF/Views.php:240 +msgid "" +"Welcome back! Next time, you can use your broswer options to remember the " +"password." +msgstr "" + +#: IDF/Views.php:282 +msgid "Here to Help You!" +msgstr "Tukaj da pomagamo!" + +#: IDF/Views.php:298 +msgid "InDefero API (Application Programming Interface)" +msgstr "" + +#: IDF/WikiPage.php:62 +msgid "title" +msgstr "naslov" + +#: 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 "stran" + +#: IDF/WikiRevision.php:66 +msgid "A one line description of the changes." +msgstr "" + +#: IDF/WikiRevision.php:72 +msgid "content" +msgstr "vsebina" + +#: 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 "" + +#, fuzzy +#~ msgid "here" +#~ msgstr "Ostalo" + #~ msgid "Managed Projects:" #~ msgstr "Seznam projektov:" diff --git a/src/IDF/locale/zh_CN/idf.po b/src/IDF/locale/zh_CN/idf.po index a10f214..e3de821 100644 --- a/src/IDF/locale/zh_CN/idf.po +++ b/src/IDF/locale/zh_CN/idf.po @@ -7,179 +7,44 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-23 16:05+0100\n" +"POT-Creation-Date: 2011-02-23 23:36+0100\n" "PO-Revision-Date: 2011-02-23 00:05+0000\n" "Last-Translator: Delkia \n" "Language-Team: LANGUAGE \n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"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/Review/Comment.php:69 IDF/Review.php:80 +#: IDF/Upload.php:85 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/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 +msgid "creation date" +msgstr "创建日期" + #: IDF/Commit.php:238 #, php-format msgid "Commit %s, by %s" @@ -190,6 +55,799 @@ 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/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:540 +msgid "git" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:541 +msgid "Subversion" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:542 +msgid "mercurial" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:543 +msgid "monotone" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 +#: 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/index.html.php:6 +#: IDF/gettexttemplates/idf/main-menu.html.php:7 +msgid "Private project" +msgstr "私有项目" + +#: IDF/Form/Admin/ProjectCreate.php:62 +msgid "Shortname" +msgstr "短名称" + +#: IDF/Form/Admin/ProjectCreate.php:64 +msgid "" +"It must be unique for each project and composed only of letters, digits and " +"dash (-) like \"my-project\"." +msgstr "必须唯一且只能包含字母、数字和连接符(-) 如 \"my-project\"" + +#: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 +msgid "Short description" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51 +#: IDF/Project.php:79 +msgid "A one line description of the project." +msgstr "项目简单描述" + +#: IDF/Form/Admin/ProjectCreate.php:77 +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 throught http or https are allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 +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:263 +#: IDF/Form/IssueUpdate.php:232 IDF/Form/MembersConf.php:64 +#: IDF/Form/Password.php:76 IDF/Form/Register.php:114 +#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:125 +#: IDF/Form/TabsConf.php:98 IDF/Form/UpdateUpload.php:126 +#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:180 +#: 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:362 +msgid "This project is not available." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:41 +msgid "Confirmation code" +msgstr "确认码" + +#: IDF/Form/Admin/ProjectDelete.php:46 +msgid "I have made a backup of all the important data of this project." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:55 +msgid "" +"The confirmation code does not match. Please provide a valid confirmation " +"code to delete the project." +msgstr "" + +#: IDF/Form/Admin/ProjectDelete.php:63 +msgid "Sorry, you really need to backup your data before deletion." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 +#: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40 +msgid "First name" +msgstr "名" + +#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 +#: IDF/Form/RegisterConfirmation.php:59 IDF/Form/UserAccount.php:49 +msgid "Last name" +msgstr "姓" + +#: IDF/Form/Admin/UserCreate.php:56 +msgid "Login" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 +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 directly sent 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 IDF/Form/UserAccount.php:166 +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:402 +#, 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 find it, 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: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 +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 him." +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 his 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/Upload.php:86 +#: IDF/Form/UserAccount.php:369 +msgid "For security reason, you cannot upload a file with this extension." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:425 +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:53 IDF/Form/IssueUpdate.php:45 +#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:71 +#: 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 +msgid "Summary" +msgstr "摘要" + +#: IDF/Form/IssueCreate.php:72 IDF/Form/IssueUpdate.php:65 +#: IDF/Form/ReviewCreate.php:83 +msgid "The \"upload_issue_path\" configuration variable was not set." +msgstr "" + +#: IDF/Form/IssueCreate.php:82 IDF/Form/IssueUpdate.php:75 +msgid "Attach a file" +msgstr "添加附件" + +#: IDF/Form/IssueCreate.php:95 IDF/Form/IssueUpdate.php:88 +#: IDF/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:81 +#: 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 +msgid "Status" +msgstr "状态" + +#: IDF/Form/IssueCreate.php:104 IDF/Form/IssueUpdate.php:98 +msgid "Owner" +msgstr "所有者" + +#: IDF/Form/IssueCreate.php:150 IDF/Form/IssueUpdate.php:117 +#: 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:192 +msgid "You cannot add a label with the \"Status\" prefix to an issue." +msgstr "" + +#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 +#: 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:199 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:210 IDF/Form/IssueUpdate.php:147 +msgid "You need to provide a description of the issue." +msgstr "" + +#: IDF/Form/IssueCreate.php:233 IDF/Form/ReviewCreate.php:159 +msgid "You provided an invalid status." +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:80 +msgid "" +"Define an issue template to hint the reporter to provide certain information" +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:89 +msgid "Open issue status values" +msgstr "打开问题状态值" + +#: IDF/Form/IssueTrackingConf.php:97 +msgid "Closed issue status values" +msgstr "关闭问题状态值" + +#: IDF/Form/IssueTrackingConf.php:106 +msgid "Predefined issue labels" +msgstr "预定义问题标签" + +#: IDF/Form/IssueTrackingConf.php:108 +msgid "" +"The first \"Type:\" and \"Priority:\" entries found in this list are " +"automatically chosen as defaults for new issues." +msgstr "" + +#: IDF/Form/IssueTrackingConf.php:116 +msgid "Each issue may have at most one label with each of these classes" +msgstr "每个问题必须包含的标签" + +#: IDF/Form/IssueUpdate.php:55 IDF/Form/ReviewFileComment.php:45 +#: IDF/Form/WikiUpdate.php:82 +msgid "Comment" +msgstr "评论" + +#: IDF/Form/IssueUpdate.php:219 +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/RegisterConfirmation.php:72 +#: 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/Register.php:41 +msgid "Your login" +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 spams 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:99 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need, click on the help link to " +"recover your password." +msgstr "" + +#: IDF/Form/Register.php:150 +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: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:102 +msgid "You need to provide comments on at least one file." +msgstr "" + +#: IDF/Form/ReviewFileComment.php:109 +msgid "You need to provide your general comment about the proposal." +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.orig.php:5 +#: IDF/gettexttemplates/idf/base-full.html.php:5 +#: IDF/gettexttemplates/idf/base.html.orig.php:5 +#: IDF/gettexttemplates/idf/base.html.php:5 +#: IDF/gettexttemplates/idf/downloads/base.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:14 +#: IDF/Views/Project.php:75 +msgid "Downloads" +msgstr "下载列表" + +#: IDF/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.orig.php:9 +#: IDF/gettexttemplates/idf/base-full.html.php:9 +#: IDF/gettexttemplates/idf/base.html.orig.php:9 +#: IDF/gettexttemplates/idf/base.html.php:9 +msgid "Code Review" +msgstr "代码审核" + +#: IDF/Form/TabsConf.php:40 IDF/gettexttemplates/idf/admin/base.html.php:5 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:6 +#: IDF/gettexttemplates/idf/base-full.html.php:6 +#: IDF/gettexttemplates/idf/base.html.orig.php:6 +#: IDF/gettexttemplates/idf/base.html.php:6 +msgid "Documentation" +msgstr "文档" + +#: IDF/Form/TabsConf.php:41 IDF/gettexttemplates/idf/admin/base.html.php:7 +#: IDF/gettexttemplates/idf/base-full.html.orig.php:8 +#: IDF/gettexttemplates/idf/base-full.html.php:8 +#: IDF/gettexttemplates/idf/base.html.orig.php:8 +#: IDF/gettexttemplates/idf/base.html.php:8 +msgid "Source" +msgstr "源代码" + +#: IDF/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.orig.php:7 +#: IDF/gettexttemplates/idf/base-full.html.php:7 +#: IDF/gettexttemplates/idf/base.html.orig.php:7 +#: IDF/gettexttemplates/idf/base.html.php:7 +#: 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:6 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:6 +#: IDF/Views/Download.php:64 IDF/Views/Download.php:292 +msgid "File" +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:209 +msgid "Confirm your new email address." +msgstr "" + +#: IDF/Form/UserAccount.php:212 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" + +#: IDF/Form/UserAccount.php:314 +msgid "" +"Please check the key as it does not appear to be a valid SSH public key." +msgstr "" + +#: IDF/Form/UserAccount.php:334 +msgid "" +"Please check the key as it does not appear to be a valid monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:342 +msgid "Public key looks neither like a SSH nor monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:354 +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,80 +856,477 @@ 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.

    \n" + +#: IDF/gettexttemplates/idf/admin/downloads.html.php:8 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8 +#: IDF/gettexttemplates/idf/admin/members.html.php:13 +#: IDF/gettexttemplates/idf/admin/source.html.php:31 +#: IDF/gettexttemplates/idf/admin/summary.html.php:8 +#: IDF/gettexttemplates/idf/admin/tabs.html.php:15 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:8 +msgid "Save Changes" +msgstr "保存更改" + +#: IDF/gettexttemplates/idf/admin/members.html.php:3 +#: IDF/gettexttemplates/idf/gadmin/projects/update.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" +"

    Specify each person by its login. Each person must have already " +"registered with the given login.

    \n" +"

    Separate the logins with commas and/or new lines.

    \n" + +#: IDF/gettexttemplates/idf/admin/members.html.php:8 +#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 +msgid "" +"\n" +"

    Notes:

    \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" +"

    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.

    " +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" +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/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.orig.php:3 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.orig.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.orig.php:4 +#: IDF/gettexttemplates/idf/base-full.html.php:4 +#: IDF/gettexttemplates/idf/base.html.orig.php:4 +#: IDF/gettexttemplates/idf/base.html.php:4 +msgid "Project Home" +msgstr "项目首页" + +#: IDF/gettexttemplates/idf/base-full.html.orig.php:10 +#: IDF/gettexttemplates/idf/base-full.html.php:10 +#: IDF/gettexttemplates/idf/base.html.orig.php:10 +#: IDF/gettexttemplates/idf/base.html.php:10 +msgid "Project Management" +msgstr "管理" + +#: IDF/gettexttemplates/idf/downloads/base.html.php:4 +#: IDF/gettexttemplates/idf/downloads/index.html.php:4 +#: IDF/Views/Download.php:214 +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:8 +#: 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:25 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: 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/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +#: 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:13 +msgid "Uploaded:" +msgstr "上传时间:" + +#: IDF/gettexttemplates/idf/downloads/delete.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:27 +#: IDF/gettexttemplates/idf/review/view.html.php:26 +#: 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:15 +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:12 +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:16 +#: 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:20 +#: IDF/gettexttemplates/idf/issues/view.html.php:31 +#: 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:30 +#: 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 "Changes" +msgstr "修改" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:6 +msgid "The form contains some errors. Please correct them to update the file." +msgstr "" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:7 +msgid "Update File" +msgstr "更新文件" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:11 +msgid "Remove this file" +msgstr "删除此文件" + +#: IDF/gettexttemplates/idf/downloads/view.html.php:10 +#: 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:12 +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:45 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:45 msgid "Projects" msgstr "项目列表" -#: IDF/Views.php:88 IDF/gettexttemplates/idf/register/index.html.php:6 -msgid "Create Your Account" -msgstr "注册" - -#: IDF/Views.php:124 IDF/Views.php:150 -msgid "Confirm Your Account Creation" -msgstr "" - -#: IDF/Views.php:170 -msgid "Welcome! You can now participate in the life of your project of choice." -msgstr "" - -#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 -msgid "Password Recovery" -msgstr "找回密码" - -#: IDF/Views.php:240 -msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." -msgstr "欢迎回来!接下来,你可以使用浏览器记住你的密码" - -#: IDF/Views.php:282 -msgid "Here to Help You!" -msgstr "希望这些能帮到你" - -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" -msgstr "" - -#: IDF/Scm/Mercurial.php:140 IDF/Scm/Git.php:234 -#, php-format -msgid "Folder %1$s not found in commit %2$s." -msgstr "" - -#: IDF/Scm/Mercurial.php:157 IDF/Scm/Git.php:352 -#, 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:183 -#, php-format -msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." -msgstr "" - #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

    This is simple:

    \n" @@ -377,161 +1432,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 "Oups, 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:12 -#: 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 -msgid "Oups, 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 "Oups, 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 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 "" @@ -553,26 +1485,6 @@ msgid "" "

    Separate the logins with commas and/or new lines.

    \n" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 -#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:8 -#: IDF/gettexttemplates/idf/admin/members.html.php:8 -msgid "" -"\n" -"

    Notes:

    \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" -"

    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/gadmin/projects/create.html.php:14 msgid "" "The form contains some errors. Please correct them to create the project." @@ -582,18 +1494,6 @@ msgstr "" 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 #, php-format msgid "" @@ -626,15 +1526,6 @@ msgstr "标签" 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 "代码审核" @@ -644,12 +1535,6 @@ msgstr "代码审核" 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 "" @@ -673,18 +1558,11 @@ 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 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 msgid "Attachments:" msgstr "附件:" -#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 -#: IDF/gettexttemplates/idf/index.html.php:12 -#: 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 "数据库:" @@ -693,21 +1571,6 @@ msgstr "数据库:" 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" -"

    Specify each person by its login. Each person must have already " -"registered with the given login.

    \n" -"

    Separate the logins with commas and/or new lines.

    \n" - #: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:13 msgid "" "The form contains some errors. Please correct them to update the project." @@ -727,35 +1590,29 @@ msgstr "更新项目" 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/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" +msgstr "用户列表" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 -msgid "Change Project Details" -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: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 "" @@ -810,6 +1667,13 @@ msgstr "" 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" @@ -819,15 +1683,22 @@ msgstr "" 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/usher/base.html.php:3 +msgid "Configured servers" +msgstr "" -#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" -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/control.html.php:3 msgid "current server status:" @@ -929,974 +1800,11 @@ msgstr "" 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 -#, fuzzy -msgid "What is your account information?" -msgstr "你的账户?" - -#: IDF/gettexttemplates/idf/login_form.html.php:4 -msgid "My login is" -msgstr "账号" - -#: IDF/gettexttemplates/idf/login_form.html.php:5 -#, fuzzy -msgid "My password is" -msgstr "密码" - -#: IDF/gettexttemplates/idf/login_form.html.php:6 -msgid "Sign in" -msgstr "登录" - -#: IDF/gettexttemplates/idf/login_form.html.php:7 -msgid "I lost my password!" -msgstr "忘记密码!" - -#: IDF/gettexttemplates/idf/login_form.html.php:8 -#, fuzzy -msgid "Welcome." -msgstr "欢迎" - -#: IDF/gettexttemplates/idf/login_form.html.php:9 -msgid "If you don't have an account yet, you can create one" -msgstr "" - -#: IDF/gettexttemplates/idf/login_form.html.php:10 -#, fuzzy -msgid "here" -msgstr "其它" - -#: IDF/gettexttemplates/idf/login_form.html.php:11 -#, fuzzy -msgid "It takes less than a minute to create your account" -msgstr "登录或创建新用户" - -#: IDF/gettexttemplates/idf/user/public.html.php:3 +#: IDF/gettexttemplates/idf/index.atom.php:3 #, php-format -msgid "You are looking at the public profile of %%member%%." -msgstr "你正在查看 %%member%% 的公开资料" - -#: 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:" +msgid "Personal project feed for %%user%%." 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 -#, 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/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/myaccount.html.php:6 -msgid "Key Management" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:7 -msgid "Extra password" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 -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:9 -msgid "API key" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 -msgid "" -"Your API key will be regenerated automatically if you change your password." -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 -msgid "Update Your Account" -msgstr "更新" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 -msgid "Your Current Public Keys" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 -msgid "Delete this key" -msgstr "" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 -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:16 -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 "扩展密码用于访问外部系统(如svn)和系统API" - -#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 -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 -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/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 again 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 -msgid "" -"Oups, please check the provided login or email address to recover your " -"password." -msgstr "出错了,请检查你提供的email或账号" - -#: 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 "" - -#: 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" -"

    Instructions:

    \n" -"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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/search.html.php:3 -#: IDF/gettexttemplates/idf/wiki/index.html.php:4 -#: IDF/gettexttemplates/idf/wiki/base.html.php:4 IDF/Views/Wiki.php:177 -msgid "New Page" -msgstr "新页面" - -#: IDF/gettexttemplates/idf/wiki/search.html.php:4 -msgid "Pages found:" -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 -msgid "Changes:" -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/wiki-updated-email.txt.php:3 -msgid "The following documentation page has been updated:" -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/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/wiki/wiki-updated-email.txt.php:7 -msgid "Updated by:" -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 -msgid "Created by:" -msgstr "创建于:" - -#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:13 -msgid "New content:" -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 "" - -#: 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 -msgid "Content:" -msgstr "内容:" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:3 -msgid "List Pages" -msgstr "页面列表" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:5 -msgid "Update This Page" -msgstr "更新此页面" - -#: IDF/gettexttemplates/idf/wiki/base.html.php:6 -#: IDF/gettexttemplates/idf/issues/base.html.php:7 -msgid "Search" -msgstr "搜索" - -#: IDF/gettexttemplates/idf/source/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/invalid_revision.html.php:5 -#, 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/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/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/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/review/view.html.php:3 -#, php-format -msgid "%%ndiff%% diff" -msgid_plural "%%ndiff%% diffs" -msgstr[0] "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:4 -msgid "Date:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:5 -#: IDF/gettexttemplates/idf/review/view.html.php:27 -msgid "Author:" -msgstr "作者:" - -#: IDF/gettexttemplates/idf/source/commit.html.php:6 -msgid "Branch:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:8 -#: IDF/gettexttemplates/idf/review/view.html.php:29 -msgid "View corresponding source tree" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:9 -msgid "Parents:" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:10 -#: IDF/gettexttemplates/idf/source/changelog.html.php:6 -msgid "View corresponding commit" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:11 -msgid "Message:" -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:17 -msgid "full" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:15 -msgid "renamed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:16 -msgid "added" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:18 -msgid "modified" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:19 -msgid "properies changed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.php:20 -msgid "removed" -msgstr "" - -#: IDF/gettexttemplates/idf/source/commit.html.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/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/review/view.html.php:35 -msgid "Download the corresponding diff file" -msgstr "" - -#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 -#, php-format -msgid "%%cproject.name%%: Commit %%c.scm_id%%" -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:294 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:296 -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 authentification." -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 "没有合适项目" @@ -1931,379 +1839,89 @@ msgstr "文档" msgid "Code reviews:" msgstr "代码审核" -#: IDF/gettexttemplates/idf/base-full.html.php:3 -#: IDF/gettexttemplates/idf/base.html.php:3 +#: 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:34 +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +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:7 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:9 +msgid "Download this file" +msgstr "下载此文件" + +#: IDF/gettexttemplates/idf/issues/attachment.html.php:7 +#: IDF/gettexttemplates/idf/issues/view.html.php:26 +#: IDF/gettexttemplates/idf/review/view.html.php:25 +#: 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:3 +msgid "Open Issues" +msgstr "开放的问题" + +#: 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 "新问题" + +#: 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/wiki/base.html.php:6 +msgid "Search" +msgstr "搜索" + +#: IDF/gettexttemplates/idf/issues/base.html.php:8 +msgid "Back to the issue" +msgstr "返回问题" + +#: IDF/gettexttemplates/idf/issues/by-label.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 -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" -"
    • Ensure your patch does not contain any passwords or confidential " -"information!
    • \n" -"
    " +"

    Open issues: %%open%%

    \n" +"

    Closed issues: %%closed%%

    \n" msgstr "" +"

    开放的问题: %%open%%

    \n" +"

    已关闭的问题: %%closed%%\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/issues/by-label.html.php:7 +msgid "Label:" +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/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.

    " -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/by-label.html.php:8 +msgid "Completion:" +msgstr "完成率:" #: IDF/gettexttemplates/idf/issues/create.html.php:3 msgid "" @@ -2328,6 +1946,15 @@ msgstr "" msgid "The form contains some errors. Please correct them to submit the issue." msgstr "" +#: 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 +#: IDF/gettexttemplates/idf/wiki/create.html.php:5 +#: IDF/gettexttemplates/idf/wiki/update.html.php:5 +msgid "Preview" +msgstr "预览" + #: IDF/gettexttemplates/idf/issues/create.html.php:12 msgid "Submit Issue" msgstr "提交问题" @@ -2344,35 +1971,42 @@ msgstr "附件" 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/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/view.html.php:17 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:40 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:6 +#: IDF/gettexttemplates/idf/wiki/wiki-updated-email.txt.php:11 +#: IDF/IssueComment.php:151 +msgid "Summary:" +msgstr "摘要:" -#: IDF/gettexttemplates/idf/issues/search.html.php:4 -msgid "Found issues:" -msgstr "找到问题:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:13 +#: IDF/gettexttemplates/idf/issues/view.html.php:18 +#: IDF/gettexttemplates/idf/issues/view.html.php:28 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:4 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:6 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:10 +#: IDF/gettexttemplates/idf/review/view.html.php:41 IDF/IssueComment.php:153 +msgid "Status:" +msgstr "状态" -#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 -msgid "The following issue has been updated:" -msgstr "你关注的问题更新了:" +#: IDF/gettexttemplates/idf/issues/feedfragment.xml.php:5 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:19 +#: IDF/gettexttemplates/idf/issues/view.html.php:29 +#: IDF/gettexttemplates/idf/review/feedfragment.xml.php:5 +#: IDF/IssueComment.php:155 +msgid "Owner:" +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/issues/project-watchlist.html.php:3 #, php-format msgid "" "

    Open issues: %%open%%

    \n" @@ -2380,36 +2014,88 @@ msgid "" "a>

    " msgstr "" -#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 -#, php-format -msgid "" -"

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" -msgstr "" -"

    开放的问题: %%open%%

    \n" -"

    已关闭的问题: %%closed%%\n" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" -msgstr "标签:" - -#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 -msgid "Completion:" -msgstr "完成率:" - #: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3 msgid "" "A new issue has been created and assigned\n" "to you:" msgstr "有一个新问题需要你来处理:" +#: 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 "报告人:" + +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 +msgid "Issue:" +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:4 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 +#, php-format +msgid "By %%who%%, %%c.creation_dtime%%:" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8 +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12 +msgid "URL:" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 +msgid "Comments (last first):" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/my-issues.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/my-issues.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/my-issues.html.php:6 +#: IDF/gettexttemplates/idf/user/dashboard.html.php:7 +msgid "Submitted issues:" +msgstr "发布的问题:" + +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:7 +#: IDF/gettexttemplates/idf/user/dashboard.html.php:6 +msgid "Working issues:" +msgstr "处理中的问题:" + +#: IDF/gettexttemplates/idf/issues/search.html.php:4 +msgid "Found 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." @@ -2471,56 +2157,81 @@ msgstr "提交修改" msgid "Followed by:" msgstr "关注:" -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 +#: IDF/gettexttemplates/idf/login_form.html.php:3 #, php-format msgid "" -"See the %%nb_submit_closed%% closed." -msgid_plural "" -"See the %%nb_submit_closed%% closed." -msgstr[0] "" +"If you don't have an account yet, you can create one here." +msgstr "" -#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 +#: IDF/gettexttemplates/idf/login_form.html.php:4 +#, fuzzy +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 +#, fuzzy +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 +#, fuzzy +msgid "Welcome." +msgstr "欢迎" + +#: IDF/gettexttemplates/idf/login_form.html.php:10 +#, fuzzy +msgid "It takes less than a minute to create your account." +msgstr "登录或创建新用户" + +#: IDF/gettexttemplates/idf/main-menu.html.php:3 #, php-format msgid "" -"See the %%nb_owner_closed%% closed." -msgid_plural "" -"See the %%nb_owner_closed%% closed." -msgstr[0] "" - -#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 -#, php-format -msgid "Attachment to issue %%issue.id%%" +"Welcome, %%user%%." msgstr "" +"欢迎,%%user%%" -#: IDF/gettexttemplates/idf/issues/base.html.php:3 -msgid "Open Issues" -msgstr "开放的问题" +#: IDF/gettexttemplates/idf/main-menu.html.php:4 +msgid "Sign Out" +msgstr "退出" -#: IDF/gettexttemplates/idf/issues/base.html.php:5 -msgid "My Issues" -msgstr "我的问题" +#: IDF/gettexttemplates/idf/main-menu.html.php:5 +msgid "Sign in or create your account" +msgstr "登录或创建新用户" -#: IDF/gettexttemplates/idf/issues/base.html.php:6 -msgid "My watch list" -msgstr "" +#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 +msgid "Forge Management" +msgstr "系统管理" -#: IDF/gettexttemplates/idf/issues/base.html.php:8 -msgid "Back to the issue" -msgstr "返回问题" +#: IDF/gettexttemplates/idf/main-menu.html.php:9 +msgid "Help and accessibility features" +msgstr "帮助和辅助功能" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" -msgstr "最近更新" +#: IDF/gettexttemplates/idf/main-menu.html.php:10 +#: 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 +msgid "Help" +msgstr "帮助" -#: IDF/gettexttemplates/idf/project/timeline.html.php:5 #: IDF/gettexttemplates/idf/project/home.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html.php:5 msgid "Latest Updates" msgstr "项目更新" -#: IDF/gettexttemplates/idf/project/timeline.html.php:6 -msgid "Filter by type" -msgstr "" - #: IDF/gettexttemplates/idf/project/home.html.php:5 msgid "Featured Downloads" msgstr "特色下载" @@ -2546,110 +2257,1083 @@ msgstr "管理员" msgid "Happy Crew" 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?" +#: IDF/gettexttemplates/idf/project/timeline.html.php:3 +msgid "Latest updates" +msgstr "最近更新" + +#: IDF/gettexttemplates/idf/project/timeline.html.php:6 +msgid "Filter by type" msgstr "" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 #, php-format msgid "" -"Instead of deleting the file, you could mark it as " -"deprecated." +"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/downloads/delete.html.php:6 -msgid "Delete File" -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 "Oups, please check the form for errors." +msgstr "" -#: IDF/gettexttemplates/idf/downloads/delete.html.php:8 -#: IDF/gettexttemplates/idf/downloads/view.html.php:13 -msgid "Uploaded:" -msgstr "上传时间:" +#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 +msgid "Email:" +msgstr "" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 +#: 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 "" -"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." +"This is the last step, but just be sure to have the cookies enabled to log in afterwards." msgstr "" -"每个文件名称都必须唯一用且内容不能修改
    因此请确保文件版本号包含在文件名" -"中" -#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 +#: 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 "" -"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." +"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/downloads/submit.html.php:8 -msgid "Submit File" -msgstr "提交文件" +#: IDF/gettexttemplates/idf/register/index.html.php:5 +msgid "Oups, please check the provided login and email address to register." +msgstr "注册失败,请检查一下你提供的账号和Email" -#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3 -msgid "Details" -msgstr "详情" +#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:88 +msgid "Create Your Account" +msgstr "注册" -#: IDF/gettexttemplates/idf/downloads/index.html.php:3 -#, php-format -msgid "See the deprecated files." -msgstr "" - -#: IDF/gettexttemplates/idf/downloads/index.html.php:4 -#: IDF/gettexttemplates/idf/downloads/base.html.php:4 -#: IDF/Views/Download.php:216 -msgid "New Download" -msgstr "上传" - -#: IDF/gettexttemplates/idf/downloads/index.html.php:5 -msgid "Number of files:" -msgstr "文件数目:" - -#: IDF/gettexttemplates/idf/downloads/view.html.php:3 +#: IDF/gettexttemplates/idf/register/index.html.php:8 msgid "" -"Attention! This file is marked as deprecated, download it " -"only if you are sure you need this specific version." +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:5 -msgid "Changes" +#: IDF/gettexttemplates/idf/register/index.html.php:9 +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 "Oups, 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" +"
    • Ensure your patch does not contain any passwords 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 +#: 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: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: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:27 +#: IDF/gettexttemplates/idf/source/commit.html.php:5 +msgid "Author:" +msgstr "作者:" + +#: 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 +msgid "Commit:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:29 +#: IDF/gettexttemplates/idf/source/commit.html.php:8 +msgid "View corresponding source tree" +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:35 +#: IDF/gettexttemplates/idf/source/commit.html.php:23 +msgid "Download the corresponding diff file" +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/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:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/Views/Project.php:152 +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:8 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9 +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:17 +msgid "full" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +msgid "renamed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +msgid "added" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +msgid "modified" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +msgid "properies changed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +msgid "removed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +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: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 "" +"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: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 "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: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 +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 authentification." +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:9 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10 +#: IDF/Views/Download.php:66 IDF/Views/Download.php:294 +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:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13 +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 +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:13 +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 +#, fuzzy +msgid "The following list shows all available branches:" +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." +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/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:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15 +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:11 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16 +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/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/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/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 "Extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +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:9 +msgid "API key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "Update Your Account" +msgstr "更新" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +msgid "Your Current Public Keys" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Delete this key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +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:16 +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 "扩展密码用于访问外部系统(如svn)和系统API" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 +msgid "Show API key and extra password" +msgstr "显示API key和扩展密码" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 +msgid "" +"Oups, please check the provided login or email address to recover your " +"password." +msgstr "出错了,请检查你提供的email或账号" + +#: 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 again this website fully." +msgstr "" + +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 +msgid "Reset Your Password" +msgstr "重置密码" + +#: IDF/gettexttemplates/idf/user/public.html.php:3 +#, php-format +msgid "You are looking at the public profile of %%member%%." +msgstr "你正在查看 %%member%% 的公开资料" + +#: IDF/gettexttemplates/idf/user/public.html.php:5 +msgid "Twitter:" +msgstr "" + +#: IDF/gettexttemplates/idf/user/public.html.php:6 +msgid "Public Email:" +msgstr "" + +#: IDF/gettexttemplates/idf/user/public.html.php:7 +msgid "Website:" +msgstr "" + +#: IDF/gettexttemplates/idf/user/public.html.php:8 +msgid "Last time seen:" +msgstr "最近登录" + +#: IDF/gettexttemplates/idf/user/public.html.php:9 +msgid "Member since:" +msgstr "注册时间" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:3 +msgid "List Pages" +msgstr "页面列表" + +#: IDF/gettexttemplates/idf/wiki/base.html.php:4 +#: IDF/gettexttemplates/idf/wiki/index.html.php:4 +#: IDF/gettexttemplates/idf/wiki/search.html.php:3 IDF/Views/Wiki.php:175 +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" +"

    Instructions:

    \n" +"

    The content of the page can use the Markdown syntax with the Extra extension.

    \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 "所有者" + +#: 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:93 IDF/WikiPage.php:94 +msgid "labels" +msgstr "标签" + +#: IDF/Issue.php:111 IDF/IssueFile.php:102 IDF/Review.php:114 +#: IDF/Upload.php:112 IDF/WikiPage.php:106 +msgid "modification date" +msgstr "修改日期" + +#: IDF/Issue.php:194 IDF/IssueComment.php:143 +#, php-format +msgid "" +"Issue %3$d, %4$s" +msgstr "问题 %3$d, %4$s" + +#: IDF/Issue.php:196 +#, php-format +msgid "Creation of issue %d, by %s" +msgstr "" + +#: IDF/Issue.php:206 +#, php-format +msgid "%s: Issue %d created - %s" +msgstr "%s: Issue %d created - %s" + +#: IDF/Issue.php:272 +#, php-format +msgid "Issue %s - %s (%s)" +msgstr "" + +#: IDF/Issue.php:318 +#, php-format +msgid "Updated Issue %s - %s (%s)" +msgstr "" + +#: IDF/IssueComment.php:51 +msgid "issue" +msgstr "问题" + +#: IDF/IssueComment.php:58 IDF/IssueFile.php:49 IDF/Review/Comment.php:62 +#: IDF/Review/FileComment.php:49 IDF/Review/FileComment.php:69 +msgid "comment" +msgstr "评论" + +#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63 +#: IDF/WikiRevision.php:85 +msgid "changes" msgstr "修改" -#: IDF/gettexttemplates/idf/downloads/view.html.php:6 -msgid "The form contains some errors. Please correct them to update the file." +#: IDF/IssueComment.php:73 +msgid "Serialized array of the changes in the issue." msgstr "" -#: IDF/gettexttemplates/idf/downloads/view.html.php:7 -msgid "Update File" -msgstr "更新文件" +#: IDF/IssueComment.php:171 +#, php-format +msgid "Comment on issue %d, by %s" +msgstr "评论 issue %d, 由 %s" -#: IDF/gettexttemplates/idf/downloads/view.html.php:9 -#: IDF/gettexttemplates/idf/downloads/view.html.php:11 -msgid "Remove this file" -msgstr "删除此文件" - -#: IDF/gettexttemplates/idf/downloads/view.html.php:12 -msgid "Delete this file" -msgstr "删除此文件" - -#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3 -msgid "A new file is available for download:" +#: IDF/IssueComment.php:182 +#, php-format +msgid "%s: Comment on issue %d - %s" 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/IssueFile.php:64 msgid "file name" msgstr "文件名" @@ -2674,1501 +3358,28 @@ msgstr "图片" msgid "Other" msgstr "其它" -#: IDF/Project.php:62 IDF/Tag.php:66 -msgid "name" -msgstr "名称" +#: IDF/Key.php:49 +msgid "user" +msgstr "用户" -#: IDF/Project.php:69 -msgid "short name" -msgstr "短名称" - -#: IDF/Project.php:70 -msgid "" -"Used in the url to access the project, must be short with only letters and " -"numbers." -msgstr "" - -#: IDF/Project.php:78 -msgid "short description" -msgstr "简要说明" - -#: IDF/Project.php:79 IDF/Form/Admin/ProjectCreate.php:70 -#: IDF/Form/Admin/ProjectUpdate.php:51 -msgid "A one line description of the project." -msgstr "项目简单描述" - -#: IDF/Project.php:86 IDF/Review/Patch.php:74 -msgid "description" -msgstr "说明" - -#: IDF/Project.php:87 -msgid "The description can be extended using the markdown syntax." -msgstr "" - -#: IDF/Project.php:93 -msgid "private" -msgstr "私有" - -#: IDF/Project.php:130 -#, php-format -msgid "Project \"%s\" not found." -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/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:196 -#, php-format -msgid "Creation of issue %d, by %s" -msgstr "" - -#: IDF/Issue.php:206 -#, php-format -msgid "%s: Issue %d created - %s" -msgstr "%s: Issue %d created - %s" - -#: IDF/Issue.php:272 -#, php-format -msgid "Issue %s - %s (%s)" -msgstr "" - -#: IDF/Issue.php:318 -#, php-format -msgid "Updated Issue %s - %s (%s)" -msgstr "" - -#: IDF/Views/Wiki.php:41 -#, php-format -msgid "%s Documentation" -msgstr "%s 文档" - -#: IDF/Views/Wiki.php:48 -msgid "This table shows the documentation pages." -msgstr "" - -#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149 -msgid "Page Title" -msgstr "标题" - -#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:109 IDF/Views/Wiki.php:150 -#: IDF/Views/Download.php:65 IDF/Views/Download.php:295 IDF/Views/Issue.php:62 -#: IDF/Views/Issue.php:140 IDF/Views/Issue.php:221 IDF/Views/Issue.php:297 -#: IDF/Views/Issue.php:384 IDF/Views/Issue.php:563 IDF/Views/Issue.php:622 -#: IDF/Views/User.php:83 IDF/Views/Review.php:58 IDF/Form/Upload.php:40 -#: IDF/Form/ReviewCreate.php:45 IDF/Form/IssueUpdate.php:45 -#: IDF/Form/IssueCreate.php:53 IDF/Form/UpdateUpload.php:42 -#: IDF/Form/ReviewFileComment.php:71 -msgid "Summary" -msgstr "摘要" - -#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:110 IDF/Views/Wiki.php:151 -msgid "Updated" -msgstr "" - -#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:155 -msgid "No documentation pages were found." -msgstr "没有文档" - -#: IDF/Views/Wiki.php:92 -#, php-format -msgid "Documentation Search - %s" -msgstr "" - -#: IDF/Views/Wiki.php:103 -msgid "This table shows the pages found." -msgstr "" - -#: IDF/Views/Wiki.php:114 -msgid "No pages were found." -msgstr "" - -#: IDF/Views/Wiki.php:133 -#, php-format -msgid "%1$s Documentation Pages with Label %2$s" -msgstr "" - -#: IDF/Views/Wiki.php:143 -#, php-format -msgid "This table shows the documentation pages with label %s." -msgstr "" - -#: IDF/Views/Wiki.php:188 -#, php-format -msgid "The page %s has been created." -msgstr "" - -#: IDF/Views/Wiki.php:275 -msgid "The old revision has been deleted." -msgstr "" - -#: IDF/Views/Wiki.php:281 -#, php-format -msgid "Delete Old Revision of %s" -msgstr "" - -#: IDF/Views/Wiki.php:314 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 -#, php-format -msgid "Update %s" -msgstr "更新 %s" - -#: IDF/Views/Wiki.php:326 -#, php-format -msgid "The page %s has been updated." -msgstr "" - -#: IDF/Views/Wiki.php:364 -msgid "The documentation page has been deleted." -msgstr "" - -#: IDF/Views/Wiki.php:372 -#, php-format -msgid "Delete Page %s" -msgstr "" - -#: IDF/Views/Source.php:40 -#, php-format -msgid "%s Source Help" -msgstr "%s 源代码帮助" - -#: IDF/Views/Source.php:58 -#, php-format -msgid "%s Invalid Revision" -msgstr "" - -#: IDF/Views/Source.php:77 -#, php-format -msgid "%s Ambiguous Revision" -msgstr "" - -#: IDF/Views/Source.php:102 -#, php-format -msgid "%1$s %2$s Change Log" -msgstr "%1$s %2$s 修改日志" - -#: IDF/Views/Source.php:142 IDF/Views/Source.php:223 IDF/Views/Source.php:355 -#, php-format -msgid "%1$s %2$s Source Tree" -msgstr "%1$s %2$s 源码树" - -#: IDF/Views/Source.php:299 -#, php-format -msgid "%s Commit Details" -msgstr "" - -#: IDF/Views/Source.php:300 -#, php-format -msgid "%s Commit Details - %s" -msgstr "" - -#: IDF/Views/Download.php:45 -#, php-format -msgid "%s Downloads" -msgstr "%s 下载" - -#: IDF/Views/Download.php:51 -msgid "This table shows the files to download." -msgstr "" - -#: IDF/Views/Download.php:67 IDF/Views/Download.php:297 -msgid "Uploaded" -msgstr "上传时间" - -#: IDF/Views/Download.php:71 IDF/Views/Download.php:301 -msgid "No downloads were found." -msgstr "没有下载" - -#: IDF/Views/Download.php:96 -#, php-format -msgid "Download %s" -msgstr "下载 %s" - -#: IDF/Views/Download.php:113 -#, php-format -msgid "The file %2$s has been updated." -msgstr "" - -#: IDF/Views/Download.php:146 -#, php-format -msgid "Delete Download %s" -msgstr "删除下载 %s" - -#: IDF/Views/Download.php:179 -msgid "The file has been deleted." -msgstr "" - -#: IDF/Views/Download.php:225 -#, php-format -msgid "The file has been uploaded." -msgstr "" - -#: IDF/Views/Download.php:279 -#, php-format -msgid "%1$s Downloads with Label %2$s" -msgstr "" - -#: IDF/Views/Download.php:289 -#, php-format -msgid "This table shows the downloads with label %s." -msgstr "" - -#: IDF/Views/Project.php:72 -msgid "All Updates" -msgstr "" - -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" -msgstr "" - -#: IDF/Views/Project.php:76 -msgid "Documents" -msgstr "" - -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" -msgstr "" - -#: IDF/Views/Project.php:142 -msgid "This table shows the project updates." -msgstr "" - -#: IDF/Views/Project.php:153 -msgid "Change" -msgstr "更改" - -#: IDF/Views/Project.php:157 -msgid "No changes were found." -msgstr "没有修改信息" - -#: IDF/Views/Project.php:248 -#, php-format -msgid "%s Project Summary" -msgstr "%s 项目摘要" - -#: IDF/Views/Project.php:256 IDF/Views/Admin.php:101 -msgid "The project has been updated." -msgstr "项目更新成功" - -#: IDF/Views/Project.php:283 -#, php-format -msgid "%s Issue Tracking Configuration" -msgstr "%s 问题跟踪配置" - -#: IDF/Views/Project.php:292 -msgid "The issue tracking configuration has been saved." -msgstr "问题跟踪配置保存成功" - -#: IDF/Views/Project.php:328 -#, php-format -msgid "%s Downloads Configuration" -msgstr "%s 下载配置" - -#: IDF/Views/Project.php:337 -msgid "The downloads configuration has been saved." -msgstr "下载配置保存成功" - -#: IDF/Views/Project.php:371 -#, php-format -msgid "%s Documentation Configuration" -msgstr "%s 文档配置" - -#: IDF/Views/Project.php:380 -msgid "The documentation configuration has been saved." -msgstr "文档配置保存成功" - -#: IDF/Views/Project.php:414 -#, php-format -msgid "%s Project Members" -msgstr "%s 项目成员" - -#: IDF/Views/Project.php:423 -msgid "The project membership has been saved." -msgstr "项目成员保存成功" - -#: IDF/Views/Project.php:446 -#, php-format -msgid "%s Tabs Access Rights" -msgstr "%s 访问权限" - -#: IDF/Views/Project.php:460 -msgid "The project tabs access rights have been saved." -msgstr "项目访问权限保存成功" - -#: IDF/Views/Project.php:506 -#, php-format -msgid "%s Source" -msgstr "%s 源代码配置" - -#: IDF/Views/Project.php:520 -msgid "The project source configuration has been saved." -msgstr "" - -#: IDF/Views/Project.php:540 IDF/Form/Admin/ProjectCreate.php:38 -msgid "git" -msgstr "" - -#: IDF/Views/Project.php:541 IDF/Form/Admin/ProjectCreate.php:39 -msgid "Subversion" -msgstr "" - -#: IDF/Views/Project.php:542 IDF/Form/Admin/ProjectCreate.php:40 -msgid "mercurial" -msgstr "" - -#: IDF/Views/Project.php:543 IDF/Form/Admin/ProjectCreate.php:41 -msgid "monotone" -msgstr "" - -#: IDF/Views/Issue.php:41 -#, php-format -msgid "%s Open Issues" -msgstr "%s 开放的问题" - -#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:288 IDF/Views/User.php:75 -msgid "This table shows the open issues." -msgstr "" - -#: IDF/Views/Issue.php:61 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/User.php:81 IDF/Views/Review.php:57 -msgid "Id" -msgstr "编号" - -#: IDF/Views/Issue.php:63 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/User.php:84 IDF/Views/Review.php:59 -#: IDF/Form/ReviewCreate.php:103 IDF/Form/IssueUpdate.php:88 -#: IDF/Form/IssueCreate.php:95 IDF/Form/ReviewFileComment.php:81 -msgid "Status" -msgstr "状态" - -#: IDF/Views/Issue.php:64 IDF/Views/Issue.php:142 IDF/Views/Issue.php:224 -#: IDF/Views/Issue.php:299 IDF/Views/Issue.php:386 IDF/Views/Issue.php:565 -#: IDF/Views/Issue.php:624 IDF/Views/User.php:85 IDF/Views/Review.php:60 -msgid "Last Updated" -msgstr "最后更新" - -#: IDF/Views/Issue.php:68 IDF/Views/Issue.php:146 IDF/Views/Issue.php:228 -#: IDF/Views/Issue.php:303 IDF/Views/Issue.php:390 IDF/Views/Issue.php:569 -#: IDF/Views/Issue.php:628 -msgid "No issues were found." -msgstr "没有问题" - -#: IDF/Views/Issue.php:113 -#, php-format -msgid "Watch List: Closed Issues for %s" -msgstr "" - -#: IDF/Views/Issue.php:114 -#, php-format -msgid "This table shows the closed issues in your watch list for %s project." -msgstr "" - -#: IDF/Views/Issue.php:119 -#, php-format -msgid "Watch List: Open Issues for %s" -msgstr "" - -#: IDF/Views/Issue.php:120 -#, php-format -msgid "This table shows the open issues in your watch list for %s project." -msgstr "" - -#: IDF/Views/Issue.php:196 -msgid "Watch List: Closed Issues" -msgstr "" - -#: IDF/Views/Issue.php:197 -msgid "This table shows the closed issues in your watch list." -msgstr "" - -#: IDF/Views/Issue.php:202 -msgid "Watch List: Open Issues" -msgstr "" - -#: IDF/Views/Issue.php:203 -msgid "This table shows the open issues in your watch list." -msgstr "" - -#: IDF/Views/Issue.php:222 IDF/Views/User.php:82 -msgid "Project" -msgstr "项目" - -#: IDF/Views/Issue.php:255 -#, php-format -msgid "My Submitted %s Issues" -msgstr "我提交的问题 %s" - -#: IDF/Views/Issue.php:259 -#, php-format -msgid "My Closed Submitted %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:263 -#, php-format -msgid "My Closed Working %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:267 -#, php-format -msgid "My Working %s Issues" -msgstr "" - -#: IDF/Views/Issue.php:322 -msgid "Submit a new issue" -msgstr "提交新问题" - -#: IDF/Views/Issue.php:338 -#, php-format -msgid "Issue %d has been created." -msgstr "" - -#: IDF/Views/Issue.php:367 -#, php-format -msgid "Search Issues - %s" -msgstr "搜索问题 - %s" - -#: IDF/Views/Issue.php:379 -msgid "This table shows the found issues." -msgstr "" - -#: IDF/Views/Issue.php:409 -#, php-format -msgid "Issue %d: %s" -msgstr "问题 %d: %s" - -#: IDF/Views/Issue.php:433 -#, php-format -msgid "Issue %d has been updated." -msgstr "" - -#: IDF/Views/Issue.php:522 -#, php-format -msgid "View %s" -msgstr "查看 %s" - -#: IDF/Views/Issue.php:542 -#, php-format -msgid "%s Closed Issues" -msgstr "" - -#: IDF/Views/Issue.php:552 -msgid "This table shows the closed issues." -msgstr "" - -#: IDF/Views/Issue.php:595 -#, php-format -msgid "%1$s Issues with Label %2$s" -msgstr "" - -#: IDF/Views/Issue.php:598 -#, php-format -msgid "%1$s Closed Issues with Label %2$s" -msgstr "" - -#: IDF/Views/Issue.php:611 -#, php-format -msgid "This table shows the issues with label %s." -msgstr "" - -#: IDF/Views/Issue.php:661 -msgid "The issue has been removed from your watch list." -msgstr "" - -#: IDF/Views/Issue.php:664 -msgid "The issue has been added to your watch list." -msgstr "" - -#: IDF/Views/Issue.php:753 -msgid "On your watch list." -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:132 -msgid "Your Account" -msgstr "账户" - -#: IDF/Views/User.php:155 -msgid "The public key has been deleted." -msgstr "" - -#: IDF/Views/User.php:178 -msgid "Confirm The Email Change" -msgstr "" - -#: IDF/Views/User.php:203 -#, php-format -msgid "Your new email address \"%s\" has been validated. Thank you!" -msgstr "" - -#: IDF/Views/Review.php:41 -#, php-format -msgid "%s Code Reviews" -msgstr "%s 代码审核" - -#: IDF/Views/Review.php:48 -msgid "This table shows the latest reviews." -msgstr "" - -#: IDF/Views/Review.php:64 -msgid "No reviews were found." -msgstr "没有审核" - -#: IDF/Views/Review.php:94 -#, php-format -msgid "The code review %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/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:66 IDF/Views/Admin.php:210 -#: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 -msgid "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:134 -msgid "The project has been created." -msgstr "项目创建成功" - -#: IDF/Views/Admin.php:160 -#, php-format -msgid "Delete %s Project" -msgstr "删除 %s 项目" - -#: 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:211 IDF/Form/Admin/UserUpdate.php:161 -msgid "Staff" -msgstr "工作人员" - -#: IDF/Views/Admin.php:212 -msgid "Admin" -msgstr "管理员" - -#: IDF/Views/Admin.php:213 IDF/Form/Admin/UserUpdate.php:172 -msgid "Active" -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 "是" - -#: IDF/Views/Admin.php:471 -msgid "No" -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:70 IDF/Form/Upload.php:49 -#: IDF/Form/Admin/UserUpdate.php:100 IDF/Form/ReviewCreate.php:54 -#: IDF/Form/UserAccount.php:99 IDF/Form/IssueCreate.php:62 -#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 -msgid "Description" -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:93 IDF/Form/Upload.php:70 -#: IDF/Form/IssueUpdate.php:117 IDF/Form/IssueCreate.php:150 -#: IDF/Form/WikiUpdate.php:104 IDF/Form/UpdateUpload.php:71 -msgid "Labels" -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:151 IDF/Form/Upload.php:120 -#: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 -#: IDF/Form/WikiUpdate.php:162 IDF/Form/UpdateUpload.php:110 -msgid "You provided an invalid label." -msgstr "" - -#: IDF/Form/WikiCreate.php:167 IDF/Form/Upload.php:148 -#: IDF/Form/Admin/UserCreate.php:106 IDF/Form/Admin/ProjectCreate.php:279 -#: IDF/Form/Admin/ProjectDelete.php:78 IDF/Form/Admin/UserUpdate.php:191 -#: IDF/Form/Admin/ProjectUpdate.php:121 IDF/Form/Password.php:76 -#: IDF/Form/ReviewCreate.php:187 IDF/Form/Register.php:114 -#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 -#: IDF/Form/UserAccount.php:178 IDF/Form/IssueCreate.php:263 -#: IDF/Form/MembersConf.php:64 IDF/Form/WikiUpdate.php:178 -#: IDF/Form/UpdateUpload.php:126 IDF/Form/TabsConf.php:98 -#: IDF/Form/UserChangeEmail.php:80 IDF/Form/ReviewFileComment.php:125 -msgid "Cannot save the model from an invalid form." -msgstr "" - -#: IDF/Form/WikiCreate.php:200 -msgid "Initial page creation" -msgstr "" - -#: IDF/Form/Upload.php:86 IDF/Form/Admin/UserUpdate.php:301 -#: IDF/Form/UserAccount.php:367 -msgid "For security reason, you cannot upload a file with this extension." -msgstr "" - -#: IDF/Form/Upload.php:119 IDF/Form/IssueCreate.php:199 -#: IDF/Form/UpdateUpload.php:109 -#, php-format -msgid "You cannot provide more than label from the %s class to an issue." -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 -#: IDF/Form/UserAccount.php:40 IDF/Form/RegisterConfirmation.php:50 -msgid "First name" -msgstr "名" - -#: IDF/Form/Admin/UserCreate.php:46 IDF/Form/Admin/UserUpdate.php:47 -#: IDF/Form/UserAccount.php:49 IDF/Form/RegisterConfirmation.php:59 -msgid "Last name" -msgstr "姓" - -#: IDF/Form/Admin/UserCreate.php:56 -msgid "Login" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 -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 directly sent 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:159 -msgid "Add a public key" -msgstr "" - -#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:164 -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:400 -#, 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/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: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 throught http or https are allowed. For " -"example \"http://somewhere.com/svn/trunk\"." -msgstr "" - -#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 -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:295 -msgid "" -"Click on the Project Management tab to set the description of your project." -msgstr "在项目管理里管理项目描述" - -#: IDF/Form/Admin/ProjectCreate.php:362 -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/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 find it, but easy for the user " -"to remember." -msgstr "密码需要别人很难猜到并且方便用户自己记忆" - -#: IDF/Form/Admin/UserUpdate.php:89 -msgid "Confirm password" -msgstr "确认密码" - -#: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:108 -msgid "Twitter username" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:118 -msgid "Public email address" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:128 -msgid "Website URL" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:138 -msgid "Upload custom avatar" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:145 -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:150 -msgid "Remove custom avatar" -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:154 -msgid "Tick this to delete the custom avatar." -msgstr "" - -#: IDF/Form/Admin/UserUpdate.php:164 -msgid "If you give staff rights to a user, you really need to trust him." -msgstr "如果你给一个用户工作人员权限,你需要绝对信任他。" - -#: IDF/Form/Admin/UserUpdate.php:176 -msgid "" -"If the user is not getting the confirmation email or is abusing the system, " -"you can directly enable or disable his 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:316 IDF/Form/UserAccount.php:423 -msgid "The passwords do not match. Please give them again." -msgstr "" - -#: 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/PasswordReset.php:39 IDF/Form/PasswordInputKey.php:36 -#: IDF/Form/UserChangeEmail.php:36 -msgid "Your verification key" -msgstr "" - -#: IDF/Form/PasswordReset.php:45 IDF/Form/UserAccount.php:77 -#: IDF/Form/RegisterConfirmation.php:69 -msgid "Your password" -msgstr "密码" - -#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80 -#: IDF/Form/RegisterConfirmation.php:72 -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/UserAccount.php:88 -#: IDF/Form/RegisterConfirmation.php:80 -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/PasswordReset.php:89 IDF/Form/PasswordInputKey.php:50 -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/PasswordReset.php:100 IDF/Form/PasswordInputKey.php:61 -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/PasswordReset.php:108 IDF/Form/PasswordInputKey.php:76 -#: IDF/Form/RegisterInputKey.php:72 IDF/Form/RegisterConfirmation.php:137 -msgid "Cannot save an invalid form." -msgstr "" - -#: IDF/Form/ReviewCreate.php:83 IDF/Form/IssueUpdate.php:65 -#: IDF/Form/IssueCreate.php:72 -msgid "The \"upload_issue_path\" configuration variable was not set." -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:159 IDF/Form/IssueCreate.php:233 -msgid "You provided an invalid status." -msgstr "" - -#: IDF/Form/ReviewCreate.php:202 -msgid "Initial patch to be reviewed." -msgstr "" - -#: IDF/Form/Register.php:41 -msgid "Your login" -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 spams 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:99 -#, php-format -msgid "" -"The email \"%s\" is already used. If you need, click on the help link to " -"recover your password." -msgstr "" - -#: IDF/Form/Register.php:150 -msgid "Confirm the creation of your account." -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/IssueUpdate.php:55 IDF/Form/WikiUpdate.php:82 -#: IDF/Form/ReviewFileComment.php:45 -msgid "Comment" -msgstr "评论" - -#: IDF/Form/IssueUpdate.php:75 IDF/Form/IssueCreate.php:82 -msgid "Attach a file" -msgstr "添加附件" - -#: IDF/Form/IssueUpdate.php:98 IDF/Form/IssueCreate.php:104 -msgid "Owner" -msgstr "所有者" - -#: IDF/Form/IssueUpdate.php:147 IDF/Form/IssueCreate.php:210 -msgid "You need to provide a description of the issue." -msgstr "" - -#: IDF/Form/IssueUpdate.php:219 -msgid "No changes were entered." -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/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:207 -msgid "Confirm your new email address." -msgstr "" - -#: IDF/Form/UserAccount.php:210 -#, php-format -msgid "" -"A validation email has been sent to \"%s\" to validate the email address " -"change." -msgstr "" - -#: IDF/Form/UserAccount.php:312 -msgid "" -"Please check the key as it does not appear to be a valid SSH public key." -msgstr "" - -#: IDF/Form/UserAccount.php:332 -msgid "" -"Please check the key as it does not appear to be a valid monotone public key." -msgstr "" - -#: IDF/Form/UserAccount.php:340 -msgid "Public key looks neither like a SSH nor monotone public key." -msgstr "" - -#: IDF/Form/UserAccount.php:352 -msgid "You already have uploaded this key." -msgstr "" - -#: IDF/Form/RegisterInputKey.php:36 IDF/Form/RegisterConfirmation.php:40 -msgid "Your confirmation key" -msgstr "" - -#: IDF/Form/RegisterInputKey.php:50 IDF/Form/RegisterConfirmation.php:99 -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/IssueCreate.php:192 -msgid "You cannot add a label with the \"Status\" prefix to an issue." -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:80 -msgid "" -"Define an issue template to hint the reporter to provide certain information" -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:89 -msgid "Open issue status values" -msgstr "打开问题状态值" - -#: IDF/Form/IssueTrackingConf.php:97 -msgid "Closed issue status values" -msgstr "关闭问题状态值" - -#: IDF/Form/IssueTrackingConf.php:106 -msgid "Predefined issue labels" -msgstr "预定义问题标签" - -#: IDF/Form/IssueTrackingConf.php:108 -msgid "" -"The first \"Type:\" and \"Priority:\" entries found in this list are " -"automatically chosen as defaults for new issues." -msgstr "" - -#: IDF/Form/IssueTrackingConf.php:116 -msgid "Each issue may have at most one label with each of these classes" -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/MembersConf.php:104 -#, php-format -msgid "The following login is invalid: %s." -msgid_plural "The following logins are invalid: %s." -msgstr[0] "" - -#: IDF/Form/WikiUpdate.php:83 -msgid "One line to describe the changes you made." -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/UserChangeEmail.php:63 -msgid "" -"The validation key is not valid. Please copy/paste it from your confirmation " -"email." -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/ReviewFileComment.php:56 -msgid "General comment" -msgstr "" - -#: IDF/Form/ReviewFileComment.php:102 -msgid "You need to provide comments on at least one file." -msgstr "" - -#: IDF/Form/ReviewFileComment.php:109 -msgid "You need to provide your general comment about the proposal." -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/Field/EmailList.php:45 -msgid "Please enter one or more valid email addresses." -msgstr "" - -#: IDF/WikiRevision.php:48 -msgid "page" -msgstr "" - -#: IDF/WikiRevision.php:66 -msgid "A one line description of the changes." -msgstr "" - -#: IDF/WikiRevision.php:72 -msgid "content" -msgstr "" - -#: IDF/WikiRevision.php:167 IDF/WikiPage.php:196 -#, php-format -msgid "%2$s, %3$s" -msgstr "" - -#: 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 "" - -#: IDF/Review/Patch.php:52 -msgid "review" -msgstr "" - -#: IDF/Review/Patch.php:67 -msgid "commit" -msgstr "" - -#: IDF/Review/Patch.php:80 IDF/Review/Comment.php:55 -msgid "patch" -msgstr "补丁" - -#: IDF/Review/Patch.php:151 IDF/Review/Comment.php:139 -#, php-format -msgid "" -"Review %3$d, %4$s" -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/Review/Comment.php:83 -msgid "vote" -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" +#: IDF/Key.php:55 +msgid "public key" msgstr "" -#: IDF/Review/Comment.php:216 -#, php-format -msgid "Updated Code Review %s - %s (%s)" +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." msgstr "" -#: IDF/Plugin/SyncSvn.php:81 IDF/Plugin/SyncMercurial.php:78 +#: 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:86 IDF/Plugin/SyncMonotone.php:457 #: IDF/Plugin/SyncMonotone.php:783 msgid "\"mtn_repositories\" must be defined in your configuration file." @@ -4198,6 +3409,11 @@ msgstr "" msgid "The project path %s could not be created." msgstr "" +#: IDF/Plugin/SyncMonotone.php:187 IDF/Scm/Monotone/Stdio.php:87 +#, php-format +msgid "The key directory %s could not be created." +msgstr "" + #: IDF/Plugin/SyncMonotone.php:205 #, php-format msgid "Could not parse key information: %s" @@ -4283,37 +3499,131 @@ msgstr "" msgid "The command \"%s\" could not be executed." msgstr "" -#: IDF/Plugin/SyncMercurial.php:142 -#, php-format -msgid "%s does not exist or is not writable." -msgstr "" +#: IDF/Project.php:62 IDF/Tag.php:66 +msgid "name" +msgstr "名称" -#: IDF/Timeline/Paginator.php:49 -msgid "Today" -msgstr "今天" +#: IDF/Project.php:69 +msgid "short name" +msgstr "短名称" -#: IDF/WikiPage.php:62 -msgid "title" -msgstr "标题" - -#: IDF/WikiPage.php:63 +#: IDF/Project.php:70 msgid "" -"The title of the page must only contain letters, digits or the dash " -"character. For example: My-new-Wiki-Page." +"Used in the url to access the project, must be short with only letters and " +"numbers." msgstr "" -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." +#: IDF/Project.php:78 +msgid "short description" +msgstr "简要说明" + +#: IDF/Project.php:86 IDF/Review/Patch.php:74 +msgid "description" +msgstr "说明" + +#: IDF/Project.php:87 +msgid "The description can be extended using the markdown syntax." msgstr "" -#: IDF/WikiPage.php:198 +#: IDF/Project.php:93 +msgid "private" +msgstr "私有" + +#: IDF/Project.php:130 #, php-format -msgid "Creation of page %s, by %s" +msgid "Project \"%s\" not found." msgstr "" -#: IDF/WikiPage.php:208 +#: 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 "%s: Documentation page %s added - %s" +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:183 +#, php-format +msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." +msgstr "" + +#: IDF/Scm/Git.php:234 IDF/Scm/Mercurial.php:140 +#, php-format +msgid "Folder %1$s not found in commit %2$s." +msgstr "" + +#: IDF/Scm/Git.php:352 IDF/Scm/Mercurial.php:157 +#, 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:98 +#, 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 @@ -4332,16 +3642,8 @@ msgstr "" msgid "Lower case version of the name for fast searching." msgstr "" -#: IDF/Key.php:49 -msgid "user" -msgstr "用户" - -#: IDF/Key.php:55 -msgid "public key" -msgstr "" - -#: IDF/Key.php:87 -msgid "Invalid or unknown key data detected." +#: IDF/Template/Markdown.php:74 +msgid "Create this documentation page" msgstr "" #: IDF/Template/ShowUser.php:51 @@ -4352,10 +3654,731 @@ msgstr "匿名" msgid "Me" msgstr "" -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" +#: IDF/Timeline/Paginator.php:49 +msgid "Today" +msgstr "今天" + +#: IDF/Upload.php:70 +msgid "file" +msgstr "文件" + +#: IDF/Upload.php:71 +msgid "The path is relative to the upload path." msgstr "" +#: IDF/Upload.php:78 +msgid "file size in bytes" +msgstr "" + +#: IDF/Upload.php:100 +msgid "number of downloads" +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/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:312 +#, php-format +msgid "Update %s" +msgstr "更新 %s" + +#: IDF/Views/Admin.php:101 IDF/Views/Project.php:256 +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 "删除 %s 项目" + +#: 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 "是" + +#: IDF/Views/Admin.php:471 +msgid "No" +msgstr "不" + +#: IDF/Views/Download.php:45 +#, php-format +msgid "%s Downloads" +msgstr "%s 下载" + +#: IDF/Views/Download.php:51 +msgid "This table shows the files to download." +msgstr "" + +#: IDF/Views/Download.php:67 IDF/Views/Download.php:295 +msgid "Uploaded" +msgstr "上传时间" + +#: IDF/Views/Download.php:71 IDF/Views/Download.php:299 +msgid "No downloads were found." +msgstr "没有下载" + +#: IDF/Views/Download.php:94 +#, php-format +msgid "Download %s" +msgstr "下载 %s" + +#: IDF/Views/Download.php:111 +#, php-format +msgid "The file %2$s has been updated." +msgstr "" + +#: IDF/Views/Download.php:144 +#, php-format +msgid "Delete Download %s" +msgstr "删除下载 %s" + +#: IDF/Views/Download.php:177 +msgid "The file has been deleted." +msgstr "" + +#: IDF/Views/Download.php:223 +#, php-format +msgid "The file has been uploaded." +msgstr "" + +#: IDF/Views/Download.php:277 +#, php-format +msgid "%1$s Downloads with Label %2$s" +msgstr "" + +#: IDF/Views/Download.php:287 +#, php-format +msgid "This table shows the downloads with label %s." +msgstr "" + +#: IDF/Views/Issue.php:41 +#, php-format +msgid "%s Open Issues" +msgstr "%s 开放的问题" + +#: IDF/Views/Issue.php:51 IDF/Views/Issue.php:287 IDF/Views/User.php:75 +msgid "This table shows the open issues." +msgstr "" + +#: 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 +msgid "Id" +msgstr "编号" + +#: 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 +msgid "Last Updated" +msgstr "最后更新" + +#: 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 +msgid "No issues were found." +msgstr "没有问题" + +#: IDF/Views/Issue.php:112 +#, php-format +msgid "Watch List: Closed Issues for %s" +msgstr "" + +#: IDF/Views/Issue.php:113 +#, php-format +msgid "This table shows the closed issues in your watch list for %s project." +msgstr "" + +#: IDF/Views/Issue.php:118 +#, php-format +msgid "Watch List: Open Issues for %s" +msgstr "" + +#: IDF/Views/Issue.php:119 +#, php-format +msgid "This table shows the open issues in your watch list for %s project." +msgstr "" + +#: IDF/Views/Issue.php:195 +msgid "Watch List: Closed Issues" +msgstr "" + +#: IDF/Views/Issue.php:196 +msgid "This table shows the closed issues in your watch list." +msgstr "" + +#: IDF/Views/Issue.php:201 +msgid "Watch List: Open Issues" +msgstr "" + +#: IDF/Views/Issue.php:202 +msgid "This table shows the open issues in your watch list." +msgstr "" + +#: IDF/Views/Issue.php:221 IDF/Views/User.php:82 +msgid "Project" +msgstr "项目" + +#: IDF/Views/Issue.php:254 +#, php-format +msgid "My Submitted %s Issues" +msgstr "我提交的问题 %s" + +#: IDF/Views/Issue.php:258 +#, php-format +msgid "My Closed Submitted %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:262 +#, php-format +msgid "My Closed Working %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:266 +#, php-format +msgid "My Working %s Issues" +msgstr "" + +#: IDF/Views/Issue.php:321 +msgid "Submit a new issue" +msgstr "提交新问题" + +#: IDF/Views/Issue.php:337 +#, php-format +msgid "Issue %d has been created." +msgstr "" + +#: IDF/Views/Issue.php:366 +#, php-format +msgid "Search Issues - %s" +msgstr "搜索问题 - %s" + +#: IDF/Views/Issue.php:378 +msgid "This table shows the found issues." +msgstr "" + +#: IDF/Views/Issue.php:408 +#, php-format +msgid "Issue %d: %s" +msgstr "问题 %d: %s" + +#: IDF/Views/Issue.php:432 +#, php-format +msgid "Issue %d has been updated." +msgstr "" + +#: IDF/Views/Issue.php:521 +#, php-format +msgid "View %s" +msgstr "查看 %s" + +#: IDF/Views/Issue.php:541 +#, php-format +msgid "%s Closed Issues" +msgstr "" + +#: IDF/Views/Issue.php:551 +msgid "This table shows the closed issues." +msgstr "" + +#: IDF/Views/Issue.php:594 +#, php-format +msgid "%1$s Issues with Label %2$s" +msgstr "" + +#: IDF/Views/Issue.php:597 +#, php-format +msgid "%1$s Closed Issues with Label %2$s" +msgstr "" + +#: IDF/Views/Issue.php:610 +#, php-format +msgid "This table shows the issues with label %s." +msgstr "" + +#: IDF/Views/Issue.php:660 +msgid "The issue has been removed from your watch list." +msgstr "" + +#: IDF/Views/Issue.php:663 +msgid "The issue has been added to your watch list." +msgstr "" + +#: IDF/Views/Issue.php:752 +msgid "On your watch list." +msgstr "" + +#: IDF/Views/Project.php:72 +msgid "All Updates" +msgstr "" + +#: IDF/Views/Project.php:74 +msgid "Issues and Comments" +msgstr "" + +#: IDF/Views/Project.php:76 +msgid "Documents" +msgstr "" + +#: IDF/Views/Project.php:77 +msgid "Reviews and Patches" +msgstr "" + +#: IDF/Views/Project.php:142 +msgid "This table shows the project updates." +msgstr "" + +#: IDF/Views/Project.php:153 +msgid "Change" +msgstr "更改" + +#: IDF/Views/Project.php:157 +msgid "No changes were found." +msgstr "没有修改信息" + +#: IDF/Views/Project.php:248 +#, php-format +msgid "%s Project Summary" +msgstr "%s 项目摘要" + +#: IDF/Views/Project.php:283 +#, php-format +msgid "%s Issue Tracking Configuration" +msgstr "%s 问题跟踪配置" + +#: IDF/Views/Project.php:292 +msgid "The issue tracking configuration has been saved." +msgstr "问题跟踪配置保存成功" + +#: IDF/Views/Project.php:328 +#, php-format +msgid "%s Downloads Configuration" +msgstr "%s 下载配置" + +#: IDF/Views/Project.php:337 +msgid "The downloads configuration has been saved." +msgstr "下载配置保存成功" + +#: IDF/Views/Project.php:371 +#, php-format +msgid "%s Documentation Configuration" +msgstr "%s 文档配置" + +#: IDF/Views/Project.php:380 +msgid "The documentation configuration has been saved." +msgstr "文档配置保存成功" + +#: IDF/Views/Project.php:414 +#, php-format +msgid "%s Project Members" +msgstr "%s 项目成员" + +#: IDF/Views/Project.php:423 +msgid "The project membership has been saved." +msgstr "项目成员保存成功" + +#: IDF/Views/Project.php:446 +#, php-format +msgid "%s Tabs Access Rights" +msgstr "%s 访问权限" + +#: IDF/Views/Project.php:460 +msgid "The project tabs access rights have been saved." +msgstr "项目访问权限保存成功" + +#: IDF/Views/Project.php:506 +#, php-format +msgid "%s Source" +msgstr "%s 源代码配置" + +#: IDF/Views/Project.php:520 +msgid "The project source configuration has been saved." +msgstr "" + +#: IDF/Views/Review.php:41 +#, php-format +msgid "%s Code Reviews" +msgstr "%s 代码审核" + +#: IDF/Views/Review.php:48 +msgid "This table shows the latest reviews." +msgstr "" + +#: IDF/Views/Review.php:64 +msgid "No reviews were found." +msgstr "没有审核" + +#: IDF/Views/Review.php:94 +#, php-format +msgid "The code review %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 "%s 源代码帮助" + +#: IDF/Views/Source.php:58 +#, php-format +msgid "%s Invalid Revision" +msgstr "" + +#: IDF/Views/Source.php:81 +#, php-format +msgid "%s Ambiguous Revision" +msgstr "" + +#: IDF/Views/Source.php:106 +#, php-format +msgid "%1$s %2$s Change Log" +msgstr "%1$s %2$s 修改日志" + +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#, php-format +msgid "%1$s %2$s Source Tree" +msgstr "%1$s %2$s 源码树" + +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" +msgstr "" + +#: IDF/Views/Source.php:304 +#, 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:132 +msgid "Your Account" +msgstr "账户" + +#: IDF/Views/User.php:155 +msgid "The public key has been deleted." +msgstr "" + +#: IDF/Views/User.php:178 +msgid "Confirm The Email Change" +msgstr "" + +#: IDF/Views/User.php:203 +#, php-format +msgid "Your new email address \"%s\" has been validated. Thank you!" +msgstr "" + +#: IDF/Views/Wiki.php:41 +#, php-format +msgid "%s Documentation" +msgstr "%s 文档" + +#: IDF/Views/Wiki.php:48 +msgid "This table shows the documentation pages." +msgstr "" + +#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php: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:186 +#, php-format +msgid "The page %s has been created." +msgstr "" + +#: IDF/Views/Wiki.php:273 +msgid "The old revision has been deleted." +msgstr "" + +#: IDF/Views/Wiki.php:279 +#, php-format +msgid "Delete Old Revision of %s" +msgstr "" + +#: IDF/Views/Wiki.php:324 +#, php-format +msgid "The page %s has been updated." +msgstr "" + +#: IDF/Views/Wiki.php:362 +msgid "The documentation page has been deleted." +msgstr "" + +#: IDF/Views/Wiki.php:370 +#, php-format +msgid "Delete Page %s" +msgstr "" + +#: IDF/Views.php:124 IDF/Views.php:150 +msgid "Confirm Your Account Creation" +msgstr "" + +#: IDF/Views.php:170 +msgid "Welcome! You can now participate in the life of your project of choice." +msgstr "" + +#: IDF/Views.php:196 IDF/Views.php:220 IDF/Views.php:261 +msgid "Password Recovery" +msgstr "找回密码" + +#: IDF/Views.php:240 +msgid "" +"Welcome back! Next time, you can use your broswer options to remember the " +"password." +msgstr "欢迎回来!接下来,你可以使用浏览器记住你的密码" + +#: IDF/Views.php:282 +msgid "Here to Help You!" +msgstr "希望这些能帮到你" + +#: IDF/Views.php:298 +msgid "InDefero API (Application Programming Interface)" +msgstr "" + +#: IDF/WikiPage.php:62 +msgid "title" +msgstr "标题" + +#: 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 "" + +#: IDF/WikiRevision.php:66 +msgid "A one line description of the changes." +msgstr "" + +#: IDF/WikiRevision.php:72 +msgid "content" +msgstr "" + +#: 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 "" + +#, fuzzy +#~ msgid "here" +#~ msgstr "其它" + #~ msgid "Managed Projects:" #~ msgstr "可用项目" From 4ffd11caf5123f424683536bf174ab1b7a1bcb2e Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Wed, 23 Feb 2011 23:59:28 +0100 Subject: [PATCH 08/11] Add William and me to AUTHORS --- AUTHORS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AUTHORS b/AUTHORS index 4754f13..2c23e2e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -25,6 +25,8 @@ Much appreciated contributors: Raphaël Emourgeon Jakub Viták Vladimir Solomatin + William Martin + Thomas Keller And all the nice users who spent time reporting issues and promoting the project. The project could not live without them. From 9c80de19d71dd7a74be444e368a0919eb7319554 Mon Sep 17 00:00:00 2001 From: William MARTIN Date: Thu, 24 Feb 2011 08:58:43 +0100 Subject: [PATCH 09/11] Fix url in the tag cloud --- src/IDF/templates/idf/downloads/index.html | 1 + src/IDF/templates/idf/issues/index.html | 1 + src/IDF/templates/idf/tags-cloud.html | 2 +- src/IDF/templates/idf/wiki/index.html | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/IDF/templates/idf/downloads/index.html b/src/IDF/templates/idf/downloads/index.html index f5b6c4b..9a25555 100644 --- a/src/IDF/templates/idf/downloads/index.html +++ b/src/IDF/templates/idf/downloads/index.html @@ -9,6 +9,7 @@ {/block} {block context}

    {trans 'Number of files:'} {$downloads.nb_items}

    +{assign $cloud_url = 'IDF_Views_Download::listLabel'} {assign $cloud = 'downloads'} {include 'idf/tags-cloud.html'} {if $deprecated > 0} diff --git a/src/IDF/templates/idf/issues/index.html b/src/IDF/templates/idf/issues/index.html index ac1e1fb..e3b2d2a 100644 --- a/src/IDF/templates/idf/issues/index.html +++ b/src/IDF/templates/idf/issues/index.html @@ -12,6 +12,7 @@ {aurl 'closed_url', 'IDF_Views_Issue::listStatus', array($project.shortname, 'closed')} {blocktrans}

    Open issues: {$open}

    Closed issues: {$closed}

    {/blocktrans} +{assign $cloud_url = 'IDF_Views_Issue::listLabel'} {assign $cloud = 'issues'} {include 'idf/tags-cloud.html'} {/block} diff --git a/src/IDF/templates/idf/tags-cloud.html b/src/IDF/templates/idf/tags-cloud.html index cdf375e..353b9c5 100644 --- a/src/IDF/templates/idf/tags-cloud.html +++ b/src/IDF/templates/idf/tags-cloud.html @@ -1,6 +1,6 @@ {assign $class = ''}{assign $i = 0}
    {foreach $project.getTagCloud($cloud) as $label} -{aurl 'url', 'IDF_Views_Issue::listLabel', array($project.shortname, $label.id, 'open')} +{aurl 'url', $cloud_url, array($project.shortname, $label.id, 'open')} {if $class != $label.class}
    {$label.class}
    {assign $i = 0}{/if}
    {$label.name},
    {assign $class = $label.class} diff --git a/src/IDF/templates/idf/wiki/index.html b/src/IDF/templates/idf/wiki/index.html index af6cdec..945dd87 100644 --- a/src/IDF/templates/idf/wiki/index.html +++ b/src/IDF/templates/idf/wiki/index.html @@ -9,6 +9,7 @@ {/block} {block context}

    {trans 'Number of pages:'} {$pages.nb_items}

    +{assign $cloud_url = 'IDF_Views_Wiki::listLabel'} {assign $cloud = 'wiki'} {include 'idf/tags-cloud.html'} {if $deprecated > 0} From 52f8261d8cdbea1fecbd2ce9f54632db63d506e4 Mon Sep 17 00:00:00 2001 From: William MARTIN Date: Thu, 24 Feb 2011 09:10:44 +0100 Subject: [PATCH 10/11] Finalize French translation --- src/IDF/locale/fr/idf.po | 493 +++++++++++++++++---------------------- 1 file changed, 216 insertions(+), 277 deletions(-) diff --git a/src/IDF/locale/fr/idf.po b/src/IDF/locale/fr/idf.po index 56d3128..25c6598 100644 --- a/src/IDF/locale/fr/idf.po +++ b/src/IDF/locale/fr/idf.po @@ -2,19 +2,19 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. -# +# msgid "" msgstr "" "Project-Id-Version: Indefero\n" -"Report-Msgid-Bugs-To: \n" +"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n" "POT-Creation-Date: 2011-02-23 23:41+0100\n" -"PO-Revision-Date: 2011-02-23 22:06+0000\n" +"PO-Revision-Date: 2011-02-24 08:07+0000\n" "Last-Translator: Delkia \n" "Language-Team: French <>\n" -"Language: 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 @@ -174,9 +174,9 @@ 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." @@ -221,8 +221,8 @@ 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 msgid "This project is not available." @@ -268,8 +268,8 @@ msgstr "Identifiant" #: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 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." @@ -331,8 +331,8 @@ msgstr "Laissez vide si vous ne voulez pas changer le mot de passe." #: IDF/Form/Admin/UserUpdate.php:81 msgid "" -"The password must be hard for other people to find it, but easy for the user " -"to remember." +"The password must be hard for other people to find it, but easy for the user" +" to remember." msgstr "" "Le mot de passe doit être difficile à trouver pour d'autres personnes, mais " "simple à retenir pour l'utilisateur." @@ -369,8 +369,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" @@ -387,8 +387,8 @@ msgstr "Staff" #: IDF/Form/Admin/UserUpdate.php:164 msgid "If you give staff rights to a user, you really need to trust him." msgstr "" -"Si vous donnez les droits de staff à un utilisateur, vous devez vraiment lui " -"faire confiance." +"Si vous donnez les droits de staff à un utilisateur, vous devez vraiment lui" +" faire confiance." #: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:213 msgid "Active" @@ -443,8 +443,7 @@ msgstr "Résumé" #: IDF/Form/IssueCreate.php:72 IDF/Form/IssueUpdate.php:65 #: 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 msgid "Attach a file" @@ -471,8 +470,8 @@ msgstr "Étiquettes" #: IDF/Form/IssueCreate.php:192 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/UpdateUpload.php:110 IDF/Form/Upload.php:120 @@ -519,8 +518,8 @@ 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 msgid "Each issue may have at most one label with each of these classes" @@ -551,8 +550,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 "" @@ -573,11 +572,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 @@ -646,10 +645,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:99 #, php-format @@ -698,8 +698,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." @@ -842,7 +842,8 @@ msgstr "" #: IDF/Form/UserAccount.php:334 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." @@ -859,8 +860,8 @@ 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 " @@ -872,7 +873,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" @@ -916,7 +918,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." @@ -989,14 +992,12 @@ 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" "

    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.

    \n" #: IDF/gettexttemplates/idf/admin/downloads.html.php:8 #: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8 @@ -1013,14 +1014,12 @@ msgstr "Enregistrer les changements" msgid "" "\n" "

    Instructions:

    \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" "

    Instructions :

    \n" -"

    Spécifiez chaque personne par son identifiant. Chaque personne doit avoir " -"préalablement créé son compte.

    \n" +"

    Spécifiez chaque personne par son identifiant. Chaque personne doit avoir préalablement créé son compte.

    \n" "

    Séparez les identifiants par des virgules ou des sauts de ligne.

    \n" #: IDF/gettexttemplates/idf/admin/members.html.php:8 @@ -1029,22 +1028,17 @@ msgstr "" msgid "" "\n" "

    Notes:

    \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" +"

    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" +"

    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 @@ -1053,8 +1047,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" @@ -1073,13 +1066,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" @@ -1087,16 +1078,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:\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.

      " @@ -1105,8 +1094,8 @@ 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:" @@ -1129,20 +1118,18 @@ msgstr "Clef d'authentification post-commit : " 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" +"

      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/tabs.html.php:3 msgid "" @@ -1153,12 +1140,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 "" @@ -1174,11 +1158,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 " @@ -1189,14 +1173,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 @@ -1213,8 +1197,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" @@ -1264,12 +1248,12 @@ 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. " +"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 ?" @@ -1431,8 +1415,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 @@ -1514,27 +1498,27 @@ msgstr "Projets" msgid "" "

      This is simple:

      \n" "
        \n" -"
      1. Write in the comments \"This is a duplicate of issue 123\", change 123 " -"with the corresponding issue number.
      2. \n" +"
      3. Write in the comments \"This is a duplicate of issue 123\", change 123 with the corresponding issue number.
      4. \n" "
      5. Change the status of the current issue to Duplicate.
      6. \n" "
      7. Submit the changes.
      8. \n" "
      " msgstr "" "

      C'est simple :

      \n" "
        \n" -"
      1. Écrivez dans le commentaire \"Ceci est un doublon du ticket 123\", avec " -"123 le numéro correspondant au ticket en question.
      2. \n" +"
      3. Écrivez dans le commentaire \"Ceci est un doublon du ticket 123\", avec 123 le numéro correspondant au ticket en question.
      4. \n" "
      5. Changez le statut du ticket vers Duplicate.
      6. \n" "
      7. Soumettez les changements.
      8. \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, 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 "" @@ -1543,9 +1527,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 @@ -1671,8 +1655,8 @@ msgstr "" #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:4 msgid "" -"Once you have defined the repository type, you cannot change it." +"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." @@ -1680,14 +1664,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 "" @@ -1719,9 +1700,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 "" @@ -1793,8 +1772,8 @@ msgstr "Total forge:" 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." @@ -1904,8 +1883,8 @@ 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 @@ -2144,13 +2123,10 @@ msgstr "Retour au ticket" #, php-format msgid "" "

      Open issues: %%open%%

      \n" -"

      Closed issues: %%closed%%

      \n" +"

      Closed issues: %%closed%%

      \n" msgstr "" -"

      Tickets ouverts : %%open%%\n" -"

      Tickets fermés : %%closed%%

      \n" +"

      Tickets ouverts : %%open%%

      \n" +"

      Tickets fermés : %%closed%%

      \n" #: IDF/gettexttemplates/idf/issues/by-label.html.php:7 msgid "Label:" @@ -2162,29 +2138,25 @@ msgstr "Accomplissement :" #: IDF/gettexttemplates/idf/issues/create.html.php:3 msgid "" -"

      When you submit the issue do not forget to provide the following " -"information:

      \n" +"

      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!
      • \n" +"
      • Do not provide any password or confidential information!
      • \n" "
      " msgstr "" -"

      Quand vous soumettez un ticket, n'oubliez de fournir les informations " -"suivantes :

      \n" +"

      Quand vous soumettez un ticket, n'oubliez de fournir les informations suivantes :

      \n" "
        \n" "
      • Les étapes pour reproduire le problème.
      • \n" "
      • La version de votre logiciel et de votre système d'exploitation.
      • \n" -"
      • Toute information qui pourrait aider les développeurs à corriger votre " -"problème.
      • \n" -"
      • Ne fournissez aucun mot de passe ou information confidentielle !" -"
      • \n" +"
      • Toute information qui pourrait aider les développeurs à corriger votre problème.
      • \n" +"
      • Ne fournissez aucun mot de passe ou information confidentielle !
      • \n" "
      " #: IDF/gettexttemplates/idf/issues/create.html.php:10 -msgid "The form contains some errors. Please correct them to submit the issue." +msgid "" +"The form contains some errors. Please correct them to submit the issue." msgstr "" "Le formulaire contient des erreurs. Corrigez s'il vous plaît ces erreurs " "pour soumettre le ticket." @@ -2253,13 +2225,10 @@ msgstr "Propriétaire :" #, php-format msgid "" "

      Open issues: %%open%%

      \n" -"

      Closed issues: %%closed%%

      " +"

      Closed issues: %%closed%%

      " msgstr "" -"

      Tickets ouverts : %%open%%\n" -"

      Tickets fermés : %%closed%%

      " +"

      Tickets ouverts : %%open%%

      \n" +"

      Tickets fermés : %%closed%%

      " #: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3 msgid "" @@ -2301,8 +2270,7 @@ msgstr "Commentaires (le dernier en premier) :" #: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 #, php-format -msgid "" -"See the %%nb_submit_closed%% closed." +msgid "See the %%nb_submit_closed%% closed." msgid_plural "" "See the %%nb_submit_closed%% closed." msgstr[0] "Voir le ticket fermé." @@ -2311,13 +2279,11 @@ msgstr[1] "" #: IDF/gettexttemplates/idf/issues/my-issues.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/user/dashboard.html.php:7 @@ -2344,8 +2310,8 @@ msgstr "Soumis par %%submitter%%, %%c.creation_dtime%%" 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.php:5 #, php-format @@ -2358,8 +2324,8 @@ msgid "" "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.php:8 #, php-format @@ -2401,10 +2367,11 @@ msgid "view" msgstr "vue" #: IDF/gettexttemplates/idf/issues/view.html.php:21 -msgid "The form contains some errors. Please correct them to change the issue." +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." +"Le formulaire contient des erreurs. Merci de les corriger pour mettre à jour" +" ce ticket." #: IDF/gettexttemplates/idf/issues/view.html.php:23 msgid "Submit Changes" @@ -2417,9 +2384,11 @@ 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." #: IDF/gettexttemplates/idf/login_form.html.php:4 msgid "What is your account information?" @@ -2446,16 +2415,13 @@ msgid "Welcome." msgstr "Bienvenue." #: IDF/gettexttemplates/idf/login_form.html.php:10 -#, fuzzy msgid "It takes less than a minute to create your account." msgstr "La création d'un compte prend moins d'une minute." #: IDF/gettexttemplates/idf/main-menu.html.php:3 #, php-format -msgid "" -"Welcome, %%user%%." -msgstr "" -"Bienvenue, %%user%%." +msgid "Welcome, %%user%%." +msgstr "Bienvenue, %%user%%." #: IDF/gettexttemplates/idf/main-menu.html.php:4 msgid "Sign Out" @@ -2592,8 +2558,8 @@ 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 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." @@ -2610,14 +2576,14 @@ msgstr "" #, 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:5 msgid "Oups, please check the provided login and email address to register." @@ -2657,8 +2623,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 @@ -2684,34 +2650,30 @@ 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.\n" -"
      • Ensure your patch does not contain any passwords 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" +"
      • Ensure your patch does not contain any passwords or confidential information!
      • \n" "
      " msgstr "" "

      Pour démarrer une revue de code vous devez fournir :

      \n" "
        \n" -"
      • La révision ou le commit de référence qui a servi de base à votre " -"travail.
      • \n" +"
      • 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" +"
      • 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." @@ -2789,20 +2751,16 @@ 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 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" #: 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 @@ -3099,21 +3057,23 @@ 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 authentification." +"more about SSH " +"key authentification." msgstr "" "Vous devez probablement fournir votre clef SSH. La " -"synchronisation de votre clef SSH peut prendre quelques minutes. Vous pouvez " -"apprendre plus sur l'authentification avec une clef SSH publique." +"synchronisation de votre clef SSH peut prendre quelques minutes. Vous pouvez" +" 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 @@ -3170,18 +3130,17 @@ msgid "or" msgstr "ou" #: IDF/gettexttemplates/idf/source/invalid_revision.html.php:3 -#, fuzzy, php-format +#, php-format msgid "" "The branch or revision %%commit%% is not valid or does not exist\n" "in this repository." msgstr "" -"La révision %%commit%% n'est pas valide ou bien n'existe pas\n" -"dans le dépôt." +"La branch ou révision %%commit%% n'est pas valide ou bien n'existe " +"pas dans le dépôt." #: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5 -#, fuzzy msgid "The following list shows all available branches:" -msgstr "Le ticket suivant a été mis à jour :" +msgstr "Les branches disponibles sont listées ci-dessous :" #: IDF/gettexttemplates/idf/source/invalid_revision.html.php:6 #, php-format @@ -3192,8 +3151,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 @@ -3203,8 +3161,8 @@ msgid "" "the Mercurial software to manage the source\n" "code." msgstr "" -"L'équipe de développement du projet %%project%% utilise Mercurial 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 @@ -3228,8 +3186,8 @@ msgid "" "the monotone software to manage the source\n" "code." msgstr "" -"L'équipe de développement du projet %%project%% utilise Monotone 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 @@ -3262,8 +3220,8 @@ msgid "" "the subversion software to manage the source\n" "code." msgstr "" -"L'équipe de développement du projet %%project%% utilise Subversion 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 msgid "Rev" @@ -3316,8 +3274,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" @@ -3332,8 +3289,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 @@ -3377,8 +3334,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:11 msgid "Update Your Account" @@ -3407,8 +3364,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:17 msgid "Show API key and extra password" @@ -3428,13 +3385,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 @@ -3465,10 +3422,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" @@ -3480,9 +3434,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" @@ -3550,7 +3502,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" @@ -3559,8 +3512,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 "" @@ -3605,23 +3557,15 @@ msgstr "Supprimer la page" msgid "" "\n" "

      Instructions:

      \n" -"

      The content of the page can use the Markdown syntax with the Extra extension.

      \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" +"

      The content of the page can use the Markdown syntax with the Extra extension.

      \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 "" "\n" "

      Instructions :

      \n" -"

      Le contenu de la page peut utiliser la syntaxe Markdown avec son extension Markdown Extra.

      \n" -"

      Vous pouvez faire un lien vers une autre page de la documentation en " -"utilisant des crochets doubles, comme cela [[UneAutrePage]].

      \n" -"

      Pour inclure directement le contenu d'un fichier du dépôt, entourez son " -"chemin avec des crochets triples : [[[chemin/vers/fichier.txt]]].

      \n" +"

      Le contenu de la page peut utiliser la syntaxe Markdown avec son extension Markdown Extra.

      \n" +"

      Vous pouvez faire un lien vers une autre page de la documentation en utilisant des crochets doubles, comme cela [[UneAutrePage]].

      \n" +"

      Pour inclure directement le contenu d'un fichier du dépôt, entourez son chemin avec des crochets triples : [[[chemin/vers/fichier.txt]]].

      \n" #: IDF/gettexttemplates/idf/wiki/index.html.php:3 #, php-format @@ -3639,8 +3583,8 @@ msgstr "Pages trouvées :" #: IDF/gettexttemplates/idf/wiki/update.html.php:4 msgid "The form contains some errors. Please correct them to update the page." msgstr "" -"Le formulaire contient des erreurs. Merci de les corriger pour mettre à jour " -"la page." +"Le formulaire contient des erreurs. Merci de les corriger pour mettre à jour" +" la page." #: IDF/gettexttemplates/idf/wiki/update.html.php:6 msgid "Update Page" @@ -3728,11 +3672,8 @@ msgstr "date de modification" #: IDF/Issue.php:194 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 #, php-format @@ -3775,8 +3716,7 @@ msgstr "Tableau sérialisé des changements du ticket." #: IDF/IssueComment.php:171 #, php-format msgid "Comment on issue %d, by %s" -msgstr "" -"Commentaire sur le ticket %d, par %s" +msgstr "Commentaire sur le ticket %d, par %s" #: IDF/IssueComment.php:182 #, php-format @@ -3827,7 +3767,8 @@ msgstr "Le dépôt %s existe déjà." #: IDF/Plugin/SyncMercurial.php:142 #, php-format msgid "%s does not exist or is not writable." -msgstr "%s n'existe pas ou vous ne disposez pas des droits pour écrire dedans." +msgstr "" +"%s n'existe pas ou vous ne disposez pas des droits pour écrire dedans." #: IDF/Plugin/SyncMonotone.php:86 IDF/Plugin/SyncMonotone.php:457 #: IDF/Plugin/SyncMonotone.php:783 @@ -3894,8 +3835,7 @@ msgstr "Impossible de parcourir la configuration d'usher dans \"%s\" : %s" #: IDF/Plugin/SyncMonotone.php:295 #, php-format msgid "usher configuration already contains a server entry named \"%s\"" -msgstr "" -"la configuration d'usher contient déja une entrée serveur appelée \"%s\"" +msgstr "la configuration d'usher contient déja une entrée serveur appelée \"%s\"" #: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 #, php-format @@ -4001,16 +3941,13 @@ msgstr "vote" #: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151 #, php-format -msgid "" -"Review %3$d, %4$s" -msgstr "" -"Revue %3$d, %4$s" +msgid "Review %3$d, %4$s" +msgstr "Revue %3$d, %4$s" #: IDF/Review/Comment.php:141 #, php-format msgid "Update of review %d, by %s" -msgstr "" -"Mise à jour de la revue %d, par %s" +msgstr "Mise à jour de la revue %d, par %s" #: IDF/Review/Comment.php:151 #, php-format @@ -4063,8 +4000,8 @@ msgstr "Arbre non valide : %s." #: IDF/Scm/Monotone/Stdio.php:79 msgid "Monotone client key name or hash not in project conf." msgstr "" -"Le nom ou le hash de la clef client monotone ne figure pas dans la config du " -"projet." +"Le nom ou le hash de la clef client monotone ne figure pas dans la config du" +" projet." #: IDF/Scm/Monotone/Stdio.php:98 #, php-format @@ -4393,7 +4330,8 @@ msgstr "Liste de surveillance : Tickets fermés" #: IDF/Views/Issue.php:196 msgid "This table shows the closed issues in your watch list." -msgstr "Ce tableau montre les tickets fermés dans votre liste de surveillance." +msgstr "" +"Ce tableau montre les tickets fermés dans votre liste de surveillance." #: IDF/Views/Issue.php:201 msgid "Watch List: Open Issues" @@ -4761,7 +4699,8 @@ msgid "Confirm Your Account Creation" msgstr "Confirmez la création de votre compte" #: IDF/Views.php:170 -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 "" "Bienvenue ! Vous pouvez maintenant prendre part à la vie du projet de votre " "choix." From 6e5c3a551df82c3bef281d40f696616c313a50cd Mon Sep 17 00:00:00 2001 From: William MARTIN Date: Thu, 24 Feb 2011 09:41:58 +0100 Subject: [PATCH 11/11] Pluf migrate script need Console_Getopt pear package. --- INSTALL.mdtext | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/INSTALL.mdtext b/INSTALL.mdtext index d0f6c01..ebd7d6a 100644 --- a/INSTALL.mdtext +++ b/INSTALL.mdtext @@ -37,6 +37,7 @@ docroot. $ sudo pear upgrade-all $ sudo pear install --alldeps Mail $ sudo pear install --alldeps Mail_mime + $ sudo pear install --alldeps Console_Getopt If you already have some of the PEAR packages installed with your distribution, the `Mail` package is often not up-to-date, @@ -222,4 +223,4 @@ functions. You need to prevent the overload as it does not make sense anyway (magic in the background is bad!). See the [corresponding ticket][reglink]. -[reglink]: http://projects.ceondo.com/p/indefero/issues/481/ \ No newline at end of file +[reglink]: http://projects.ceondo.com/p/indefero/issues/481/