diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..404c823 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +src/IDF/version.php export-subst diff --git a/AUTHORS b/AUTHORS index 2c23e2e..d9e8fac 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,32 +1,40 @@ -InDefero was originally created during summer 2008 +InDefero was originally created during summer 2008 by Loïc d'Anterroches with the support of Céondo Ltd. -Much appreciated contributors: +Much appreciated contributors (in alphabetical order): - Nicolas Lassalle - Subversion support - bohwaz - Benjamin Jorand - Mercurial support - Baptiste Michaud - Subversion synchronization - Julien Issler + Adrien Bustany + Andrew Nguyen + Baptiste Durand-Bret + Baptiste Michaud - Subversion sync + Benjamin Jorand - Mercurial support + Brenda Wallace + Brian Armstrong + Charles Melbye + Ciaran Gultnieks + David Feeney + Denis Kot - Russian translation + Dmitry Dulepov + Fernando Sayago Gil - Spanish translation + Jakub Viták - Czech translation + Janez Troha - Slovenian translation + Jerry - Chinese translation + Julien Issler + Ludovic Bellière Manuel Eidenberger - Ciaran Gultnieks + Matthew Dawson + Matías Halles Mehdi Kabab - Sindre R. Myren + Nicolas Lassalle - Subversion support Patrick Georgi - Adrien Bustany - Charles Melbye - Baptiste Durand-Bret - Andrew Nguyen - David Feeney - Denis Kot - Samuel Suther - Ludovic Bellière - Brian Armstrong - Raphaël Emourgeon - Jakub Viták - Vladimir Solomatin - William Martin - Thomas Keller + Raphaël Emourgeon + Samuel Suther - German translation + Sindre R. Myren + Thomas Keller - Monotone support + Vladimir Solomatin + William Martin + Xavier Brochard + bohwaz And all the nice users who spent time reporting issues and promoting the project. The project could not live without them. diff --git a/CONTRIBUTE.mdtext b/CONTRIBUTE.mdtext index 2aaa0e9..16510a1 100644 --- a/CONTRIBUTE.mdtext +++ b/CONTRIBUTE.mdtext @@ -104,12 +104,13 @@ without first talking to us. ## I am a translator -We currently use (transifex)[http://trac.transifex.org] to help our -users to translate indefero. You don't have to use it, but it's an -easy way to do the job. You can visit the indefero page at transifex -here : http://www.transifex.net/projects/p/indefero/c/indefero/ +We currently use [transifex](http://trac.transifex.org) to help our +users translate indefero. You don't have to use it, but it's an easy +way to do the job. You can visit the indefero page at transifex here: + + http://www.transifex.net/projects/p/indefero/ Please understand that your changes will not be commited instantly, but are sent to the maintainers e-mails before. Then, your changes -will not be in the main repository until da-loic push the changes. In -that way, try to do big changes with less submissions. \ No newline at end of file +will not be in the main repository until the maintainer pushs the +changes. In that way, try to do big changes with less submissions. diff --git a/Makefile b/Makefile index bc207b5..942b144 100644 --- a/Makefile +++ b/Makefile @@ -26,19 +26,20 @@ .PHONY: help help: - @printf "Rules for generate tarball :\n" + @printf "Rules for generating distributable files :\n" @for b in `git branch | sed "s/^. //g"`; do \ - printf "\t"$$b"_tarball - Generate a zip archive of the "$$b" branch.\n"; \ + printf "\t"$$b"-zipfile - Generate a zip archive of the "$$b" branch.\n"; \ done - @printf "\nRules for internationnalization :\n"; - @printf "\tpot-update - Update the POT file from HTML template and PHP source, then merge it with PO file.\n" - @printf "\tpot-push - Send the POT file on transifex server.\n" - @printf "\tpo-update - Merge POT file into PO file. POT is not regenerated.\n" - @printf "\tpo-push - Send the all PO file on transifex server.\n" - @printf "\tpo-pull - Get all PO file from transifex server.\n" + @printf "\nRules for internationalization :\n"; + @printf "\tpot-update - Update the POT file from HTML templates and PHP sources, then merge it with PO file.\n" + @printf "\tpot-push - Send the POT file to the transifex server.\n" + @printf "\tpo-update - Merge the POT file into the PO file. The POT is not regenerated.\n" + @printf "\tpo-push - Send the all PO files to the transifex server.\n" + @printf "\tpo-pull - Get all PO files from the transifex server.\n" + @printf "\tpo-stats - Show translation statistics of all PO files.\n" # -# Internationnalization rule, POT & PO file manipulation +# Internationalization rule, POT & PO file manipulation # .PHONY: pluf_path pluf_path: @@ -60,7 +61,8 @@ pot-update: pluf_path @cd src; php $(PLUF_PATH)/extracttemplates.php IDF/conf/idf.php IDF/gettexttemplates @cd src; for phpfile in `find . -iname "*.php"`; do \ printf "Parsing file : "$$phpfile"\n"; \ - xgettext -o idf.pot -p ./IDF/locale/ --from-code=UTF-8 -j --keyword --keyword=__ --keyword=_n:1,2 -L PHP $$phpfile ; \ + xgettext -o idf.pot -p ./IDF/locale/ --from-code=UTF-8 -j \ + --keyword --keyword=__ --keyword=_n:1,2 -L PHP $$phpfile ; \ done # Remove tmp folder rm -Rf src/IDF/gettexttemplates @@ -90,14 +92,14 @@ check-tx-config: printf "source_file = src/IDF/locale/idf.pot\n" >> .tx/config; \ printf "source_lang = en\n" >> .tx/config; \ fi - @if [ ! -e $(HOME)/.transifexrc ]; then \ + @if [ ! -e $(HOME)/.transifexrc ]; then \ touch $(HOME)/.transifexrc; \ - printf "[http://www.transifex.net]\n" >> $(HOME)/.transifexrc; \ + printf "[http://www.transifex.net]\n" >> $(HOME)/.transifexrc; \ printf "username = \n" >> $(HOME)/.transifexrc; \ - printf "token = \n" >> $(HOME)/.transifexrc; \ + printf "token = \n" >> $(HOME)/.transifexrc; \ printf "password = \n" >> $(HOME)/.transifexrc; \ - printf "hostname = http://www.transifex.net\n" >> $(HOME)/.transifexrc; \ - printf "You must edit the file ~/.transifexrc to setup your transifex account (login & password) !\n"; \ + printf "hostname = http://www.transifex.net\n" >> $(HOME)/.transifexrc; \ + printf "You must edit the file ~/.transifexrc to setup your transifex account (login & password) !\n"; \ exit 1; \ fi @@ -108,13 +110,32 @@ po-push: check-tx-config @tx push -t po-pull: check-tx-config + # Save PO + @for pofile in `ls src/IDF/locale/*/idf.po`; do \ + cp $$pofile $$pofile".save"; \ + done + # Get new one @tx pull -a + # Merge Transifex PO into local PO (so fuzzy entry is correctly saved) + @for pofile in `ls src/IDF/locale/*/idf.po`; do \ + msgmerge -U $$pofile".save" $$pofile; \ + rm -f $$pofile; \ + mv $$pofile".save" $$pofile; \ + done + +po-stats: + @msgfmt --statistics -v src/IDF/locale/idf.pot + @for pofile in `ls src/IDF/locale/*/idf.po`; do \ + msgfmt --statistics -v $$pofile; \ + done # -# Generic rule to build a tarball of indefero for a specified branch -# ex: make master_tarball -# make dev_tarball +# Generic rule to build a zipfile of indefero for a specified branch +# ex: make master_zipfile +# make develop_zipfile # -%_tarball: - @git archive --format=zip --prefix="indefero/" $(@:_tarball=) > indefero-$(@:_tarball=)-`git log $(@:_tarball=) -n 1 --pretty=format:%H`.zip +%-zipfile: + @git archive --format=zip --prefix="indefero/" $(@:-zipfile=) \ + > indefero-$(@:-zipfile=)-`git log $(@:-zipfile=) -n 1 \ + --pretty=format:%h`.zip diff --git a/NEWS.mdtext b/NEWS.mdtext new file mode 100644 index 0000000..f04f274 --- /dev/null +++ b/NEWS.mdtext @@ -0,0 +1,80 @@ +# InDefero 1.1 - Sun Mar 20 11:44 2011 UTC + +## New Features + +* _Version control_: + - Support for the monotone Version Control system (see [[InstallationScmMonotone]]) + - Display detailed changeset information in the commit details (git, mtn) (issue 544) + - Show branch in the commit details (git, mtn, hg) (issue 450) + - Render branch and tag names in a popup and make them filterable (git, hg, mtn) (issue 601) + +* _Issue tracking_: + - Forge-wide and per-project watch lists of starred issues (issue 589) + - Configure a default issue template for each project (issues 212 and 540) + - Pick default issue labels from the configured project settings (issue 556) + - Navigate to a preceding / following issue in the issue detail view + - Many new text syntaxes to auto-link revisions (see [[AutomaticLinks]], issue 569) + +* _Documentation wiki_: + - Automatically create a table of contents on wiki pages (issue 350) + - Allow the usage of text labels for Wiki text links (issue 456) + +* _Other_: + - Enhanced user profile page (issue 510) + - Manage multiple (commit) emails in the account settings (issues 136 and 500) + - Filter the timeline and its feed by item type (issue 543) + - Add multiple email addresses for project notifications (issue 372) + - Direct links to other projects via the new `Project List` dropdown + - InDefero gained a favicon (issue 594) + +## Bugfixes + +- Fix `Need SSH_ORIGINAL_COMMAND in environment` error for git sync (issue 198) +- Added an option to disable lengthy project size calculation in the forge (issue 403) +- Fix a problem when deleting an orphaned git repository (issue 467) +- Ignore XML parsing problems when trying to retrieve commit messages for svn (issues 469 and 518) +- Sort the project list by the display name of the project (issue 477) +- Project creation form now has a short description field as well (issue 479) +- Add more file extensions supported by our in-tree prettify version (issues 490 and 567) +- Improve the parsing of hg's log output (issues 507 and 508) +- Do not clean `` and `` HTML markup from user input (issue 509) +- Improve HTML validation by switching from `strict` to `transitional` DOCTYPE (issue 511) +- Properly handle git commits without a changelog title (issue 520) +- Improve BSD compatibility in shell scripts (issue 526) +- Properly render inner whitespaces in viewed issue attachments (issue 528) +- Support for uploading SSH keys without optional comment (issue 531) +- Recognize irc: and git: protocols in Markdown renderer (issue 546) +- New config option `git_core_quotepath` to handle non-ASCII git file names (issue 553) +- Ensured that active views are rendered in the menu as such (issue 555) +- Add CSS for nested and mixed ordered and unordered lists (issue 557) +- Directories are now sorted before files in source tree views (issue 573) +- File attachments now have explicit view and download links in issue views (issue 575) +- Display anonymous access URL when user has no SSH key registered (issue 588) +- Improve the rendering of tag lists in issue views (issue 591) +- Improved error page when a commit or branch was not found (issue 609) +- Disable browser autocomplete of password fields in the account settings (issue 616) +- Improvements in the automatic linker parser (issue 618) +- The `createIssue` API method did not check the API authentication (issue 619) +- Reduce the memory footprint and compatibility of the internal diff parser (issues 627 and 633) +- Print the git branches and tags in bold which contain the currently displayed revision + +## Documentation + +- Document how to contribute to Indefero in `CONTRIBUTE.mdtext` (issue 486) +- Note possible problems with mbstring.func_overload in `INSTALL.mdtext` (issue 481) +- Improve links to Markdown documentation (issue 489) +- Explain purpose of `idf_strong_key_check` in `idf.php-dist` (issue 516) + +## Translations + +- Spanish translation added +- Started with a Simplified Chinese translation (issue 521) +- Started with a Russian translation +- Updates and fixes to the French translation (issue 574) +- Updates and fixes to the German translation +- English source language has been improved (issues 441, 478, and 631) + +# InDefero 1.0 - Tue Apr 20 07:00 2010 UTC + +First stable release. + diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..00db39e --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,15 @@ + + + + + test/IDF/ + + + diff --git a/src/IDF/Diff.php b/src/IDF/Diff.php index a9be715..6e43d1b 100644 --- a/src/IDF/Diff.php +++ b/src/IDF/Diff.php @@ -27,17 +27,17 @@ */ class IDF_Diff { - public $repo = ''; - public $diff = ''; + public $path_strip_level = 0; protected $lines = array(); public $files = array(); - public function __construct($diff, $repo='') + public function __construct($diff, $path_strip_level = 0) { - $this->repo = $repo; - $this->diff = $diff; - $this->lines = preg_split("/\015\012|\015|\012/", $diff); + $this->path_strip_level = $path_strip_level; + // this works because in unified diff format even empty lines are + // either prefixed with a '+', '-' or ' ' + $this->lines = preg_split("/\015\012|\015|\012/", $diff, -1, PREG_SPLIT_NO_EMPTY); } public function parse() @@ -49,118 +49,95 @@ class IDF_Diff $files = array(); $indiff = false; // Used to skip the headers in the git patches $i = 0; // Used to skip the end of a git patch with --\nversion number - foreach ($this->lines as $line) { - $i++; - if (0 === strpos($line, '--') and isset($this->lines[$i]) - and preg_match('/^\d+\.\d+\.\d+\.\d+$/', $this->lines[$i])) { - break; + $diffsize = count($this->lines); + while ($i < $diffsize) { + // look for the potential beginning of a diff + if (substr($this->lines[$i], 0, 4) !== '--- ') { + $i++; + continue; } - if (0 === strpos($line, 'diff --git a')) { - $current_file = self::getFile($line); - $files[$current_file] = array(); - $files[$current_file]['chunks'] = array(); - $files[$current_file]['chunks_def'] = array(); - $current_chunk = 0; - $indiff = true; + + // we're inside a diff candiate + $oldfileline = $this->lines[$i++]; + $newfileline = $this->lines[$i++]; + if (substr($newfileline, 0, 4) !== '+++ ') { + // not a valid diff here, move on continue; - } else if (preg_match('#^diff -r [^\s]+ -r [^\s]+ (.+)$#', $line, $matches)) { - $current_file = $matches[1]; - $files[$current_file] = array(); - $files[$current_file]['chunks'] = array(); - $files[$current_file]['chunks_def'] = array(); - $current_chunk = 0; - $indiff = true; - continue; - } else if (!$indiff && 0 === strpos($line, '=========')) { - // ignore pseudo stanzas with a hint of a binary file - if (preg_match("/^# (.+) is binary/", $this->lines[$i])) - continue; - // by default always use the new name of a possibly renamed file - $current_file = self::getMtnFile($this->lines[$i+1]); - // mtn 0.48 and newer set /dev/null as file path for dropped files - // so we display the old name here - if ($current_file == "/dev/null") { - $current_file = self::getMtnFile($this->lines[$i]); + } + + // use new file name by default + preg_match("/^\+\+\+ ([^\t]+)/", $newfileline, $m); + $current_file = $m[1]; + if ($current_file === '/dev/null') { + // except if it's /dev/null, use the old one instead + // eg. mtn 0.48 and newer + preg_match("/^--- ([^\t]+)/", $oldfileline, $m); + $current_file = $m[1]; + } + if ($this->path_strip_level > 0) { + $fileparts = explode('/', $current_file, $this->path_strip_level+1); + $current_file = array_pop($fileparts); + } + $current_chunk = 0; + $files[$current_file] = array(); + $files[$current_file]['chunks'] = array(); + $files[$current_file]['chunks_def'] = array(); + + while ($i < $diffsize && substr($this->lines[$i], 0, 3) === '@@ ') { + $elems = preg_match('/@@ -(\d+),?(\d*) \+(\d+),?(\d*) @@.*/', + $this->lines[$i++], $results); + if ($elems != 1) { + // hunk is badly formatted + break; } - if ($current_file == "/dev/null") { - throw new Exception( - "could not determine path from diff" - ); - } - $files[$current_file] = array(); - $files[$current_file]['chunks'] = array(); - $files[$current_file]['chunks_def'] = array(); - $current_chunk = 0; - $indiff = true; - continue; - } else if (0 === strpos($line, 'Index: ')) { - $current_file = self::getSvnFile($line); - $files[$current_file] = array(); - $files[$current_file]['chunks'] = array(); - $files[$current_file]['chunks_def'] = array(); - $current_chunk = 0; - $indiff = true; - continue; - } - if (!$indiff) { - continue; - } - if (0 === strpos($line, '@@ ')) { - $files[$current_file]['chunks_def'][] = self::getChunk($line); + $delstart = $results[1]; + $dellines = $results[2] === '' ? 1 : $results[2]; + $addstart = $results[3]; + $addlines = $results[4] === '' ? 1 : $results[4]; + + $files[$current_file]['chunks_def'][] = array( + array($delstart, $dellines), array($addstart, $addlines) + ); $files[$current_file]['chunks'][] = array(); + + while ($i < $diffsize && ($addlines >= 0 || $dellines >= 0)) { + $linetype = $this->lines[$i] != '' ? $this->lines[$i][0] : ' '; + switch ($linetype) { + case ' ': + $files[$current_file]['chunks'][$current_chunk][] = + array($delstart, $addstart, substr($this->lines[$i++], 1)); + $dellines--; + $addlines--; + $delstart++; + $addstart++; + break; + case '+': + $files[$current_file]['chunks'][$current_chunk][] = + array('', $addstart, substr($this->lines[$i++], 1)); + $addlines--; + $addstart++; + break; + case '-': + $files[$current_file]['chunks'][$current_chunk][] = + array($delstart, '', substr($this->lines[$i++], 1)); + $dellines--; + $delstart++; + break; + case '\\': + // ignore newline handling for now, see issue 636 + $i++; + continue; + default: + break 2; + } + } $current_chunk++; - $lline = $files[$current_file]['chunks_def'][$current_chunk-1][0][0]; - $rline = $files[$current_file]['chunks_def'][$current_chunk-1][1][0]; - continue; - } - if (0 === strpos($line, '---') or 0 === strpos($line, '+++')) { - continue; - } - if (0 === strpos($line, '-')) { - $files[$current_file]['chunks'][$current_chunk-1][] = array($lline, '', substr($line, 1)); - $lline++; - continue; - } - if (0 === strpos($line, '+')) { - $files[$current_file]['chunks'][$current_chunk-1][] = array('', $rline, substr($line, 1)); - $rline++; - continue; - } - if (0 === strpos($line, ' ')) { - $files[$current_file]['chunks'][$current_chunk-1][] = array($lline, $rline, substr($line, 1)); - $rline++; - $lline++; - continue; - } - if ($line == '') { - $files[$current_file]['chunks'][$current_chunk-1][] = array($lline, $rline, $line); - $rline++; - $lline++; - continue; } } $this->files = $files; return $files; } - public static function getFile($line) - { - $line = substr(trim($line), 10); - $n = (int) strlen($line)/2; - return trim(substr($line, 3, $n-3)); - } - - public static function getSvnFile($line) - { - return substr(trim($line), 7); - } - - public static function getMtnFile($line) - { - preg_match("/^[+-]{3} ([^\t]+)/", $line, $m); - return $m[1]; - } - /** * Return the html version of a parsed diff. */ @@ -197,7 +174,6 @@ class IDF_Diff return Pluf_Template::markSafe($out); } - public static function padLine($line) { $line = str_replace("\t", ' ', $line); @@ -210,19 +186,6 @@ class IDF_Diff return str_repeat(' ', $i).substr($line, $i); } - /** - * @return array array(array(start, n), array(start, n)) - */ - public static function getChunk($line) - { - $elts = explode(' ', $line); - $res = array(); - for ($i=1;$i<3;$i++) { - $res[] = explode(',', trim(substr($elts[$i], 1))); - } - return $res; - } - /** * Review patch. * @@ -347,7 +310,6 @@ class IDF_Diff return $nnew_chunks; } - public function renderCompared($chunks, $filename) { $fileinfo = IDF_FileUtil::getMimeType($filename); @@ -381,6 +343,5 @@ class IDF_Diff $i++; } return Pluf_Template::markSafe($out); - } } diff --git a/src/IDF/Form/Admin/ProjectCreate.php b/src/IDF/Form/Admin/ProjectCreate.php index 5b823db..262aaee 100644 --- a/src/IDF/Form/Admin/ProjectCreate.php +++ b/src/IDF/Form/Admin/ProjectCreate.php @@ -182,7 +182,7 @@ class IDF_Form_Admin_ProjectCreate extends Pluf_Form // we accept only starting with http(s):// to avoid people // trying to access the local filesystem. if (!preg_match('#^(http|https)://#', $url)) { - throw new Pluf_Form_Invalid(__('Only a remote repository available throught http or https are allowed. For example "http://somewhere.com/svn/trunk".')); + throw new Pluf_Form_Invalid(__('Only a remote repository available through HTTP or HTTPS is allowed. For example "http://somewhere.com/svn/trunk".')); } return $url; } diff --git a/src/IDF/Form/Admin/ProjectUpdate.php b/src/IDF/Form/Admin/ProjectUpdate.php index e15e029..3fd9156 100644 --- a/src/IDF/Form/Admin/ProjectUpdate.php +++ b/src/IDF/Form/Admin/ProjectUpdate.php @@ -88,7 +88,7 @@ class IDF_Form_Admin_ProjectUpdate extends Pluf_Form $mtn_master_branch)) { throw new Pluf_Form_Invalid(__( 'The master branch is empty or contains illegal characters, '. - 'please use only letters, digits, dashs and dots as separators.' + 'please use only letters, digits, dashes and dots as separators.' )); } diff --git a/src/IDF/Form/Admin/UserCreate.php b/src/IDF/Form/Admin/UserCreate.php index e39ceb7..8a20d70 100644 --- a/src/IDF/Form/Admin/UserCreate.php +++ b/src/IDF/Form/Admin/UserCreate.php @@ -68,7 +68,7 @@ class IDF_Form_Admin_UserCreate extends Pluf_Form array('required' => true, 'label' => __('Email'), 'initial' => '', - 'help_text' => __('Double check the email address as the password is directly sent to the user.'), + 'help_text' => __('Double check the email address as the password is sent directly to the user.'), )); $this->fields['language'] = new Pluf_Form_Field_Varchar( diff --git a/src/IDF/Form/Admin/UserUpdate.php b/src/IDF/Form/Admin/UserUpdate.php index d9111ae..a962ca2 100644 --- a/src/IDF/Form/Admin/UserUpdate.php +++ b/src/IDF/Form/Admin/UserUpdate.php @@ -78,7 +78,7 @@ class IDF_Form_Admin_UserUpdate extends Pluf_Form 'label' => __('Password'), 'initial' => '', 'widget' => 'Pluf_Form_Widget_PasswordInput', - 'help_text' => Pluf_Template::markSafe(__('Leave blank if you do not want to change the password.').'
'.__('The password must be hard for other people to find it, but easy for the user to remember.')), + 'help_text' => Pluf_Template::markSafe(__('Leave blank if you do not want to change the password.').'
'.__('The password must be hard for other people to guess, but easy for the user to remember.')), 'widget_attrs' => array( 'maxlength' => 50, 'size' => 15, @@ -161,7 +161,7 @@ class IDF_Form_Admin_UserUpdate extends Pluf_Form 'label' => __('Staff'), 'initial' => $this->user->staff, 'widget' => 'Pluf_Form_Widget_CheckboxInput', - 'help_text' => __('If you give staff rights to a user, you really need to trust him.'), + 'help_text' => __('If you give staff rights to a user, you really need to trust them.'), )); } @@ -173,7 +173,7 @@ class IDF_Form_Admin_UserUpdate extends Pluf_Form 'initial' => $this->user->active, 'widget' => 'Pluf_Form_Widget_CheckboxInput', 'widget_attrs' => $attrs, - 'help_text' => __('If the user is not getting the confirmation email or is abusing the system, you can directly enable or disable his account here.'), + 'help_text' => __('If the user is not getting the confirmation email or is abusing the system, you can directly enable or disable their account here.'), )); } diff --git a/src/IDF/Form/IssueTrackingConf.php b/src/IDF/Form/IssueTrackingConf.php index cb0d17b..b2aef76 100644 --- a/src/IDF/Form/IssueTrackingConf.php +++ b/src/IDF/Form/IssueTrackingConf.php @@ -77,7 +77,7 @@ Maintainability = Hinders future changes'; { $this->fields['labels_issue_template'] = new Pluf_Form_Field_Varchar( array('required' => false, - 'label' => __('Define an issue template to hint the reporter to provide certain information'), + 'label' => __('Define an issue template to hint to the reporter to provide certain information'), 'initial' => self::init_template, 'widget_attrs' => array('rows' => 7, 'cols' => 75), diff --git a/src/IDF/Form/Register.php b/src/IDF/Form/Register.php index 449d776..a2df09c 100644 --- a/src/IDF/Form/Register.php +++ b/src/IDF/Form/Register.php @@ -42,7 +42,7 @@ class IDF_Form_Register extends Pluf_Form 'max_length' => 15, 'min_length' => 3, 'initial' => $login, - 'help_text' => __('The login must be between 3 and 15 characters long and contains only letters and digits.'), + 'help_text' => __('The login must be between 3 and 15 characters long and contain only letters and digits.'), 'widget_attrs' => array( 'maxlength' => 15, 'size' => 10, @@ -52,7 +52,7 @@ class IDF_Form_Register extends Pluf_Form array('required' => true, 'label' => __('Your email'), 'initial' => '', - 'help_text' => __('We will never send you any unsolicited emails. We hate spams too!'), + 'help_text' => __('We will never send you any unsolicited emails. We hate spam too!'), )); $this->fields['terms'] = new Pluf_Form_Field_Boolean( @@ -94,7 +94,7 @@ class IDF_Form_Register extends Pluf_Form { $this->cleaned_data['email'] = mb_strtolower(trim($this->cleaned_data['email'])); if (Pluf::factory('IDF_EmailAddress')->get_user_for_email_address($this->cleaned_data['email']) != null) { - throw new Pluf_Form_Invalid(sprintf(__('The email "%s" is already used. If you need, click on the help link to recover your password.'), $this->cleaned_data['email'])); + throw new Pluf_Form_Invalid(sprintf(__('The email "%s" is already used. If you need to, click on the help link to recover your password.'), $this->cleaned_data['email'])); } return $this->cleaned_data['email']; } diff --git a/src/IDF/Form/RegisterConfirmation.php b/src/IDF/Form/RegisterConfirmation.php index f9a616b..e8aad6d 100644 --- a/src/IDF/Form/RegisterConfirmation.php +++ b/src/IDF/Form/RegisterConfirmation.php @@ -69,7 +69,7 @@ class IDF_Form_RegisterConfirmation extends Pluf_Form 'label' => __('Your password'), 'initial' => '', 'widget' => 'Pluf_Form_Widget_PasswordInput', - 'help_text' => __('Your password must be hard for other people to find it, but easy for you to remember.'), + 'help_text' => __('Your password must be hard for other people to guess, but easy for you to remember.'), 'widget_attrs' => array( 'maxlength' => 50, 'size' => 15, diff --git a/src/IDF/Form/ReviewFileComment.php b/src/IDF/Form/ReviewFileComment.php index fed70bf..7563b5f 100644 --- a/src/IDF/Form/ReviewFileComment.php +++ b/src/IDF/Form/ReviewFileComment.php @@ -64,6 +64,8 @@ class IDF_Form_ReviewFileComment extends Pluf_Form if ($this->user->hasPerm('IDF.project-owner', $this->project) or $this->user->hasPerm('IDF.project-member', $this->project)) { $this->show_full = true; + } else { + $this->show_full = false; } if ($this->show_full) { $this->fields['summary'] = new Pluf_Form_Field_Varchar( diff --git a/src/IDF/Form/Upload.php b/src/IDF/Form/Upload.php index 241fd08..8ce8595 100644 --- a/src/IDF/Form/Upload.php +++ b/src/IDF/Form/Upload.php @@ -83,7 +83,7 @@ class IDF_Form_Upload extends Pluf_Form if (strlen($extra)) $extra .= '|'; if (!preg_match('/\.('.$extra.'png|jpg|jpeg|gif|bmp|psd|tif|aiff|asf|avi|bz2|css|doc|eps|gz|jar|mdtext|mid|mov|mp3|mpg|ogg|pdf|ppt|ps|qt|ra|ram|rm|rtf|sdd|sdw|sit|sxi|sxw|swf|tgz|txt|wav|xls|xml|war|wmv|zip)$/i', $this->cleaned_data['file'])) { @unlink(Pluf::f('upload_path').'/'.$this->project->shortname.'/files/'.$this->cleaned_data['file']); - throw new Pluf_Form_Invalid(__('For security reason, you cannot upload a file with this extension.')); + throw new Pluf_Form_Invalid(__('For security reasons, you cannot upload a file with this extension.')); } return $this->cleaned_data['file']; } diff --git a/src/IDF/Form/UserAccount.php b/src/IDF/Form/UserAccount.php index 75867b4..6226c3a 100644 --- a/src/IDF/Form/UserAccount.php +++ b/src/IDF/Form/UserAccount.php @@ -163,7 +163,7 @@ class IDF_Form_UserAccount extends Pluf_Form 'widget_attrs' => array('rows' => 3, 'cols' => 40), 'widget' => 'Pluf_Form_Widget_TextareaInput', - 'help_text' => __('Paste a SSH or monotone public key. Be careful to not provide your private key here!') + 'help_text' => __('Paste an SSH or monotone public key. Be careful to not provide your private key here!') )); $this->fields['secondary_mail'] = new Pluf_Form_Field_Email( @@ -359,7 +359,7 @@ class IDF_Form_UserAccount extends Pluf_Form } else { throw new Pluf_Form_Invalid( - __('Public key looks neither like a SSH '. + __('Public key looks like neither an SSH '. 'nor monotone public key.')); } diff --git a/src/IDF/Middleware.php b/src/IDF/Middleware.php index b836e25..028f412 100644 --- a/src/IDF/Middleware.php +++ b/src/IDF/Middleware.php @@ -87,6 +87,7 @@ class IDF_Middleware 'markdown' => 'IDF_Template_Markdown', 'showuser' => 'IDF_Template_ShowUser', 'ashowuser' => 'IDF_Template_AssignShowUser', + 'appversion' => 'IDF_Template_AppVersion', )); $params['modifiers'] = array_merge($params['modifiers'], array( diff --git a/src/IDF/Migrations/Install.php b/src/IDF/Migrations/Install.php index 5d5a57c..9aff396 100644 --- a/src/IDF/Migrations/Install.php +++ b/src/IDF/Migrations/Install.php @@ -50,6 +50,7 @@ function IDF_Migrations_Install_setup($params=null) 'IDF_Scm_Cache_Git', 'IDF_Queue', 'IDF_Gconf', + 'IDF_EmailAddress', ); $db = Pluf::db(); $schema = new Pluf_DB_Schema($db); @@ -107,6 +108,7 @@ function IDF_Migrations_Install_teardown($params=null) 'IDF_Tag', 'IDF_Commit', 'IDF_Project', + 'IDF_EmailAddress', ); $db = Pluf::db(); $schema = new Pluf_DB_Schema($db); @@ -114,4 +116,4 @@ function IDF_Migrations_Install_teardown($params=null) $schema->model = new $model(); $schema->dropTables(); } -} \ No newline at end of file +} diff --git a/src/IDF/Scm.php b/src/IDF/Scm.php index d9c4435..d299458 100644 --- a/src/IDF/Scm.php +++ b/src/IDF/Scm.php @@ -473,5 +473,14 @@ class IDF_Scm { return str_replace('%2F', '/', rawurlencode($path)); } + + /** + * Returns the number of slashes and preceeding path components + * that should be stripped from paths in the SCM's diff output + */ + public function getDiffPathStripLevel() + { + return 0; + } } diff --git a/src/IDF/Scm/Git.php b/src/IDF/Scm/Git.php index dc07e03..926f738 100644 --- a/src/IDF/Scm/Git.php +++ b/src/IDF/Scm/Git.php @@ -62,20 +62,20 @@ class IDF_Scm_Git extends IDF_Scm $out = array(); $cmd = Pluf::f('idf_exec_cmd_prefix', '').$cmd; self::exec('IDF_Scm_Git::getChanges', $cmd, $out); - + $return = (object) array( 'additions' => array(), 'deletions' => array(), 'renames' => array(), 'patches' => array(), 'properties' => array(), - ); - + ); + foreach ($out as $line) { $line = trim($line); if ($line != '') { $action = $line[0]; - + if ($action == 'A') { $filename = trim(substr($line, 1)); $return->additions[] = $filename; @@ -88,10 +88,10 @@ class IDF_Scm_Git extends IDF_Scm } else if ($action == 'R') { $matches = split ("\t", $line); $return->renames[$matches[1]] = $matches[2]; - } + } } } - + return $return; } @@ -167,7 +167,29 @@ class IDF_Scm_Git extends IDF_Scm */ public function inBranches($commit, $path) { - return $this->_inObject($commit, 'branch'); + if (isset($this->cache['inBranches'][$commit])) { + return $this->cache['inBranches'][$commit]; + } + + $cmd = Pluf::f('idf_exec_cmd_prefix', '') + .sprintf('GIT_DIR=%s %s branch --contains %s', + escapeshellarg($this->repo), + Pluf::f('git_path', 'git'), + escapeshellarg($commit)); + self::exec('IDF_Scm_Git::inBranches', $cmd, $out, $return); + if (0 != $return) { + throw new IDF_Scm_Exception(sprintf($this->error_tpl, + $cmd, $return, + implode("\n", $out))); + } + + $res = array(); + foreach ($out as $line) { + $res[] = substr($line, 2); + } + + $this->cache['inBranches'][$commit] = $res; + return $res; } /** @@ -216,35 +238,36 @@ class IDF_Scm_Git extends IDF_Scm **/ public function inTags($commit, $path) { - return $this->_inObject($commit, 'tag'); - } + if (isset($this->cache['inTags'][$commit])) { + return $this->cache['inTags'][$commit]; + } - /** - * Returns in which branches or tags a commit is. - * - * @param string Commit - * @param string Object's type: 'branch' or 'tag'. - * @return array - */ - private function _inObject($commit, $object) - { - $object = strtolower($object); - if ('branch' === $object) { - $objects = $this->getBranches(); - } else if ('tag' === $object) { - $objects = $this->getTags(); - } else { - throw new InvalidArgumentException(sprintf(__('Invalid value for the parameter %1$s: %2$s. Use %3$s.'), - '$object', - $object, - '\'branch\' or \'tag\'')); + $cmd = Pluf::f('idf_exec_cmd_prefix', '') + .sprintf('GIT_DIR=%s %s tag --contains %s', + escapeshellarg($this->repo), + Pluf::f('git_path', 'git'), + escapeshellarg($commit)); + self::exec('IDF_Scm_Git::inTags', $cmd, $out, $return); + // `git tag` gained the `--contains` option in 1.6.2, earlier + // versions report a bad usage error (129) which we ignore here + if (129 == $return) { + $this->cache['inTags'][$commit] = array(); + return array(); } - unset($object); - $result = array(); - if (array_key_exists($commit, $objects)) { - $result[] = $commit; + // any other error should of course get noted + if (0 != $return) { + throw new IDF_Scm_Exception(sprintf($this->error_tpl, + $cmd, $return, + implode("\n", $out))); } - return $result; + + $res = array(); + foreach ($out as $line) { + $res[] = $line; + } + + $this->cache['inTags'][$commit] = $res; + return $res; } /** @@ -346,8 +369,8 @@ class IDF_Scm_Git extends IDF_Scm $keys = $user->get_idf_key_list(); if (count ($keys) == 0) return self::getAnonymousAccessUrl($project); - } - + } + return sprintf(Pluf::f('git_write_remote_url'), $project->shortname); } @@ -505,7 +528,7 @@ class IDF_Scm_Git extends IDF_Scm $out[0]->diff = ''; } - $out[0]->branch = implode(', ', $this->inBranches($commit, null)); + $out[0]->branch = implode(', ', $this->inBranches($out[0]->commit, null)); return $out[0]; } @@ -633,6 +656,14 @@ class IDF_Scm_Git extends IDF_Scm return new Pluf_HTTP_Response_CommandPassThru($cmd, 'application/x-zip'); } + /** + * @see IDF_Scm::getDiffPathStripLevel() + */ + public function getDiffPathStripLevel() + { + return 1; + } + /* * ===================================================== * Specific Git Commands diff --git a/src/IDF/Scm/Mercurial.php b/src/IDF/Scm/Mercurial.php index a413cb1..298c023 100644 --- a/src/IDF/Scm/Mercurial.php +++ b/src/IDF/Scm/Mercurial.php @@ -27,10 +27,13 @@ */ class IDF_Scm_Mercurial extends IDF_Scm { + protected $hg_log_template; + public function __construct($repo, $project=null) { $this->repo = $repo; $this->project = $project; + $this->hg_log_template = "'".'changeset: {rev}:{node|short}\nauthor: {author}\ndate: {date|isodate}\nfiles: {files}\n{desc}\n'."'"; } public function getRepositorySize() @@ -336,10 +339,14 @@ class IDF_Scm_Mercurial extends IDF_Scm if (!$this->isValidRevision($commit)) { return false; } - $tmpl = ($getdiff) ? - Pluf::f('hg_path', 'hg').' log -p -r %s -R %s' : Pluf::f('hg_path', 'hg').' log -r %s -R %s'; + $tmpl = ($getdiff) + ? Pluf::f('hg_path', 'hg').' log -p -r %s -R %s --template %s' + : Pluf::f('hg_path', 'hg').' log -r %s -R %s --template %s'; $cmd = sprintf($tmpl, - escapeshellarg($commit), escapeshellarg($this->repo)); + escapeshellarg($commit), + escapeshellarg($this->repo), + $this->hg_log_template); + $out = array(); $cmd = Pluf::f('idf_exec_cmd_prefix', '').$cmd; self::exec('IDF_Scm_Mercurial::getCommit', $cmd, $out); @@ -356,7 +363,7 @@ class IDF_Scm_Mercurial extends IDF_Scm $log[] = $line; } } - $out = self::parseLog($log, 6); + $out = self::parseLog($log, 4); $out[0]->diff = implode("\n", $change); return $out[0]; } @@ -381,11 +388,11 @@ class IDF_Scm_Mercurial extends IDF_Scm */ public function getChangeLog($commit='tip', $n=10) { - $cmd = sprintf(Pluf::f('hg_path', 'hg').' log -R %s -l%s ', escapeshellarg($this->repo), $n, $commit); + $cmd = sprintf(Pluf::f('hg_path', 'hg').' log -R %s -l%s --template %s', escapeshellarg($this->repo), $n, $this->hg_log_template, $commit); $out = array(); $cmd = Pluf::f('idf_exec_cmd_prefix', '').$cmd; self::exec('IDF_Scm_Mercurial::getChangeLog', $cmd, $out); - return self::parseLog($out, 6); + return self::parseLog($out, 4); } /** @@ -421,7 +428,7 @@ class IDF_Scm_Mercurial extends IDF_Scm continue; } $match = array(); - if (preg_match('/(\S+)\s*:\s*(.*)/', $line, $match)) { + if (preg_match('/^(\S+):\s*(.*)/', $line, $match)) { $match[1] = strtolower($match[1]); if ($match[1] == 'user') { $c['author'] = $match[2]; @@ -464,4 +471,12 @@ class IDF_Scm_Mercurial extends IDF_Scm escapeshellarg($commit)); return new Pluf_HTTP_Response_CommandPassThru($cmd, 'application/x-zip'); } + + /** + * @see IDF_Scm::getDiffPathStripLevel() + */ + public function getDiffPathStripLevel() + { + return 1; + } } diff --git a/src/IDF/Scm/Svn.php b/src/IDF/Scm/Svn.php index 1904079..5767aba 100644 --- a/src/IDF/Scm/Svn.php +++ b/src/IDF/Scm/Svn.php @@ -266,8 +266,13 @@ class IDF_Scm_Svn extends IDF_Scm escapeshellarg($this->repo), escapeshellarg($rev)); $cmd = Pluf::f('idf_exec_cmd_prefix', '').$cmd; - $xml = simplexml_load_string(self::shell_exec('IDF_Scm_Svn::getCommitMessage', $cmd)); - $this->cache['commitmess'][$rev] = (string) $xml->logentry->msg; + try { + $xml = simplexml_load_string(self::shell_exec('IDF_Scm_Svn::getCommitMessage', $cmd)); + $this->cache['commitmess'][$rev] = (string) $xml->logentry->msg; + } + catch (Exception $e) { + $this->cache['commitmess'][$rev] = ''; + } return $this->cache['commitmess'][$rev]; } diff --git a/src/IDF/Template.php b/src/IDF/Template.php new file mode 100644 index 0000000..b7b2668 --- /dev/null +++ b/src/IDF/Template.php @@ -0,0 +1,51 @@ +'."\n"; + } + + if (array_key_exists('revision', $info)) { + if (strpos($info['revision'], '$') !== false) { + $info['revision'] = 'unknown'; + $cmd = Pluf::f('idf_exec_cmd_prefix', ''). + Pluf::f('git_path', 'git'). + ' log -1 --format=%H'; + + if (IDF_Scm::exec('IDF_Template_AppVersion::start', $cmd, $output)) { + $info['revision'] = trim(@$output[0]); + } + } + echo ''."\n"; + } + } +} + diff --git a/src/IDF/Template/IssueComment.php b/src/IDF/Template/IssueComment.php index a3f23e5..287a8b3 100644 --- a/src/IDF/Template/IssueComment.php +++ b/src/IDF/Template/IssueComment.php @@ -22,6 +22,7 @@ # ***** END LICENSE BLOCK ***** */ Pluf::loadFunction('Pluf_HTTP_URL_urlForView'); +Pluf::loadFunction('IDF_Template_safePregReplace'); /** * Make the links to issues and commits. @@ -34,36 +35,31 @@ class IDF_Template_IssueComment extends Pluf_Template_Tag function start($text, $request, $echo=true, $wordwrap=true, $esc=true, $autolink=true, $nl2br=false) { - // PHP sets the backtrack limit quite low, so some regexes may - // fail unexpectedly on large inputs or weird cornercases (see issue 618) - $pcre_backtrack_limit = ini_get('pcre.backtrack_limit'); - ini_set('pcre.backtrack_limit', 10000000); - $this->project = $request->project; $this->request = $request; $this->scm = IDF_Scm::get($request->project); if ($esc) $text = Pluf_esc($text); if ($autolink) { - $text = preg_replace('#([a-z]+://[^\s\(\)]+)#i', - '\1', $text); + $text = IDF_Template_safePregReplace('#([a-z]+://[^\s\(\)]+)#i', + '\1', $text); } if ($request->rights['hasIssuesAccess']) { - $text = preg_replace_callback('#((?:issue|bug|ticket)(s)?\s+|\s+\#)(\d+)(\#ic\d+)?(?(2)((?:[, \w]+(?:\s+\#)?)?\d+(?:\#ic\d+)?){0,})#im', - array($this, 'callbackIssues'), $text); + $text = IDF_Template_safePregReplace('#((?:issue|bug|ticket)(s)?\s+|\s+\#)(\d+)(\#ic\d+)?(?(2)((?:[, \w]+(?:\s+\#)?)?\d+(?:\#ic\d+)?){0,})#im', + array($this, 'callbackIssues'), $text); } if ($request->rights['hasReviewAccess']) { - $text = preg_replace_callback('#(reviews?\s+)(\d+(?:(?:\s+and|\s+or|,)\s+\d+)*)\b#i', - array($this, 'callbackReviews'), $text); + $text = IDF_Template_safePregReplace('#(reviews?\s+)(\d+(?:(?:\s+and|\s+or|,)\s+\d+)*)\b#i', + array($this, 'callbackReviews'), $text); } if ($request->rights['hasSourceAccess']) { $verbs = array('added', 'fixed', 'reverted', 'changed', 'removed'); $nouns = array('commit', 'commits', 'revision', 'revisions', 'rev', 'revs'); $prefix = implode(' in|', $verbs).' in' . '|'. implode('|', $nouns); - $text = preg_replace_callback('#((?:'.$prefix.')(?:\s+r?))([0-9a-f]{1,40}((?:\s+and|\s+or|,)\s+r?[0-9a-f]{1,40})*)\b#i', - array($this, 'callbackCommits'), $text); - $text = preg_replace_callback('=(src:)([^\s@#,\(\)\\\\]+(?:(\\\\)[\s@#][^\s@#,\(\)\\\\]+){0,})+(?:\@([^\s#,]+))(?:#(\d+))?=im', - array($this, 'callbackSource'), $text); + $text = IDF_Template_safePregReplace('#((?:'.$prefix.')(?:\s+r?))([0-9a-f]{1,40}((?:\s+and|\s+or|,)\s+r?[0-9a-f]{1,40})*)\b#i', + array($this, 'callbackCommits'), $text); + $text = IDF_Template_safePregReplace('=(src:)([^\s@#,\(\)\\\\]+(?:(\\\\)[\s@#][^\s@#,\(\)\\\\]+){0,})+(?:\@([^\s#,]+))(?:#(\d+))?=im', + array($this, 'callbackSource'), $text); } if ($wordwrap) $text = Pluf_Text::wrapHtml($text, 69, "\n"); if ($nl2br) $text = nl2br($text); @@ -72,8 +68,6 @@ class IDF_Template_IssueComment extends Pluf_Template_Tag } else { return $text; } - - ini_set('pcre.backtrack_limit', $pcre_backtrack_limit); } /** @@ -101,9 +95,9 @@ class IDF_Template_IssueComment extends Pluf_Template_Tag } return $m[0]; // not existing issue. } - return preg_replace_callback('#(\#)?(\d+)(\#ic\d+)?#', - array($this, 'callbackIssue'), - $m[0]); + return IDF_Template_safePregReplace('#(\#)?(\d+)(\#ic\d+)?#', + array($this, 'callbackIssue'), + $m[0]); } /** @@ -138,7 +132,7 @@ class IDF_Template_IssueComment extends Pluf_Template_Tag return $m[1].call_user_func(array($this, 'callbackCommit'), array($m[2])); } // Multiple commits like 'commits 6e030e6, a25bfc1 and 3c094f8'. - return $m[1].preg_replace_callback('#\b[0-9a-f]{1,40}\b#i', array($this, 'callbackCommit'), $m[2]); + return $m[1].IDF_Template_safePregReplace('#\b[0-9a-f]{1,40}\b#i', array($this, 'callbackCommit'), $m[2]); } /** @@ -170,7 +164,7 @@ class IDF_Template_IssueComment extends Pluf_Template_Tag { $keyword = rtrim($m[1]); if ('reviews' === $keyword) { - return $m[1].preg_replace_callback('#\b(\d+)\b#i', array($this, 'callbackReview'), $m[2]); + return $m[1].IDF_Template_safePregReplace('#\b(\d+)\b#i', array($this, 'callbackReview'), $m[2]); } else if ('review' === $keyword) { return $m[1].call_user_func(array($this, 'callbackReview'), array('', $m[2])); } diff --git a/src/IDF/Template/Markdown.php b/src/IDF/Template/Markdown.php index 9b33a06..2652719 100644 --- a/src/IDF/Template/Markdown.php +++ b/src/IDF/Template/Markdown.php @@ -22,6 +22,7 @@ # ***** END LICENSE BLOCK ***** */ Pluf::loadFunction('Pluf_Text_MarkDown_parse'); +Pluf::loadFunction('IDF_Template_safePregReplace'); /** * Make the links to issues and commits. @@ -34,11 +35,6 @@ class IDF_Template_Markdown extends Pluf_Template_Tag function start($text, $request) { - // PHP sets the backtrack limit quite low, so some regexes may - // fail unexpectedly on large inputs or weird cornercases (see issue 618) - $pcre_backtrack_limit = ini_get('pcre.backtrack_limit'); - ini_set('pcre.backtrack_limit', 10000000); - $this->project = $request->project; $this->request = $request; // Replace like in the issue text @@ -47,22 +43,20 @@ class IDF_Template_Markdown extends Pluf_Template_Tag // Replace [[[path/to/file.mdtext, commit]]] with embedding // the content of the file into the wki page if ($this->request->rights['hasSourceAccess']) { - $text = preg_replace_callback('#\[\[\[([^\,]+)(?:, ([^/]+))?\]\]\]#im', - array($this, 'callbackEmbeddedDoc'), - $text); + $text = IDF_Template_safePregReplace('#\[\[\[([^\,]+)(?:, ([^/]+))?\]\]\]#im', + array($this, 'callbackEmbeddedDoc'), + $text); } // Replace [Page]([[PageName]]) with corresponding link to the page, with link text being Page. - $text = preg_replace_callback('#\[([^\]]+)\]\(\[\[([A-Za-z0-9\-]+)\]\]\)#im', - array($this, 'callbackWikiPage'), - $text); + $text = IDF_Template_safePregReplace('#\[([^\]]+)\]\(\[\[([A-Za-z0-9\-]+)\]\]\)#im', + array($this, 'callbackWikiPage'), + $text); // Replace [[PageName]] with corresponding link to the page. - $text = preg_replace_callback('#\[\[([A-Za-z0-9\-]+)\]\]#im', - array($this, 'callbackWikiPageNoName'), - $text); + $text = IDF_Template_safePregReplace('#\[\[([A-Za-z0-9\-]+)\]\]#im', + array($this, 'callbackWikiPageNoName'), + $text); $filter = new IDF_Template_MarkdownPrefilter(); echo $filter->go(Pluf_Text_MarkDown_parse($text)); - - ini_set('pcre.backtrack_limit', $pcre_backtrack_limit); } function callbackWikiPageNoName($m) diff --git a/src/IDF/Tests/TestDiff.php b/src/IDF/Tests/TestDiff.php index 00f579f..d28ce22 100644 --- a/src/IDF/Tests/TestDiff.php +++ b/src/IDF/Tests/TestDiff.php @@ -32,29 +32,6 @@ class IDF_Tests_TestDiff extends UnitTestCase parent::__construct('Test the diff parser.'); } - public function testGetFile() - { - $lines = array( - 'diff --git a/src/IDF/Form/Register.php b/src/IDF/Form/Register.php', - 'diff --git a/src/IDF/Form/RegisterConfirmation.php b/src/IDF/Form/RegisterConfirmation.php', - 'diff --git a/src/IDF/Form/RegisterInputKey.php b/src/IDF/Form/RegisterInputKey.php', - 'diff --git a/src/IDF/Views.php b/src/IDF/Views.php', - 'diff --git a/src/IDF/conf/views.php b/src/IDF/conf/views.php', - ); - $files = array( - 'src/IDF/Form/Register.php', - 'src/IDF/Form/RegisterConfirmation.php', - 'src/IDF/Form/RegisterInputKey.php', - 'src/IDF/Views.php', - 'src/IDF/conf/views.php', - ); - $i = 0; - foreach ($lines as $line) { - $this->assertEqual($files[$i], IDF_Diff::getFile($line)); - $i++; - } - } - public function testBinaryDiff() { $diff_content = file_get_contents(dirname(__FILE__).'/test-diff.diff'); @@ -90,4 +67,4 @@ class IDF_Tests_TestDiff extends UnitTestCase $diff->files['src/IDF/Scm/Git.php']['chunks'][1][2]); $this->assertEqual(7, count($diff->files['src/IDF/Scm/Git.php']['chunks'][1])); } -} \ No newline at end of file +} diff --git a/src/IDF/Views.php b/src/IDF/Views.php index 685eb83..208299e 100644 --- a/src/IDF/Views.php +++ b/src/IDF/Views.php @@ -377,10 +377,9 @@ class IDF_Views $forgestats['projects'] = count($projects); // Count members - $db =& Pluf::db(); - $sql = "SELECT count(id) as nb FROM indefero_users WHERE first_name != '---'"; - $ret = $db->select ($sql); - $forgestats['members'] = $ret[0]['nb']; + $sql = new Pluf_SQL('first_name != %s', array('---')); + $forgestats['members'] = Pluf::factory('Pluf_User') + ->getCount(array('filter' => $sql->gen())); return $forgestats; } diff --git a/src/IDF/Views/Project.php b/src/IDF/Views/Project.php index a59d0f6..2befafc 100644 --- a/src/IDF/Views/Project.php +++ b/src/IDF/Views/Project.php @@ -121,6 +121,17 @@ class IDF_Views_Project return $classes; } + /** + * This action serves as URI compatibility layer for v1.0. + * + * @deprecated + */ + public function timelineCompat($request, $match) + { + $match[2] = 'all'; + return $this->timeline($request, $match); + } + /** * Timeline of the project. */ @@ -178,6 +189,17 @@ class IDF_Views_Project } + /** + * This action serves as URI compatibility layer for v1.0. + * + * @deprecated + */ + public function timelineFeedCompat($request, $match) + { + $match[2] = 'all'; + return $this->timelineFeed($request, $match); + } + /** * Timeline feed. * @@ -192,7 +214,6 @@ class IDF_Views_Project $prj = $request->project; $model_filter = @$match[2]; - $model_filter = @$match[2]; $all_model_filters = self::getAvailableModelFilters(); if (!array_key_exists($model_filter, $all_model_filters)) { $model_filter = 'all'; diff --git a/src/IDF/Views/Source.php b/src/IDF/Views/Source.php index f92a2d5..a1c0f6c 100644 --- a/src/IDF/Views/Source.php +++ b/src/IDF/Views/Source.php @@ -303,7 +303,8 @@ class IDF_Views_Source $title = sprintf(__('%s Commit Details'), (string) $request->project); $page_title = sprintf(__('%s Commit Details - %s'), (string) $request->project, $commit); $rcommit = IDF_Commit::getOrAdd($cobject, $request->project); - $diff = new IDF_Diff($cobject->diff); + $diff = new IDF_Diff($cobject->diff, $scm->getDiffPathStripLevel()); + $cobject->diff = null; $diff->parse(); $scmConf = $request->conf->getVal('scm', 'git'); try { diff --git a/src/IDF/conf/idf.php-dist b/src/IDF/conf/idf.php-dist index 9e0ed8a..8df9acc 100644 --- a/src/IDF/conf/idf.php-dist +++ b/src/IDF/conf/idf.php-dist @@ -246,7 +246,7 @@ $cfg['template_context_processors'] = array('IDF_Middleware_ContextPreProcessor' $cfg['idf_views'] = dirname(__FILE__).'/urls.php'; # available languages -$cfg['languages'] = array('en', 'fr'); +$cfg['languages'] = array('en', 'fr', 'de', 'es_ES'); # SCM base configuration $cfg['allowed_scm'] = array('git' => 'IDF_Scm_Git', diff --git a/src/IDF/conf/urls.php b/src/IDF/conf/urls.php index e813413..dccf03b 100644 --- a/src/IDF/conf/urls.php +++ b/src/IDF/conf/urls.php @@ -91,6 +91,23 @@ $ctl[] = array('regex' => '#^/p/([\-\w]+)/feed/timeline/(\w+)/token/(.*)/$#', 'method' => 'timelineFeed', 'name' => 'idf_project_timeline_feed_auth'); +$ctl[] = array('regex' => '#^/p/([\-\w]+)/timeline/$#', + 'base' => $base, + 'model' => 'IDF_Views_Project', + 'method' => 'timelineCompat'); + +$ctl[] = array('regex' => '#^/p/([\-\w]+)/feed/timeline/$#', + 'base' => $base, + 'model' => 'IDF_Views_Project', + 'method' => 'timelineFeedCompat', + 'name' => 'idf_project_timeline_feed'); + +$ctl[] = array('regex' => '#^/p/([\-\w]+)/feed/timeline/token/(.*)/$#', + 'base' => $base, + 'model' => 'IDF_Views_Project', + 'method' => 'timelineFeedCompat', + 'name' => 'idf_project_timeline_feed_auth'); + $ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/$#', 'base' => $base, 'model' => 'IDF_Views_Issue', @@ -145,12 +162,12 @@ $ctl[] = array('regex' => '#^/p/([\-\w]+)/issues/watchlist/(\w+)$#', 'base' => $base, 'model' => 'IDF_Views_Issue', 'method' => 'watchList'); - + $ctl[] = array('regex' => '#^/watchlist/(\w+)$#', 'base' => $base, 'model' => 'IDF_Views_Issue', 'method' => 'forgeWatchList'); - + // ---------- SCM ---------------------------------------- $ctl[] = array('regex' => '#^/p/([\-\w]+)/source/help/$#', diff --git a/src/IDF/locale/cs/idf.po b/src/IDF/locale/cs/idf.po index 2041c2b..fd960d4 100644 --- a/src/IDF/locale/cs/idf.po +++ b/src/IDF/locale/cs/idf.po @@ -7,44 +7,183 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\n" "Report-Msgid-Bugs-To: \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" +"POT-Creation-Date: 2011-03-10 10:02+0100\n" +"PO-Revision-Date: 2011-03-04 18:20+0000\n" +"Last-Translator: tommyd \n" "Language-Team: 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/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/IssueComment.php:51 +msgid "issue" +msgstr "předmět k řešení" -#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65 -#: IDF/IssueFile.php:57 IDF/Review/Comment.php:69 IDF/Review.php:80 -#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79 +#: IDF/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/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 +#: 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 +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 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" @@ -55,801 +194,6 @@ 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" @@ -858,454 +202,90 @@ msgstr "třída modelu" msgid "model id" msgstr "id modelu" -#: IDF/gettexttemplates/idf/admin/base.html.php:3 -msgid "Project Summary" -msgstr "" +#: IDF/Gconf.php:73 IDF/Conf.php:61 +msgid "key" +msgstr "klíč" -#: IDF/gettexttemplates/idf/admin/base.html.php:6 -msgid "Issue Tracking" -msgstr "" +#: IDF/Gconf.php:79 IDF/Conf.php:67 +msgid "value" +msgstr "hodnota" -#: 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/gettexttemplates/idf/faq-api.html.php:4 -#: IDF/gettexttemplates/idf/faq.html.php:35 +#: IDF/Views.php:47 IDF/gettexttemplates/idf/faq.html.php:35 #: IDF/gettexttemplates/idf/gadmin/base.html.php:3 +#: IDF/gettexttemplates/idf/faq-api.html.php:4 #: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57 -#: IDF/Views.php:45 msgid "Projects" msgstr "Projekty" +#: IDF/Views.php:90 IDF/gettexttemplates/idf/register/index.html.php:6 +msgid "Create Your Account" +msgstr "Vytvořte si účet" + +#: IDF/Views.php:126 IDF/Views.php:152 +msgid "Confirm Your Account Creation" +msgstr "Potvrďte vytvoření Vašeho účtu" + +#: IDF/Views.php:172 +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:198 IDF/Views.php:222 IDF/Views.php:263 +msgid "Password Recovery" +msgstr "Obnova hesla" + +#: IDF/Views.php:242 +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:284 +msgid "Here to Help You!" +msgstr "Zde k Vaší pomoci!" + +#: IDF/Views.php:300 +msgid "InDefero API (Application Programming Interface)" +msgstr "InDefero API (aplikační programátorský interface)" + +#: IDF/Scm/Mercurial.php:138 IDF/Scm/Git.php:288 +#, php-format +msgid "Folder %1$s not found in commit %2$s." +msgstr "" + +#: IDF/Scm/Mercurial.php:155 IDF/Scm/Git.php:404 +#, php-format +msgid "Not a valid tree: %s." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:79 +msgid "Monotone client key name or hash not in project conf." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:87 IDF/Plugin/SyncMonotone.php:187 +#, php-format +msgid "The key directory %s could not be created." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:98 +#, php-format +msgid "Could not write client key \"%s\"" +msgstr "" + +#: IDF/Scm/Git.php:237 +#, php-format +msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." +msgstr "" + +#: IDF/EmailAddress.php:49 IDF/Key.php:49 +msgid "user" +msgstr "uživatel" + +#: IDF/EmailAddress.php:55 +msgid "email" +msgstr "" + #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

This is simple:

\n" @@ -1352,7 +332,7 @@ msgstr "" #: IDF/gettexttemplates/idf/faq.html.php:15 #: IDF/gettexttemplates/idf/faq.html.php:33 -msgid "What is the API and how to use it?" +msgid "What is the API and how is it used?" msgstr "" #: IDF/gettexttemplates/idf/faq.html.php:17 @@ -1411,37 +391,158 @@ msgstr "" msgid "Alt+4: Search (when available)." msgstr "" -#: IDF/gettexttemplates/idf/gadmin/base.html.php:4 -msgid "People" +#: 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:5 -msgid "Usher" +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You have requested the creation of an account to\n" +"participate in the life of a software project.\n" +"\n" +"To confirm the account please follow this link:\n" +"\n" +"%%url%%\n" +"\n" +"Alternatively, go to this page:\n" +"\n" +"%%urlik%%\n" +"\n" +"and provide the following confirmation key:\n" +"\n" +"%%key%%\n" +"\n" +"If you are not interested any longer in taking\n" +"part in the life of the software project or if\n" +"you can't remember having requested the creation\n" +"of an account, please excuse us and simply ignore\n" +"this email. \n" +"\n" +"Yours faithfully,\n" +"The development team.\n" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/home.html.php:3 -msgid "You have here access to the administration of the forge." +#: IDF/gettexttemplates/idf/register/inputkey.html.php:3 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:3 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3 +msgid "Oops, we found an error in the form." msgstr "" -#: IDF/gettexttemplates/idf/gadmin/home.html.php:4 -#: IDF/gettexttemplates/idf/project/home.html.php:3 -#: IDF/gettexttemplates/idf/project/timeline.html.php:4 -msgid "Welcome" -msgstr "Vítejte" - -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3 -#: IDF/gettexttemplates/idf/main-menu.html.php:6 -msgid "Project List" +#: IDF/gettexttemplates/idf/register/inputkey.html.php:4 +msgid "Confirm Your Account" 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" +#: IDF/gettexttemplates/idf/register/inputkey.html.php:5 +#: IDF/gettexttemplates/idf/register/index.html.php:7 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16 +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7 +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5 +#: IDF/gettexttemplates/idf/wiki/create.html.php:7 +#: IDF/gettexttemplates/idf/wiki/delete.html.php:10 +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7 +#: IDF/gettexttemplates/idf/wiki/update.html.php:7 +#: IDF/gettexttemplates/idf/review/create.html.php:12 +#: IDF/gettexttemplates/idf/review/view.html.php:43 +#: IDF/gettexttemplates/idf/issues/create.html.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:25 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:7 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:8 +msgid "Cancel" +msgstr "Storno" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:6 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:6 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:10 +msgid "Instructions" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 -msgid "Change Project Details" +#: IDF/gettexttemplates/idf/register/inputkey.html.php:7 +msgid "" +"Use your email software to read your emails and open your confirmation " +"email. Either click directly on the confirmation link or copy/paste the " +"confirmation key in the box and submit the form." +msgstr "" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:8 +msgid "" +"Just after providing the confirmation key, you will be able to set your " +"password and start using this website fully." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:3 +msgid "" +"Read the terms and conditions " +"– basically \"Please be nice, we respect you\"." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:4 +#, php-format +msgid "" +"With your account, you will able to participate in the life of all the " +"projects hosted here. Participating in a software project must be fun, so if " +"you have troubles, you can let us know about your issues " +"at anytime!" +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:5 +msgid "Oops, please check the provided login and email address to register." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:8 +msgid "" +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:9 +msgid "Did you know?" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:3 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:3 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:3 +msgid "Oops, please check the form for errors." +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:4 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4 +msgid "Login:" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 +msgid "Email:" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:6 +msgid "Enable Your Account" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 +msgid "" +"This is the last step, but just be sure to have the cookies enabled 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/create.html.php:3 @@ -1464,6 +565,19 @@ 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." @@ -1473,6 +587,18 @@ 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 "" @@ -1505,6 +631,15 @@ 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 "" @@ -1514,6 +649,12 @@ 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 "" @@ -1537,11 +678,18 @@ msgid "Repositories:" msgstr "" #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5 -#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11 #: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11 msgid "Attachments:" msgstr "Přílohy:" +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:13 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:10 +#: IDF/gettexttemplates/idf/downloads/view.html.php:15 +msgid "Downloads:" +msgstr "" + #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7 msgid "Database:" msgstr "" @@ -1550,6 +698,16 @@ 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." @@ -1569,29 +727,35 @@ 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/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" +#: 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: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" +#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 +msgid "Change Project Details" msgstr "" #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3 msgid "The form contains some errors. Please correct them to create the user." msgstr "" +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5 +msgid "Create User" +msgstr "" + #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6 msgid "The user password will be sent by email to the user." msgstr "" @@ -1644,13 +808,6 @@ 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" @@ -1660,21 +817,14 @@ msgstr "" msgid "Administrative" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 -msgid "Configured servers" +#: 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: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" +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" msgstr "" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3 @@ -1777,9 +927,1006 @@ msgstr "" msgid "usher is shut down, not running and not accepting connections" msgstr "" -#: IDF/gettexttemplates/idf/index.atom.php:3 +#: 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 #, php-format -msgid "Personal project feed for %%user%%." +msgid "" +"If you don't have an account yet, you can create one here." +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:4 +msgid "What is your account information?" +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:5 +msgid "My login is" +msgstr "Můj login je" + +#: 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 "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 +msgid "Welcome." +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:10 +msgid "It takes less than a minute to create your account." +msgstr "" + +#: IDF/gettexttemplates/idf/user/public.html.php:3 +#, 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 "Secondary Emails" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +msgid "Extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 +msgid "" +"This password is used to access some of the external systems managed by our " +"infrastructure. It will be regenerated if you change your password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "API key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +msgid "Update Your Account" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Your Current Public Keys" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +msgid "Delete this key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 +msgid "Your additional email addresses" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 +msgid "Delete this address" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:18 +msgid "" +"If possible, use your real name. By using your real name, people will have " +"more trust in your comments and remarks." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:19 +msgid "" +"The extra password is used to access some of the external systems and the " +"API key is used to interact with this website using a program." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:20 +msgid "Show API key and extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/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 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 "" +"Oops, please check the provided login or email address to recover your " +"password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4 +msgid "Recover My Password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6 +msgid "" +"Provide either your login or email address, if a corresponding user is found " +"in the database, we will send you an email with the details on how to reset " +"your password." +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:3 +#: IDF/gettexttemplates/idf/wiki/update.html.php:3 +msgid "Preview of the Page" +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:4 +msgid "The form contains some errors. Please correct them to create the page." +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:5 +#: IDF/gettexttemplates/idf/wiki/update.html.php:5 +#: IDF/gettexttemplates/idf/issues/create.html.php:11 +#: IDF/gettexttemplates/idf/issues/create.html.php:13 +#: IDF/gettexttemplates/idf/issues/view.html.php:22 +#: IDF/gettexttemplates/idf/issues/view.html.php:24 +msgid "Preview" +msgstr "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:175 +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 +#: IDF/gettexttemplates/idf/source/commit.html.rej.php:4 +#: IDF/gettexttemplates/idf/source/commit.html.orig.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 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/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/source/commit.html.orig.php:7 +#: IDF/gettexttemplates/idf/review/view.html.php:28 +msgid "Commit:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8 +msgid "Created at:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10 +msgid "Commit details:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:3 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:3 +#, php-format +msgid "%%ndiff%% diff" +msgid_plural "%%ndiff%% diffs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:4 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:4 +msgid "Date:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:5 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:5 +#: IDF/gettexttemplates/idf/review/view.html.php:27 +msgid "Author:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:6 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:6 +msgid "Branch:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:8 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:8 +#: IDF/gettexttemplates/idf/review/view.html.php:29 +msgid "View corresponding source tree" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:9 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:9 +msgid "Parents:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:10 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:10 +#: IDF/gettexttemplates/idf/source/changelog.html.php:6 +msgid "View corresponding commit" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:11 +#: IDF/gettexttemplates/idf/source/commit.html.rej.php:3 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:11 +msgid "Message:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:13 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:13 +msgid "deleted" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.php:17 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:17 +msgid "full" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:15 +msgid "renamed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:16 +msgid "added" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:18 +msgid "modified" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:19 +msgid "properies changed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:20 +msgid "removed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:21 +msgid "File differences" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/review/view.html.php:34 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 +msgid "Archive" +msgstr "Archív" + +#: IDF/gettexttemplates/idf/source/commit.html.php:23 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:23 +#: IDF/gettexttemplates/idf/review/view.html.php:35 +msgid "Download the corresponding diff file" +msgstr "" + +#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 +#, 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:292 IDF/Form/Upload.php:59 +msgid "File" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/changelog.html.php:3 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:7 +#: IDF/Views/Project.php:152 +msgid "Age" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8 +#: IDF/gettexttemplates/idf/source/changelog.html.php:4 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:8 +msgid "Message" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:9 +#: IDF/Views/Download.php:66 IDF/Views/Download.php:294 +msgid "Size" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:10 +msgid ":" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:12 +msgid "Download this version" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:13 +msgid "or" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:14 +#: IDF/gettexttemplates/idf/main-menu.html.php:10 +msgid "Help" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the monotone software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6 +#: IDF/gettexttemplates/idf/source/git/help.html.php:7 +msgid "To make a first commit in the repository, perform the following steps:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7 +#: IDF/gettexttemplates/idf/source/git/help.html.php:8 +#, php-format +msgid "Find here more details on how to access %%project%% source code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8 +#: IDF/gettexttemplates/idf/source/git/help.html.php:9 +msgid "Command-Line Access" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9 +#: IDF/gettexttemplates/idf/source/git/help.html.php:10 +msgid "First Commit" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15 +#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3 +msgid "Revision:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16 +#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4 +msgid "Go to revision" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11 +msgid "Property" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/file.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12 +msgid "set to:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8 +msgid "Rev" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17 +msgid "Branches:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18 +msgid "Tags:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the subversion software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6 +#, php-format +msgid "" +"To get write access to the repository, you need to use your username and " +"your extra password." +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9 +msgid "Write Access Authentication" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the Mercurial software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:3 +msgid "Source Tree" +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:4 +msgid "Change Log" +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:5 +#: IDF/gettexttemplates/idf/source/changelog.html.php:7 +#: IDF/Form/ReviewCreate.php:74 +msgid "Commit" +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:6 +msgid "How To Get The Code" +msgstr "" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:5 +msgid "Parent:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:8 +msgid "by" +msgstr "" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the git software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:6 +#, php-format +msgid "" +"You may need to provide your SSH key. The " +"synchronization of your SSH key can take a couple of minutes. You can learn " +"more about SSH key authentication." +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:3 +#, php-format +msgid "" +"Welcome, %%user%%." +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:4 +msgid "Sign Out" +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:5 +msgid "Sign in or create your account" +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:7 +#: IDF/gettexttemplates/idf/index.html.php:6 +#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77 +msgid "Private project" +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 +msgid "Forge Management" +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:9 +msgid "Help and accessibility features" msgstr "" #: IDF/gettexttemplates/idf/index.html.php:4 @@ -1787,117 +1934,409 @@ msgid "No projects managed with InDefero were found." msgstr "" #: IDF/gettexttemplates/idf/index.html.php:7 -#, fuzzy -msgid "Projects:" -msgstr "Projekty" +msgid "Forge statistics" +msgstr "" #: IDF/gettexttemplates/idf/index.html.php:8 -msgid "Members:" +msgid "Projects:" msgstr "" #: IDF/gettexttemplates/idf/index.html.php:9 -#, fuzzy -msgid "Issues:" -msgstr "Předmět k řešení:" +msgid "Members:" +msgstr "" #: IDF/gettexttemplates/idf/index.html.php:10 -msgid "Commits:" +msgid "Issues:" msgstr "" #: IDF/gettexttemplates/idf/index.html.php:11 -#, fuzzy -msgid "Documentations:" -msgstr "Doporučená dokumentace" - -#: IDF/gettexttemplates/idf/index.html.php:13 -#, fuzzy -msgid "Code reviews:" -msgstr "Náhled" - -#: 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" +msgid "Commits:" msgstr "" -#: IDF/gettexttemplates/idf/issues/base.html.php:7 -#: IDF/gettexttemplates/idf/wiki/base.html.php:6 -msgid "Search" -msgstr "Hledat" +#: IDF/gettexttemplates/idf/index.html.php:12 +msgid "Documentations:" +msgstr "" -#: IDF/gettexttemplates/idf/issues/base.html.php:8 -msgid "Back to the issue" -msgstr "Zpátky k předmětu" +#: IDF/gettexttemplates/idf/index.html.php:14 +msgid "Code reviews:" +msgstr "" -#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.php:3 #, php-format msgid "" -"

Open issues: %%open%%

\n" -"

Closed issues: %%closed%%

\n" +"Sign in or create your account to create issues or " +"add comments" 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/base-full.html.php:4 +#: IDF/gettexttemplates/idf/base.html.php:4 +msgid "Project Home" +msgstr "" -#: IDF/gettexttemplates/idf/issues/by-label.html.php:8 -msgid "Completion:" -msgstr "Doplňování:" +#: IDF/gettexttemplates/idf/base-full.html.php:6 +#: IDF/gettexttemplates/idf/admin/base.html.php:5 +#: IDF/gettexttemplates/idf/base.html.php:6 IDF/Form/TabsConf.php:40 +msgid "Documentation" +msgstr "" + +#: IDF/gettexttemplates/idf/base-full.html.php:8 +#: IDF/gettexttemplates/idf/admin/base.html.php:7 +#: IDF/gettexttemplates/idf/base.html.php:8 IDF/Form/TabsConf.php:41 +msgid "Source" +msgstr "" + +#: IDF/gettexttemplates/idf/base-full.html.php:9 +#: IDF/gettexttemplates/idf/base.html.php:9 IDF/Form/TabsConf.php:39 +msgid "Code Review" +msgstr "" + +#: IDF/gettexttemplates/idf/base-full.html.php:10 +#: IDF/gettexttemplates/idf/base.html.php:10 +msgid "Project Management" +msgstr "" + +#: IDF/gettexttemplates/idf/review/create.html.php:3 +#, fuzzy +msgid "" +"

To start a code review, you need to provide:

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

Před odesláním předmetu k řešení, nezapomeňte poskytnout následující " +"informace:

\n" +"
    \n" +"
  • Kroky potřebné pro zopakování problému.
  • \n" +"
  • Verzi softwaru a typ operačního systému, který používate.
  • \n" +"
  • Jakákoli informace, která může pomoci vývojářům vyřešit problém.
  • \n" +"
  • Neposkytujte žádná hesla ani jiné citlivé informace!\n" +"
" + +#: IDF/gettexttemplates/idf/review/create.html.php:9 +msgid "" +"The form contains some errors. Please correct them to submit the code review." +msgstr "" + +#: IDF/gettexttemplates/idf/review/create.html.php:10 +msgid "" +"Select the commit against which you created your patch to be sure it applies " +"correctly." +msgstr "" + +#: IDF/gettexttemplates/idf/review/create.html.php:11 +#: IDF/gettexttemplates/idf/review/index.html.php:3 +#: IDF/gettexttemplates/idf/review/base.html.php:4 IDF/Views/Review.php:83 +msgid "Start Code Review" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3 +msgid "The following review has been updated:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4 +#, php-format +msgid "By %%who%%, %%c.creation_dtime%%:" +msgstr "Kým %%who%%, %%c.creation_dtime%%:" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5 +#, php-format +msgid "" +"By %%who%%, %%c.creation_dtime%%, on file:\n" +"%%c.cfile%%\n" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:11 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:8 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:8 +msgid "Reported by:" +msgstr "Nahlášeno kým:" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9 +msgid "URL:" +msgstr "URL:" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:14 +msgid "General comments (last first):" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15 +msgid "Detailed file comments (last first):" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:16 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10 +msgid "Review:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:4 +#, php-format +msgid "%%nc%% comment" +msgid_plural "%%nc%% comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: IDF/gettexttemplates/idf/review/view.html.php:5 +msgid "" +"Code review is a process in which\n" +"after or before changes are commited into the code repository,\n" +"different people discuss the code changes. The goal is\n" +"to improve the quality of the code and the\n" +"contributions, as such, you must be pragmatic when writing\n" +"your review. Correctly mention the line numbers (in the old or in the\n" +"new file) and try to keep a good balance between seriousness and fun.\n" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:13 +msgid "" +"\n" +"Proposing code for review is intimidating, you know\n" +"you will receive critics, so please, as a reviewer, keep this\n" +"process fun, use it to help your contributor learn your\n" +"coding standards and the structure of the code and make them want\n" +"to propose more contributions.\n" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:20 +#, php-format +msgid "" +"Comment %%i%% by %%who%%, " +"%%c.creation_dtime%%" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:21 +#, php-format +msgid "Your comments on the changes in file %%file%%:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:22 +#: IDF/gettexttemplates/idf/issues/view.html.php:4 +#, php-format +msgid "" +"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%" +msgstr "" +"Komentář %%i%% kým %%submitter%%, %%c.creation_dtime%" +"%" + +#: IDF/gettexttemplates/idf/review/view.html.php:23 +#, php-format +msgid "Sign in to participate in the review." +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:24 +msgid "" +"The form contains some errors. Please correct them to submit your review." +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:31 +msgid "Reviewers:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:32 +msgid "No reviewers at the moment." +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:33 +msgid "Files:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:36 +msgid "How to Participate in a Code Review" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:37 +msgid "Old" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:38 +msgid "New" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:39 +msgid "General Comments" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:42 +msgid "Submit Code Review" +msgstr "" + +#: IDF/gettexttemplates/idf/review/base-full.html.php:3 +#: IDF/gettexttemplates/idf/review/base.html.php:3 +msgid "Open Reviews" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:3 +msgid "The following review has been created:" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/members.html.php:13 +#: IDF/gettexttemplates/idf/admin/tabs.html.php:15 +#: IDF/gettexttemplates/idf/admin/summary.html.php:8 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:8 +#: IDF/gettexttemplates/idf/admin/source.html.php:31 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8 +#: IDF/gettexttemplates/idf/admin/downloads.html.php:8 +msgid "Save Changes" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:3 +msgid "" +"\n" +"Only project members and admins have write access to the source.
\n" +"If you restrict the access to the source, anonymous access is
\n" +"not provided and the users must authenticate themselves with their
\n" +"password or SSH key." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:8 +msgid "" +"You can configure here the project tabs access rights and notification " +"emails." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:9 +#, php-format +msgid "" +"Notification emails will be sent from the %%from_email%% " +"address, if you send the email to a mailing list, you may need to register " +"this email address. Multiple email addresses must be separated through " +"commas (','). If you do not want to send emails for a given type of changes, " +"simply leave the corresponding field empty." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:10 +msgid "" +"If you mark a project as private, only the project members and " +"administrators, together with the extra authorized users you provide will " +"have access to the project. You will still be able to define further access " +"rights for the different tabs but the \"Open to all\" and \"Signed in users" +"\" will default to authorized users only." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:11 +msgid "" +"Specify each person by its login. Each person must have already registered " +"with the given login. Separate the logins with commas and/or new lines." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:12 +msgid "" +"The form contains some errors. Please correct them to update the access " +"rights." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:13 +msgid "Access Rights" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:14 +msgid "Notification Email" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/summary.html.php:3 +#, php-format +msgid "" +"\n" +"

Instructions:

\n" +"

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

\n" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/summary.html.php:7 +msgid "" +"The form contains some errors. Please correct them to update the summary." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/wiki.html.php:3 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3 +#: IDF/gettexttemplates/idf/admin/downloads.html.php:3 +msgid "" +"\n" +"

Instructions:

\n" +"

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

\n" +"

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

\n" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/source.html.php:3 +msgid "You can find here the current repository configuration of your project." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/source.html.php:4 +msgid "" +"

The webhook URL setting specifies a URL to which a HTTP POST\n" +"request is sent after each repository commit. If this field is empty,\n" +"notifications are disabled.

\n" +"\n" +"

Only properly-escaped HTTP URLs are supported, for " +"example:

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

In addition, the URL may contain the following \"%\" notation, which\n" +"will be replaced with specific project values for each commit:

\n" +"\n" +"
    \n" +"
  • %p - project name
  • \n" +"
  • %r - revision number
  • \n" +"
\n" +"\n" +"

For example, committing revision 123 to project 'my-project' with\n" +"post-commit URL http://mydomain.com/%p/%r would send a request to\n" +"http://mydomain.com/my-project/123.

" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/source.html.php:26 +msgid "" +"The form contains some errors. Please correct them to update the source " +"configuration." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/source.html.php:27 +msgid "Repository type:" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/source.html.php:28 +msgid "Repository access:" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/source.html.php:29 +msgid "Repository size:" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/source.html.php:30 +msgid "Post-commit authentication key:" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/base.html.php:3 +msgid "Project Summary" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/base.html.php:6 +msgid "Issue Tracking" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/base.html.php:8 +msgid "Project Members" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/base.html.php:9 +msgid "Tabs Access and Notifications" +msgstr "" #: IDF/gettexttemplates/idf/issues/create.html.php:3 msgid "" @@ -1927,15 +2366,6 @@ 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í" @@ -1952,52 +2382,65 @@ msgstr "Přiložit soubor" msgid "Attach another file" msgstr "Přiložit další soubor" -#: 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: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: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/search.html.php:4 +msgid "Found issues:" +msgstr "Nalezené předměty k řešení:" -#: 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: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: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%%

" +"

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í:" #: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3 msgid "" @@ -2005,89 +2448,11 @@ 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." @@ -2154,79 +2519,63 @@ msgstr "" msgid "Followed by:" msgstr "" -#: IDF/gettexttemplates/idf/login_form.html.php:3 +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 #, php-format msgid "" -"If you don't have an account yet, you can create one here." -msgstr "" +"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/login_form.html.php:4 -#, fuzzy -msgid "What is your account information?" -msgstr "Jaký je váš login?" - -#: 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 +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 #, php-format msgid "" -"Welcome, %%user%%." +"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" msgstr "" -#: IDF/gettexttemplates/idf/main-menu.html.php:4 -msgid "Sign Out" -msgstr "" +#: IDF/gettexttemplates/idf/issues/base.html.php:8 +msgid "Back to the issue" +msgstr "Zpátky k předmětu" -#: IDF/gettexttemplates/idf/main-menu.html.php:5 -msgid "Sign in or create your account" -msgstr "" +#: IDF/gettexttemplates/idf/project/timeline.html.php:3 +msgid "Latest updates" +msgstr "Poslední změny" -#: 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/home.html.php:4 #: IDF/gettexttemplates/idf/project/timeline.html.php:5 +#: IDF/gettexttemplates/idf/project/home.html.php:4 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í" @@ -2252,1089 +2601,108 @@ msgstr "Administrátoři" msgid "Happy Crew" msgstr "Šťastný team" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" -msgstr "Poslední změny" - -#: IDF/gettexttemplates/idf/project/timeline.html.php:6 -msgid "Filter by type" +#: 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/register/confirmation-email.txt.php:3 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 #, 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" +"Instead of deleting the file, you could mark it as " +"deprecated." 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." +#: IDF/gettexttemplates/idf/downloads/delete.html.php:6 +msgid "Delete File" msgstr "" -#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 -msgid "Email:" +#: 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:6 -msgid "Enable Your Account" -msgstr "" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 msgid "" -"This is the last step, but just be sure to have the cookies enabled to log in afterwards." +"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/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 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 #, 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!" +"You can use the Markdown syntax for the description." msgstr "" -#: IDF/gettexttemplates/idf/register/index.html.php:5 -msgid "Oups, please check the provided login and email address to register." +#: 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:6 IDF/Views.php:88 -msgid "Create Your Account" -msgstr "Vytvořte si účet" - -#: 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." +#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 +msgid "Submit File" msgstr "" -#: IDF/gettexttemplates/idf/register/index.html.php:9 -msgid "Did you know?" +#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3 +msgid "Details" 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 +#: 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:214 +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 msgid "" -"By %%who%%, %%c.creation_dtime%%, on file:\n" -"%%c.cfile%%\n" +"Attention! This file is marked as deprecated, download it " +"only if you are sure you need this specific version." msgstr "" -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:14 -msgid "General comments (last first):" +#: IDF/gettexttemplates/idf/downloads/view.html.php:5 +msgid "Changes" msgstr "" -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15 -msgid "Detailed file comments (last first):" +#: 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/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." +#: IDF/gettexttemplates/idf/downloads/view.html.php:7 +msgid "Update File" msgstr "" -#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9 -#: IDF/gettexttemplates/idf/source/svn/help.html.php:9 -msgid "Write Access Authentication" +#: IDF/gettexttemplates/idf/downloads/view.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:11 +msgid "Remove this file" 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." +#: IDF/gettexttemplates/idf/downloads/view.html.php:12 +msgid "Delete this file" 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:" +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3 +msgid "A new file is available for download:" 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" +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6 +msgid "Submitted by:" msgstr "" -#: IDF/gettexttemplates/idf/source/svn/file.html.php:6 -#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11 -msgid "Property" +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8 +msgid "Download:" 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" @@ -3359,147 +2727,6 @@ msgstr "obrázek" msgid "Other" msgstr "Ostatní" -#: 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/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." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:93 IDF/Plugin/SyncMonotone.php:447 -msgid "\"mtn_usher_conf\" does not exist or is not writable." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:100 -#, php-format -msgid "Could not find mtn-post-push script \"%s\"." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:135 -#, php-format -msgid "The configuration file %s is missing." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:144 -#, php-format -msgid "The project path %s already exists." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:150 -#, php-format -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" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:243 -#, php-format -msgid "Could not create configuration directory \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 -#, php-format -msgid "Could not create symlink \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:269 -#, php-format -msgid "Could not write configuration file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 -#, php-format -msgid "Could not parse usher configuration in \"%s\": %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:295 -#, php-format -msgid "usher configuration already contains a server entry named \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 -#, php-format -msgid "Could not write usher configuration file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:366 -#, php-format -msgid "Could not write write-permissions file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:389 -#, php-format -msgid "Could not write read-permissions file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:406 -#, php-format -msgid "Could not remove symlink \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:465 -#, php-format -msgid "One or more paths underknees %s could not be deleted." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:477 -#, php-format -msgid "Could not delete client private key %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676 -#, php-format -msgid "Could not parse read-permissions for project \"%s\": %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 -#, php-format -msgid "Could not write read-permissions for project \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 -#, php-format -msgid "Could not write write-permissions file for project \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:790 -#, php-format -msgid "The project path %s does not exists." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:808 -#, php-format -msgid "The command \"%s\" could not be executed." -msgstr "" - #: IDF/Project.php:62 IDF/Tag.php:66 msgid "name" msgstr "jméno" @@ -3520,6 +2747,11 @@ msgstr "" 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" @@ -3537,82 +2769,6 @@ msgstr "soukromé" msgid "Project \"%s\" not found." msgstr "Projekt \"%s\" nenalezen." -#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80 -msgid "patch" -msgstr "" - -#: IDF/Review/Comment.php:83 -msgid "vote" -msgstr "" - -#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151 -#, php-format -msgid "" -"Review %3$d, %4$s" -msgstr "" - -#: IDF/Review/Comment.php:141 -#, php-format -msgid "Update of review %d, by %s" -msgstr "" - -#: IDF/Review/Comment.php:151 -#, php-format -msgid "%s: Updated review %d - %s" -msgstr "" - -#: IDF/Review/Comment.php:216 -#, php-format -msgid "Updated Code Review %s - %s (%s)" -msgstr "" - -#: IDF/Review/Patch.php:52 -msgid "review" -msgstr "" - -#: IDF/Review/Patch.php:67 -msgid "commit" -msgstr "" - -#: IDF/Review/Patch.php:153 -#, php-format -msgid "Creation of review %d, by %s" -msgstr "" - -#: IDF/Review/Patch.php:163 -#, php-format -msgid "%s: Creation of Review %d - %s" -msgstr "" - -#: IDF/Review/Patch.php:204 -#, php-format -msgid "New Code Review %s - %s (%s)" -msgstr "" - -#: IDF/Scm/Git.php: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 "" @@ -3629,200 +2785,160 @@ msgstr "" msgid "ponderated occurence" msgstr "" -#: IDF/Tag.php:59 -msgid "tag class" -msgstr "třída tagu" +#: IDF/Issue.php:76 +msgid "owner" +msgstr "vlastník" -#: IDF/Tag.php:60 -msgid "The class of the tag." -msgstr "Třída tagu." +#: IDF/Issue.php:84 IDF/WikiPage.php:86 +msgid "interested users" +msgstr "zainteresovaní uživatelé" -#: IDF/Tag.php:73 -msgid "lcname" -msgstr "lcname" +#: 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/Tag.php:74 -msgid "Lower case version of the name for fast searching." -msgstr "Jméno souboru s malými písmenky pro rychlé vyhledávání." - -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" -msgstr "Vytvořit tuto dokumentační stránku" - -#: IDF/Template/ShowUser.php:51 -msgid "Anonymous" -msgstr "Anonym" - -#: IDF/Template/ShowUser.php:54 -msgid "Me" -msgstr "Já" - -#: IDF/Timeline/Paginator.php:49 -msgid "Today" -msgstr "" - -#: IDF/Upload.php:70 -msgid "file" -msgstr "soubor" - -#: IDF/Upload.php:71 -msgid "The path is relative to the upload path." -msgstr "Cesta je relativní k adresáři nahrávaných souborů." - -#: IDF/Upload.php:78 -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 +#: IDF/Issue.php:196 #, php-format -msgid "Download %2$d, %3$s" -msgstr "Stáhnout %2$d, %3$s" +msgid "Creation of issue %d, by %s" +msgstr "Vytvoření předmět %d, by %s" -#: IDF/Upload.php:192 +#: IDF/Issue.php:206 #, php-format -msgid "Addition of download %d, by %s" -msgstr "Soubor %d přidán, kým - %s" +msgid "%s: Issue %d created - %s" +msgstr "%s: Předmět %d vytvořen - %s" -#: IDF/Upload.php:202 +#: IDF/Issue.php:272 #, php-format -msgid "%s: Download %d added - %s" -msgstr "%s: Soubor %d přidán - %s" +msgid "Issue %s - %s (%s)" +msgstr "Předmět k řešení %s - %s (%s)" -#: IDF/Upload.php:244 +#: IDF/Issue.php:318 #, php-format -msgid "New download - %s (%s)" -msgstr "Nové stažení - %s (%s)" +msgid "Updated Issue %s - %s (%s)" +msgstr "Předmět aktualizován %s - %s (%s)" -#: IDF/Views/Admin.php:60 -msgid "This table shows the projects in the forge." +#: IDF/Views/Wiki.php:41 +#, php-format +msgid "%s Documentation" msgstr "" -#: IDF/Views/Admin.php:65 -msgid "Short Name" +#: IDF/Views/Wiki.php:48 +msgid "This table shows the documentation pages." msgstr "" -#: IDF/Views/Admin.php:67 -msgid "Repository Size" +#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:106 IDF/Views/Wiki.php:147 +msgid "Page Title" msgstr "" -#: IDF/Views/Admin.php:73 -msgid "No projects were found." +#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:107 IDF/Views/Wiki.php:148 +#: 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/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/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:312 +#: 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:312 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 #, 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 +#: IDF/Views/Wiki.php:324 #, php-format -msgid "Delete %s Project" +msgid "The page %s has been updated." msgstr "" -#: IDF/Views/Admin.php:167 -msgid "The project has been deleted." +#: IDF/Views/Wiki.php:362 +msgid "The documentation page 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 +#: IDF/Views/Wiki.php:370 #, php-format -msgid "The user %s has been created." +msgid "Delete Page %s" 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 +#: IDF/Views/Source.php:40 #, php-format -msgid "The server \"%s\" has been started" +msgid "%s Source Help" msgstr "" -#: IDF/Views/Admin.php:420 +#: IDF/Views/Source.php:58 #, php-format -msgid "The server \"%s\" has been stopped" +msgid "%s Invalid Revision" msgstr "" -#: IDF/Views/Admin.php:425 +#: IDF/Views/Source.php:81 #, php-format -msgid "The server \"%s\" has been killed" +msgid "%s Ambiguous Revision" msgstr "" -#: IDF/Views/Admin.php:445 +#: IDF/Views/Source.php:106 #, php-format -msgid "Open connections for \"%s\"" +msgid "%1$s %2$s Change Log" msgstr "" -#: IDF/Views/Admin.php:450 +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 #, php-format -msgid "no connections for server \"%s\"" +msgid "%1$s %2$s Source Tree" msgstr "" -#: IDF/Views/Admin.php:471 -msgid "Yes" -msgstr "Ano" +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" +msgstr "" -#: IDF/Views/Admin.php:471 -msgid "No" +#: IDF/Views/Source.php:304 +#, php-format +msgid "%s Commit Details - %s" msgstr "" #: IDF/Views/Download.php:45 @@ -3877,6 +2993,113 @@ 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" @@ -3888,13 +3111,21 @@ 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 +#: IDF/Views/Issue.php:620 IDF/Views/User.php:81 IDF/Views/Review.php:57 msgid "Id" msgstr "" +#: 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/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:141 IDF/Views/Issue.php:223 #: IDF/Views/Issue.php:298 IDF/Views/Issue.php:385 IDF/Views/Issue.php:564 -#: IDF/Views/Issue.php:623 IDF/Views/Review.php:60 IDF/Views/User.php:85 +#: IDF/Views/Issue.php:623 IDF/Views/User.php:85 IDF/Views/Review.php:60 msgid "Last Updated" msgstr "" @@ -4033,91 +3264,46 @@ msgstr "Předměty k řešení byl přidán do vašeho seznamu ke sledování." msgid "On your watch list." msgstr "Na vašem sledovacím seznamu." -#: IDF/Views/Project.php:72 -msgid "All Updates" +#: IDF/Views/User.php:59 +msgid "Your Dashboard - Working Issues" msgstr "" -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" +#: IDF/Views/User.php:62 +msgid "Your Dashboard - Submitted Issues" msgstr "" -#: IDF/Views/Project.php:76 -msgid "Documents" +#: IDF/Views/User.php:89 +msgid "No issues are assigned to you, yeah!" msgstr "" -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" +#: IDF/Views/User.php:89 +msgid "All the issues you submitted are fixed, yeah!" msgstr "" -#: IDF/Views/Project.php:142 -msgid "This table shows the project updates." +#: IDF/Views/User.php:121 +msgid "Your personal information has been updated." msgstr "" -#: IDF/Views/Project.php:153 -msgid "Change" +#: IDF/Views/User.php:133 +msgid "Your Account" msgstr "" -#: IDF/Views/Project.php:157 -msgid "No changes were found." +#: IDF/Views/User.php:157 +msgid "The public key has been deleted." msgstr "" -#: IDF/Views/Project.php:248 +#: IDF/Views/User.php:177 +#, fuzzy +msgid "The address has been deleted." +msgstr "Následující předmět k řešení byl aktualizován:" + +#: IDF/Views/User.php:200 +msgid "Confirm The Email Change" +msgstr "" + +#: IDF/Views/User.php:232 #, 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." +msgid "Your new email address \"%s\" has been validated. Thank you!" msgstr "" #: IDF/Views/Review.php:41 @@ -4148,208 +3334,845 @@ msgstr "" msgid "Your code review %d has been published." msgstr "" -#: IDF/Views/Source.php:40 +#: 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 "%s Source Help" +msgid "Delete %s Project" msgstr "" -#: IDF/Views/Source.php:58 +#: 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 "%s Invalid Revision" +msgid "The user %s has been created." msgstr "" -#: IDF/Views/Source.php:81 +#: 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 "%s Ambiguous Revision" +msgid "The server \"%s\" has been started" msgstr "" -#: IDF/Views/Source.php:106 +#: IDF/Views/Admin.php:420 #, php-format -msgid "%1$s %2$s Change Log" +msgid "The server \"%s\" has been stopped" msgstr "" -#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#: IDF/Views/Admin.php:425 #, php-format -msgid "%1$s %2$s Source Tree" +msgid "The server \"%s\" has been killed" msgstr "" -#: IDF/Views/Source.php:303 +#: IDF/Views/Admin.php:445 #, php-format -msgid "%s Commit Details" +msgid "Open connections for \"%s\"" msgstr "" -#: IDF/Views/Source.php:304 +#: IDF/Views/Admin.php:450 #, php-format -msgid "%s Commit Details - %s" +msgid "no connections for server \"%s\"" msgstr "" -#: IDF/Views/User.php:59 -msgid "Your Dashboard - Working Issues" +#: IDF/Views/Admin.php:471 +msgid "Yes" +msgstr "Ano" + +#: IDF/Views/Admin.php:471 +msgid "No" 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 +#: IDF/Form/WikiCreate.php:38 msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." +"# 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 "" -"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/Form/WikiCreate.php:57 +msgid "PageName" +msgstr "" -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" -msgstr "InDefero API (aplikační programátorský interface)" +#: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50 +msgid "Page title" +msgstr "" -#: IDF/WikiPage.php:62 -msgid "title" -msgstr "nadpis" - -#: IDF/WikiPage.php:63 +#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56 msgid "" -"The title of the page must only contain letters, digits or the dash " -"character. For example: My-new-Wiki-Page." +"The page name must contains only letters, digits and the dash (-) character." msgstr "" -"Nadpis musí obsahovat pouze písmena, čísla nebo pomlčku. Např. Moje-nova-" -"WiKi-Stranka." -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." -msgstr "Jednořádkový popis obsahu stránky." +#: 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:101 IDF/Form/IssueCreate.php:62 +#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 +msgid "Description" +msgstr "" -#: IDF/WikiPage.php:196 IDF/WikiRevision.php:167 +#: 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 "%2$s, %3$s" -msgstr "%2$s, %3$s" +msgid "You cannot provide more than label from the %s class to a page." +msgstr "" -#: IDF/WikiPage.php:198 -#, php-format -msgid "Creation of page %s, by %s" -msgstr "Stránka %s, vytvořena %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/WikiPage.php:208 +#: 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:112 +#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 +#: IDF/Form/UserAccount.php:216 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 +msgid "For security reasons, 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 "%s: Documentation page %s added - %s" -msgstr "%s: Stránka dokumentace %s přidána - %s" +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 +msgid "" +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is sent directly to the user." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 +#: IDF/Form/UserAccount.php:66 +msgid "Language" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161 +msgid "Add a public key" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:92 +msgid "" +"Paste a SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:157 +msgid "Your details to access your forge." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:420 +#: IDF/Form/UserAccount.php:429 +#, 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 through HTTP or HTTPS is allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:201 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashs and dots as separators." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101 +msgid "This master branch is already used. Please select another one." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:222 +msgid "" +"This shortname contains illegal characters, please use only letters, digits " +"and dash (-)." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:225 +msgid "The shortname cannot start with the dash (-) character." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:228 +msgid "The shortname cannot end with the dash (-) character." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:233 +msgid "This shortname is already used. Please select another one." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php: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 guess, 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: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:164 +msgid "If you give staff rights to a user, you really need to trust them." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:176 +msgid "" +"If the user is not getting the confirmation email or is abusing the system, " +"you can directly enable or disable their account here." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:274 +msgid "--- is not a valid first name." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:290 +msgid "" +"A user with this email already exists, please provide another email address." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:389 +msgid "For security reason, you cannot upload a file with this extension." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:452 +msgid "The passwords do not match. Please give them again." +msgstr "" + +#: IDF/Form/Admin/ProjectUpdate.php:90 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashes and dots as separators." +msgstr "" + +#: IDF/Form/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 +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:89 +#: 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:45 +msgid "" +"The login must be between 3 and 15 characters long and contain only letters " +"and digits." +msgstr "" + +#: IDF/Form/Register.php:53 +msgid "Your email" +msgstr "" + +#: IDF/Form/Register.php:55 +msgid "We will never send you any unsolicited emails. We hate spam too!" +msgstr "" + +#: IDF/Form/Register.php:60 +msgid "I agree to the terms and conditions." +msgstr "" + +#: IDF/Form/Register.php:88 +msgid "" +"We know, this is boring, but you need to agree with the terms and conditions." +msgstr "" + +#: IDF/Form/Register.php:97 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need to, click on the help link to " +"recover your password." +msgstr "" + +#: IDF/Form/Register.php:148 +msgid "Confirm the creation of your account." +msgstr "" + +#: IDF/Form/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:166 +msgid "" +"Paste an SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" + +#: IDF/Form/UserAccount.php:171 +msgid "Add a secondary mail address" +msgstr "" + +#: IDF/Form/UserAccount.php:173 +msgid "You will get a mail to confirm that you own the address you specify." +msgstr "" + +#: IDF/Form/UserAccount.php:200 +msgid "Confirm your new email address." +msgstr "" + +#: IDF/Form/UserAccount.php:203 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" + +#: IDF/Form/UserAccount.php:334 +msgid "" +"Please check the key as it does not appear to be a valid SSH public key." +msgstr "" + +#: IDF/Form/UserAccount.php:354 +msgid "" +"Please check the key as it does not appear to be a valid monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:362 +msgid "Public key looks like neither an SSH nor monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:374 +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 to 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:72 +msgid "" +"Your password must be hard for other people to guess, but easy for you to " +"remember." +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" @@ -4363,6 +4186,11 @@ msgstr "Jednořádkový popis změn." 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" @@ -4383,12 +4211,244 @@ msgstr "Nová dokumentační stránka %s - %s (%s)" msgid "Documentation Page Changed %s - %s (%s)" msgstr "Dokumentační stránka změněna %s - %s (%s)" -#, fuzzy -#~ msgid "here" -#~ msgstr "Ostatní" +#: IDF/Review/Patch.php:52 +msgid "review" +msgstr "" -#~ msgid "Do you have a password?" -#~ msgstr "Máte heslo?" +#: IDF/Review/Patch.php:67 +msgid "commit" +msgstr "" -#~ msgid "No, I am a new here." -#~ msgstr "Ne, jsem tady nový." +#: 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 +#, php-format +msgid "The repository %s already exists." +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." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:93 IDF/Plugin/SyncMonotone.php:447 +msgid "\"mtn_usher_conf\" does not exist or is not writable." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:100 +#, php-format +msgid "Could not find mtn-post-push script \"%s\"." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:135 +#, php-format +msgid "The configuration file %s is missing." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:144 +#, php-format +msgid "The project path %s already exists." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:150 +#, php-format +msgid "The project path %s could not be created." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:205 +#, php-format +msgid "Could not parse key information: %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:243 +#, php-format +msgid "Could not create configuration directory \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 +#, php-format +msgid "Could not create symlink \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:269 +#, php-format +msgid "Could not write configuration file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 +#, php-format +msgid "Could not parse usher configuration in \"%s\": %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:295 +#, php-format +msgid "usher configuration already contains a server entry named \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 +#, php-format +msgid "Could not write usher configuration file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:366 +#, php-format +msgid "Could not write write-permissions file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:389 +#, php-format +msgid "Could not write read-permissions file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:406 +#, php-format +msgid "Could not remove symlink \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:465 +#, php-format +msgid "One or more paths underknees %s could not be deleted." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:477 +#, php-format +msgid "Could not delete client private key %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676 +#, php-format +msgid "Could not parse read-permissions for project \"%s\": %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 +#, php-format +msgid "Could not write read-permissions for project \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 +#, php-format +msgid "Could not write write-permissions file for project \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:790 +#, php-format +msgid "The project path %s does not exists." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:808 +#, php-format +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/Timeline/Paginator.php:49 +msgid "Today" +msgstr "" + +#: 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: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/Tag.php:59 +msgid "tag class" +msgstr "třída tagu" + +#: IDF/Tag.php:60 +msgid "The class of the tag." +msgstr "Třída tagu." + +#: IDF/Tag.php:73 +msgid "lcname" +msgstr "lcname" + +#: IDF/Tag.php:74 +msgid "Lower case version of the name for fast searching." +msgstr "Jméno souboru s malými písmenky pro rychlé vyhledávání." + +#: IDF/Key.php:55 +msgid "public key" +msgstr "" + +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." +msgstr "" + +#: IDF/Template/ShowUser.php:51 +msgid "Anonymous" +msgstr "Anonym" + +#: IDF/Template/ShowUser.php:54 +msgid "Me" +msgstr "Já" + +#: IDF/Template/Markdown.php:81 +msgid "Create this documentation page" +msgstr "Vytvořit tuto dokumentační stránku" diff --git a/src/IDF/locale/de/idf.po b/src/IDF/locale/de/idf.po index 7c05ad5..465555e 100644 --- a/src/IDF/locale/de/idf.po +++ b/src/IDF/locale/de/idf.po @@ -7,44 +7,181 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\n" "Report-Msgid-Bugs-To: \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" +"POT-Creation-Date: 2011-03-10 10:02+0100\n" +"PO-Revision-Date: 2011-03-04 18:20+0000\n" +"Last-Translator: tommyd \n" "Language-Team: 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/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/IssueComment.php:51 +msgid "issue" +msgstr "Ticket" -#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65 -#: IDF/IssueFile.php:57 IDF/Review/Comment.php:69 IDF/Review.php:80 -#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79 +#: IDF/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/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 +#: 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 +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 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" @@ -55,900 +192,6 @@ 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" @@ -957,551 +200,93 @@ msgstr "Modell-Klasse" msgid "model id" msgstr "Modell-ID" -#: IDF/gettexttemplates/idf/admin/base.html.php:3 -msgid "Project Summary" -msgstr "Projekt-Zusammenfassung" +#: IDF/Gconf.php:73 IDF/Conf.php:61 +msgid "key" +msgstr "Schlüssel" -#: IDF/gettexttemplates/idf/admin/base.html.php:6 -msgid "Issue Tracking" -msgstr "Ticketverfolgung" +#: IDF/Gconf.php:79 IDF/Conf.php:67 +msgid "value" +msgstr "Wert" -#: 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/gettexttemplates/idf/faq-api.html.php:4 -#: IDF/gettexttemplates/idf/faq.html.php:35 +#: IDF/Views.php:47 IDF/gettexttemplates/idf/faq.html.php:35 #: IDF/gettexttemplates/idf/gadmin/base.html.php:3 +#: IDF/gettexttemplates/idf/faq-api.html.php:4 #: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57 -#: IDF/Views.php:45 msgid "Projects" msgstr "Projekte" +#: IDF/Views.php:90 IDF/gettexttemplates/idf/register/index.html.php:6 +msgid "Create Your Account" +msgstr "Erstelle Deinen Account" + +#: IDF/Views.php:126 IDF/Views.php:152 +msgid "Confirm Your Account Creation" +msgstr "Bestätige die Erstellung Deines Accounts" + +#: IDF/Views.php:172 +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:198 IDF/Views.php:222 IDF/Views.php:263 +msgid "Password Recovery" +msgstr "Passwort-Wiederherstellung" + +#: IDF/Views.php:242 +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:284 +msgid "Here to Help You!" +msgstr "Hier, um dir zu helfen!" + +#: IDF/Views.php:300 +msgid "InDefero API (Application Programming Interface)" +msgstr "InDefero API (Application Programming Interface)" + +#: IDF/Scm/Mercurial.php:138 IDF/Scm/Git.php:288 +#, php-format +msgid "Folder %1$s not found in commit %2$s." +msgstr "Verzeichnis %1$s in Revision %2$s nicht gefunden." + +#: IDF/Scm/Mercurial.php:155 IDF/Scm/Git.php:404 +#, 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:237 +#, 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/EmailAddress.php:49 IDF/Key.php:49 +msgid "user" +msgstr "Benutzer" + +#: IDF/EmailAddress.php:55 +msgid "email" +msgstr "E-Mail" + #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

This is simple:

\n" @@ -1560,8 +345,8 @@ msgstr "Wie kann ich meinen Kommentaren ein Foto von mir hinzufügen?" #: IDF/gettexttemplates/idf/faq.html.php:15 #: IDF/gettexttemplates/idf/faq.html.php:33 -msgid "What is the API and how to use it?" -msgstr "Was ist die API und wie kann ich sie verwenden?" +msgid "What is the API and how is it used?" +msgstr "Was ist die API und wie wird sie verwendet?" #: IDF/gettexttemplates/idf/faq.html.php:17 msgid "Shift+h: This help page." @@ -1621,38 +406,202 @@ msgstr "Alt+2: Die Menüs übergehen." msgid "Alt+4: Search (when available)." msgstr "Alt+4: Suche (wenn verfügbar)." -#: IDF/gettexttemplates/idf/gadmin/base.html.php:4 -msgid "People" -msgstr "Personen" +#: 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:5 -msgid "Usher" -msgstr "Usher" +#: 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/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:3 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:3 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3 +msgid "Oops, we found an error in the form." +msgstr "Wir haben einen Fehler in der Maske gefunden." -#: IDF/gettexttemplates/idf/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:4 +msgid "Confirm Your Account" +msgstr "Bestätige Dein Konto" -#: 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:5 +#: IDF/gettexttemplates/idf/register/index.html.php:7 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16 +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7 +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5 +#: IDF/gettexttemplates/idf/wiki/create.html.php:7 +#: IDF/gettexttemplates/idf/wiki/delete.html.php:10 +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7 +#: IDF/gettexttemplates/idf/wiki/update.html.php:7 +#: IDF/gettexttemplates/idf/review/create.html.php:12 +#: IDF/gettexttemplates/idf/review/view.html.php:43 +#: IDF/gettexttemplates/idf/issues/create.html.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:25 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:7 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:8 +msgid "Cancel" +msgstr "Abbrechen" -#: 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: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:5 -msgid "Change Project Details" -msgstr "Projektdetails ändern" +#: 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 "Oops, please check the provided login and email address to register." +msgstr "" +"Bitte überprüfe den angegebenen Anmeldenamen und die E-Mail-Adresse zum " +"registrieren." + +#: IDF/gettexttemplates/idf/register/index.html.php: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 "Oops, 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/create.html.php:3 msgid "" @@ -1683,6 +632,26 @@ 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." @@ -1696,6 +665,18 @@ 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 "" @@ -1736,6 +717,15 @@ 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" @@ -1745,6 +735,12 @@ 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" @@ -1768,11 +764,18 @@ msgid "Repositories:" msgstr "Depots:" #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5 -#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11 #: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11 msgid "Attachments:" msgstr "Anhänge:" +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:13 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:10 +#: IDF/gettexttemplates/idf/downloads/view.html.php:15 +msgid "Downloads:" +msgstr "Downloads:" + #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7 msgid "Database:" msgstr "Datenbank:" @@ -1781,6 +784,21 @@ 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." @@ -1802,24 +820,25 @@ 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/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" -msgstr "Nutzerliste" +#: 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: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/projects/base.html.php:5 +msgid "Change Project Details" +msgstr "Projektdetails ändern" #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3 msgid "The form contains some errors. Please correct them to create the user." @@ -1827,6 +846,11 @@ 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 "" @@ -1903,13 +927,6 @@ 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" @@ -1919,22 +936,15 @@ msgstr "Öffentliches Profil" msgid "Administrative" msgstr "Administratives" -#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 -msgid "Configured servers" -msgstr "Konfigurierte Server" +#: 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: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/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" +msgstr "Nutzerliste" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3 msgid "current server status:" @@ -2039,123 +1049,1638 @@ msgid "usher is shut down, not running and not accepting connections" msgstr "" "Usher ist heruntergefahren, läuft nicht und akzeptiert keine Verbindungen" -#: IDF/gettexttemplates/idf/index.atom.php:3 +#: 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 #, php-format -msgid "Personal project feed for %%user%%." -msgstr "Persönlicher Projekt-Feed für %%user%%." +msgid "" +"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/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/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: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 "Secondary Emails" +msgstr "Sekundäre E-Mails" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +msgid "Extra password" +msgstr "Extra-Passwort" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 +msgid "" +"This password is used to access some of the external systems managed by our " +"infrastructure. It will be regenerated if you change your password." +msgstr "" +"Dieses Passwort wird genutzt, um auf einige externe Systeme unserer " +"Infrastruktur zuzugreifen. Es wird neu erzeugt, wenn Du Dein Passwort " +"änderst." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "API key" +msgstr "API-Schlüssel" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "" +"Dein API-Schlüssel wird automatisch neu erzeugt, wenn Du Dein Passwort " +"änderst." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +msgid "Update Your Account" +msgstr "Aktualisiere Deinen Account" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Your Current Public Keys" +msgstr "Deine derzeitigen öffentlichen Schlüssel" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +msgid "Delete this key" +msgstr "Lösche diesen Schlüssel" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 +msgid "Your additional email addresses" +msgstr "Deine zusätzlichen E-Mail-Adressen" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 +msgid "Delete this address" +msgstr "Lösche diese Adresse" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:18 +msgid "" +"If possible, use your real name. By using your real name, people will have " +"more trust in your comments and remarks." +msgstr "" +"Wenn möglich, nutze Deinen realen Namen. Dadurch wird deinen Kommentaren und " +"Bemerkungen mehr Vertrauen geschenkt." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:19 +msgid "" +"The extra password is used to access some of the external systems and the " +"API key is used to interact with this website using a program." +msgstr "" +"Das Extra-Passwort wird genutzt, um auf einige externe Systeme zuzugreifen. " +"Der API-Schlüssel wird benötigt, damit andere Programme mit dieser Webseite " +"interagieren können." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:20 +msgid "Show API key and extra password" +msgstr "Zeige API-Schlüssel und Extra-Passwort" + +#: IDF/gettexttemplates/idf/user/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 this website fully." +msgstr "" +"Kurz nachdem Du den Bestätigungscode eingegeben hast, wirst Du Dein Passwort " +"zurücksetzen und diese Webseite voll nutzen können." + +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 +msgid "Reset Your Password" +msgstr "Passwort zurücksetzen" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 +msgid "" +"Oops, please check the provided login or email address to recover your " +"password." +msgstr "" +"Bitte überprüfe den angegebenen Anmeldenamen oder E-Mail-Adresse, um Dein " +"Passwort zurückzusetzen." + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4 +msgid "Recover My Password" +msgstr "Mein Passwort wiederherstellen" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6 +msgid "" +"Provide either your login or email address, if a corresponding user is found " +"in the database, we will send you an email with the details on how to reset " +"your password." +msgstr "" +"Gib entweder Deinen Anmeldenamen oder Deine E-Mail-Adresse an. Wenn ein " +"entsprechender Benutzer in der Datenbank gefunden wird, schicken wir Dir " +"eine E-Mail mit Informationen, wie Du Dein Passwort zurücksetzen kannst." + +#: IDF/gettexttemplates/idf/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:175 +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 +#: IDF/gettexttemplates/idf/source/commit.html.rej.php:4 +#: IDF/gettexttemplates/idf/source/commit.html.orig.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 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/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/source/commit.html.orig.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/source/commit.html.orig.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:3 +#, php-format +msgid "%%ndiff%% diff" +msgid_plural "%%ndiff%% diffs" +msgstr[0] "%%ndiff%% Änderung" +msgstr[1] "%%ndiff%% Änderungen" + +#: IDF/gettexttemplates/idf/source/commit.html.php:4 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:4 +msgid "Date:" +msgstr "Datum:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:5 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:5 +#: IDF/gettexttemplates/idf/review/view.html.php:27 +msgid "Author:" +msgstr "Autor:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:6 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:6 +msgid "Branch:" +msgstr "Zweig:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:8 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:8 +#: IDF/gettexttemplates/idf/review/view.html.php:29 +msgid "View corresponding source tree" +msgstr "Zeige den dazugehörigen Quellcode-Baum" + +#: IDF/gettexttemplates/idf/source/commit.html.php:9 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:9 +msgid "Parents:" +msgstr "Eltern:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:10 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:10 +#: IDF/gettexttemplates/idf/source/changelog.html.php:6 +msgid "View corresponding commit" +msgstr "Zeige dazugehörige Revision" + +#: IDF/gettexttemplates/idf/source/commit.html.php:11 +#: IDF/gettexttemplates/idf/source/commit.html.rej.php:3 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:11 +msgid "Message:" +msgstr "Logmeldung:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:13 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:13 +msgid "deleted" +msgstr "gelöscht" + +#: IDF/gettexttemplates/idf/source/commit.html.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.php:17 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:17 +msgid "full" +msgstr "voll" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:15 +msgid "renamed" +msgstr "umbenannt" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:16 +msgid "added" +msgstr "hinzugefügt" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:18 +msgid "modified" +msgstr "verändert" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:19 +msgid "properies changed" +msgstr "Eigenschaften geändert" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:20 +msgid "removed" +msgstr "entfernt" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +#: IDF/gettexttemplates/idf/source/commit.html.orig.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/commit.html.orig.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/review/view.html.php:34 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 +msgid "Archive" +msgstr "Archiv" + +#: IDF/gettexttemplates/idf/source/commit.html.php:23 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:23 +#: IDF/gettexttemplates/idf/review/view.html.php:35 +msgid "Download the corresponding diff file" +msgstr "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:292 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:294 +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 authentication." +msgstr "" +"Eventuell musst Du Deinen SSH-Schlüssel hochladen. " +"Die Synchronizierung Deines SSH-Schlüssels kann einige Minuten dauern. Du " +"kannst hier mehr über SSH-Schlüssel-Authentifizierung erfahren." + +#: IDF/gettexttemplates/idf/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" #: 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 +msgid "Forge statistics" +msgstr "Forge-Statistiken" + +#: IDF/gettexttemplates/idf/index.html.php:8 msgid "Projects:" msgstr "Projekte:" -#: IDF/gettexttemplates/idf/index.html.php:8 +#: IDF/gettexttemplates/idf/index.html.php:9 msgid "Members:" msgstr "Mitglieder:" -#: IDF/gettexttemplates/idf/index.html.php:9 +#: IDF/gettexttemplates/idf/index.html.php:10 msgid "Issues:" msgstr "Tickets:" -#: IDF/gettexttemplates/idf/index.html.php:10 +#: IDF/gettexttemplates/idf/index.html.php:11 msgid "Commits:" msgstr "Revisionen:" -#: IDF/gettexttemplates/idf/index.html.php:11 +#: IDF/gettexttemplates/idf/index.html.php:12 msgid "Documentations:" msgstr "Dokumentationsseiten:" -#: IDF/gettexttemplates/idf/index.html.php:13 +#: IDF/gettexttemplates/idf/index.html.php:14 msgid "Code reviews:" msgstr "Code-Besprechungen:" -#: 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 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.php:3 #, php-format msgid "" -"

Open issues: %%open%%

\n" -"

Closed issues: %%closed%%

\n" +"Sign in or create your account to create issues or " +"add comments" msgstr "" -"

Offene Tickets: %%open%%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" +"
  • Check your patch does not provide any password or confidential " +"information!
  • \n" +"
" +msgstr "" +"

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

\n" +"
    \n" +"
  • Eine Revision Deines derzeitigen Codes im Depot, von der aus Du Deine " +"Arbeit begonnen hast.
  • \n" +"
  • Ein Patch, welches die Änderungen ausgehend von der Referenz-Revision " +"beschreibt.
  • \n" +"
  • Überprüfe, dass Dein Patch keine Passwörter oder vertraulichen " +"Angaben enthält!
  • \n" +"
" + +#: IDF/gettexttemplates/idf/review/create.html.php:9 +msgid "" +"The form contains some errors. Please correct them to submit the code review." +msgstr "" +"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Code-" +"Besprechung einzusenden." + +#: IDF/gettexttemplates/idf/review/create.html.php:10 +msgid "" +"Select the commit against which you created your patch to be sure it applies " +"correctly." +msgstr "" +"Wähle die Revision aus, gegen welche Du Dein Patch erstellt hast und stelle " +"sicher, dass das Patch auf diese Revision korrekt angewandt werden kann." + +#: IDF/gettexttemplates/idf/review/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.\n" -"

Geschlossene Tickets: %%closed" -"%%

\n" +"

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

\n" -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" -msgstr "Label:" +#: 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:8 -msgid "Completion:" -msgstr "Fertigstellung:" +#: 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/create.html.php:3 msgid "" @@ -2186,15 +2711,6 @@ 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" @@ -2211,42 +2727,35 @@ msgstr "Datei anhängen" msgid "Attach another file" msgstr "Eine andere Datei anhängen" -#: 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: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: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/search.html.php:4 +msgid "Found issues:" +msgstr "Gefundene Tickets:" -#: 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:3 +msgid "The following issue has been updated:" +msgstr "Das folgende Ticket wurde aktualisiert:" +#: 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" @@ -2258,6 +2767,26 @@ 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" @@ -2266,92 +2795,11 @@ 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." @@ -2420,80 +2868,66 @@ msgstr "Sende Änderungen" msgid "Followed by:" msgstr "Beobachtet von:" -#: IDF/gettexttemplates/idf/login_form.html.php:3 +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 #, php-format msgid "" -"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." +"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/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 +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 #, php-format msgid "" -"Welcome, %%user%%." -msgstr "" -"Willkommen, %%user%%." +"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/main-menu.html.php:4 -msgid "Sign Out" -msgstr "Abmelden" +#: 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:5 -msgid "Sign in or create your account" -msgstr "Anmelden oder Konto erstellen" +#: IDF/gettexttemplates/idf/issues/base.html.php:3 +msgid "Open Issues" +msgstr "Offene 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:5 +msgid "My Issues" +msgstr "Meine Tickets" -#: IDF/gettexttemplates/idf/main-menu.html.php:9 -msgid "Help and accessibility features" -msgstr "Hilfe und Barrierefreiheit" +#: IDF/gettexttemplates/idf/issues/base.html.php:6 +msgid "My watch list" +msgstr "Meine Beobachtungsliste" -#: 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/issues/base.html.php:8 +msgid "Back to the issue" +msgstr "Zurück zum Ticket" + +#: IDF/gettexttemplates/idf/project/timeline.html.php:3 +msgid "Latest updates" +msgstr "Letzte Änderungen" -#: IDF/gettexttemplates/idf/project/home.html.php:4 #: IDF/gettexttemplates/idf/project/timeline.html.php:5 +#: IDF/gettexttemplates/idf/project/home.html.php:4 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" @@ -2519,1288 +2953,123 @@ msgstr "Administratoren" msgid "Happy Crew" msgstr "Glückliche Mannschaft" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" -msgstr "Letzte Änderungen" +#: 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:6 -msgid "Filter by type" -msgstr "Nach Typ filtern" - -#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 #, 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" +"Instead of deleting the file, you could mark it as " +"deprecated." 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" +"Statt die Datei zu löschen, könntest Du sie als veraltet " +"markieren." -#: 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:6 +msgid "Delete File" +msgstr "Lösche Datei" -#: 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/delete.html.php:8 +#: IDF/gettexttemplates/idf/downloads/view.html.php:13 +msgid "Uploaded:" +msgstr "Hochgeladen:" -#: 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 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 msgid "" -"This is the last step, but just be sure to have the cookies enabled to log in afterwards." +"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 "" -"Dies ist der letzte Schritt, aber bitte stelle sicher, dass Du " -"Cookies aktiviert hast, um Dich im folgenden anzumelden." +"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/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 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 #, 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!" +"You can use the Markdown syntax for the description." 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." +"Du kannst die Markdown-Syntax für die Beschreibung " +"nutzen." -#: IDF/gettexttemplates/idf/register/index.html.php:5 -msgid "Oups, please check the provided login and email address to register." +#: IDF/gettexttemplates/idf/downloads/submit.html.php:7 +msgid "The form contains some errors. Please correct them to submit the file." msgstr "" -"Bitte überprüfe den angegebenen Anmeldenamen und die E-Mail-Adresse zum " -"registrieren." +"Die Eingabemaske enthält einige Fehler. Bitte korrigiere diese, um die Datei " +"einzusenden." -#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:88 -msgid "Create Your Account" -msgstr "Erstelle Deinen Account" +#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 +msgid "Submit File" +msgstr "Datei einsenden" -#: 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/downloads/feedfragment.xml.php:3 +msgid "Details" +msgstr "Details" -#: IDF/gettexttemplates/idf/register/index.html.php:9 -msgid "Did you know?" -msgstr "Wusstest Du?" - -#: IDF/gettexttemplates/idf/register/inputkey.html.php:3 -#: IDF/gettexttemplates/idf/user/changeemail.html.php:3 -#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3 -msgid "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 "" -"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 +#: 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:214 +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 msgid "" -"By %%who%%, %%c.creation_dtime%%, on file:\n" -"%%c.cfile%%\n" +"Attention! This file is marked as deprecated, download it " +"only if you are sure you need this specific version." msgstr "" -"Von %%who%%, %%c.creation_dtime%%, für Datei:\n" -"%%c.cfile%%\n" +"Achtung! Diese Datei ist als veraltet markiert. Lade sie " +"nur herunter, falls Du genau diese Version benötigst." -#: 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/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/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/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" +#: IDF/gettexttemplates/idf/downloads/view.html.php:5 +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/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/IssueComment.php:171 -#, php-format -msgid "Comment on issue %d, by %s" -msgstr "Kommentar zum Ticket %d, von %s" +#: IDF/gettexttemplates/idf/downloads/view.html.php:7 +msgid "Update File" +msgstr "Datei aktualisieren" -#: IDF/IssueComment.php:182 -#, php-format -msgid "%s: Comment on issue %d - %s" -msgstr "%s: Kommentar zum Ticket %d - %s" +#: 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:12 +msgid "Delete this file" +msgstr "Lösche diese Datei" + +#: 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:6 +msgid "Submitted by:" +msgstr "Eingesandt von:" + +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8 +msgid "Download:" +msgstr "Download:" #: IDF/IssueFile.php:64 msgid "file name" @@ -3826,151 +3095,6 @@ 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" @@ -3991,6 +3115,11 @@ 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" @@ -4010,90 +3139,6 @@ 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" @@ -4110,201 +3155,163 @@ msgstr "Vorkommen" msgid "ponderated occurence" msgstr "gewichtete Vorkommen" -#: IDF/Tag.php:59 -msgid "tag class" -msgstr "Tag-Klasse" +#: IDF/Issue.php:76 +msgid "owner" +msgstr "Besitzer" -#: IDF/Tag.php:60 -msgid "The class of the tag." -msgstr "Die Klasse des Tags." +#: IDF/Issue.php:84 IDF/WikiPage.php:86 +msgid "interested users" +msgstr "interessierte Benutzer" -#: IDF/Tag.php:73 -msgid "lcname" -msgstr "Kleingeschriebener Name" +#: 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: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 +#: IDF/Issue.php:196 #, php-format -msgid "Download %2$d, %3$s" -msgstr "Download %2$d, %3$s" +msgid "Creation of issue %d, by %s" +msgstr "Erstellung von Ticket %d, von %s" -#: IDF/Upload.php:192 +#: IDF/Issue.php:206 #, php-format -msgid "Addition of download %d, by %s" -msgstr "Hinzufügen von Download %d, von %s" +msgid "%s: Issue %d created - %s" +msgstr "%s: Ticket %d angelegt - %s" -#: IDF/Upload.php:202 +#: IDF/Issue.php:272 #, php-format -msgid "%s: Download %d added - %s" -msgstr "%s: Download %d hinzugefügt - %s" +msgid "Issue %s - %s (%s)" +msgstr "Ticket %s - %s (%s)" -#: IDF/Upload.php:244 +#: IDF/Issue.php:318 #, php-format -msgid "New download - %s (%s)" -msgstr "Neuer Download - %s (%s)" +msgid "Updated Issue %s - %s (%s)" +msgstr "Ticket %s aktualisiert - %s (%s)" -#: IDF/Views/Admin.php:60 -msgid "This table shows the projects in the forge." -msgstr "Diese Tabelle zeigt die Projekte dieser Forge." +#: IDF/Views/Wiki.php:41 +#, php-format +msgid "%s Documentation" +msgstr "%s Dokumentation" -#: IDF/Views/Admin.php:65 -msgid "Short Name" -msgstr "Kurzname" +#: IDF/Views/Wiki.php:48 +msgid "This table shows the documentation pages." +msgstr "Diese Tabelle zeigt Dokumentations-Seiten." -#: IDF/Views/Admin.php:67 -msgid "Repository Size" -msgstr "Größe des Depots" +#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:106 IDF/Views/Wiki.php:147 +msgid "Page Title" +msgstr "Seitentitel" -#: IDF/Views/Admin.php:73 -msgid "No projects were found." -msgstr "Es wurden keine Projekte gefunden." +#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:107 IDF/Views/Wiki.php:148 +#: 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/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/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:312 +#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149 +msgid "Updated" +msgstr "Aktualisiert" + +#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:153 +msgid "No documentation pages were found." +msgstr "Keine Dokumentations-Seiten gefunden." + +#: IDF/Views/Wiki.php:90 +#, php-format +msgid "Documentation Search - %s" +msgstr "Dokumentations-Suche - %s" + +#: IDF/Views/Wiki.php:101 +msgid "This table shows the pages found." +msgstr "Diese Tabelle zeigt die gefunden Seiten." + +#: IDF/Views/Wiki.php:112 +msgid "No pages were found." +msgstr "Es wurden keine Seiten gefunden." + +#: IDF/Views/Wiki.php:131 +#, 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:141 +#, 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:186 +#, php-format +msgid "The page %s has been created." +msgstr "Die Seite %s wurde neu angelegt." + +#: 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 "Delete Old Revision of %s" +msgstr "Lösche alte Version von %s" + +#: IDF/Views/Wiki.php:312 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 #, 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." - -#: IDF/Views/Admin.php:160 +#: IDF/Views/Wiki.php:324 #, php-format -msgid "Delete %s Project" -msgstr "Lösche Projekt %s" +msgid "The page %s has been updated." +msgstr "Die Seite %s wurde aktualisiert." -#: IDF/Views/Admin.php:167 -msgid "The project has been deleted." -msgstr "Das Projekt wurde gelöscht." +#: IDF/Views/Wiki.php:362 +msgid "The documentation page has been deleted." +msgstr "Die Dokumentations-Seite wurde gelöscht." -#: IDF/Views/Admin.php:197 -msgid "Not Validated User List" -msgstr "Liste nicht validierter Benutzer" - -#: IDF/Views/Admin.php:205 -msgid "This table shows the users in the forge." -msgstr "Diese Tabelle zeigt die Benutzer dieser Forge." - -#: IDF/Views/Admin.php:209 -msgid "login" -msgstr "Anmeldename" - -#: IDF/Views/Admin.php:212 -msgid "Admin" -msgstr "Administrator" - -#: IDF/Views/Admin.php:214 -msgid "Last Login" -msgstr "Letzter Login" - -#: IDF/Views/Admin.php:221 -msgid "No users were found." -msgstr "Es wurden keine Benutzer gefunden." - -#: IDF/Views/Admin.php:258 -msgid "You do not have the rights to update this user." -msgstr "Du hast nicht die Berechtigung, um diesen Benutzer zu aktualisieren." - -#: IDF/Views/Admin.php:276 -msgid "The user has been updated." -msgstr "Der Benutzer wurde aktualisiert." - -#: IDF/Views/Admin.php:309 +#: IDF/Views/Wiki.php:370 #, php-format -msgid "The user %s has been created." -msgstr "Der Benutzer %s wurde erstellt." +msgid "Delete Page %s" +msgstr "Lösche Seite '%s'" -#: IDF/Views/Admin.php:316 -msgid "Add User" -msgstr "Benutzer hinzufügen" - -#: IDF/Views/Admin.php:332 -msgid "Usher management" -msgstr "Usher-Verwaltung" - -#: IDF/Views/Admin.php:369 -msgid "Usher configuration has been reloaded" -msgstr "Usher-Konfiguration neu geladen" - -#: IDF/Views/Admin.php:373 -msgid "Usher has been shut down" -msgstr "Usher wurde heruntergefahren." - -#: IDF/Views/Admin.php:378 -msgid "Usher has been started up" -msgstr "Usher wurde hochgefahren." - -#: IDF/Views/Admin.php:416 +#: IDF/Views/Source.php:40 #, php-format -msgid "The server \"%s\" has been started" -msgstr "Der Server \"%s\" wurde gestartet." +msgid "%s Source Help" +msgstr "%s Quellcode-Hilfe" -#: IDF/Views/Admin.php:420 +#: IDF/Views/Source.php:58 #, php-format -msgid "The server \"%s\" has been stopped" -msgstr "Der Server \"%s\" wurde gestoppt." +msgid "%s Invalid Revision" +msgstr "%s Ungültige Revision" -#: IDF/Views/Admin.php:425 +#: IDF/Views/Source.php:81 #, php-format -msgid "The server \"%s\" has been killed" -msgstr "Der Server \"%s\" wurde getötet." +msgid "%s Ambiguous Revision" +msgstr "%s Mehrdeutige Revision" -#: IDF/Views/Admin.php:445 +#: IDF/Views/Source.php:106 #, php-format -msgid "Open connections for \"%s\"" -msgstr "Offene Verbindungen für \"%s\"" +msgid "%1$s %2$s Change Log" +msgstr "%1$s %2$s Logmeldung" -#: IDF/Views/Admin.php:450 +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 #, php-format -msgid "no connections for server \"%s\"" -msgstr "keine Verbindungen für Server \"%s\"" +msgid "%1$s %2$s Source Tree" +msgstr "%1$s %2$s Quellcode-Baum" -#: IDF/Views/Admin.php:471 -msgid "Yes" -msgstr "Ja" +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" +msgstr "%s Revisions-Details" -#: IDF/Views/Admin.php:471 -msgid "No" -msgstr "Nein" +#: IDF/Views/Source.php:304 +#, php-format +msgid "%s Commit Details - %s" +msgstr "%s Revisions-Details - %s" #: IDF/Views/Download.php:45 #, php-format @@ -4357,6 +3364,113 @@ msgstr "%1$s Downloads mit der Marke %2$s" 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 u. Kommentare" + +#: IDF/Views/Project.php:76 +msgid "Documents" +msgstr "Dokumentation" + +#: IDF/Views/Project.php:77 +msgid "Reviews and Patches" +msgstr "Besprechungen u. 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 "Änderung" + +#: 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" @@ -4368,13 +3482,21 @@ msgstr "Diese Tabelle zeigt die offenen Tickets." #: IDF/Views/Issue.php:61 IDF/Views/Issue.php:138 IDF/Views/Issue.php:219 #: IDF/Views/Issue.php:295 IDF/Views/Issue.php:382 IDF/Views/Issue.php:561 -#: IDF/Views/Issue.php:620 IDF/Views/Review.php:57 IDF/Views/User.php:81 +#: IDF/Views/Issue.php:620 IDF/Views/User.php:81 IDF/Views/Review.php:57 msgid "Id" msgstr "Id" +#: 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/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:141 IDF/Views/Issue.php:223 #: IDF/Views/Issue.php:298 IDF/Views/Issue.php:385 IDF/Views/Issue.php:564 -#: IDF/Views/Issue.php:623 IDF/Views/Review.php:60 IDF/Views/User.php:85 +#: IDF/Views/Issue.php:623 IDF/Views/User.php:85 IDF/Views/Review.php:60 msgid "Last Updated" msgstr "Letzte Aktualisierung" @@ -4518,92 +3640,46 @@ msgstr "Das Ticket wurde zu Deiner Beobachtungsliste hinzugefügt." msgid "On your watch list." msgstr "Auf Deiner Beobachtungsliste." -#: IDF/Views/Project.php:72 -msgid "All Updates" -msgstr "Alle Aktualisierungen" +#: IDF/Views/User.php:59 +msgid "Your Dashboard - Working Issues" +msgstr "Dein Dashboard - Bearbeitete Tickets" -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" -msgstr "Tickets und Kommentare" +#: IDF/Views/User.php:62 +msgid "Your Dashboard - Submitted Issues" +msgstr "Dein Dashboard - Eingesandte Tickets" -#: IDF/Views/Project.php:76 -msgid "Documents" -msgstr "Dokumentation" +#: 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/Project.php:77 -msgid "Reviews and Patches" -msgstr "Besprechungen und Patches" +#: 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/Project.php:142 -msgid "This table shows the project updates." -msgstr "Diese Tabelle zeigt Projekt-Aktualisierungen." +#: IDF/Views/User.php:121 +msgid "Your personal information has been updated." +msgstr "Deine persönlichen Daten wurden aktualisiert." -#: IDF/Views/Project.php:153 -msgid "Change" -msgstr "Ändern" +#: IDF/Views/User.php:133 +msgid "Your Account" +msgstr "Dein Konto" -#: IDF/Views/Project.php:157 -msgid "No changes were found." -msgstr "Es wurden keine Änderungen gefunden." +#: IDF/Views/User.php:157 +msgid "The public key has been deleted." +msgstr "Der öffentliche Schlüssel wurde gelöscht." -#: IDF/Views/Project.php:248 +#: IDF/Views/User.php:177 +msgid "The address has been deleted." +msgstr "Die Adresse wurde gelöscht." + +#: IDF/Views/User.php:200 +msgid "Confirm The Email Change" +msgstr "Bestätige die Änderung der E-Mail-Adresse" + +#: IDF/Views/User.php:232 #, php-format -msgid "%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." +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 @@ -4633,209 +3709,955 @@ msgstr "Besprechung %d: %s" msgid "Your code review %d has been published." msgstr "Deine Code-Besprechung %d wurde veröffentlicht." -#: IDF/Views/Source.php:40 +#: IDF/Views/Admin.php:60 +msgid "This table shows the projects in the forge." +msgstr "Diese Tabelle zeigt die Projekte dieser Forge." + +#: IDF/Views/Admin.php:65 +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" + +#: IDF/Views/Admin.php:73 +msgid "No projects were found." +msgstr "Es wurden keine Projekte gefunden." + +#: IDF/Views/Admin.php:134 +msgid "The project has been created." +msgstr "Das Projekt wurde angelegt." + +#: IDF/Views/Admin.php:160 #, php-format -msgid "%s Source Help" -msgstr "%s Quellcode-Hilfe" +msgid "Delete %s Project" +msgstr "Lösche Projekt %s" -#: IDF/Views/Source.php:58 +#: IDF/Views/Admin.php:167 +msgid "The project has been deleted." +msgstr "Das Projekt wurde gelöscht." + +#: IDF/Views/Admin.php:197 +msgid "Not Validated User List" +msgstr "Liste nicht validierter Benutzer" + +#: IDF/Views/Admin.php:205 +msgid "This table shows the users in the forge." +msgstr "Diese Tabelle zeigt die Benutzer dieser Forge." + +#: IDF/Views/Admin.php:209 +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" + +#: IDF/Views/Admin.php:221 +msgid "No users were found." +msgstr "Es wurden keine Benutzer gefunden." + +#: IDF/Views/Admin.php:258 +msgid "You do not have the rights to update this user." +msgstr "Du hast nicht die Berechtigung, um diesen Benutzer zu aktualisieren." + +#: IDF/Views/Admin.php:276 +msgid "The user has been updated." +msgstr "Der Benutzer wurde aktualisiert." + +#: IDF/Views/Admin.php:309 #, php-format -msgid "%s Invalid Revision" -msgstr "%s Ungültige Revision" +msgid "The user %s has been created." +msgstr "Der Benutzer %s wurde erstellt." -#: IDF/Views/Source.php:81 +#: IDF/Views/Admin.php:316 +msgid "Add User" +msgstr "Benutzer hinzufügen" + +#: IDF/Views/Admin.php:332 +msgid "Usher management" +msgstr "Usher-Verwaltung" + +#: IDF/Views/Admin.php:369 +msgid "Usher configuration has been reloaded" +msgstr "Usher-Konfiguration neu geladen" + +#: IDF/Views/Admin.php:373 +msgid "Usher has been shut down" +msgstr "Usher wurde heruntergefahren." + +#: IDF/Views/Admin.php:378 +msgid "Usher has been started up" +msgstr "Usher wurde hochgefahren." + +#: IDF/Views/Admin.php:416 #, php-format -msgid "%s Ambiguous Revision" -msgstr "%s Mehrdeutige Revision" +msgid "The server \"%s\" has been started" +msgstr "Der Server \"%s\" wurde gestartet." -#: IDF/Views/Source.php:106 +#: IDF/Views/Admin.php:420 #, php-format -msgid "%1$s %2$s Change Log" -msgstr "%1$s %2$s Logmeldung" +msgid "The server \"%s\" has been stopped" +msgstr "Der Server \"%s\" wurde gestoppt." -#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#: IDF/Views/Admin.php:425 #, php-format -msgid "%1$s %2$s Source Tree" -msgstr "%1$s %2$s Quellcode-Baum" +msgid "The server \"%s\" has been killed" +msgstr "Der Server \"%s\" wurde getötet." -#: IDF/Views/Source.php:303 +#: IDF/Views/Admin.php:445 #, php-format -msgid "%s Commit Details" -msgstr "%s Revisions-Details" +msgid "Open connections for \"%s\"" +msgstr "Offene Verbindungen für \"%s\"" -#: IDF/Views/Source.php:304 +#: IDF/Views/Admin.php:450 #, php-format -msgid "%s Commit Details - %s" -msgstr "%s Revisions-Details - %s" +msgid "no connections for server \"%s\"" +msgstr "keine Verbindungen für Server \"%s\"" -#: IDF/Views/User.php:59 -msgid "Your Dashboard - Working Issues" -msgstr "Dein Dashboard - Bearbeitete Tickets" +#: IDF/Views/Admin.php:471 +msgid "Yes" +msgstr "Ja" -#: IDF/Views/User.php:62 -msgid "Your Dashboard - Submitted Issues" -msgstr "Dein Dashboard - Eingesandte Tickets" +#: IDF/Views/Admin.php:471 +msgid "No" +msgstr "Nein" -#: IDF/Views/User.php:89 -msgid "No issues are assigned to you, yeah!" -msgstr "Es liegen keine Tickets für Dich vor. Super!" +#: 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/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/Form/WikiCreate.php:57 +msgid "PageName" +msgstr "Seitenname" -#: 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" +#: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50 +msgid "Page title" msgstr "Seitentitel" -#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149 -msgid "Updated" -msgstr "Aktualisiert" - -#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:153 -msgid "No documentation pages were found." -msgstr "Keine Dokumentations-Seiten gefunden." - -#: IDF/Views/Wiki.php:90 -#, php-format -msgid "Documentation Search - %s" -msgstr "Dokumentations-Suche - %s" - -#: IDF/Views/Wiki.php:101 -msgid "This table shows the pages found." -msgstr "Diese Tabelle zeigt die gefunden Seiten." - -#: IDF/Views/Wiki.php:112 -msgid "No pages were found." -msgstr "Es wurden keine Seiten gefunden." - -#: IDF/Views/Wiki.php:131 -#, 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:141 -#, 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:186 -#, php-format -msgid "The page %s has been created." -msgstr "Die Seite %s wurde neu angelegt." - -#: 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 "Delete Old Revision of %s" -msgstr "Lösche alte Version von %s" - -#: IDF/Views/Wiki.php:324 -#, php-format -msgid "The page %s has been updated." -msgstr "Die Seite %s wurde aktualisiert." - -#: IDF/Views/Wiki.php:362 -msgid "The documentation page has been deleted." -msgstr "Die Dokumentations-Seite wurde gelöscht." - -#: IDF/Views/Wiki.php:370 -#, php-format -msgid "Delete Page %s" -msgstr "Lösche Seite '%s'" - -#: 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 +#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56 msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." +"The page name must contains only letters, digits and the dash (-) character." msgstr "" -"Willkommen zurück! Beim nächsten Mal kannst Du Deine Browsereinstellungen " -"nutzen, um Dich automatisch einzuloggen." +"Der Seitenname darf nur aus Buchstaben, Ziffern und dem Bindestrich bestehen." -#: IDF/Views.php:282 -msgid "Here to Help You!" -msgstr "Hier, um dir zu helfen!" +#: 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:101 IDF/Form/IssueCreate.php:62 +#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 +msgid "Description" +msgstr "Beschreibung" -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" -msgstr "InDefero API (Application Programming Interface)" +#: 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/WikiPage.php:62 -msgid "title" -msgstr "Titel" +#: IDF/Form/WikiCreate.php:80 IDF/Form/WikiUpdate.php:72 +msgid "Content" +msgstr "Inhalt" -#: IDF/WikiPage.php:63 +#: 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 +#, 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: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/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:112 +#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 +#: IDF/Form/UserAccount.php:216 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/Form/WikiCreate.php:200 +msgid "Initial page creation" +msgstr "Initiale Seiten-Erzeugung" + +#: IDF/Form/Upload.php:86 +msgid "For security reasons, you cannot upload a file with this extension." +msgstr "" +"Aus Sicherheitsgründen kannst Du keine Dateien mit dieser Erweiterung " +"hochladen." + +#: IDF/Form/Upload.php: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 "" +"Du kannst nicht mehr als eine Marke von der %s-Klasse zu einem Ticket " +"hinzufügen." + +#: 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 msgid "" -"The title of the page must only contain letters, digits or the dash " -"character. For example: My-new-Wiki-Page." +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." msgstr "" -"Der Titel der Seite darf nur Buchstaben, Zahlen oder einen Bindestrich " -"enthalten. Beispiel: Meine-neue-Wiki-Seite." +"Der Anmeldename muss zwischen 3 und 15 Zeichen lang sein und darf nur " +"Buchstaben und Zahlen beinhalten." -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." -msgstr "Eine einzeilige Beschreibung des Seiteninhalts." +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "E-Mail" -#: IDF/WikiPage.php:196 IDF/WikiRevision.php:167 +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is sent directly to the user." +msgstr "" +"Überprüfe nochmals die E-Mail-Adresse, da das Passwort direkt an den " +"Benutzer gesendet wird." + +#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 +#: IDF/Form/UserAccount.php:66 +msgid "Language" +msgstr "Sprache" + +#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161 +msgid "Add a public key" +msgstr "Öffentlichen Schlüssel hinzufügen" + +#: IDF/Form/Admin/UserCreate.php:92 +msgid "" +"Paste a SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" +"Füge einen öffentlichen SSH- oder monotone-Schlüssel hier ein. Pass auf, " +"dass Du nicht versehentlich Deinen privaten Schlüssel hier hineinkopierst!" + +#: IDF/Form/Admin/UserCreate.php:157 +msgid "Your details to access your forge." +msgstr "Die Informationen, um auf Deine Forge zuzugreifen." + +#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:420 +#: IDF/Form/UserAccount.php:429 #, php-format -msgid "%2$s, %3$s" -msgstr "%2$s, %3$s" +msgid "The email \"%s\" is already used." +msgstr "Die E-Mail \"%s\" wird bereits genutzt." -#: IDF/WikiPage.php:198 +#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 #, php-format -msgid "Creation of page %s, by %s" -msgstr "Erstellung von Seite %s, von %s" +msgid "The login \"%s\" can only contain letters and digits." +msgstr "Der Anmeldename \"%s\" darf nur Buchstaben und Zahlen beinhalten." -#: IDF/WikiPage.php:208 +#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 #, php-format -msgid "%s: Documentation page %s added - %s" -msgstr "%s: Dokumentations-Seite %s hinzugefügt - %s" +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/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 through HTTP or HTTPS is allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" +"Nur ein entferntes Depot, welches durch HTTP oder HTTPS verfügbar ist, ist " +"erlaubt. Beispiel: \"http://somewhere.com/svn/trunk\"." + +#: IDF/Form/Admin/ProjectCreate.php:201 +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 guess, but easy for the user " +"to remember." +msgstr "" +"Das Passwort sollte für andere Leute schwer zu erraten, 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: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:164 +msgid "If you give staff rights to a user, you really need to trust them." +msgstr "" +"Wenn Du einen 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 their 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/UserAccount.php:389 +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:452 +msgid "The passwords do not match. Please give them again." +msgstr "Die Passwörter stimmen nicht überein. Bitte gib sie erneut ein." + +#: IDF/Form/Admin/ProjectUpdate.php:90 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashes and dots as separators." +msgstr "" +"Der Hauptzweig ist leer oder enthält ungültige Zeichen. Bitte verwende nur " +"Buchstaben, Ziffern, Bindestriche und Punkte als Trenner." + +#: 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 +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:89 +#: 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:45 +msgid "" +"The login must be between 3 and 15 characters long and contain only letters " +"and digits." +msgstr "" +"Der Anmeldename muss zwischen 3 und 15 Zeichen lang sein und darf nur " +"Buchstaben und Zahlen beinhalten." + +#: IDF/Form/Register.php:53 +msgid "Your email" +msgstr "Deine E-Mail-Adresse" + +#: IDF/Form/Register.php:55 +msgid "We will never send you any unsolicited emails. We hate spam too!" +msgstr "" +"Wir werden Ihnen nie unangeforderte E-Mails zusenden. Wir hassen Spam " +"ebenfalls." + +#: IDF/Form/Register.php:60 +msgid "I agree to the terms and conditions." +msgstr "Ich stimme den Nutzungbedingungen zu." + +#: IDF/Form/Register.php:88 +msgid "" +"We know, this is boring, but you need to agree with the terms and conditions." +msgstr "Ja, es ist nervig, aber Du musst den Nutzungsbedingungen zustimmen." + +#: IDF/Form/Register.php:97 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need to, click on the help link to " +"recover your password." +msgstr "" +"Die E-Mail-Adresse \"%s\" wird bereits genutzt. Die Hilfefunktion " +"ermöglicht es, das Passwort zurückzusetzen." + +#: IDF/Form/Register.php:148 +msgid "Confirm the creation of your account." +msgstr "Bestätige die Erstellung deines Accounts." + +#: 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/IssueUpdate.php:55 IDF/Form/WikiUpdate.php:82 +#: IDF/Form/ReviewFileComment.php:45 +msgid "Comment" +msgstr "Kommentar" + +#: 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." +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/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:166 +msgid "" +"Paste an SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" +"Füge einen öffentlichen SSH- oder monotone-Schlüssel hier ein. Pass auf, " +"dass Du nicht versehentlich Deinen privaten Schlüssel hier hineinkopierst!" + +#: IDF/Form/UserAccount.php:171 +msgid "Add a secondary mail address" +msgstr "Füge eine sekundäre E-Mail-Adresse hinzu" + +#: IDF/Form/UserAccount.php:173 +msgid "You will get a mail to confirm that you own the address you specify." +msgstr "" +"Du erhälst eine E-Mail, um zu bestätigen, die angegebene Adresse Dir gehört." + +#: IDF/Form/UserAccount.php:200 +msgid "Confirm your new email address." +msgstr "Bestätigung der neuen E-Mail-Adresse" + +#: IDF/Form/UserAccount.php:203 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" +"Eine Validierungs-E-Mail wurde an \"%s\" versandt, um die Adressänderung zu " +"überprüfen." + +#: IDF/Form/UserAccount.php:334 +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:354 +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:362 +msgid "Public key looks like neither an SSH nor monotone public key." +msgstr "" +"Der öffentliche Schlüssel sieht weder wie ein öffentlicher SSH- noch ein " +"öffentlicher monotone-Schlüssel aus." + +#: IDF/Form/UserAccount.php:374 +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 to 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 +#, 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:72 +msgid "" +"Your password must be hard for other people to guess, but easy for you to " +"remember." +msgstr "" +"Dein Passwort muss für andere Leute schwer zu erraten, aber für Dich leicht " +"zu merken sein." + +#: IDF/Form/RegisterConfirmation.php: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/WikiRevision.php:48 msgid "page" @@ -4849,6 +4671,11 @@ 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" @@ -4869,15 +4696,254 @@ msgstr "Neue Dokumentations-Seite %s - %s (%s)" msgid "Documentation Page Changed %s - %s (%s)" msgstr "Dokumentations-Seite geändert %s - %s (%s)" -#, fuzzy -#~ msgid "here" -#~ msgstr "Andere" +#: IDF/Review/Patch.php:52 +msgid "review" +msgstr "Code-Besprechung" -#~ msgid "Managed Projects:" -#~ msgstr "Verwaltete Projekte:" +#: IDF/Review/Patch.php:67 +msgid "commit" +msgstr "Revision" -#~ msgid "Do you have a password?" -#~ msgstr "Hast Du ein Passwort?" +#: IDF/Review/Patch.php:80 IDF/Review/Comment.php:55 +msgid "patch" +msgstr "Patch" -#~ msgid "No, I am a new here." -#~ msgstr "Nein, ich bin neu hier." +#: 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: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 "mir" + +#: IDF/Template/Markdown.php:81 +msgid "Create this documentation page" +msgstr "Erstelle diese Dokumentations-Seite" diff --git a/src/IDF/locale/es_ES/idf.po b/src/IDF/locale/es_ES/idf.po index 2754977..fc98892 100644 --- a/src/IDF/locale/es_ES/idf.po +++ b/src/IDF/locale/es_ES/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" -"POT-Creation-Date: 2011-02-23 23:36+0100\n" -"PO-Revision-Date: 2011-02-23 00:05+0000\n" -"Last-Translator: Delkia \n" +"Report-Msgid-Bugs-To: http://projects.ceondo.com/p/indefero/issues/\n" +"POT-Creation-Date: 2011-03-18 23:30+0100\n" +"PO-Revision-Date: 2011-03-19 11:00+0000\n" +"Last-Translator: Mika \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/Commit.php:55 IDF/Conf.php:54 IDF/Issue.php:52 IDF/Review.php:65 @@ -63,21 +63,29 @@ msgstr "clave" msgid "value" msgstr "valor" -#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:540 +#: IDF/EmailAddress.php:49 IDF/Key.php:49 +msgid "user" +msgstr "usuario" + +#: IDF/EmailAddress.php:55 +msgid "email" +msgstr "email" + +#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:561 msgid "git" msgstr "git" -#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:541 +#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:562 msgid "Subversion" msgstr "Subversion" -#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:542 +#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:563 msgid "mercurial" msgstr "mercurial" -#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:543 +#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:564 msgid "monotone" -msgstr "" +msgstr "monótono" #: IDF/Form/Admin/ProjectCreate.php:49 IDF/Form/Admin/ProjectUpdate.php:44 #: IDF/Views/Admin.php:66 IDF/Views/Admin.php:210 @@ -104,7 +112,7 @@ msgstr "" #: IDF/Form/Admin/ProjectCreate.php:69 IDF/Form/Admin/ProjectUpdate.php:50 msgid "Short description" -msgstr "" +msgstr "Descripción corta" #: IDF/Form/Admin/ProjectCreate.php:70 IDF/Form/Admin/ProjectUpdate.php:51 #: IDF/Project.php:79 @@ -129,13 +137,15 @@ msgstr "Contraseña del Repositorio" #: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/Admin/ProjectUpdate.php:59 msgid "Master branch" -msgstr "" +msgstr "Principal Branch" #: 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 "" +"Este debe ser un identificador único para su proyecto. Una notación tipo DNS" +" inversa como \"com.mi-dominio.mi-proyecto\" es una buena elección." #: IDF/Form/Admin/ProjectCreate.php:114 IDF/Form/Admin/ProjectUpdate.php:68 #: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53 @@ -149,31 +159,35 @@ msgstr "Miembros del proyecto" #: IDF/Form/Admin/ProjectCreate.php:136 msgid "Project template" -msgstr "" +msgstr "Plantilla de Proyecto" #: 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 "" +"Utilizar el proyecto propuesto para iniciar un nuevo proyecto. Los permisos " +"de acceso y configuración general se tomarán de la plantilla de proyecto." #: IDF/Form/Admin/ProjectCreate.php:185 msgid "" -"Only a remote repository available throught http or https are allowed. For " +"Only a remote repository available through HTTP or HTTPS is 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\"." +"Solo un repositorio remoto HTTP o HTTPS está permitido. Por ejemplo, " +"\"http://dominio.com/svn/trunk\"." -#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 +#: IDF/Form/Admin/ProjectCreate.php:201 msgid "" "The master branch is empty or contains illegal characters, please use only " "letters, digits, dashs and dots as separators." msgstr "" +"El branch principal está vacío o contiene caracteres no válidos, por favor " +"utiliza solamente letras, digitos, guiones y puntos como separadores." #: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101 msgid "This master branch is already used. Please select another one." -msgstr "" +msgstr "Esta rama principal ya está en uso. Por favor, seleccione otra." #: IDF/Form/Admin/ProjectCreate.php:222 msgid "" @@ -199,10 +213,10 @@ msgstr "Este nombre corto ya está en uso. Por favor, seleccione otro." #: 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/Password.php:76 IDF/Form/Register.php:112 +#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:127 #: IDF/Form/TabsConf.php:98 IDF/Form/UpdateUpload.php:126 -#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:180 +#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:216 #: IDF/Form/UserChangeEmail.php:80 IDF/Form/WikiCreate.php:167 #: IDF/Form/WikiDelete.php:59 IDF/Form/WikiUpdate.php:178 msgid "Cannot save the model from an invalid form." @@ -217,7 +231,7 @@ msgstr "" #: IDF/Form/Admin/ProjectCreate.php:362 msgid "This project is not available." -msgstr "" +msgstr "Este proyecto no está disponible." #: IDF/Form/Admin/ProjectDelete.php:41 msgid "Confirmation code" @@ -241,6 +255,14 @@ msgstr "" 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/ProjectUpdate.php:90 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashes and dots as separators." +msgstr "" +"El principal branch está vacío o contiene caracteres no válidos, por favor " +"utiliza sólo letras, dígitos, guiones y puntos como separadores." + #: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 #: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40 msgid "First name" @@ -255,10 +277,10 @@ msgstr "Apellidos" msgid "Login" msgstr "Iniciar sesión" -#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 +#: IDF/Form/Admin/UserCreate.php:60 msgid "" -"The login must be between 3 and 15 characters long and contains only letters " -"and digits." +"The login must be between 3 and 15 characters long and contains only letters" +" and digits." msgstr "" "El nombre de usuario debe tener entre 3 y 15 caracteres de largo y contener " "solamente letras y dígitos." @@ -269,10 +291,10 @@ msgstr "Email" #: IDF/Form/Admin/UserCreate.php:71 msgid "" -"Double check the email address as the password is directly sent to the user." +"Double check the email address as the password is sent directly to the user." msgstr "" -"Re-Compruebe la dirección de correo electrónico, la contraseña se envía " -"directamente al usuario" +"Vuelva a comprobar tanto la dirección de correo electrónico como la " +"contraseña, ambas se envían directamente al usuario." #: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 #: IDF/Form/UserAccount.php:66 @@ -281,19 +303,22 @@ msgstr "Idioma" #: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161 msgid "Add a public key" -msgstr "" +msgstr "Agregar una clave pública" -#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:166 +#: IDF/Form/Admin/UserCreate.php:92 msgid "" "Paste a SSH or monotone public key. Be careful to not provide your private " "key here!" msgstr "" +"Pege un SSH o de clave pública monótona. ¡Tenga cuidado de no proporcionar " +"aquí su clave privada!" #: IDF/Form/Admin/UserCreate.php:157 msgid "Your details to access your forge." msgstr "Sus datos para acceder a la forja." -#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:402 +#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:420 +#: IDF/Form/UserAccount.php:429 #, php-format msgid "The email \"%s\" is already used." msgstr "La dirección de correo electrónico \"%s\" ya está en uso." @@ -318,7 +343,7 @@ 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 " +"The password must be hard for other people to guess, but easy for the user " "to remember." msgstr "" "La contraseña debe ser difícil de averiguar para otras personas, pero fácil " @@ -337,41 +362,44 @@ msgstr "Descripción" #: IDF/Form/Admin/UserUpdate.php:109 IDF/Form/UserAccount.php:110 msgid "Twitter username" -msgstr "" +msgstr "Nombre de usuario Twitter " #: IDF/Form/Admin/UserUpdate.php:119 IDF/Form/UserAccount.php:120 msgid "Public email address" -msgstr "" +msgstr "Dirección de correo electrónico Pública " #: IDF/Form/Admin/UserUpdate.php:129 IDF/Form/UserAccount.php:130 msgid "Website URL" -msgstr "" +msgstr "URL del sitio web" #: IDF/Form/Admin/UserUpdate.php:139 IDF/Form/UserAccount.php:140 msgid "Upload custom avatar" -msgstr "" +msgstr "Carga tu avatar personalizado" #: IDF/Form/Admin/UserUpdate.php:146 IDF/Form/UserAccount.php:147 msgid "" "An image file with a width and height not larger than 60 pixels (bigger " "images are scaled down)." msgstr "" +"Un archivo de imagen con una anchura y una altura no mayor de 60 píxeles " +"(imágenes más grandes se reducirán)." #: IDF/Form/Admin/UserUpdate.php:151 IDF/Form/UserAccount.php:152 msgid "Remove custom avatar" -msgstr "" +msgstr "Eliminar avatar personalizado" #: IDF/Form/Admin/UserUpdate.php:155 IDF/Form/UserAccount.php:156 msgid "Tick this to delete the custom avatar." -msgstr "" +msgstr "Marque esta opción para eliminar el avatar personalizado." #: 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." +msgid "If you give staff rights to a user, you really need to trust them." msgstr "" +"Si le da permisos de Staff a un usuario, debe confiar plenamente en él." #: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:213 msgid "Active" @@ -380,10 +408,10 @@ 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." +"you can directly enable or disable their account here." msgstr "" "Si el usuario no recibe el email de confirmación o está abusando del " -"sistema, puede directamente activar o desactivar su cuenta aquí." +"sistema, puede directamente activar o desactivar su cuenta desde aquí." #: IDF/Form/Admin/UserUpdate.php:274 msgid "--- is not a valid first name." @@ -393,25 +421,25 @@ msgstr "--- No es un nombre válido." msgid "" "A user with this email already exists, please provide another email address." msgstr "" -"Ya existe un usuario con este correo electrónico , por favor, introduce otro " -"email." +"Ya existe un usuario con este correo electrónico , por favor, introduce otro" +" email." -#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/Upload.php:86 -#: IDF/Form/UserAccount.php:369 +#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:389 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 +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:452 msgid "The passwords do not match. Please give them again." msgstr "Las contraseñas no coinciden. Por favor, vuelve a intentarlo." #: IDF/Form/Field/EmailList.php:45 msgid "Please enter one or more valid email addresses." msgstr "" +"Por favor, introduzca una o más direcciones de correo electrónico válidas." #: IDF/Form/IssueCreate.php:53 IDF/Form/IssueUpdate.php:45 -#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:71 +#: IDF/Form/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:73 #: IDF/Form/UpdateUpload.php:42 IDF/Form/Upload.php:40 #: IDF/Views/Download.php:65 IDF/Views/Download.php:293 IDF/Views/Issue.php:62 #: IDF/Views/Issue.php:139 IDF/Views/Issue.php:220 IDF/Views/Issue.php:296 @@ -424,15 +452,14 @@ 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." +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/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:83 #: IDF/Views/Issue.php:63 IDF/Views/Issue.php:140 IDF/Views/Issue.php:222 #: IDF/Views/Issue.php:297 IDF/Views/Issue.php:384 IDF/Views/Issue.php:563 #: IDF/Views/Issue.php:622 IDF/Views/Review.php:59 IDF/Views/User.php:84 @@ -451,7 +478,7 @@ msgstr "Etiquetas" #: IDF/Form/IssueCreate.php:192 msgid "You cannot add a label with the \"Status\" prefix to an issue." -msgstr "" +msgstr "No se puede agregar una etiqueta con el prefijo \"Status\" a un ticket." #: IDF/Form/IssueCreate.php:193 IDF/Form/IssueCreate.php:200 #: IDF/Form/UpdateUpload.php:110 IDF/Form/Upload.php:120 @@ -464,6 +491,7 @@ msgstr "Proporcionaste una etiqueta no válida." #, php-format msgid "You cannot provide more than label from the %s class to an issue." msgstr "" +"No puede proporcionar más de una etiqueta de la clase %s en un ticket." #: IDF/Form/IssueCreate.php:210 IDF/Form/IssueUpdate.php:147 msgid "You need to provide a description of the issue." @@ -475,16 +503,19 @@ 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" +"Define an issue template to hint to the reporter to provide certain " +"information" msgstr "" +"Defina una plantilla de tickets para sugerir al autor a que proporcione " +"cierta información" #: IDF/Form/IssueTrackingConf.php:89 msgid "Open issue status values" -msgstr "" +msgstr "Valores de estado para Tickets abiertos" #: IDF/Form/IssueTrackingConf.php:97 msgid "Closed issue status values" -msgstr "" +msgstr "Valores de estado para Tickets cerrados" #: IDF/Form/IssueTrackingConf.php:106 msgid "Predefined issue labels" @@ -495,6 +526,8 @@ msgid "" "The first \"Type:\" and \"Priority:\" entries found in this list are " "automatically chosen as defaults for new issues." msgstr "" +"La primera entrada \"Tipo:\" y \"Prioridad:\" de esta lista será " +"seleccionada automáticamente por defecto para los nuevos tickets." #: IDF/Form/IssueTrackingConf.php:116 msgid "Each issue may have at most one label with each of these classes" @@ -514,8 +547,8 @@ msgstr "No se han introducido cambios." #, php-format msgid "The following login is invalid: %s." msgid_plural "The following logins are invalid: %s." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "El siguiente nombre de usuario no es válido: %s." +msgstr[1] "Los siguientes nombres de usuarios no son válidos: %s." #: IDF/Form/Password.php:34 msgid "Your login or email" @@ -532,8 +565,8 @@ msgid "" "Sorry, we cannot find a user with this email address or login. Feel free to " "try again." msgstr "" -"Lo sentimos, no hemos encontrado ningún usuario con esta dirección de correo " -"electrónico o nombre de usuario. Vuelva a intentarlo." +"Lo sentimos, no hemos encontrado ningún usuario con esta dirección de correo" +" electrónico o nombre de usuario. Vuelva a intentarlo." #: IDF/Form/Password.php:100 msgid "Password Recovery - InDefero" @@ -546,11 +579,11 @@ msgstr "Tu clave de verificación" #: IDF/Form/PasswordInputKey.php:50 IDF/Form/PasswordReset.php:89 msgid "" -"We are sorry but this validation key is not valid. Maybe you should directly " -"copy/paste it from your validation email." +"We are sorry but this validation key is not valid. Maybe you should directly" +" copy/paste it from your validation email." msgstr "" -"Lo sentimos, pero esta clave de validación no es válida. Intente copiar/" -"pegar desde el email de validación." +"Lo sentimos, pero esta clave de validación no es válida. Intente " +"copiar/pegar desde el email de validación." #: IDF/Form/PasswordInputKey.php:61 IDF/Form/PasswordReset.php:100 msgid "" @@ -572,8 +605,7 @@ msgstr "No se puede guardar un formulario no válido." msgid "Your password" msgstr "Su contraseña" -#: IDF/Form/PasswordReset.php:48 IDF/Form/RegisterConfirmation.php:72 -#: IDF/Form/UserAccount.php:80 +#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80 msgid "" "Your password must be hard for other people to find it, but easy for you to " "remember." @@ -602,13 +634,23 @@ msgstr "" msgid "Your login" msgstr "Tu nombre de usuario" +#: IDF/Form/Register.php:45 +msgid "" +"The login must be between 3 and 15 characters long and contain only letters " +"and digits." +msgstr "" +"El nombre de usuario debe tener entre 3 y 15 caracteres y contener solamente" +" letras y dígitos." + #: IDF/Form/Register.php:53 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!" +msgid "We will never send you any unsolicited emails. We hate spam too!" +msgstr "" +"Nunca te enviaremos correo electrónico que no haya solicitado. ¡También " +"odiamos el spam!" #: IDF/Form/Register.php:60 msgid "I agree to the terms and conditions." @@ -616,21 +658,22 @@ msgstr "Estoy de acuerdo con los términos y condiciones." #: IDF/Form/Register.php:88 msgid "" -"We know, this is boring, but you need to agree with the terms and conditions." +"We know, this is boring, but you need to agree with the terms and " +"conditions." msgstr "" "Lo sabemos, esto es aburrido, pero es necesario aceptar los términos y " "condiciones." -#: IDF/Form/Register.php:99 +#: IDF/Form/Register.php:97 #, php-format msgid "" -"The email \"%s\" is already used. If you need, click on the help link to " +"The email \"%s\" is already used. If you need to, 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." +"La dirección de correo \"%s\" ya está en uso. Si lo necesita, haga clic en " +"el enlace de ayuda para recuperar su contraseña." -#: IDF/Form/Register.php:150 +#: IDF/Form/Register.php:148 msgid "Confirm the creation of your account." msgstr "Confirme la creación de su cuenta." @@ -638,13 +681,21 @@ msgstr "Confirme la creación de su cuenta." msgid "Your confirmation key" msgstr "Tu clave de confirmación" +#: IDF/Form/RegisterConfirmation.php:72 +msgid "" +"Your password must be hard for other people to guess, but easy for you to " +"remember." +msgstr "" +"Su contraseña debe ser difícil de averiguar para otras personas, pero que le" +" sea fácil de recordar." + #: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50 msgid "" "We are sorry but this confirmation key is not valid. Maybe you should " "directly copy/paste it from your confirmation email." msgstr "" -"Lo sentimos, pero esta clave de confirmación no es válida. Pruebe a copiar y " -"pegar directamente desde el email de confirmación." +"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 "" @@ -681,27 +732,25 @@ msgstr "El Parche inicial debe ser revisado." msgid "General comment" msgstr "Comentario General" -#: IDF/Form/ReviewFileComment.php:102 +#: IDF/Form/ReviewFileComment.php:104 msgid "You need to provide comments on at least one file." msgstr "Debe hacer comentarios sobre al menos un archivo." -#: IDF/Form/ReviewFileComment.php:109 +#: IDF/Form/ReviewFileComment.php:111 msgid "You need to provide your general comment about the proposal." msgstr "Debe hacer un comentario general sobre la propuesta." #: IDF/Form/SourceConf.php:56 msgid "Webhook URL" -msgstr "" +msgstr "URL de Webhook" #: IDF/Form/SourceConf.php:58 #, php-format msgid "Learn more about the post-commit web hooks." -msgstr "" +msgstr "Saber más sobre WebHooks post-commit." #: IDF/Form/TabsConf.php:38 IDF/gettexttemplates/idf/admin/base.html.php:4 -#: IDF/gettexttemplates/idf/base-full.html.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 @@ -709,32 +758,24 @@ msgstr "" 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/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.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/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:7 #: IDF/gettexttemplates/idf/base.html.php:7 #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17 msgid "Issues" @@ -764,6 +805,11 @@ msgstr "Usuarios autorizados adicionales" msgid "File" msgstr "Archivo" +#: IDF/Form/Upload.php:86 +msgid "For security reasons, you cannot upload a file with this extension." +msgstr "" +"Por razones de seguridad, no se puede cargar un archivo con esta extensión." + #: IDF/Form/UploadConf.php:53 msgid "Predefined download labels" msgstr "Etiquetas predefinidas para descarga" @@ -790,11 +836,29 @@ msgstr "" 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 +#: IDF/Form/UserAccount.php:166 +msgid "" +"Paste an SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" +"Pega una clave pública SSH o monotone. ¡Tenga cuidado de no proporcionar " +"aquí su clave privada!" + +#: IDF/Form/UserAccount.php:171 +msgid "Add a secondary mail address" +msgstr "Añadir una dirección de correo secundaria" + +#: IDF/Form/UserAccount.php:173 +msgid "You will get a mail to confirm that you own the address you specify." +msgstr "" +"Recibirá un correo electrónico para confirmar que eres el dueño de la " +"dirección que ha especificado." + +#: IDF/Form/UserAccount.php:200 msgid "Confirm your new email address." msgstr "Confirme su nueva dirección de correo electrónico." -#: IDF/Form/UserAccount.php:212 +#: IDF/Form/UserAccount.php:203 #, php-format msgid "" "A validation email has been sent to \"%s\" to validate the email address " @@ -803,31 +867,38 @@ msgstr "" "Un email de validación ha sido enviado a \"%s\" para validar el cambio de " "dirección de correo electrónico." -#: IDF/Form/UserAccount.php:314 +#: IDF/Form/UserAccount.php:334 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 "" +"Por favor, compruebe la clave, ya que no parece ser válida la clave pública " +"SSH." #: IDF/Form/UserAccount.php:354 -msgid "You already have uploaded this key." +msgid "" +"Please check the key as it does not appear to be a valid monotone public " +"key." msgstr "" +"Por favor, compruebe la clave, ya que parece no ser una clave pública " +"monotone válida ." + +#: IDF/Form/UserAccount.php:362 +msgid "Public key looks like neither an SSH nor monotone public key." +msgstr "" +"La clave pública no coincide con una clave pública SSH, ni con a una clave " +"monotone." + +#: IDF/Form/UserAccount.php:374 +msgid "You already have uploaded this key." +msgstr "Ya has subido esta clave." #: IDF/Form/UserChangeEmail.php:63 msgid "" -"The validation key is not valid. Please copy/paste it from your confirmation " -"email." +"The validation key is not valid. Please copy/paste it from your confirmation" +" email." msgstr "" -"La clave de validación no es válido. Por favor, copia/pega desde su email de " -"confirmación." +"La clave de validación no es válido. Por favor, copia/pega desde su email de" +" confirmación." #: IDF/Form/WikiConf.php:49 msgid "Predefined documentation page labels" @@ -835,7 +906,8 @@ msgstr "Etiquetas predefinidas para página de documentación" #: IDF/Form/WikiConf.php:58 msgid "" -"Each documentation page may have at most one label with each of these classes" +"Each documentation page may have at most one label with each of these " +"classes" msgstr "" "Cada página de documentación podrá tener más de una etiqueta para cada una " "de estas clases" @@ -855,10 +927,22 @@ msgid "" "* Headings, paragraphs, and lists.\n" "* Links to other [[WikiPage]].\n" msgstr "" +"# Introducción\n" +"\n" +"Añade tu contenido aquí.\n" +"\n" +"\n" +"# Detalles\n" +"\n" +"Añade tu contenido aquí. Formatea el contenido con:\n" +"\n" +"* Texto en **negrita** o *cursiva*.\n" +"* Títulos, párrafos y listas.\n" +"* Enlaces a otro [[WikiPage]].\n" #: IDF/Form/WikiCreate.php:57 msgid "PageName" -msgstr "" +msgstr "NombreDeLaPágina" #: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50 msgid "Page title" @@ -940,9 +1024,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" +"

Instrucciones:

\n" +"

Lista un valor por línea en el orden deseado.

\n" +"

Si lo desea, puede utilizar un signo de igual para documentar el valor de cada estado.

\n" #: IDF/gettexttemplates/idf/admin/downloads.html.php:8 #: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8 @@ -959,10 +1046,13 @@ msgstr "Guardar cambios" 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" +"

Instrucciones:

\n" +"

Especifique cada persona por su nombre de usuaro. Cada persona debe haberse registrado con el nombre de usuario dado.

\n" +"

Separe los nombres de usuarios con comas y/o nuevas líneas.

\n" #: IDF/gettexttemplates/idf/admin/members.html.php:8 #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:9 @@ -970,15 +1060,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" +"

Notas:

\n" +"

El propietario de un proyecto puede hacer cualquier cambio a este proyecto, incluyendo la eliminación de otros propietarios del proyecto. ¡Tienes que tener cuidado cuando das permisos de propietario!.

\n" +"

Un miembro del proyecto no tendrá acceso al área de administración, pero tendrá más opciones disponibles para usar en el proyecto.

\n" #: IDF/gettexttemplates/idf/admin/source.html.php:3 -msgid "You can find here the current repository configuration of your project." +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." @@ -988,8 +1080,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" @@ -1008,6 +1099,28 @@ msgid "" "post-commit URL http://mydomain.com/%p/%r would send a request to\n" "http://mydomain.com/my-project/123.

    " msgstr "" +"

    La configuración URL WebHook especifica una URL con una solicitud HTTP POST\n" +"que se envía después de cada commit del repositorio. Si este campo está vacío,\n" +"las notificaciones están desactivadas.

    \n" +"\n" +"

    Únicamente las URLs HTTP, \n" +"se aceptan 'escapándolas' apropiadamente, por ejemplo:

    \n" +"\n" +"
      \n" +"
    • http://dominio.com/commit
    • \n" +"
    • http://dominio.com/commit?mi%20parametro
    • \n" +"
    \n" +"\n" +"

    Además, la URL puede contener la siguiente notación: \"%\", que\n" +"será reemplazada por los valores específicos del proyecto para cada commit:

    \n" +"\n" +"
      \n" +"
    • %p - nombre del proyecto
    • \n" +"
    • %r - número de revisión
    • \n" +"
    \n" +"\n" +"

    Por ejemplo, el commit de la revisión 123 del proyecto 'mi-proyecto' con URL de post-commit http://midominio.com/%p/%r enviaría la solicitud\n" +"http://midominio.com/mi-proyecto/123.

    " #: IDF/gettexttemplates/idf/admin/source.html.php:26 msgid "" @@ -1031,16 +1144,18 @@ msgstr "Tamaño Respositorio:" #: IDF/gettexttemplates/idf/admin/source.html.php:30 msgid "Post-commit authentication key:" -msgstr "" +msgstr "Clave de autenticación Post-commit:" #: IDF/gettexttemplates/idf/admin/summary.html.php:3 #, php-format msgid "" "\n" "

    Instructions:

    \n" -"

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

    \n" +"

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

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

    Instrucciones:

    \n" +"

    La descripción del proyecto puede ser mejorada mediante la Sintaxis de Marcado.

    \n" #: IDF/gettexttemplates/idf/admin/summary.html.php:7 msgid "" @@ -1057,12 +1172,19 @@ msgid "" "not provided and the users must authenticate themselves with their
    \n" "password or SSH key." msgstr "" +"\n" +"Solo los miembros del proyecto y los administradores tienen acceso de escritura sobre las fuentes.
    \n" +"Si restringe el acceso a las fuentes, el acceso anónimo,
    \n" +"no estará habilitado y los usuarios deberán autentificarse con su
    \n" +"contraseña o clave SSH." #: IDF/gettexttemplates/idf/admin/tabs.html.php:8 msgid "" "You can configure here the project tabs access rights and notification " "emails." msgstr "" +"Puede configurar aquí los permisos de acceso a las pestañas del proyecto y " +"los mensajes de notificación." #: IDF/gettexttemplates/idf/admin/tabs.html.php:9 #, php-format @@ -1070,17 +1192,23 @@ msgid "" "Notification emails will be sent from the %%from_email%% " "address, if you send the email to a mailing list, you may need to register " "this email address. Multiple email addresses must be separated through " -"commas (','). If you do not want to send emails for a given type of changes, " -"simply leave the corresponding field empty." +"commas (','). If you do not want to send emails for a given type of changes," +" simply leave the corresponding field empty." msgstr "" +"Las notificaciones de mensajes se enviarán desde la dirección " +"%%from_email%%, si envía el mensaje a una lista de correo, " +"puede que tenga que registrar esta dirección de correo electrónico. Varias " +"direcciones de correo electrónico deben separarse por comas (','). Si no " +"desea enviar mensajes de correo electrónico para un determinado tipo de " +"cambio, simplemente deje el correspondiente campo vacío." #: 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." +"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 " @@ -1119,9 +1247,7 @@ msgstr "Notificación por email" 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 "" @@ -1131,16 +1257,12 @@ 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" @@ -1153,14 +1275,14 @@ msgstr "Nueva descarga" #: IDF/gettexttemplates/idf/downloads/delete.html.php:3 msgid "" -"Attention! If you want to delete a specific version of your " -"software, maybe, someone is depending on this specific version to run his " +"Attention! If you want to delete a specific version of your" +" software, maybe, someone is depending on this specific version to run his " "systems. Are you sure, you will not affect anybody when removing this file?" msgstr "" "¡Atención! Si desea eliminar una versión específica del " "software, tal vez, alguien está utilizando esta versión específica para " -"ejecutarlo en su sistema. ¿Estás seguro de que no afectará a nadie cuando se " -"elimine este archivo?" +"ejecutarlo en su sistema. ¿Estás seguro de que no afectará a nadie cuando se" +" elimine este archivo?" #: IDF/gettexttemplates/idf/downloads/delete.html.php:4 #, php-format @@ -1204,7 +1326,7 @@ msgstr "Eliminar archivo" #: 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/myaccount.html.php:13 #: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5 #: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5 #: IDF/gettexttemplates/idf/user/passrecovery.html.php:7 @@ -1233,7 +1355,7 @@ 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 +#: IDF/gettexttemplates/idf/index.html.php:13 msgid "Downloads:" msgstr "Descargas:" @@ -1320,8 +1442,7 @@ msgid "" "name." msgstr "" "Cada archivo debe tener un nombre distinto y el contenido del archivo\n" -"no se puede cambiar, así que asegúrese de incluir los números de versión en " -"el nombre de cada\n" +"no se puede cambiar, así que asegúrese de incluir los números de versión en el nombre de cada\n" "archivo." #: IDF/gettexttemplates/idf/downloads/submit.html.php:6 @@ -1395,7 +1516,7 @@ msgstr "Aquí estamos, para ayudarte." #: 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 +#: IDF/Views.php:47 msgid "Projects" msgstr "Proyectos" @@ -1403,27 +1524,27 @@ msgstr "Proyectos" 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 "" "

    Es simple:

    \n" "
      \n" -"
    1. Escribe en los comentarios \"Esto es una duplicado del ticket 123\", " -"cambia 123 por el número de ticket correspondiente.
    2. \n" +"
    3. Escribe en los comentarios \"Esto es una duplicado del ticket 123\", cambia 123 por el número de ticket correspondiente.
    4. \n" "
    5. Cambia el estado del ticket actual a Duplicado.
    6. \n" "
    7. Envíe los cambios.
    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 "" -"Necesitas crear una cuenta en Gravatar , tardarás 5 minutos y es gratuito." +"Necesitas crear una cuenta en Gravatar , tardarás 5 minutos y es " +"gratuito." #: IDF/gettexttemplates/idf/faq.html.php:10 msgid "" @@ -1454,12 +1575,12 @@ msgstr "¿Cómo marcar un ticket como duplicado?" #: IDF/gettexttemplates/idf/faq.html.php:14 #: IDF/gettexttemplates/idf/faq.html.php:32 msgid "How can I display my head next to my comments?" -msgstr "" +msgstr "¿Cómo puedo mostrar mi avatar al lado de mis comentarios?" #: IDF/gettexttemplates/idf/faq.html.php:15 #: IDF/gettexttemplates/idf/faq.html.php:33 -msgid "What is the API and how to use it?" -msgstr "¿Qué es la API y cómo se utiliza?" +msgid "What is the API and how is it used?" +msgstr "¿Que es la API y cómo se usa?" #: IDF/gettexttemplates/idf/faq.html.php:17 msgid "Shift+h: This help page." @@ -1523,7 +1644,7 @@ msgstr "Personas" #: IDF/gettexttemplates/idf/gadmin/base.html.php:5 msgid "Usher" -msgstr "" +msgstr "Usher" #: IDF/gettexttemplates/idf/gadmin/home.html.php:3 msgid "You have here access to the administration of the forge." @@ -1532,6 +1653,7 @@ msgstr "Tienes aquí el acceso a la administración de la forja." #: IDF/gettexttemplates/idf/gadmin/home.html.php:4 #: IDF/gettexttemplates/idf/project/home.html.php:3 #: IDF/gettexttemplates/idf/project/timeline.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html~.php:4 msgid "Welcome" msgstr "Bienvenido" @@ -1561,8 +1683,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 "" "Una vez que haya definido el tipo de repositorio, no se puede " "modificar." @@ -1570,10 +1692,12 @@ msgstr "" #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:5 msgid "" "\n" -"

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

    \n" +"

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

    \n" "

    Separate the logins with commas and/or new lines.

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

    Especifique cada persona por su nombre de usuario. Cada persona debe estar registrada con el nombre de usuario proporcionado.

    \n" +"

    Separe los nombres de usuario con comas y / o saltos de líneas.

    \n" #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:14 msgid "" @@ -1585,6 +1709,8 @@ msgstr "" #: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:15 msgid "Provide at least one owner for the project or use a template." msgstr "" +"Proporcione al menos un propietario para el proyecto o utilice una " +"plantilla." #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:3 #, php-format @@ -1592,6 +1718,8 @@ msgid "" "Confirmation code to confirm the deletion of the project: \n" "%%code%%." msgstr "" +"Código de confirmación para autorizar la eliminación del proyecto: \n" +"%%code%%." #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:5 msgid "" @@ -1600,6 +1728,9 @@ msgid "" "with the consequences that all the data related to the \n" "project will be deleted.\n" msgstr "" +"\n" +"¡Atención! Eliminar un proyecto es una operación delicada,\n" +"que tiene como resultado borrar todos los datos del proyecto.\n" #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:10 msgid "" @@ -1622,7 +1753,7 @@ msgstr "Número" #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:15 msgid "Code reviews" -msgstr "Comentários del código" +msgstr "Revisiones del código" #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:16 #: IDF/Views/Project.php:73 @@ -1734,6 +1865,18 @@ msgid "" "Yours faithfully,\n" "The development team.\n" msgstr "" +"Hola %%user%%,\n" +"\n" +"Se ha creado una cuenta en la forja para ti por el administrador %%admin%%.\n" +"\n" +"Aquí encontrará sus datos para acceder a la forja:\n" +"\n" +" Dirección: %%url%%\n" +" Nombre de usuario: %%user.login%%\n" +" Contraseña: %%password%%\n" +"\n" +"Atentamente,\n" +"El equipo de desarrollo.\n" #: IDF/gettexttemplates/idf/gadmin/users/index.html.php:3 #, php-format @@ -1743,8 +1886,8 @@ msgstr "Ver usuarios sin validar." #: IDF/gettexttemplates/idf/gadmin/users/index.html.php:4 msgid "

    You have here an overview of the users registered in the forge.

    " msgstr "" -"

    Tiene aquí una visión general de los usuarios registrados en la forja. " +"

    Tiene aquí una visión general de los usuarios registrados en la forja. " +"

    " #: IDF/gettexttemplates/idf/gadmin/users/index.html.php:5 msgid "Number of users:" @@ -1765,6 +1908,8 @@ msgid "" "If you give the user staff rights, the user will be\n" "able to create new projects and update other non staff users.\n" msgstr "" +"Si da permisos de acceso tipo Staff, el usuario será capaz \n" +"de crear nuevos proyectos y actualizar a otros usuarios que no sean del Staff.\n" #: IDF/gettexttemplates/idf/gadmin/users/update.html.php:9 msgid "The form contains some errors. Please correct them to update the user." @@ -1782,75 +1927,77 @@ msgstr "Inicio de sesión:" #: IDF/gettexttemplates/idf/gadmin/users/update.html.php:11 #: IDF/gettexttemplates/idf/user/myaccount.html.php:5 msgid "Public Profile" -msgstr "" +msgstr "Perfil público" #: IDF/gettexttemplates/idf/gadmin/users/update.html.php:12 msgid "Administrative" -msgstr "" +msgstr "Administrativo" #: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 msgid "Configured servers" -msgstr "" +msgstr "Servidores configurados" #: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:4 #: IDF/Views/Admin.php:358 msgid "Usher control" -msgstr "" +msgstr "Control Usher" #: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:3 msgid "address" -msgstr "" +msgstr "dirección" #: IDF/gettexttemplates/idf/gadmin/usher/connections.html.php:4 msgid "port" -msgstr "" +msgstr "puerto" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3 msgid "current server status:" -msgstr "" +msgstr "estado actual del servidor:" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:4 msgid "startup" -msgstr "" +msgstr "inicio" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:5 msgid "shutdown" -msgstr "" +msgstr "apagado" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:6 msgid "reload server configuration:" -msgstr "" +msgstr "Recargar la configuración del servidor:" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:7 msgid "reload" -msgstr "" +msgstr "Recargar" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:8 #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:10 msgid "Status explanation" -msgstr "" +msgstr "Explicación del estado" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:9 msgid "active with n total open connections" -msgstr "" +msgstr "activo con un total de n conexiones abiertas" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:10 msgid "waiting for new connections" -msgstr "" +msgstr "esperando nuevas conexiones" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:11 msgid "usher is being shut down, not accepting connections" -msgstr "" +msgstr "Usher está siendo cerrado, no aceptará conexiones" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:12 msgid "" "usher is shut down, all local servers are stopped and not accepting " "connections" msgstr "" +"Usher está apagado, todos los servidores locales están detenidos y no " +"aceptan conexiones" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:3 msgid "server name" -msgstr "" +msgstr "Nombre del servidor" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:4 IDF/Issue.php:99 #: IDF/Review.php:102 @@ -1859,90 +2006,88 @@ msgstr "estado" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:5 msgid "action" -msgstr "" +msgstr "acción" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:6 msgid "stop" -msgstr "" +msgstr "parada" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:7 msgid "start" -msgstr "" +msgstr "inicio" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:8 msgid "kill" -msgstr "" +msgstr "matar" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:9 msgid "active connections" -msgstr "" +msgstr "conexiones activas" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:11 msgid "remote server without open connections" -msgstr "" +msgstr "servidor remoto sin conexiones abiertas" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:12 msgid "server with n open connections" -msgstr "" +msgstr "servidores con n conexiones abiertas" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:13 msgid "local server running, without open connections" -msgstr "" +msgstr "El servidor local se está ejecutando, sin conexiones abiertas" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:14 msgid "local server not running, waiting for connections" -msgstr "" +msgstr "El servidor local no se está ejecutando, a la espera de conexiones" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:15 msgid "local server is about to stop, n connections still open" -msgstr "" +msgstr "El servidor local está a punto de parar, n conexiones siguen abiertas" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:16 msgid "local server not running, not accepting connections" -msgstr "" +msgstr "El servidor local no se está ejecutando, no se aceptan conexiones" #: IDF/gettexttemplates/idf/gadmin/usher/index.html.php:17 msgid "usher is shut down, not running and not accepting connections" -msgstr "" +msgstr "Usher está apagado, no se está ejecutando y no acepta conexiones" #: IDF/gettexttemplates/idf/index.atom.php:3 #, php-format msgid "Personal project feed for %%user%%." -msgstr "" +msgstr "Feed del proyecto personal de %%user%%." #: IDF/gettexttemplates/idf/index.html.php:4 msgid "No projects managed with InDefero were found." msgstr "No se encontraron proyectos gestionados con InDefero." #: IDF/gettexttemplates/idf/index.html.php:7 -#, fuzzy -msgid "Projects:" -msgstr "Proyectos" +msgid "Forge statistics" +msgstr "Estadísticas de la Forja" #: IDF/gettexttemplates/idf/index.html.php:8 -#, fuzzy -msgid "Members:" -msgstr "Miembro desde:" +msgid "Projects:" +msgstr "Proyectos:" #: IDF/gettexttemplates/idf/index.html.php:9 -#, fuzzy -msgid "Issues:" -msgstr "Tickets" +msgid "Members:" +msgstr "Miembros:" #: IDF/gettexttemplates/idf/index.html.php:10 -#, fuzzy +msgid "Issues:" +msgstr "Tickets:" + +#: IDF/gettexttemplates/idf/index.html.php:11 msgid "Commits:" msgstr "Commits" -#: IDF/gettexttemplates/idf/index.html.php:11 -#, fuzzy +#: IDF/gettexttemplates/idf/index.html.php:12 msgid "Documentations:" -msgstr "Documentación" +msgstr "Documentación:" -#: IDF/gettexttemplates/idf/index.html.php:13 -#, fuzzy +#: IDF/gettexttemplates/idf/index.html.php:14 msgid "Code reviews:" -msgstr "Comentários del código" +msgstr "Revisiones del código:" #: IDF/gettexttemplates/idf/issues/attachment.html.php:3 #, php-format @@ -1998,7 +2143,7 @@ msgstr "Mis Tickets" #: IDF/gettexttemplates/idf/issues/base.html.php:6 msgid "My watch list" -msgstr "" +msgstr "Mi lista de seguimiento" #: IDF/gettexttemplates/idf/issues/base.html.php:7 #: IDF/gettexttemplates/idf/wiki/base.html.php:6 @@ -2013,13 +2158,10 @@ msgstr "Volver al ticket" #, php-format msgid "" "

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" +"

    Closed issues: %%closed%%

    \n" msgstr "" -"

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

    Tickets cerrados: %%closed%%

    \n" +"

    Tickets abiertos: %%open%%

    \n" +"

    Tickets cerrados: %%closed%%

    \n" #: IDF/gettexttemplates/idf/issues/by-label.html.php:7 msgid "Label:" @@ -2031,32 +2173,28 @@ msgstr "Finalizados:" #: 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 "" -"

    Cuando envío el ticket, no se olvide proporcionar la siguiente " -"información:

    \n" +"

    Cuando envío el ticket, no se olvide proporcionar la siguiente información:

    \n" "
      \n" "
    • Los pasos para reproducir el problema.
    • \n" "
    • La versión del software y tu sistema operativo.
    • \n" -"
    • Cualquier información que pueda ayudar a los desarrolladores para " -"resolver la incidencia.
    • \n" -"
    • ¡No proporcione ninguna contraseña o información confidencial!
    • \n" +"
    • Cualquier información que pueda ayudar a los desarrolladores para resolver la incidencia.
    • \n" +"
    • ¡No proporcione ninguna contraseña o información confidencial!
    • \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 "" -"El formulario contiene algunos errores. Por favor, corríjalos para enviar el " -"ticket." +"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 @@ -2122,13 +2260,10 @@ msgstr "Propietario:" #, php-format msgid "" "

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    " +"

    Closed issues: %%closed%%

    " msgstr "" -"

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

    Tickets cerrados: %%closed%%

    " +"

    Tickets abiertos: %%open%%

    \n" +"

    Tickets cerrados: %%closed%%

    " #: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:3 msgid "" @@ -2172,26 +2307,23 @@ 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 "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." +"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 "See the %%nb_owner_closed%% closed." msgid_plural "" "See the %%nb_owner_closed%% closed." msgstr[0] "" -"Ver %%nb_owner_closed%% tickets cerrado." -msgstr[1] "" -"Ver %%nb_owner_closed%% cerrado." +"Ver %%nb_owner_closed%% tickets " +"cerrado." +msgstr[1] "Ver %%nb_owner_closed%% cerrado." #: IDF/gettexttemplates/idf/issues/my-issues.html.php:6 #: IDF/gettexttemplates/idf/user/dashboard.html.php:7 @@ -2218,8 +2350,8 @@ msgstr "Reportado por %%submitter%%, %%c.creation_dtime%%" msgid "" "Comment %%i%% by %%submitter%%, %%c.creation_dtime%%" msgstr "" -"Comentario %%i%% por %%submitter%%, %%c." -"creation_dtime%%" +"Comentario %%i%% por %%submitter%%, " +"%%c.creation_dtime%%" #: IDF/gettexttemplates/idf/issues/view.html.php:5 #, php-format @@ -2244,38 +2376,39 @@ msgstr[1] "%%interested%% personas" #: IDF/gettexttemplates/idf/issues/view.html.php:9 msgid "Remove this issue from your watch list" -msgstr "" +msgstr "Eliminar este ticket de mi lista de seguimiento" #: IDF/gettexttemplates/idf/issues/view.html.php:10 msgid "Add this issue to your watch list" -msgstr "" +msgstr "Añadir este ticket a mi lista de seguimiento" #: IDF/gettexttemplates/idf/issues/view.html.php:11 msgid "Click here to view the previous closed issue" -msgstr "" +msgstr "Haga clic aquí para ver el anterior ticket cerrado" #: IDF/gettexttemplates/idf/issues/view.html.php:12 msgid "Click here to view the previous open issue" -msgstr "" +msgstr "Haga clic aquí para ver el anterior ticket abierto" #: IDF/gettexttemplates/idf/issues/view.html.php:13 msgid "Click here to view the next closed issue" -msgstr "" +msgstr "Haga clic aquí para ver la siguiente ticket cerrado" #: IDF/gettexttemplates/idf/issues/view.html.php:14 msgid "Click here to view the next open issue" -msgstr "" +msgstr "Haga clic aquí para ver la siguiente ticket abierto" #: IDF/gettexttemplates/idf/issues/view.html.php:15 msgid "download" -msgstr "" +msgstr "descarga" #: IDF/gettexttemplates/idf/issues/view.html.php:16 msgid "view" -msgstr "" +msgstr "ver" #: 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 "" "El formulario contiene algunos errores. Por favor, corríjalos para " "actualizar el ticket." @@ -2291,23 +2424,22 @@ msgstr "Seguido por:" #: IDF/gettexttemplates/idf/login_form.html.php:3 #, php-format msgid "" -"If you don't have an account yet, you can create one here." +"If you don't have an account yet, you can create one here." msgstr "" +"Si aún no tienes una cuenta, puedes crear una aquí." #: IDF/gettexttemplates/idf/login_form.html.php:4 -#, fuzzy msgid "What is your account information?" -msgstr "¿Cuál es tu usuario?" +msgstr "¿Cuál es la información de su cuenta?" #: IDF/gettexttemplates/idf/login_form.html.php:5 msgid "My login is" msgstr "Mi identificador es" #: IDF/gettexttemplates/idf/login_form.html.php:6 -#, fuzzy msgid "My password is" -msgstr "mi contraseña es" +msgstr "Mi contraseña es" #: IDF/gettexttemplates/idf/login_form.html.php:7 msgid "Sign in" @@ -2318,22 +2450,19 @@ msgid "I lost my password!" msgstr "¡He perdido mi contraseña!" #: IDF/gettexttemplates/idf/login_form.html.php:9 -#, fuzzy msgid "Welcome." -msgstr "Bienvenido" +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" +msgstr "Se tarda menos de un minuto en crearte una cuenta." #: IDF/gettexttemplates/idf/main-menu.html.php:3 #, php-format -msgid "" -"Welcome, %%user%%." +msgid "Welcome, %%user%%." msgstr "" -"Bienvenido, %%user%%." +"Bienvenido, %%user%%." #: IDF/gettexttemplates/idf/main-menu.html.php:4 msgid "Sign Out" @@ -2361,6 +2490,7 @@ msgstr "Ayuda" #: IDF/gettexttemplates/idf/project/home.html.php:4 #: IDF/gettexttemplates/idf/project/timeline.html.php:5 +#: IDF/gettexttemplates/idf/project/timeline.html~.php:5 msgid "Latest Updates" msgstr "Últimas actualizaciones" @@ -2387,15 +2517,22 @@ msgstr "Administradores" #: IDF/gettexttemplates/idf/project/home.html.php:11 msgid "Happy Crew" -msgstr "" +msgstr "Equipo Feliz" #: IDF/gettexttemplates/idf/project/timeline.html.php:3 +#: IDF/gettexttemplates/idf/project/timeline.html~.php:3 msgid "Latest updates" msgstr "Últimas actualizaciones" #: IDF/gettexttemplates/idf/project/timeline.html.php:6 +#: IDF/Views/Project.php:72 +msgid "All Updates" +msgstr "Todas las actualizaciones" + +#: IDF/gettexttemplates/idf/project/timeline.html.php:7 +#: IDF/gettexttemplates/idf/project/timeline.html~.php:6 msgid "Filter by type" -msgstr "" +msgstr "Filtrar por tipo" #: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 #, php-format @@ -2426,11 +2563,36 @@ msgid "" "Yours faithfully,\n" "The development team.\n" msgstr "" +"Hola,\n" +"\n" +"Has solicitado la creación de una cuenta para\n" +"participar en el desarrollo de un proyecto software.\n" +"\n" +"Para confirmar la cuenta, por favor siga este enlace:\n" +"\n" +"%%url%%\n" +"\n" +"Alternativamente, vaya a esta página:\n" +"\n" +"%%urlik%%\n" +"\n" +"y proporcione la siguiente clave de confirmación:\n" +"\n" +"%%key%%\n" +"\n" +"Si no está interesado en participar en el desarrollo de un \n" +"proyecto software o si\n" +"no recuerdas haber solicitado la creación de una cuenta,\n" +"por favor, perdone y simplemente ignore \n" +"este mensaje. \n" +"\n" +"Atentamente,\n" +"El equipo de desarrollo.\n" #: IDF/gettexttemplates/idf/register/confirmation.html.php:3 #: IDF/gettexttemplates/idf/user/myaccount.html.php:3 #: IDF/gettexttemplates/idf/user/passrecovery.html.php:3 -msgid "Oups, please check the form for errors." +msgid "Oops, please check the form for errors." msgstr "Oups, por favor revise los errores del formulario." #: IDF/gettexttemplates/idf/register/confirmation.html.php:5 @@ -2445,8 +2607,8 @@ 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." +"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." @@ -2463,18 +2625,23 @@ 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 "" +"Con su cuenta, será capaz de participar en el desarrollo de todos los " +"proyectos alojados aquí. Participar en un proyecto software tiene que ser " +"algo divertido e interesante, así que si tiene problemas, puede ¡hacernos saber cuáles son sus inquietudes en cualquier " +"momento!" #: IDF/gettexttemplates/idf/register/index.html.php:5 -msgid "Oups, please check the provided login and email address to register." +msgid "Oops, 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." +"Oups, por favor comprueba el nombre de usuario y dirección de correo " +"electrónico de registro." -#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:88 +#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:90 msgid "Create Your Account" msgstr "Crea tu cuenta" @@ -2483,17 +2650,17 @@ msgid "" "Be sure to provide a valid email address, as we are sending a validation " "link by email." msgstr "" -"Asegúrese de proporcionar una dirección válida de correo electrónico, ya que " -"se enviará un enlace de confirmación por correo electrónico." +"Asegúrese de proporcionar una dirección válida de correo electrónico, ya que" +" se enviará un enlace de confirmación por correo electrónico." #: IDF/gettexttemplates/idf/register/index.html.php:9 msgid "Did you know?" -msgstr "" +msgstr "¿Sabía que?" #: IDF/gettexttemplates/idf/register/inputkey.html.php:3 #: IDF/gettexttemplates/idf/user/changeemail.html.php:3 #: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3 -msgid "Oups, we found an error in the form." +msgid "Oops, we found an error in the form." msgstr "Oups, se encontró un error en el formulario." #: IDF/gettexttemplates/idf/register/inputkey.html.php:4 @@ -2506,12 +2673,17 @@ msgid "" "email. Either click directly on the confirmation link or copy/paste the " "confirmation key in the box and submit the form." msgstr "" +"Utilice su software de correo electrónico para abrir y leer el email de " +"confirmación. Puede hacer clic directamente en el enlace de confirmación o " +"copiar y pegar la clave de confirmación y enviar el formulario." #: IDF/gettexttemplates/idf/register/inputkey.html.php:8 msgid "" "Just after providing the confirmation key, you will be able to set your " "password and start using this website fully." msgstr "" +"Sólo después de proporcionar la clave de confirmación, será capaz de " +"establecer su contraseña y empezar a usar completamente el sitio web." #: IDF/gettexttemplates/idf/review/base-full.html.php:3 #: IDF/gettexttemplates/idf/review/base.html.php:3 @@ -2528,26 +2700,30 @@ msgstr "Iniciar revisión del Código" msgid "" "

    To start a code review, you need to provide:

    \n" "
      \n" -"
    • A commit or revision of the current code in the repository from which " -"you started your work.
    • \n" -"
    • A patch describing your changes with respect to the reference commit.\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" +"
    • Check your patch does not provide any password or confidential information!
    • \n" "
    " msgstr "" +"

    Para iniciar una revisión de código, debe proporcionar:

    \n" +"
      \n" +"
    • Un commit o revisión del actual código del repositorio, desde el que ha comenzado su trabajo.
    • \n" +"
    • Un parche que describa los cambios con respecto al commit referenciado.
    • \n" +"
    • ¡Asegúrese de que el parche no contiene ninguna contraseña o información confidencial!
    • \n" +"
    " #: IDF/gettexttemplates/idf/review/create.html.php:9 msgid "" -"The form contains some errors. Please correct them to submit the code review." +"The form contains some errors. Please correct them to submit the code " +"review." msgstr "" -"El formulario contiene algunos errores. Por favor, corríjalos para enviar la " -"revisión de código." +"El formulario contiene algunos errores. Por favor, corríjalos para enviar la" +" revisión de código." #: IDF/gettexttemplates/idf/review/create.html.php:10 msgid "" -"Select the commit against which you created your patch to be sure it applies " -"correctly." +"Select the commit against which you created your patch to be sure it applies" +" correctly." msgstr "" "Seleccione el commit contra el que creó el parche para asegurarse de que se " "aplica correctamente." @@ -2609,14 +2785,11 @@ msgid "" msgstr "" "La revisión de código es una proceso en el que\n" "antes o después los cambios son commited en el código del repositorio,\n" -"diferentes personas discuten sobre los cambios en el código. El objetivo " -"es \n" +"diferentes personas discuten sobre los cambios en el código. El objetivo es \n" "mejorar la calidad del código y las\n" "contribuciones, por esto, debe ser pragmático cuando escriba \n" -"sus comentarios. Menciona correctamente los números de línea (tanto en el " -"antiguo como en el \n" -"nuevo código) y trata de mantener un buen equilibrio entre seriedad y " -"diversión\n" +"sus comentarios. Menciona correctamente los números de línea (tanto en el antiguo como en el \n" +"nuevo código) y trata de mantener un buen equilibrio entre seriedad y diversión\n" #: IDF/gettexttemplates/idf/review/view.html.php:13 msgid "" @@ -2628,23 +2801,20 @@ msgid "" "to propose more contributions
    .\n" msgstr "" "\n" -"La propuesta para revisar código es intimidante, debes " -"saber \n" -"que recibirás críticas, así que por favor, como revisor, haz que " -"este \n" -"proceso sea divertido, úsalo para para ayudar al colaborador a " -"aprender tus \n" +"La propuesta para revisar código es intimidante, debes saber \n" +"que recibirás críticas, así que por favor, como revisor, haz que este \n" +"proceso sea divertido, úsalo para para ayudar al colaborador a aprender tus \n" "normas de codificación y a estructurar el código y hacer que \n" "quieran proponer más contribuciones.\n" #: IDF/gettexttemplates/idf/review/view.html.php:20 #, php-format msgid "" -"Comment %%i%% by %%who%%, " -"%%c.creation_dtime%%" +"Comment %%i%% by %%who%%," +" %%c.creation_dtime%%" msgstr "" -"Comentario %%i%% por %%who%%, %%c.creation_dtime%%" +"Comentario %%i%% por %%who%%, %%c.creation_dtime%%" #: IDF/gettexttemplates/idf/review/view.html.php:21 #, php-format @@ -2660,8 +2830,8 @@ msgstr "Accede para participar en la revisión." msgid "" "The form contains some errors. Please correct them to submit your review." msgstr "" -"El formulario contiene algunos errores. Por favor, corríjalos para enviar su " -"revisión." +"El formulario contiene algunos errores. Por favor, corríjalos para enviar su" +" revisión." #: IDF/gettexttemplates/idf/review/view.html.php:27 #: IDF/gettexttemplates/idf/source/commit.html.php:5 @@ -2718,7 +2888,7 @@ msgstr "Enviar Revisión del Código" #: IDF/gettexttemplates/idf/source/base.html.php:3 msgid "Source Tree" -msgstr "" +msgstr "Árbol de las fuentes" #: IDF/gettexttemplates/idf/source/base.html.php:4 msgid "Change Log" @@ -2733,7 +2903,7 @@ msgstr "Cómo obtener el Código" #: 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 +#: IDF/Views/Project.php:163 msgid "Age" msgstr "Edad" @@ -2747,12 +2917,12 @@ msgstr "Mensaje" #: IDF/gettexttemplates/idf/source/changelog.html.php:5 msgid "Parent:" -msgstr "" +msgstr "Padres:" #: IDF/gettexttemplates/idf/source/changelog.html.php:6 #: IDF/gettexttemplates/idf/source/commit.html.php:10 msgid "View corresponding commit" -msgstr "" +msgstr "Ver commit correspondiente" #: IDF/gettexttemplates/idf/source/changelog.html.php:8 msgid "by" @@ -2787,11 +2957,11 @@ msgstr "Fecha:" #: IDF/gettexttemplates/idf/source/commit.html.php:6 msgid "Branch:" -msgstr "" +msgstr "Branch:" #: IDF/gettexttemplates/idf/source/commit.html.php:9 msgid "Parents:" -msgstr "" +msgstr "Padres:" #: IDF/gettexttemplates/idf/source/commit.html.php:11 msgid "Message:" @@ -2805,36 +2975,36 @@ msgstr "Cambios:" #: IDF/gettexttemplates/idf/source/commit.html.php:13 msgid "deleted" -msgstr "" +msgstr "eliminado" #: IDF/gettexttemplates/idf/source/commit.html.php:14 #: IDF/gettexttemplates/idf/source/commit.html.php:17 msgid "full" -msgstr "" +msgstr "completo" #: IDF/gettexttemplates/idf/source/commit.html.php:15 msgid "renamed" -msgstr "" +msgstr "renombrado" #: IDF/gettexttemplates/idf/source/commit.html.php:16 msgid "added" -msgstr "" +msgstr "añadido" #: IDF/gettexttemplates/idf/source/commit.html.php:18 msgid "modified" -msgstr "" +msgstr "modificado" #: IDF/gettexttemplates/idf/source/commit.html.php:19 msgid "properies changed" -msgstr "" +msgstr "propiedades modificadas" #: IDF/gettexttemplates/idf/source/commit.html.php:20 msgid "removed" -msgstr "" +msgstr "eliminado" #: IDF/gettexttemplates/idf/source/commit.html.php:21 msgid "File differences" -msgstr "" +msgstr "Diferencias de archivos" #: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:3 #, php-format @@ -2842,26 +3012,28 @@ msgid "" "The revision identifier %%commit%% is ambiguous and can be\n" "expanded to multiple valid revisions - please choose one:" msgstr "" +"Identificador de la revisión %%commit%% es ambiguo y puede estar\n" +"asociado con diferentes revisiones válidas - Por favor, elija uno:" #: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:5 msgid "Title" -msgstr "" +msgstr "Título" #: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:6 msgid "Author" -msgstr "" +msgstr "Autor" #: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:7 msgid "Date" -msgstr "" +msgstr "Fecha" #: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:8 msgid "Branch" -msgstr "" +msgstr "Branch" #: IDF/gettexttemplates/idf/source/disambiguate_revision.html.php:9 msgid "Revision" -msgstr "" +msgstr "Revisión" #: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 #, php-format @@ -2872,25 +3044,25 @@ msgstr "%%cproject.name%%: Commit %%c.scm_id%%" #: 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 "" +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 "" +msgstr "Filtrar branches" #: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:5 #: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:5 #: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:5 msgid "Tags" -msgstr "" +msgstr "Etiquetas" #: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:6 #: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:6 #: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:6 msgid "filter tags" -msgstr "" +msgstr "Filtrar etiquetas" #: IDF/gettexttemplates/idf/source/git/file.html.php:3 #: IDF/gettexttemplates/idf/source/git/tree.html.php:3 @@ -2947,13 +3119,15 @@ msgstr "" msgid "" "You may need to provide your SSH key. The " "synchronization of your SSH key can take a couple of minutes. You can learn " -"more about SSH key authentification." +"more about SSH " +"key authentication." 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." +"Puede que tenga que proporcionar su clave SSH. La " +"sincronización de la clave SSH puede tomar un par de minutos. Puede saber " +"más acerca de autenticación" +" de claves SSH." #: IDF/gettexttemplates/idf/source/git/help.html.php:7 #: IDF/gettexttemplates/idf/source/mtn/help.html.php:6 @@ -3016,11 +3190,12 @@ msgid "" "The branch or revision %%commit%% is not valid or does not exist\n" "in this repository." msgstr "" +"La rama o revisión %%commit%% no es válida o no existe\n" +"en este repositorio." #: IDF/gettexttemplates/idf/source/invalid_revision.html.php:5 -#, fuzzy msgid "The following list shows all available branches:" -msgstr "El ticket siguiente se ha actualizado:" +msgstr "La siguiente lista muestra todas las ramas disponibles:" #: IDF/gettexttemplates/idf/source/invalid_revision.html.php:6 #, php-format @@ -3030,6 +3205,10 @@ msgid "" "In this case please take a look at the Help page\n" "how to access your repository." msgstr "" +"Si se trata de un nuevo repositorio, la razón de este error\n" +"podría ser que no ha realizado ningún commit y / o push hasta el momento.\n" +"En este caso, por favor eche un vistazo a la Página de Ayuda\n" +"sobre cómo tener acceso a su repositorio." #: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3 #, php-format @@ -3064,6 +3243,8 @@ msgid "" "the monotone software to manage the source\n" "code." msgstr "" +"El equipo detrás de %%project%% está utilizando\n" +"el software monotone para administrar el código fuente." #: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3 #: IDF/gettexttemplates/idf/source/svn/commit.html.php:3 @@ -3187,16 +3368,22 @@ msgstr "Ver tu perfil público." #, php-format msgid "See your forge issue watch list." msgstr "" +"Ver tus tickets de la lista de mantenimiento de la " +"Forja." #: IDF/gettexttemplates/idf/user/myaccount.html.php:6 msgid "Key Management" -msgstr "" +msgstr "Administración de claves" #: IDF/gettexttemplates/idf/user/myaccount.html.php:7 +msgid "Secondary Emails" +msgstr "Emails secundarios" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 msgid "Extra password" msgstr "Contraseña adicional" -#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 msgid "" "This password is used to access some of the external systems managed by our " "infrastructure. It will be regenerated if you change your password." @@ -3205,29 +3392,38 @@ msgstr "" "gestionados por nuestra infraestructura. Se regenerará si usted cambia su " "contraseña." -#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 msgid "API key" msgstr "Clave de API" -#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 msgid "" "Your API key will be regenerated automatically if you change your password." msgstr "" -"La clave de la API se regenera automáticamente si usted cambia su contraseña." +"La clave de la API se regenera automáticamente si usted cambia su " +"contraseña." -#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 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 "Your Current Public Keys" +msgstr "Tus claves públicas actuales" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 msgid "Delete this key" msgstr "Eliminar esta clave" -#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 +msgid "Your additional email addresses" +msgstr "Sus direcciones de correo electrónico adicionales." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 +msgid "Delete this address" +msgstr "Eliminar esta dirección" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:18 msgid "" "If possible, use your real name. By using your real name, people will have " "more trust in your comments and remarks." @@ -3235,26 +3431,26 @@ 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 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:19 msgid "" "The extra password is used to access some of the external systems and the " "API key is used to interact with this website using a program." msgstr "" "La contraseña adicional se utiliza para acceder a algunos de los sistemas " -"externos y la clave de la API se utiliza para interactuar con este sitio web " -"utilizando un programa." +"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 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:20 msgid "Show API key and extra password" msgstr "Mostrar clave de API y contraseña adicional" #: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 msgid "" -"Oups, please check the provided login or email address to recover your " +"Oops, 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." +"Oups, por favor comprueba el nombre de usuario o dirección de correo " +"electrónico para recuperar su clave." #: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4 msgid "Recover My Password" @@ -3262,13 +3458,13 @@ msgstr "Recuperar mi contraseña" #: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6 msgid "" -"Provide either your login or email address, if a corresponding user is found " -"in the database, we will send you an email with the details on how to reset " -"your password." +"Provide either your login or email address, if a corresponding user is found" +" in the database, we will send you an email with the details on how to reset" +" your password." msgstr "" "Proporcione un usuario o dirección de correo electrónico, si el usuario " -"correspondiente se encuentra en la base de datos, le enviaremos un email con " -"los detalles sobre cómo restablecer su contraseña." +"correspondiente se encuentra en la base de datos, le enviaremos un email con" +" los detalles sobre cómo restablecer su contraseña." #: IDF/gettexttemplates/idf/user/passrecovery-email.txt.php:3 #, php-format @@ -3297,6 +3493,29 @@ msgid "" "Yours faithfully,\n" "The development team.\n" msgstr "" +"Hola %%user%%,\n" +"\n" +"Has perdido tu contraseña y quieres recuperarla.\n" +"Para proporcionarte una nueva contraseña para tu cuenta, solo\n" +"tienes que seguir el siguiente enlace. Obtendrás\n" +"un simple formulario donde proporcionar una nueva contraseña.\n" +"\n" +"%%url%%\n" +"\n" +"Alternativamente, puede ir a esta página:\n" +"\n" +"%%urlik%%\n" +"\n" +"y proporcionar la clave de verificación siguiente:\n" +"\n" +"%%key%%\n" +"\n" +"Si no solicitó reestablecer la contraseña,\n" +"simplemente ignore este correo electrónico, tu\n" +"contraseña no cambiará.\n" +"\n" +"Atentamente,\n" +"El equipo de desarrollo.\n" #: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:4 msgid "Recover Your Password" @@ -3305,10 +3524,10 @@ 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." +"password and use 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." +"Sólo después de proporcionar la clave de confirmación, será capaz de " +"restablecer la contraseña y hacer uso completamente del sitio web." #: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 msgid "Reset Your Password" @@ -3321,15 +3540,15 @@ msgstr "Estás viendo el perfil público de %%member%%." #: IDF/gettexttemplates/idf/user/public.html.php:5 msgid "Twitter:" -msgstr "" +msgstr "Twitter:" #: IDF/gettexttemplates/idf/user/public.html.php:6 msgid "Public Email:" -msgstr "" +msgstr "Email Público:" #: IDF/gettexttemplates/idf/user/public.html.php:7 msgid "Website:" -msgstr "" +msgstr "Página web:" #: IDF/gettexttemplates/idf/user/public.html.php:8 msgid "Last time seen:" @@ -3371,15 +3590,12 @@ msgstr "Crear Página" #: IDF/gettexttemplates/idf/wiki/delete.html.php:3 #, php-format msgid "" -"You are looking at an old revision (%%oldrev.summary%%) of the " -"page \n" +"You are looking at an old revision (%%oldrev.summary%%) of the page \n" "%%page.title%%. This revision was created\n" "by %%submitter%%." msgstr "" -"Está viendo una revisión antigua (%%oldrev.summary%%) de la " -"página \n" -"%%page.title%%. Esta revisión fue creada por " -"%%submitter%%." +"Está viendo una revisión antigua (%%oldrev.summary%%) de la página \n" +"%%page.title%%. Esta revisión fue creada por %%submitter%%." #: IDF/gettexttemplates/idf/wiki/delete.html.php:6 msgid "" @@ -3405,24 +3621,28 @@ msgid "" "with all the associated revisions and you will not be able to " "recover it." msgstr "" +"Si elimina esta página de documentación, será eliminada de la base de datos " +"con todas las revisiones relacionadas y no será capaz de " +"recuperarla." #: IDF/gettexttemplates/idf/wiki/deletepage.html.php:6 msgid "Delete Page" -msgstr "" +msgstr "Eliminar página" #: 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" +"

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

    Instrucciones:

    \n" +"

    El contenido de la página puede usar sintaxis de Marcado con la extensión Extra.

    \n" +"

    Las direcciones Web se enlazan automáticamente y se puede vincular con otras páginas de la documentación usando corchetes dobles como: [[OtraPágina]].

    \n" +"

    Para incluir directamente el contenido de un fichero del repositorio, rodee la ruta con corchetes triples como: [[[ruta/al/fichero.txt]]].

    \n" #: IDF/gettexttemplates/idf/wiki/index.html.php:3 #, php-format @@ -3459,8 +3679,7 @@ msgid "" "use it as reference only if you are sure you need these specific information." msgstr "" "¡Atención! Esta página está marcada como obsoleta,\n" -"úsala como referencia solamente si está seguro de que usted necesita " -"específicamente esta información ." +"úsala como referencia solamente si está seguro de que usted necesita específicamente esta información ." #: IDF/gettexttemplates/idf/wiki/view.html.php:5 #, php-format @@ -3470,12 +3689,11 @@ msgid "" "by %%submitter%%." msgstr "" "Está viendo una revisión antigua de la página \n" -"%%page.title%%. Esta revisión fue creada por " -"%%submitter%%." +"%%page.title%%. Esta revisión fue creada por %%submitter%%." #: IDF/gettexttemplates/idf/wiki/view.html.php:10 msgid "Table of Content" -msgstr "" +msgstr "Tabla de Contenido" #: IDF/gettexttemplates/idf/wiki/view.html.php:11 #: IDF/gettexttemplates/idf/wiki/view.html.php:13 @@ -3529,10 +3747,8 @@ 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" +msgid "Issue %3$d, %4$s" +msgstr "Ticket %3$d, %4$s" #: IDF/Issue.php:196 #, php-format @@ -3570,7 +3786,7 @@ msgstr "cambios" #: IDF/IssueComment.php:73 msgid "Serialized array of the changes in the issue." -msgstr "" +msgstr "Vector serializado con los cambios en los tickets." #: IDF/IssueComment.php:171 #, php-format @@ -3606,17 +3822,13 @@ msgstr "Imagen" msgid "Other" msgstr "Otros" -#: IDF/Key.php:49 -msgid "user" -msgstr "usuario" - #: IDF/Key.php:55 msgid "public key" -msgstr "" +msgstr "clave pública" #: IDF/Key.php:87 msgid "Invalid or unknown key data detected." -msgstr "" +msgstr "Detectada clave de datos no válida o desconocida." #: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81 #, php-format @@ -3631,121 +3843,123 @@ msgstr "%s no existe o no se puede escribir." #: IDF/Plugin/SyncMonotone.php:86 IDF/Plugin/SyncMonotone.php:457 #: IDF/Plugin/SyncMonotone.php:783 msgid "\"mtn_repositories\" must be defined in your configuration file." -msgstr "" +msgstr "\"mtn_repositories\" debe definirse en el fichero de configuración." #: IDF/Plugin/SyncMonotone.php:93 IDF/Plugin/SyncMonotone.php:447 msgid "\"mtn_usher_conf\" does not exist or is not writable." -msgstr "" +msgstr "\"mtn_usher_conf\" no existe o no se puede escribir." #: IDF/Plugin/SyncMonotone.php:100 #, php-format msgid "Could not find mtn-post-push script \"%s\"." -msgstr "" +msgstr "No se pudo encontrar el script mtn-post-push \"%s\"." #: IDF/Plugin/SyncMonotone.php:135 #, php-format msgid "The configuration file %s is missing." -msgstr "" +msgstr "El archivo de configuración %s no se encuentra." #: IDF/Plugin/SyncMonotone.php:144 #, php-format msgid "The project path %s already exists." -msgstr "" +msgstr "La ruta del proyecto %s ya existe." #: IDF/Plugin/SyncMonotone.php:150 #, php-format msgid "The project path %s could not be created." -msgstr "" +msgstr "La ruta del proyecto %s no se puede crear." #: IDF/Plugin/SyncMonotone.php:187 IDF/Scm/Monotone/Stdio.php:87 #, php-format msgid "The key directory %s could not be created." -msgstr "" +msgstr "El directorio clave %s no puede ser creado." #: IDF/Plugin/SyncMonotone.php:205 #, php-format msgid "Could not parse key information: %s" -msgstr "" +msgstr "No se puede examinar la información de la clave: %s" #: IDF/Plugin/SyncMonotone.php:243 #, php-format msgid "Could not create configuration directory \"%s\"" -msgstr "" +msgstr "No se pudo crear el directorio de configuración \"%s\"" #: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 #, php-format msgid "Could not create symlink \"%s\"" -msgstr "" +msgstr "No se pudo crear el enlace simbólico \"%s\"" #: IDF/Plugin/SyncMonotone.php:269 #, php-format msgid "Could not write configuration file \"%s\"" -msgstr "" +msgstr "No se pudo escribir el archivo de configuración \"%s\"" #: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 #, php-format msgid "Could not parse usher configuration in \"%s\": %s" -msgstr "" +msgstr "No se puede examinar la configuración usher en \"%s\": %s" #: IDF/Plugin/SyncMonotone.php:295 #, php-format msgid "usher configuration already contains a server entry named \"%s\"" msgstr "" +"La configuración usher ya contiene una entrada para el servidor llamada " +"\"%s\"" #: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 #, php-format msgid "Could not write usher configuration file \"%s\"" -msgstr "" +msgstr "No se puede escribir el fichero de configuración usher \"%s\"" #: IDF/Plugin/SyncMonotone.php:366 #, php-format msgid "Could not write write-permissions file \"%s\"" -msgstr "" +msgstr "No se pudo escribir el fichero write-permissions \"%s\"" #: IDF/Plugin/SyncMonotone.php:389 #, php-format msgid "Could not write read-permissions file \"%s\"" -msgstr "" +msgstr "No se pudo escribir el fichero read-permissions \"%s\"" #: IDF/Plugin/SyncMonotone.php:406 #, php-format msgid "Could not remove symlink \"%s\"" -msgstr "" +msgstr "No se puede eliminar el enlace simbólico \"%s\"" #: IDF/Plugin/SyncMonotone.php:465 #, php-format msgid "One or more paths underknees %s could not be deleted." -msgstr "" +msgstr "Una o más rutas %s no pueden ser eliminadas." #: IDF/Plugin/SyncMonotone.php:477 #, php-format msgid "Could not delete client private key %s" -msgstr "" +msgstr "No se pudo eliminar la clave privada del 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 "" +msgstr "No se pudo analizar read-permissions para el proyecto \"%s\": %s" #: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 #, php-format msgid "Could not write read-permissions for project \"%s\"" -msgstr "" +msgstr "No se pudo escribir read-permissions para el proyecto \"%s\"" #: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 #, php-format msgid "Could not write write-permissions file for project \"%s\"" -msgstr "" +msgstr "No se pudo escribir el fichero write-permissions para el proyecto \"%s\"" #: IDF/Plugin/SyncMonotone.php:790 #, php-format msgid "The project path %s does not exists." -msgstr "" +msgstr "La ruta del proyecto %s no existe." #: IDF/Plugin/SyncMonotone.php:808 #, php-format msgid "The command \"%s\" could not be executed." -msgstr "" +msgstr "El comando \"%s\" no se pudo ejecutar." #: IDF/Project.php:62 IDF/Tag.php:66 msgid "name" @@ -3794,17 +4008,13 @@ msgstr "voto" #: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151 #, php-format -msgid "" -"Review %3$d, %4$s" -msgstr "" -"Revisión %3$d, " -"%4$s" +msgid "Review %3$d, %4$s" +msgstr "Revisión %3$d, %4$s" #: IDF/Review/Comment.php:141 #, php-format msgid "Update of review %d, by %s" -msgstr "" -"Actualización de revisión %d, por %s" +msgstr "Actualización de revisión %d, por %s" #: IDF/Review/Comment.php:151 #, php-format @@ -3839,17 +4049,12 @@ msgstr "%s: Creación de Revisión %d - %s" msgid "New Code Review %s - %s (%s)" msgstr "Nueva Revisión de Código %s - %s (%s)" -#: IDF/Scm/Git.php: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 +#: IDF/Scm/Git.php:311 IDF/Scm/Mercurial.php:141 #, 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 +#: IDF/Scm/Git.php:427 IDF/Scm/Mercurial.php:158 #, php-format msgid "Not a valid tree: %s." msgstr "No es un árbol válido: %s." @@ -3857,11 +4062,13 @@ 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 "" +"El nombre clave del cliente Monotone o el hash no está en la configuración " +"del proyecto." #: IDF/Scm/Monotone/Stdio.php:98 #, php-format msgid "Could not write client key \"%s\"" -msgstr "" +msgstr "No se pudo escribir la clave del cliente \"%s\"" #: IDF/Search/Occ.php:33 msgid "occurence" @@ -3877,7 +4084,7 @@ msgstr "ocurrencias" #: IDF/Search/Occ.php:81 msgid "ponderated occurence" -msgstr "" +msgstr "ocurrencia ponderada" #: IDF/Tag.php:59 msgid "tag class" @@ -3895,17 +4102,17 @@ 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/Template/Markdown.php:74 +#: IDF/Template/Markdown.php:81 msgid "Create this documentation page" -msgstr "" +msgstr "Crear esta página de documentación" #: IDF/Template/ShowUser.php:51 msgid "Anonymous" -msgstr "" +msgstr "Anónimo" #: IDF/Template/ShowUser.php:54 msgid "Me" -msgstr "" +msgstr "Yo" #: IDF/Timeline/Paginator.php:49 msgid "Today" @@ -3968,7 +4175,7 @@ msgstr "No se encontraron proyectos." msgid "Update %s" msgstr "Actualizar %s" -#: IDF/Views/Admin.php:101 IDF/Views/Project.php:256 +#: IDF/Views/Admin.php:101 IDF/Views/Project.php:277 msgid "The project has been updated." msgstr "El proyecto ha sido actualizado." @@ -3995,7 +4202,7 @@ msgstr "Esta tabla muestra los usuarios de la forja." #: IDF/Views/Admin.php:209 msgid "login" -msgstr "" +msgstr "nombre de usuario" #: IDF/Views/Admin.php:212 msgid "Admin" @@ -4028,44 +4235,44 @@ msgstr "Agregar usuario" #: IDF/Views/Admin.php:332 msgid "Usher management" -msgstr "" +msgstr "Configuración Usher" #: IDF/Views/Admin.php:369 msgid "Usher configuration has been reloaded" -msgstr "" +msgstr "La configuración Usher ha sido recargada." #: IDF/Views/Admin.php:373 msgid "Usher has been shut down" -msgstr "" +msgstr "Usher ha sido apagado." #: IDF/Views/Admin.php:378 msgid "Usher has been started up" -msgstr "" +msgstr "Usher ha sido arrancado." #: IDF/Views/Admin.php:416 #, php-format msgid "The server \"%s\" has been started" -msgstr "" +msgstr "El servidor \"%s\" se ha iniciado" #: IDF/Views/Admin.php:420 #, php-format msgid "The server \"%s\" has been stopped" -msgstr "" +msgstr "El servidor \"%s\" ha sido detenido" #: IDF/Views/Admin.php:425 #, php-format msgid "The server \"%s\" has been killed" -msgstr "" +msgstr "El servidor \"%s\" ha sido parado" #: IDF/Views/Admin.php:445 #, php-format msgid "Open connections for \"%s\"" -msgstr "" +msgstr "Conexiones abiertas de \"%s\"" #: IDF/Views/Admin.php:450 #, php-format msgid "no connections for server \"%s\"" -msgstr "" +msgstr "Ninguna conexión para el servidor \"%s\"" #: IDF/Views/Admin.php:471 msgid "Yes" @@ -4078,58 +4285,58 @@ msgstr "No" #: IDF/Views/Download.php:45 #, php-format msgid "%s Downloads" -msgstr "" +msgstr "%s Descargas" #: IDF/Views/Download.php:51 msgid "This table shows the files to download." -msgstr "" +msgstr "Esta tabla muestra los archivos para descargar." #: IDF/Views/Download.php:67 IDF/Views/Download.php:295 msgid "Uploaded" -msgstr "" +msgstr "Subido" #: IDF/Views/Download.php:71 IDF/Views/Download.php:299 msgid "No downloads were found." -msgstr "" +msgstr "No se encontraron descargas." #: IDF/Views/Download.php:94 #, php-format msgid "Download %s" -msgstr "" +msgstr "Descargar %s" #: IDF/Views/Download.php:111 #, php-format msgid "The file %2$s has been updated." -msgstr "" +msgstr "El archivo %2$s ha sido actualizado." #: IDF/Views/Download.php:144 #, php-format msgid "Delete Download %s" -msgstr "" +msgstr "Eliminar Descarga %s" #: IDF/Views/Download.php:177 msgid "The file has been deleted." -msgstr "" +msgstr "El archivo ha sido eliminado." #: IDF/Views/Download.php:223 #, php-format msgid "The file has been uploaded." -msgstr "" +msgstr "El archivo ha sido subido." #: IDF/Views/Download.php:277 #, php-format msgid "%1$s Downloads with Label %2$s" -msgstr "" +msgstr "%1$s Descargas con Etiqueta %2$s" #: IDF/Views/Download.php:287 #, php-format msgid "This table shows the downloads with label %s." -msgstr "" +msgstr "Esta tabla muestra las descargas con la etiqueta %s." #: IDF/Views/Issue.php:41 #, php-format msgid "%s Open Issues" -msgstr "" +msgstr "%s Tickets abiertos" #: IDF/Views/Issue.php:51 IDF/Views/Issue.php:287 IDF/Views/User.php:75 msgid "This table shows the open issues." @@ -4151,43 +4358,47 @@ msgstr "Última actualización" #: 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 "" +msgstr "No se han encontrado tickets." #: IDF/Views/Issue.php:112 #, php-format msgid "Watch List: Closed Issues for %s" -msgstr "" +msgstr "Lista de mantenimiento: Tickets Cerrados por %s" #: IDF/Views/Issue.php:113 #, php-format msgid "This table shows the closed issues in your watch list for %s project." msgstr "" +"Esta tabla muestra los tickets cerrados en su lista de mantenimiento para el" +" proyecto %s." #: IDF/Views/Issue.php:118 #, php-format msgid "Watch List: Open Issues for %s" -msgstr "" +msgstr "Lista mantenimiento: Tickets Abiertos por %s" #: IDF/Views/Issue.php:119 #, php-format msgid "This table shows the open issues in your watch list for %s project." msgstr "" +"Esta tabla muestra los tickets abiertos en su lista de mantenimiento para el" +" proyecto %s." #: IDF/Views/Issue.php:195 msgid "Watch List: Closed Issues" -msgstr "" +msgstr "Lista mantenimiento: Tickets Cerrados" #: IDF/Views/Issue.php:196 msgid "This table shows the closed issues in your watch list." -msgstr "" +msgstr "Esta tabla muestra los tickets cerrados en su lista de mantenimiento." #: IDF/Views/Issue.php:201 msgid "Watch List: Open Issues" -msgstr "" +msgstr "Lista mantenimiento: Tickets Abiertos" #: IDF/Views/Issue.php:202 msgid "This table shows the open issues in your watch list." -msgstr "" +msgstr "Esta tabla muestra los tickets abiertos en su lista de mantenimiento." #: IDF/Views/Issue.php:221 IDF/Views/User.php:82 msgid "Project" @@ -4196,191 +4407,187 @@ msgstr "Proyecto" #: IDF/Views/Issue.php:254 #, php-format msgid "My Submitted %s Issues" -msgstr "" +msgstr "Mis tickets %s enviados" #: IDF/Views/Issue.php:258 #, php-format msgid "My Closed Submitted %s Issues" -msgstr "" +msgstr "Mis Tickets enviados y cerrados %s" #: IDF/Views/Issue.php:262 #, php-format msgid "My Closed Working %s Issues" -msgstr "" +msgstr "Mis tickets en proceso cerrados %s" #: IDF/Views/Issue.php:266 #, php-format msgid "My Working %s Issues" -msgstr "" +msgstr "Mis tickets en proceso %s" #: IDF/Views/Issue.php:321 msgid "Submit a new issue" -msgstr "" +msgstr "Enviar nuevo Ticket" #: IDF/Views/Issue.php:337 #, php-format msgid "Issue %d has been created." -msgstr "" +msgstr "El Ticket %d ha sido creado." #: IDF/Views/Issue.php:366 #, php-format msgid "Search Issues - %s" -msgstr "" +msgstr "Buscar Tickets - %s" #: IDF/Views/Issue.php:378 msgid "This table shows the found issues." -msgstr "" +msgstr "Esta tabla muestra los tickets encontrados." #: IDF/Views/Issue.php:408 #, php-format msgid "Issue %d: %s" -msgstr "" +msgstr "Ticket %d: %s" #: IDF/Views/Issue.php:432 #, php-format msgid "Issue %d has been updated." -msgstr "" +msgstr "El Ticket %d ha sido actualizado." #: IDF/Views/Issue.php:521 #, php-format msgid "View %s" -msgstr "" +msgstr "Ver %s" #: IDF/Views/Issue.php:541 #, php-format msgid "%s Closed Issues" -msgstr "" +msgstr "%s Tickets cerrados" #: IDF/Views/Issue.php:551 msgid "This table shows the closed issues." -msgstr "" +msgstr "Esta tabla muestra los tickets cerrados." #: IDF/Views/Issue.php:594 #, php-format msgid "%1$s Issues with Label %2$s" -msgstr "" +msgstr "%1$s Tickets con la Etiqueta %2$s" #: IDF/Views/Issue.php:597 #, php-format msgid "%1$s Closed Issues with Label %2$s" -msgstr "" +msgstr "%1$s Tickets cerrados con la Etiqueta %2$s" #: IDF/Views/Issue.php:610 #, php-format msgid "This table shows the issues with label %s." -msgstr "" +msgstr "Esta tabla muestra los tickets con la etiqueta %s." #: IDF/Views/Issue.php:660 msgid "The issue has been removed from your watch list." -msgstr "" +msgstr "El tickets se ha eliminado de su lista." #: IDF/Views/Issue.php:663 msgid "The issue has been added to your watch list." -msgstr "" +msgstr "El ticket ha sido añadido a su lista." #: IDF/Views/Issue.php:752 msgid "On your watch list." -msgstr "" - -#: IDF/Views/Project.php:72 -msgid "All Updates" -msgstr "" +msgstr "En su lista." #: IDF/Views/Project.php:74 msgid "Issues and Comments" -msgstr "" +msgstr "Tickets y Comentarios" #: IDF/Views/Project.php:76 msgid "Documents" -msgstr "" +msgstr "Documentos" #: IDF/Views/Project.php:77 msgid "Reviews and Patches" -msgstr "" +msgstr "Revisiones y parches" -#: IDF/Views/Project.php:142 +#: IDF/Views/Project.php:153 msgid "This table shows the project updates." msgstr "Esta tabla muestra las actualizaciones del proyecto." -#: IDF/Views/Project.php:153 +#: IDF/Views/Project.php:164 msgid "Change" msgstr "Cambios" -#: IDF/Views/Project.php:157 +#: IDF/Views/Project.php:168 msgid "No changes were found." msgstr "No se encontraron cambios." -#: IDF/Views/Project.php:248 +#: IDF/Views/Project.php:269 #, php-format msgid "%s Project Summary" msgstr "Resumen del Proyecto %s" -#: IDF/Views/Project.php:283 +#: IDF/Views/Project.php:304 #, php-format msgid "%s Issue Tracking Configuration" msgstr "Configuración de Seguimiento de Tickets %s" -#: IDF/Views/Project.php:292 +#: IDF/Views/Project.php:313 msgid "The issue tracking configuration has been saved." msgstr "La configuración de seguimiento de Tickets se ha guardado." -#: IDF/Views/Project.php:328 +#: IDF/Views/Project.php:349 #, php-format msgid "%s Downloads Configuration" msgstr "Configuración de descargas %s" -#: IDF/Views/Project.php:337 +#: IDF/Views/Project.php:358 msgid "The downloads configuration has been saved." msgstr "La configuración de las descargas se ha guardado." -#: IDF/Views/Project.php:371 +#: IDF/Views/Project.php:392 #, php-format msgid "%s Documentation Configuration" msgstr "Configuración de documentación %s" -#: IDF/Views/Project.php:380 +#: IDF/Views/Project.php:401 msgid "The documentation configuration has been saved." msgstr "La configuración de la documentación ha sido guardada." -#: IDF/Views/Project.php:414 +#: IDF/Views/Project.php:435 #, php-format msgid "%s Project Members" msgstr "Miembros del Proyecto %s" -#: IDF/Views/Project.php:423 +#: IDF/Views/Project.php:444 msgid "The project membership has been saved." msgstr "Los miembros del proyecto se han guardado." -#: IDF/Views/Project.php:446 +#: IDF/Views/Project.php:467 #, php-format msgid "%s Tabs Access Rights" msgstr "Pestaña de permisos de acceso %s " -#: IDF/Views/Project.php:460 +#: IDF/Views/Project.php:481 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 +#: IDF/Views/Project.php:527 #, php-format msgid "%s Source" msgstr "Fuente %s" -#: IDF/Views/Project.php:520 +#: IDF/Views/Project.php:541 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" +msgstr "Revisiones del Código %s" #: IDF/Views/Review.php:48 msgid "This table shows the latest reviews." -msgstr "Esta tabla muestra los últimos comentarios." +msgstr "Esta tabla muestra las últimas revisiones." #: IDF/Views/Review.php:64 msgid "No reviews were found." -msgstr "No se encontraron comentarios." +msgstr "No se encontraron revisiones." #: IDF/Views/Review.php:94 #, php-format @@ -4395,32 +4602,32 @@ msgstr "Comentario %d: %s" #: IDF/Views/Review.php:160 #, php-format msgid "Your code review %d has been published." -msgstr "" +msgstr "Tu comentario del código %d ha sido publicado." #: IDF/Views/Source.php:40 #, php-format msgid "%s Source Help" -msgstr "" +msgstr "Ayuda de fuentes %s" #: IDF/Views/Source.php:58 #, php-format msgid "%s Invalid Revision" -msgstr "" +msgstr "Revisión no válida %s " #: IDF/Views/Source.php:81 #, php-format msgid "%s Ambiguous Revision" -msgstr "" +msgstr "Revisión ambigua %s" #: IDF/Views/Source.php:106 #, php-format msgid "%1$s %2$s Change Log" -msgstr "" +msgstr "Cambios %2$s de %1$s" -#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:360 #, php-format msgid "%1$s %2$s Source Tree" -msgstr "" +msgstr "Árbol de fuentes %2$s de %1$s" #: IDF/Views/Source.php:303 #, php-format @@ -4434,11 +4641,11 @@ msgstr "%s Detalles del Commit - %s" #: IDF/Views/User.php:59 msgid "Your Dashboard - Working Issues" -msgstr "" +msgstr "Tu Panel de Control - Tickets en Proceso" #: IDF/Views/User.php:62 msgid "Your Dashboard - Submitted Issues" -msgstr "" +msgstr "Tu Panel de Control - Tickets Enviados" #: IDF/Views/User.php:89 msgid "No issues are assigned to you, yeah!" @@ -4452,19 +4659,23 @@ msgstr "Todas los tickets enviados han sido resueltos, ¡Yeah!" msgid "Your personal information has been updated." msgstr "Tu información personal se ha actualizado." -#: IDF/Views/User.php:132 +#: IDF/Views/User.php:133 msgid "Your Account" msgstr "Tu Cuenta" -#: IDF/Views/User.php:155 +#: IDF/Views/User.php:157 msgid "The public key has been deleted." -msgstr "" +msgstr "La clave pública ha sido eliminada." -#: IDF/Views/User.php:178 +#: IDF/Views/User.php:177 +msgid "The address has been deleted." +msgstr "La dirección ha sido eliminada." + +#: IDF/Views/User.php:200 msgid "Confirm The Email Change" msgstr "Confirmar el cambio de correo electrónico" -#: IDF/Views/User.php:203 +#: IDF/Views/User.php:232 #, php-format msgid "Your new email address \"%s\" has been validated. Thank you!" msgstr "" @@ -4542,19 +4753,20 @@ msgstr "La página de documentación se ha eliminado." msgid "Delete Page %s" msgstr "Eliminar Página %s" -#: IDF/Views.php:124 IDF/Views.php:150 +#: IDF/Views.php:126 IDF/Views.php:152 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." +#: IDF/Views.php:172 +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 +#: IDF/Views.php:198 IDF/Views.php:222 IDF/Views.php:263 msgid "Password Recovery" msgstr "Recuperación de la contraseña" -#: IDF/Views.php:240 +#: IDF/Views.php:242 msgid "" "Welcome back! Next time, you can use your broswer options to remember the " "password." @@ -4562,11 +4774,11 @@ msgstr "" "¡Bienvenido de nuevo! La próxima vez, puede utilizar la opcione de tu " "navegador para recordar la contraseña." -#: IDF/Views.php:282 +#: IDF/Views.php:284 msgid "Here to Help You!" msgstr "¡Aquí para ayudarte!" -#: IDF/Views.php:298 +#: IDF/Views.php:300 msgid "InDefero API (Application Programming Interface)" msgstr "InDefero API (Interfaz de Programación de la Aplicación)" @@ -4632,16 +4844,3 @@ msgstr "Nueva página de documentación %s - %s (%s)" #, php-format msgid "Documentation Page Changed %s - %s (%s)" msgstr "Cambios página de documentación %s - %s (%s)" - -#, fuzzy -#~ msgid "here" -#~ msgstr "Otros" - -#~ msgid "Managed Projects:" -#~ msgstr "Gestionar Proyectos:" - -#~ msgid "Do you have a password?" -#~ msgstr "¿Tienes contraseña?" - -#~ msgid "No, I am a new here." -#~ msgstr "No, soy nuevo aquí." diff --git a/src/IDF/locale/fr/idf.po b/src/IDF/locale/fr/idf.po index 25c6598..f02e9eb 100644 --- a/src/IDF/locale/fr/idf.po +++ b/src/IDF/locale/fr/idf.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\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-24 08:07+0000\n" +"POT-Creation-Date: 2011-03-18 23:30+0100\n" +"PO-Revision-Date: 2011-03-19 07:43+0000\n" "Last-Translator: Delkia \n" "Language-Team: French <>\n" "MIME-Version: 1.0\n" @@ -63,19 +63,27 @@ msgstr "clef" msgid "value" msgstr "valeur" -#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:540 +#: IDF/EmailAddress.php:49 IDF/Key.php:49 +msgid "user" +msgstr "utilisateur" + +#: IDF/EmailAddress.php:55 +msgid "email" +msgstr "e-mail" + +#: IDF/Form/Admin/ProjectCreate.php:38 IDF/Views/Project.php:561 msgid "git" msgstr "git" -#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:541 +#: IDF/Form/Admin/ProjectCreate.php:39 IDF/Views/Project.php:562 msgid "Subversion" msgstr "Subversion" -#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:542 +#: IDF/Form/Admin/ProjectCreate.php:40 IDF/Views/Project.php:563 msgid "mercurial" msgstr "mercurial" -#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:543 +#: IDF/Form/Admin/ProjectCreate.php:41 IDF/Views/Project.php:564 msgid "monotone" msgstr "monotone" @@ -163,13 +171,13 @@ msgstr "" #: IDF/Form/Admin/ProjectCreate.php:185 msgid "" -"Only a remote repository available throught http or https are allowed. For " +"Only a remote repository available through HTTP or HTTPS is 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\"." +"Seulement les dépôts utilisant http ou http sont autorisés, par exemple : " +"http://example.com/svn/trunk." -#: IDF/Form/Admin/ProjectCreate.php:201 IDF/Form/Admin/ProjectUpdate.php:90 +#: IDF/Form/Admin/ProjectCreate.php:201 msgid "" "The master branch is empty or contains illegal characters, please use only " "letters, digits, dashs and dots as separators." @@ -208,10 +216,10 @@ msgstr "Ce nom court est déjà utilisé, veuillez en sélectionner un autre." #: 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/Password.php:76 IDF/Form/Register.php:112 +#: IDF/Form/ReviewCreate.php:187 IDF/Form/ReviewFileComment.php:127 #: IDF/Form/TabsConf.php:98 IDF/Form/UpdateUpload.php:126 -#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:180 +#: IDF/Form/Upload.php:148 IDF/Form/UserAccount.php:216 #: IDF/Form/UserChangeEmail.php:80 IDF/Form/WikiCreate.php:167 #: IDF/Form/WikiDelete.php:59 IDF/Form/WikiUpdate.php:178 msgid "Cannot save the model from an invalid form." @@ -252,6 +260,15 @@ msgstr "" "Désolé, vous devez vraiment faire une copie de sauvegarde des informations " "importantes de ce projet." +#: IDF/Form/Admin/ProjectUpdate.php:90 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashes and dots as separators." +msgstr "" +"La branche principale contient des caractères non autorisés, il ne doit être" +" composé que de lettres, de chiffres, du point d'exclamation (!) ou du point" +" (.)." + #: IDF/Form/Admin/UserCreate.php:37 IDF/Form/Admin/UserUpdate.php:38 #: IDF/Form/RegisterConfirmation.php:50 IDF/Form/UserAccount.php:40 msgid "First name" @@ -266,7 +283,7 @@ msgstr "Nom de famille" msgid "Login" msgstr "Identifiant" -#: IDF/Form/Admin/UserCreate.php:60 IDF/Form/Register.php:45 +#: IDF/Form/Admin/UserCreate.php:60 msgid "" "The login must be between 3 and 15 characters long and contains only letters" " and digits." @@ -280,7 +297,7 @@ msgstr "Email" #: IDF/Form/Admin/UserCreate.php:71 msgid "" -"Double check the email address as the password is directly sent to the user." +"Double check the email address as the password is sent directly to the user." msgstr "" "Vérifiez particulièrement l'adresse email car le mot de passe est " "directement envoyé à l'utilisateur." @@ -294,7 +311,7 @@ msgstr "Langage" msgid "Add a public key" msgstr "Ajouter une clef publique" -#: IDF/Form/Admin/UserCreate.php:92 IDF/Form/UserAccount.php:166 +#: IDF/Form/Admin/UserCreate.php:92 msgid "" "Paste a SSH or monotone public key. Be careful to not provide your private " "key here!" @@ -306,7 +323,8 @@ msgstr "" 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 +#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:420 +#: IDF/Form/UserAccount.php:429 #, php-format msgid "The email \"%s\" is already used." msgstr "L'adresse email \"%s\" est déjà utilisée." @@ -331,8 +349,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 guess, 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." @@ -385,10 +403,10 @@ 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." +msgid "If you give staff rights to a user, you really need to trust them." msgstr "" -"Si vous donnez les droits de staff à un utilisateur, vous devez vraiment lui" -" faire confiance." +"Si vous donnez le status de staff à un utilisateur, vous devez vraiment lui " +"faire confiance." #: IDF/Form/Admin/UserUpdate.php:172 IDF/Views/Admin.php:213 msgid "Active" @@ -397,7 +415,7 @@ 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." +"you can directly enable or disable their account here." msgstr "" "Si l'utilisateur ne reçoit pas l'email de confirmation ou s'il abuse du " "système, vous pouvez directement activer ou désactiver son compte ici." @@ -413,14 +431,13 @@ msgstr "" "Un utilisateur avec cet email existe déjà, merci de fournir une autre " "adresse email." -#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/Upload.php:86 -#: IDF/Form/UserAccount.php:369 +#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:389 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 +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:452 msgid "The passwords do not match. Please give them again." msgstr "" "Les mots de passe ne sont pas identiques, veuillez les donner de nouveau." @@ -430,7 +447,7 @@ 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/ReviewCreate.php:45 IDF/Form/ReviewFileComment.php:73 #: IDF/Form/UpdateUpload.php:42 IDF/Form/Upload.php:40 #: IDF/Views/Download.php:65 IDF/Views/Download.php:293 IDF/Views/Issue.php:62 #: IDF/Views/Issue.php:139 IDF/Views/Issue.php:220 IDF/Views/Issue.php:296 @@ -450,7 +467,7 @@ 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/Form/ReviewCreate.php:103 IDF/Form/ReviewFileComment.php:83 #: IDF/Views/Issue.php:63 IDF/Views/Issue.php:140 IDF/Views/Issue.php:222 #: IDF/Views/Issue.php:297 IDF/Views/Issue.php:384 IDF/Views/Issue.php:563 #: IDF/Views/Issue.php:622 IDF/Views/Review.php:59 IDF/Views/User.php:84 @@ -496,10 +513,11 @@ 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" +"Define an issue template to hint to the reporter to provide certain " +"information" msgstr "" -"Définissez un ticket gabarit pour inciter le rapporteur à fournir certaines " -"informations" +"Définissez un modèle de ticket pour guider le rapporteur à fournir certaines" +" informations." #: IDF/Form/IssueTrackingConf.php:89 msgid "Open issue status values" @@ -599,8 +617,7 @@ msgstr "Ne peut pas sauvegarder un formulaire invalide." msgid "Your password" msgstr "Votre mot de passe" -#: IDF/Form/PasswordReset.php:48 IDF/Form/RegisterConfirmation.php:72 -#: IDF/Form/UserAccount.php:80 +#: IDF/Form/PasswordReset.php:48 IDF/Form/UserAccount.php:80 msgid "" "Your password must be hard for other people to find it, but easy for you to " "remember." @@ -629,12 +646,20 @@ msgstr "" msgid "Your login" msgstr "Votre identifiant" +#: IDF/Form/Register.php:45 +msgid "" +"The login must be between 3 and 15 characters long and contain only letters " +"and digits." +msgstr "" +"L'identifiant doit avoir entre 3 et 15 caractères et ne doit contenir que " +"des lettres et des chiffres." + #: IDF/Form/Register.php:53 msgid "Your email" msgstr "Votre email" #: IDF/Form/Register.php:55 -msgid "We will never send you any unsolicited emails. We hate spams too!" +msgid "We will never send you any unsolicited emails. We hate spam too!" msgstr "" "Nous ne vous enverrons aucun message non sollicité. Comme vous, nous avons " "ras le bol du spam." @@ -651,16 +676,16 @@ msgstr "" "Nous savons que c'est inintéressant, mais vous devez accepter les conditions" " d'usage du service." -#: IDF/Form/Register.php:99 +#: IDF/Form/Register.php:97 #, php-format msgid "" -"The email \"%s\" is already used. If you need, click on the help link to " +"The email \"%s\" is already used. If you need to, click on the help link to " "recover your password." msgstr "" -"L'email \"%s\" est déjà utilisé. Si vous devez, vous pouvez récupérer votre " -"mot de passe via le lien d'aide." +"L'email \"%s\" est déjà utilisé. Si vous avez perdu votre mot de passe, vous" +" pouvez le récupérer à l'aide de ce lien." -#: IDF/Form/Register.php:150 +#: IDF/Form/Register.php:148 msgid "Confirm the creation of your account." msgstr "Confirmez la création de votre compte." @@ -668,6 +693,14 @@ msgstr "Confirmez la création de votre compte." msgid "Your confirmation key" msgstr "Votre clef de confirmation" +#: IDF/Form/RegisterConfirmation.php:72 +msgid "" +"Your password must be hard for other people to guess, but easy for you to " +"remember." +msgstr "" +"Le mot de passe doit être difficile à trouver pour d'autres personnes, mais " +"simple à retenir pour l'utilisateur." + #: IDF/Form/RegisterConfirmation.php:99 IDF/Form/RegisterInputKey.php:50 msgid "" "We are sorry but this confirmation key is not valid. Maybe you should " @@ -713,11 +746,11 @@ msgstr "Patch initial à discuter." msgid "General comment" msgstr "Commentaire général" -#: IDF/Form/ReviewFileComment.php:102 +#: IDF/Form/ReviewFileComment.php:104 msgid "You need to provide comments on at least one file." msgstr "Vous devez au moins apporter un commentaire à un fichier." -#: IDF/Form/ReviewFileComment.php:109 +#: IDF/Form/ReviewFileComment.php:111 msgid "You need to provide your general comment about the proposal." msgstr "Vous devez apporter un commentaire général sur la proposition." @@ -731,9 +764,7 @@ 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 @@ -741,32 +772,24 @@ msgstr "En savoir plus à propos des Webhooks post-commit." 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/Form/TabsConf.php:39 IDF/gettexttemplates/idf/base-full.html.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/Form/TabsConf.php:42 IDF/gettexttemplates/idf/base-full.html.php:7 #: IDF/gettexttemplates/idf/base.html.php:7 #: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:17 msgid "Issues" @@ -796,6 +819,12 @@ msgstr "Utilisateurs autorisés supplémentaires" msgid "File" msgstr "Fichier" +#: IDF/Form/Upload.php:86 +msgid "For security reasons, you cannot upload a file with this extension." +msgstr "" +"Pour des raisons de sécurité, vous ne pouvez pas mettre en ligne un fichier " +"avec cette extension." + #: IDF/Form/UploadConf.php:53 msgid "Predefined download labels" msgstr "Étiquettes prédéfinies des téléchargements" @@ -822,25 +851,41 @@ msgstr "" 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 +#: IDF/Form/UserAccount.php:166 +msgid "" +"Paste an SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" +"Copiez une clef publique SSH ou monotone. Faites bien attention à ne pas y " +"mettre la clef privée !" + +#: IDF/Form/UserAccount.php:171 +msgid "Add a secondary mail address" +msgstr "Ajouter un e-mail secondaire" + +#: IDF/Form/UserAccount.php:173 +msgid "You will get a mail to confirm that you own the address you specify." +msgstr "Vous allez recevoir un e-mail de confirmation afin de la vérifier. " + +#: IDF/Form/UserAccount.php:200 msgid "Confirm your new email address." msgstr "Confirmez votre nouvelle adresse email." -#: IDF/Form/UserAccount.php:212 +#: IDF/Form/UserAccount.php:203 #, php-format msgid "" "A validation email has been sent to \"%s\" to validate the email address " "change." msgstr "Un email a été envoyé à \"%s\" pour valider le changement d'adresse." -#: IDF/Form/UserAccount.php:314 +#: IDF/Form/UserAccount.php:334 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 +#: IDF/Form/UserAccount.php:354 msgid "" "Please check the key as it does not appear to be a valid monotone public " "key." @@ -848,13 +893,13 @@ 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." +#: IDF/Form/UserAccount.php:362 +msgid "Public key looks like neither an SSH nor monotone public key." msgstr "" "La clef publique ne ressemble ni à une clef publique SSH ni une clef " "publique monotone." -#: IDF/Form/UserAccount.php:354 +#: IDF/Form/UserAccount.php:374 msgid "You already have uploaded this key." msgstr "Vous avez déjà cette clef SSH dans votre trousseau." @@ -1214,9 +1259,7 @@ msgstr "Emails de notification" 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 "" @@ -1226,16 +1269,12 @@ 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" @@ -1299,7 +1338,7 @@ msgstr "Supprimer le fichier" #: 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/myaccount.html.php:13 #: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5 #: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5 #: IDF/gettexttemplates/idf/user/passrecovery.html.php:7 @@ -1328,7 +1367,7 @@ 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 +#: IDF/gettexttemplates/idf/index.html.php:13 msgid "Downloads:" msgstr "Téléchargements :" @@ -1490,7 +1529,7 @@ msgstr "Nous sommes là, juste pour vous aider." #: 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 +#: IDF/Views.php:47 msgid "Projects" msgstr "Projets" @@ -1553,7 +1592,7 @@ msgstr "Comment puis-je afficher ma tête à côté de mes commentaires ?" #: IDF/gettexttemplates/idf/faq.html.php:15 #: IDF/gettexttemplates/idf/faq.html.php:33 -msgid "What is the API and how to use it?" +msgid "What is the API and how is it used?" msgstr "Qu'est-ce que l'API et comment l'utiliser ?" #: IDF/gettexttemplates/idf/faq.html.php:17 @@ -1627,6 +1666,7 @@ msgstr "Vous avez ici accès à l'administration de la forge." #: IDF/gettexttemplates/idf/gadmin/home.html.php:4 #: IDF/gettexttemplates/idf/project/home.html.php:3 #: IDF/gettexttemplates/idf/project/timeline.html.php:4 +#: IDF/gettexttemplates/idf/project/timeline.html~.php:4 msgid "Welcome" msgstr "Bienvenue" @@ -2031,26 +2071,30 @@ 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 +msgid "Forge statistics" +msgstr "Statistiques de la forge" + +#: IDF/gettexttemplates/idf/index.html.php:8 msgid "Projects:" msgstr "Projets :" -#: IDF/gettexttemplates/idf/index.html.php:8 +#: IDF/gettexttemplates/idf/index.html.php:9 msgid "Members:" msgstr "Membres :" -#: IDF/gettexttemplates/idf/index.html.php:9 +#: IDF/gettexttemplates/idf/index.html.php:10 msgid "Issues:" msgstr "Ticket :" -#: IDF/gettexttemplates/idf/index.html.php:10 +#: IDF/gettexttemplates/idf/index.html.php:11 msgid "Commits:" msgstr "Commits :" -#: IDF/gettexttemplates/idf/index.html.php:11 +#: IDF/gettexttemplates/idf/index.html.php:12 msgid "Documentations:" msgstr "Documentation :" -#: IDF/gettexttemplates/idf/index.html.php:13 +#: IDF/gettexttemplates/idf/index.html.php:14 msgid "Code reviews:" msgstr "Revues de code :" @@ -2449,6 +2493,7 @@ msgstr "Aide" #: IDF/gettexttemplates/idf/project/home.html.php:4 #: IDF/gettexttemplates/idf/project/timeline.html.php:5 +#: IDF/gettexttemplates/idf/project/timeline.html~.php:5 msgid "Latest Updates" msgstr "Dernières mises à jour" @@ -2478,10 +2523,17 @@ msgid "Happy Crew" msgstr "Équipe sympa" #: IDF/gettexttemplates/idf/project/timeline.html.php:3 +#: IDF/gettexttemplates/idf/project/timeline.html~.php:3 msgid "Latest updates" msgstr "Dernières mises à jour" #: IDF/gettexttemplates/idf/project/timeline.html.php:6 +#: IDF/Views/Project.php:72 +msgid "All Updates" +msgstr "Mises à jour" + +#: IDF/gettexttemplates/idf/project/timeline.html.php:7 +#: IDF/gettexttemplates/idf/project/timeline.html~.php:6 msgid "Filter by type" msgstr "Filtrer par type" @@ -2543,7 +2595,7 @@ 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." +msgid "Oops, please check the form for errors." msgstr "Oups, veuillez corriger les erreurs dans le formulaire." #: IDF/gettexttemplates/idf/register/confirmation.html.php:5 @@ -2586,12 +2638,12 @@ msgstr "" "faire savoir à tout instant !" #: IDF/gettexttemplates/idf/register/index.html.php:5 -msgid "Oups, please check the provided login and email address to register." +msgid "Oops, please check the provided login and email address to register." msgstr "" "Oups, veuillez vérifier l'identifiant et l'adresse email pour vous " "enregistrer." -#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:88 +#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:90 msgid "Create Your Account" msgstr "Créez votre compte" @@ -2610,7 +2662,7 @@ msgstr "Le saviez-vous ?" #: IDF/gettexttemplates/idf/register/inputkey.html.php:3 #: IDF/gettexttemplates/idf/user/changeemail.html.php:3 #: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3 -msgid "Oups, we found an error in the form." +msgid "Oops, we found an error in the form." msgstr "Oups, nous avons trouvé une erreur dans le formulaire." #: IDF/gettexttemplates/idf/register/inputkey.html.php:4 @@ -2652,15 +2704,15 @@ msgid "" "
      \n" "
    • A commit or revision of the current code in the repository from which you started your work.
    • \n" "
    • A patch describing your changes with respect to the reference commit.
    • \n" -"
    • Ensure your patch does not contain any passwords or confidential information!
    • \n" +"
    • Check your patch does not provide any password or confidential information!
    • \n" "
    " msgstr "" -"

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

    \n" -"
      \n" -"
    • La révision ou le commit de référence qui a servi de base à votre travail.
    • \n" -"
    • Un patch 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" -"
    " +"<p>Pour démarrer une revue de code vous devez fournir :</p>\n" +"<ul>\n" +"<li>La révision ou le commit de référence qui a servi de base à votre travail.</li>\n" +"<li>Un patch qui décrit les changements par rapport à la référence.</li>\n" +"<li><strong>Vérifiez votre patch pour ne fournir aucun mot de passe ou information confidentielle !</strong></li>\n" +"</ul>" #: IDF/gettexttemplates/idf/review/create.html.php:9 msgid "" @@ -2850,7 +2902,7 @@ msgstr "Comment obtenir le code" #: 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 +#: IDF/Views/Project.php:163 msgid "Age" msgstr "Âge" @@ -3067,13 +3119,10 @@ msgid "" "synchronization of your SSH key can take a couple of minutes. You can learn " "more about SSH " -"key authentification." +"key authentication." 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." +"Vous devez probablement fournir <a href=\"%%url%%\">votre clef SSH</a>. La synchronisation de votre clef SSH peut prendre quelques minutes. Vous pouvez en apprendre plus sur l'authentification <a href=\"http://www.google.fr/search?\"\n" +"\"q=authentification+clef+ssh+publique\">avec une clef SSH publique</a>." #: IDF/gettexttemplates/idf/source/git/help.html.php:7 #: IDF/gettexttemplates/idf/source/mtn/help.html.php:6 @@ -3315,10 +3364,14 @@ msgid "Key Management" msgstr "Administration des clefs" #: IDF/gettexttemplates/idf/user/myaccount.html.php:7 +msgid "Secondary Emails" +msgstr "E-mail secondaires" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 msgid "Extra password" msgstr "Mot de passe supplémentaire" -#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 msgid "" "This password is used to access some of the external systems managed by our " "infrastructure. It will be regenerated if you change your password." @@ -3326,30 +3379,38 @@ 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 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 msgid "API key" msgstr "Clé d'API" -#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 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 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 msgid "Update Your Account" msgstr "Mettre à jour votre compte" -#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 msgid "Your Current Public Keys" msgstr "Vos clefs publique jusqu'à présent" -#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 msgid "Delete this key" msgstr "Supprimer cette clef" -#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 +msgid "Your additional email addresses" +msgstr "Vos e-mails secondaires" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 +msgid "Delete this address" +msgstr "Supprimer cette e-mail" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:18 msgid "" "If possible, use your real name. By using your real name, people will have " "more trust in your comments and remarks." @@ -3358,7 +3419,7 @@ msgstr "" "personnes utilisant ce site auront naturellement plus confiance en vos " "commentaires et remarques." -#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:19 msgid "" "The extra password is used to access some of the external systems and the " "API key is used to interact with this website using a program." @@ -3367,13 +3428,13 @@ msgstr "" "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 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:20 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 " +"Oops, please check the provided login or email address to recover your " "password." msgstr "" "Oups, veuillez vérifier l'identifiant ou l'adresse email pour récupérer " @@ -3446,10 +3507,10 @@ 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." +"password and use 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." +"Juste après avoir fourni la clef de vérification, vous pourrez réinitialiser" +" votre mot de passe et réutiliser complètement le site." #: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 msgid "Reset Your Password" @@ -3747,10 +3808,6 @@ msgstr "Image" msgid "Other" msgstr "Autre" -#: IDF/Key.php:49 -msgid "user" -msgstr "utilisateur" - #: IDF/Key.php:55 msgid "public key" msgstr "clef publique" @@ -3982,17 +4039,12 @@ msgstr "%s: Création de la revue %d - %s" 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 +#: IDF/Scm/Git.php:311 IDF/Scm/Mercurial.php:141 #, 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 +#: IDF/Scm/Git.php:427 IDF/Scm/Mercurial.php:158 #, php-format msgid "Not a valid tree: %s." msgstr "Arbre non valide : %s." @@ -4040,7 +4092,7 @@ msgstr "lcname" msgid "Lower case version of the name for fast searching." msgstr "Version minuscule du nom pour chercher rapidement." -#: IDF/Template/Markdown.php:74 +#: IDF/Template/Markdown.php:81 msgid "Create this documentation page" msgstr "Créer cette page de documentation" @@ -4115,7 +4167,7 @@ msgstr "Aucun projet n'a été trouvé." msgid "Update %s" msgstr "Mise à jour de %s" -#: IDF/Views/Admin.php:101 IDF/Views/Project.php:256 +#: IDF/Views/Admin.php:101 IDF/Views/Project.php:277 msgid "The project has been updated." msgstr "Le projet a été mis à jour." @@ -4435,10 +4487,6 @@ msgstr "Le ticket a été ajouté à votre liste de surveillance." 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" @@ -4451,74 +4499,74 @@ msgstr "Documents" msgid "Reviews and Patches" msgstr "Revues et Patchs" -#: IDF/Views/Project.php:142 +#: IDF/Views/Project.php:153 msgid "This table shows the project updates." msgstr "Ce tableau montre les mises à jour du projet." -#: IDF/Views/Project.php:153 +#: IDF/Views/Project.php:164 msgid "Change" msgstr "Changement" -#: IDF/Views/Project.php:157 +#: IDF/Views/Project.php:168 msgid "No changes were found." msgstr "Aucun changement trouvé." -#: IDF/Views/Project.php:248 +#: IDF/Views/Project.php:269 #, php-format msgid "%s Project Summary" msgstr "Résumé du projet %s" -#: IDF/Views/Project.php:283 +#: IDF/Views/Project.php:304 #, php-format msgid "%s Issue Tracking Configuration" msgstr "Configuration du gestionnaire de tickets de %s" -#: IDF/Views/Project.php:292 +#: IDF/Views/Project.php:313 msgid "The issue tracking configuration has been saved." msgstr "La configuration du gestionnaire de tickets a été sauvegardée." -#: IDF/Views/Project.php:328 +#: IDF/Views/Project.php:349 #, php-format msgid "%s Downloads Configuration" msgstr "Configuration des Téléchargements de %s" -#: IDF/Views/Project.php:337 +#: IDF/Views/Project.php:358 msgid "The downloads configuration has been saved." msgstr "La configuration des téléchargements a été sauvegardée." -#: IDF/Views/Project.php:371 +#: IDF/Views/Project.php:392 #, php-format msgid "%s Documentation Configuration" msgstr "Configuration de la documentation de %s" -#: IDF/Views/Project.php:380 +#: IDF/Views/Project.php:401 msgid "The documentation configuration has been saved." msgstr "La configuration de la documentation a été sauvegardée." -#: IDF/Views/Project.php:414 +#: IDF/Views/Project.php:435 #, php-format msgid "%s Project Members" msgstr "Membres du projet %s" -#: IDF/Views/Project.php:423 +#: IDF/Views/Project.php:444 msgid "The project membership has been saved." msgstr "Les membres du projet ont été sauvegardés." -#: IDF/Views/Project.php:446 +#: IDF/Views/Project.php:467 #, php-format msgid "%s Tabs Access Rights" msgstr "Accès aux onglets de %s" -#: IDF/Views/Project.php:460 +#: IDF/Views/Project.php:481 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 +#: IDF/Views/Project.php:527 #, php-format msgid "%s Source" msgstr "Source de %s" -#: IDF/Views/Project.php:520 +#: IDF/Views/Project.php:541 msgid "The project source configuration has been saved." msgstr "La configuration du dépôt a été sauvegardée." @@ -4570,7 +4618,7 @@ msgstr "%s Révision ambiguë " 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 +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:360 #, php-format msgid "%1$s %2$s Source Tree" msgstr "Arbre des sources %2$s de %1$s" @@ -4605,19 +4653,23 @@ msgstr "Tous les tickets que vous avez soumis ont été fixés, yeah !" msgid "Your personal information has been updated." msgstr "Vos informations personnelles ont été mises à jour." -#: IDF/Views/User.php:132 +#: IDF/Views/User.php:133 msgid "Your Account" msgstr "Votre compte" -#: IDF/Views/User.php:155 +#: IDF/Views/User.php:157 msgid "The public key has been deleted." msgstr "La clef clef publique a été supprimée." -#: IDF/Views/User.php:178 +#: IDF/Views/User.php:177 +msgid "The address has been deleted." +msgstr "Cet e-mail a été supprimé." + +#: IDF/Views/User.php:200 msgid "Confirm The Email Change" msgstr "Confirmez le changement d'adresse" -#: IDF/Views/User.php:203 +#: IDF/Views/User.php:232 #, php-format msgid "Your new email address \"%s\" has been validated. Thank you!" msgstr "Votre nouvelle adresse email \"%s\" a été validée. Merci !" @@ -4694,22 +4746,22 @@ msgstr "La page de documentation a été supprimée." msgid "Delete Page %s" msgstr "Suppprimer la page %s" -#: IDF/Views.php:124 IDF/Views.php:150 +#: IDF/Views.php:126 IDF/Views.php:152 msgid "Confirm Your Account Creation" msgstr "Confirmez la création de votre compte" -#: IDF/Views.php:170 +#: IDF/Views.php:172 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 +#: IDF/Views.php:198 IDF/Views.php:222 IDF/Views.php:263 msgid "Password Recovery" msgstr "Récupération du mot de passe" -#: IDF/Views.php:240 +#: IDF/Views.php:242 msgid "" "Welcome back! Next time, you can use your broswer options to remember the " "password." @@ -4717,11 +4769,11 @@ 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 +#: IDF/Views.php:284 msgid "Here to Help You!" msgstr "Ici pour vous aider !" -#: IDF/Views.php:298 +#: IDF/Views.php:300 msgid "InDefero API (Application Programming Interface)" msgstr "API d'InDefero (Interface de Programmation de l'Application)" diff --git a/src/IDF/locale/idf.pot b/src/IDF/locale/idf.pot index 283817a..1cdc262 100644 --- a/src/IDF/locale/idf.pot +++ b/src/IDF/locale/idf.pot @@ -8,44 +8,178 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-02-23 23:41+0100\n" +"POT-Creation-Date: 2011-03-10 10:02+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/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" +#: IDF/IssueComment.php:51 +msgid "issue" msgstr "" -#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65 -#: IDF/IssueFile.php:57 IDF/Review/Comment.php:69 IDF/Review.php:80 -#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79 +#: IDF/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/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 +#: 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 +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 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" @@ -56,800 +190,6 @@ 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 "" @@ -858,454 +198,88 @@ msgstr "" msgid "model id" msgstr "" -#: IDF/gettexttemplates/idf/admin/base.html.php:3 -msgid "Project Summary" +#: IDF/Gconf.php:73 IDF/Conf.php:61 +msgid "key" msgstr "" -#: IDF/gettexttemplates/idf/admin/base.html.php:6 -msgid "Issue Tracking" +#: IDF/Gconf.php:79 IDF/Conf.php:67 +msgid "value" 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 "" - -#: 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/Views.php:47 IDF/gettexttemplates/idf/faq.html.php:35 #: IDF/gettexttemplates/idf/gadmin/base.html.php:3 +#: IDF/gettexttemplates/idf/faq-api.html.php:4 #: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57 -#: IDF/Views.php:45 msgid "Projects" msgstr "" +#: IDF/Views.php:90 IDF/gettexttemplates/idf/register/index.html.php:6 +msgid "Create Your Account" +msgstr "" + +#: IDF/Views.php:126 IDF/Views.php:152 +msgid "Confirm Your Account Creation" +msgstr "" + +#: IDF/Views.php:172 +msgid "Welcome! You can now participate in the life of your project of choice." +msgstr "" + +#: IDF/Views.php:198 IDF/Views.php:222 IDF/Views.php:263 +msgid "Password Recovery" +msgstr "" + +#: IDF/Views.php:242 +msgid "" +"Welcome back! Next time, you can use your broswer options to remember the " +"password." +msgstr "" + +#: IDF/Views.php:284 +msgid "Here to Help You!" +msgstr "" + +#: IDF/Views.php:300 +msgid "InDefero API (Application Programming Interface)" +msgstr "" + +#: IDF/Scm/Mercurial.php:138 IDF/Scm/Git.php:288 +#, php-format +msgid "Folder %1$s not found in commit %2$s." +msgstr "" + +#: IDF/Scm/Mercurial.php:155 IDF/Scm/Git.php:404 +#, php-format +msgid "Not a valid tree: %s." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:79 +msgid "Monotone client key name or hash not in project conf." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:87 IDF/Plugin/SyncMonotone.php:187 +#, php-format +msgid "The key directory %s could not be created." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:98 +#, php-format +msgid "Could not write client key \"%s\"" +msgstr "" + +#: IDF/Scm/Git.php:237 +#, php-format +msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." +msgstr "" + +#: IDF/EmailAddress.php:49 IDF/Key.php:49 +msgid "user" +msgstr "" + +#: IDF/EmailAddress.php:55 +msgid "email" +msgstr "" + #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

    This is simple:

    \n" @@ -1352,7 +326,7 @@ msgstr "" #: IDF/gettexttemplates/idf/faq.html.php:15 #: IDF/gettexttemplates/idf/faq.html.php:33 -msgid "What is the API and how to use it?" +msgid "What is the API and how is it used?" msgstr "" #: IDF/gettexttemplates/idf/faq.html.php:17 @@ -1411,37 +385,158 @@ msgstr "" msgid "Alt+4: Search (when available)." msgstr "" -#: IDF/gettexttemplates/idf/gadmin/base.html.php:4 -msgid "People" +#: 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:5 -msgid "Usher" +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You have requested the creation of an account to\n" +"participate in the life of a software project.\n" +"\n" +"To confirm the account please follow this link:\n" +"\n" +"%%url%%\n" +"\n" +"Alternatively, go to this page:\n" +"\n" +"%%urlik%%\n" +"\n" +"and provide the following confirmation key:\n" +"\n" +"%%key%%\n" +"\n" +"If you are not interested any longer in taking\n" +"part in the life of the software project or if\n" +"you can't remember having requested the creation\n" +"of an account, please excuse us and simply ignore\n" +"this email. \n" +"\n" +"Yours faithfully,\n" +"The development team.\n" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/home.html.php:3 -msgid "You have here access to the administration of the forge." +#: IDF/gettexttemplates/idf/register/inputkey.html.php:3 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:3 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3 +msgid "Oops, we found an error in the form." msgstr "" -#: IDF/gettexttemplates/idf/gadmin/home.html.php:4 -#: IDF/gettexttemplates/idf/project/home.html.php:3 -#: IDF/gettexttemplates/idf/project/timeline.html.php:4 -msgid "Welcome" +#: 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" +#: IDF/gettexttemplates/idf/register/inputkey.html.php:5 +#: IDF/gettexttemplates/idf/register/index.html.php:7 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16 +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7 +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5 +#: IDF/gettexttemplates/idf/wiki/create.html.php:7 +#: IDF/gettexttemplates/idf/wiki/delete.html.php:10 +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7 +#: IDF/gettexttemplates/idf/wiki/update.html.php:7 +#: IDF/gettexttemplates/idf/review/create.html.php:12 +#: IDF/gettexttemplates/idf/review/view.html.php:43 +#: IDF/gettexttemplates/idf/issues/create.html.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:25 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:7 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:8 +msgid "Cancel" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:4 -#: IDF/gettexttemplates/idf/gadmin/projects/create.html.php:16 -#: IDF/gettexttemplates/idf/index.html.php:5 IDF/Views/Admin.php:128 -msgid "Create Project" +#: 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/gadmin/projects/base.html.php:5 -msgid "Change Project Details" +#: IDF/gettexttemplates/idf/register/inputkey.html.php:7 +msgid "" +"Use your email software to read your emails and open your confirmation " +"email. Either click directly on the confirmation link or copy/paste the " +"confirmation key in the box and submit the form." +msgstr "" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:8 +msgid "" +"Just after providing the confirmation key, you will be able to set your " +"password and start using this website fully." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:3 +msgid "" +"Read the terms and conditions " +"– basically \"Please be nice, we respect you\"." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:4 +#, php-format +msgid "" +"With your account, you will able to participate in the life of all the " +"projects hosted here. Participating in a software project must be fun, so if " +"you have troubles, you can let us know about your issues " +"at anytime!" +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:5 +msgid "Oops, please check the provided login and email address to register." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:8 +msgid "" +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:9 +msgid "Did you know?" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:3 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:3 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:3 +msgid "Oops, please check the form for errors." +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:4 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4 +msgid "Login:" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 +msgid "Email:" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:6 +msgid "Enable Your Account" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 +msgid "" +"This is the last step, but just be sure to have the cookies enabled 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/create.html.php:3 @@ -1464,6 +559,19 @@ 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." @@ -1473,6 +581,18 @@ 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 "" @@ -1505,6 +625,15 @@ 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 "" @@ -1514,6 +643,12 @@ 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 "" @@ -1537,11 +672,18 @@ msgid "Repositories:" msgstr "" #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5 -#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11 #: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11 msgid "Attachments:" msgstr "" +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:13 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:10 +#: IDF/gettexttemplates/idf/downloads/view.html.php:15 +msgid "Downloads:" +msgstr "" + #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7 msgid "Database:" msgstr "" @@ -1550,6 +692,16 @@ 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." @@ -1569,29 +721,35 @@ 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/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" +#: 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: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" +#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 +msgid "Change Project Details" msgstr "" #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3 msgid "The form contains some errors. Please correct them to create the user." msgstr "" +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5 +msgid "Create User" +msgstr "" + #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6 msgid "The user password will be sent by email to the user." msgstr "" @@ -1644,13 +802,6 @@ 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" @@ -1660,21 +811,14 @@ msgstr "" msgid "Administrative" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 -msgid "Configured servers" +#: 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: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" +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" msgstr "" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3 @@ -1777,9 +921,1005 @@ msgstr "" msgid "usher is shut down, not running and not accepting connections" msgstr "" -#: IDF/gettexttemplates/idf/index.atom.php:3 +#: 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 #, php-format -msgid "Personal project feed for %%user%%." +msgid "" +"If you don't have an account yet, you can create one here." +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:4 +msgid "What is your account information?" +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:5 +msgid "My login is" +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:6 +msgid "My password is" +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:7 +msgid "Sign in" +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:8 +msgid "I lost my password!" +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:9 +msgid "Welcome." +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:10 +msgid "It takes less than a minute to create your account." +msgstr "" + +#: IDF/gettexttemplates/idf/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: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 "Secondary Emails" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +msgid "Extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 +msgid "" +"This password is used to access some of the external systems managed by our " +"infrastructure. It will be regenerated if you change your password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "API key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +msgid "Update Your Account" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Your Current Public Keys" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +msgid "Delete this key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 +msgid "Your additional email addresses" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 +msgid "Delete this address" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:18 +msgid "" +"If possible, use your real name. By using your real name, people will have " +"more trust in your comments and remarks." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:19 +msgid "" +"The extra password is used to access some of the external systems and the " +"API key is used to interact with this website using a program." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:20 +msgid "Show API key and extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/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 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 "" +"Oops, please check the provided login or email address to recover your " +"password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4 +msgid "Recover My Password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6 +msgid "" +"Provide either your login or email address, if a corresponding user is found " +"in the database, we will send you an email with the details on how to reset " +"your password." +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:3 +#: IDF/gettexttemplates/idf/wiki/update.html.php:3 +msgid "Preview of the Page" +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:4 +msgid "The form contains some errors. Please correct them to create the page." +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:5 +#: IDF/gettexttemplates/idf/wiki/update.html.php:5 +#: IDF/gettexttemplates/idf/issues/create.html.php:11 +#: IDF/gettexttemplates/idf/issues/create.html.php:13 +#: IDF/gettexttemplates/idf/issues/view.html.php:22 +#: IDF/gettexttemplates/idf/issues/view.html.php:24 +msgid "Preview" +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:6 +msgid "Create Page" +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/delete.html.php:3 +#, php-format +msgid "" +"You are looking at an old revision (%%oldrev.summary%%) of the " +"page \n" +"%%page.title%%. This revision was created\n" +"by %%submitter%%." +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/delete.html.php:6 +msgid "" +"If you delete this old revision, it will be removed from the database and " +"you will not be able to recover it." +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/delete.html.php:7 +#: IDF/gettexttemplates/idf/wiki/delete.html.php:8 +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:4 +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:5 +#: IDF/gettexttemplates/idf/wiki/view.html.php:8 +#: IDF/gettexttemplates/idf/wiki/view.html.php:9 +#: IDF/gettexttemplates/idf/issues/view.html.php:7 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:4 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:5 +#: IDF/gettexttemplates/idf/downloads/view.html.php:4 +#, php-format +msgid "by %%submitter%%" +msgstr "" + +#: 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:175 +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 +#: IDF/gettexttemplates/idf/source/commit.html.rej.php:4 +#: IDF/gettexttemplates/idf/source/commit.html.orig.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 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/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/source/commit.html.orig.php:7 +#: IDF/gettexttemplates/idf/review/view.html.php:28 +msgid "Commit:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8 +msgid "Created at:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10 +msgid "Commit details:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:3 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:3 +#, php-format +msgid "%%ndiff%% diff" +msgid_plural "%%ndiff%% diffs" +msgstr[0] "" +msgstr[1] "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:4 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:4 +msgid "Date:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:5 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:5 +#: IDF/gettexttemplates/idf/review/view.html.php:27 +msgid "Author:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:6 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:6 +msgid "Branch:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:8 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:8 +#: IDF/gettexttemplates/idf/review/view.html.php:29 +msgid "View corresponding source tree" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:9 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:9 +msgid "Parents:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:10 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:10 +#: IDF/gettexttemplates/idf/source/changelog.html.php:6 +msgid "View corresponding commit" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:11 +#: IDF/gettexttemplates/idf/source/commit.html.rej.php:3 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:11 +msgid "Message:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:13 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:13 +msgid "deleted" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.php:17 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:17 +msgid "full" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:15 +msgid "renamed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:16 +msgid "added" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:18 +msgid "modified" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:19 +msgid "properies changed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:20 +msgid "removed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:21 +msgid "File differences" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/review/view.html.php:34 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 +msgid "Archive" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:23 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:23 +#: IDF/gettexttemplates/idf/review/view.html.php:35 +msgid "Download the corresponding diff file" +msgstr "" + +#: 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:292 IDF/Form/Upload.php:59 +msgid "File" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/changelog.html.php:3 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:7 +#: IDF/Views/Project.php:152 +msgid "Age" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8 +#: IDF/gettexttemplates/idf/source/changelog.html.php:4 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:8 +msgid "Message" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:9 +#: IDF/Views/Download.php:66 IDF/Views/Download.php:294 +msgid "Size" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:10 +msgid ":" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:12 +msgid "Download this version" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:13 +msgid "or" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:14 +#: IDF/gettexttemplates/idf/main-menu.html.php:10 +msgid "Help" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the monotone software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6 +#: IDF/gettexttemplates/idf/source/git/help.html.php:7 +msgid "To make a first commit in the repository, perform the following steps:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7 +#: IDF/gettexttemplates/idf/source/git/help.html.php:8 +#, php-format +msgid "Find here more details on how to access %%project%% source code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8 +#: IDF/gettexttemplates/idf/source/git/help.html.php:9 +msgid "Command-Line Access" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9 +#: IDF/gettexttemplates/idf/source/git/help.html.php:10 +msgid "First Commit" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15 +#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3 +msgid "Revision:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16 +#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4 +msgid "Go to revision" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11 +msgid "Property" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/file.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12 +msgid "set to:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8 +msgid "Rev" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17 +msgid "Branches:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18 +msgid "Tags:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the subversion software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6 +#, php-format +msgid "" +"To get write access to the repository, you need to use your username and " +"your extra password." +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9 +msgid "Write Access Authentication" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the Mercurial software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:3 +msgid "Source Tree" +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:4 +msgid "Change Log" +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:5 +#: IDF/gettexttemplates/idf/source/changelog.html.php:7 +#: IDF/Form/ReviewCreate.php:74 +msgid "Commit" +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:6 +msgid "How To Get The Code" +msgstr "" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:5 +msgid "Parent:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:8 +msgid "by" +msgstr "" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the git software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:6 +#, php-format +msgid "" +"You may need to provide your SSH key. The " +"synchronization of your SSH key can take a couple of minutes. You can learn " +"more about SSH key authentication." +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:3 +#, php-format +msgid "" +"Welcome, %%user%%." +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:4 +msgid "Sign Out" +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:5 +msgid "Sign in or create your account" +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:7 +#: IDF/gettexttemplates/idf/index.html.php:6 +#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77 +msgid "Private project" +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 +msgid "Forge Management" +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:9 +msgid "Help and accessibility features" msgstr "" #: IDF/gettexttemplates/idf/index.html.php:4 @@ -1787,108 +1927,395 @@ msgid "No projects managed with InDefero were found." msgstr "" #: IDF/gettexttemplates/idf/index.html.php:7 -msgid "Projects:" +msgid "Forge statistics" msgstr "" #: IDF/gettexttemplates/idf/index.html.php:8 -msgid "Members:" +msgid "Projects:" msgstr "" #: IDF/gettexttemplates/idf/index.html.php:9 -msgid "Issues:" +msgid "Members:" msgstr "" #: IDF/gettexttemplates/idf/index.html.php:10 -msgid "Commits:" +msgid "Issues:" msgstr "" #: IDF/gettexttemplates/idf/index.html.php:11 +msgid "Commits:" +msgstr "" + +#: IDF/gettexttemplates/idf/index.html.php:12 msgid "Documentations:" msgstr "" -#: IDF/gettexttemplates/idf/index.html.php:13 +#: IDF/gettexttemplates/idf/index.html.php:14 msgid "Code reviews:" msgstr "" -#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 -#, php-format -msgid "Attachment to issue %%issue.id%%" -msgstr "" - -#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 -#: IDF/gettexttemplates/idf/review/view.html.php: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 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.php:3 #, php-format msgid "" -"

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" +"Sign in or create your account to create issues or " +"add comments" msgstr "" -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" +#: 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:8 -msgid "Completion:" +#: 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" +"
    • Check your patch does not provide any password or confidential " +"information!
    • \n" +"
    " +msgstr "" + +#: IDF/gettexttemplates/idf/review/create.html.php:9 +msgid "" +"The form contains some errors. Please correct them to submit the code review." +msgstr "" + +#: IDF/gettexttemplates/idf/review/create.html.php:10 +msgid "" +"Select the commit against which you created your patch to be sure it applies " +"correctly." +msgstr "" + +#: IDF/gettexttemplates/idf/review/create.html.php:11 +#: IDF/gettexttemplates/idf/review/index.html.php:3 +#: IDF/gettexttemplates/idf/review/base.html.php:4 IDF/Views/Review.php:83 +msgid "Start Code Review" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3 +msgid "The following review has been updated:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4 +#, php-format +msgid "By %%who%%, %%c.creation_dtime%%:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5 +#, php-format +msgid "" +"By %%who%%, %%c.creation_dtime%%, on file:\n" +"%%c.cfile%%\n" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:11 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:8 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:8 +msgid "Reported by:" +msgstr "" + +#: 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" msgstr "" #: IDF/gettexttemplates/idf/issues/create.html.php:3 @@ -1908,15 +2335,6 @@ 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 "" @@ -1933,42 +2351,35 @@ msgstr "" msgid "Attach another file" 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:" +#: 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: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:" +#: IDF/gettexttemplates/idf/issues/search.html.php:4 +msgid "Found issues:" 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:" +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:3 +msgid "The following issue has been updated:" msgstr "" +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 +msgid "Comments (last first):" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 +msgid "Issue:" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:3 #: IDF/gettexttemplates/idf/issues/forge-watchlist.html.php:3 #: IDF/gettexttemplates/idf/issues/index.html.php:3 -#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:3 #, php-format msgid "" "

    Open issues: %%open%%

    \n" @@ -1976,88 +2387,33 @@ 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." @@ -2120,76 +2476,58 @@ msgstr "" msgid "Followed by:" msgstr "" -#: IDF/gettexttemplates/idf/login_form.html.php:3 +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 #, php-format msgid "" -"If you don't have an account yet, you can create one here." -msgstr "" +"See the %%nb_submit_closed%% closed." +msgid_plural "" +"See the %%nb_submit_closed%% closed." +msgstr[0] "" +msgstr[1] "" -#: 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 +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 #, php-format msgid "" -"Welcome, %%user%%." +"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%%" msgstr "" -#: IDF/gettexttemplates/idf/main-menu.html.php:4 -msgid "Sign Out" +#: IDF/gettexttemplates/idf/issues/base.html.php:3 +msgid "Open Issues" msgstr "" -#: IDF/gettexttemplates/idf/main-menu.html.php:5 -msgid "Sign in or create your account" +#: IDF/gettexttemplates/idf/issues/base.html.php:5 +msgid "My Issues" msgstr "" -#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 -msgid "Forge Management" +#: IDF/gettexttemplates/idf/issues/base.html.php:6 +msgid "My watch list" msgstr "" -#: IDF/gettexttemplates/idf/main-menu.html.php:9 -msgid "Help and accessibility features" +#: IDF/gettexttemplates/idf/issues/base.html.php:8 +msgid "Back to the issue" 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" +#: IDF/gettexttemplates/idf/project/timeline.html.php:3 +msgid "Latest updates" msgstr "" -#: IDF/gettexttemplates/idf/project/home.html.php:4 #: IDF/gettexttemplates/idf/project/timeline.html.php:5 +#: IDF/gettexttemplates/idf/project/home.html.php:4 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 "" @@ -2215,1080 +2553,106 @@ msgstr "" msgid "Happy Crew" msgstr "" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" +#: 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:6 -msgid "Filter by type" -msgstr "" - -#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 #, 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" +"Instead of deleting the file, you could mark it as " +"deprecated." 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." +#: IDF/gettexttemplates/idf/downloads/delete.html.php:6 +msgid "Delete File" msgstr "" -#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 -msgid "Email:" +#: 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:6 -msgid "Enable Your Account" -msgstr "" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 msgid "" -"This is the last step, but just be sure to have the cookies enabled to log in afterwards." +"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/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 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 #, 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!" +"You can use the Markdown syntax for the description." msgstr "" -#: IDF/gettexttemplates/idf/register/index.html.php:5 -msgid "Oups, please check the provided login and email address to register." +#: 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:6 IDF/Views.php:88 -msgid "Create Your Account" +#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 +msgid "Submit File" 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." +#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3 +msgid "Details" msgstr "" -#: 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 +#: 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:214 +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 msgid "" -"By %%who%%, %%c.creation_dtime%%, on file:\n" -"%%c.cfile%%\n" +"Attention! This file is marked as deprecated, download it " +"only if you are sure you need this specific version." msgstr "" -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:14 -msgid "General comments (last first):" +#: IDF/gettexttemplates/idf/downloads/view.html.php:5 +msgid "Changes" msgstr "" -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15 -msgid "Detailed file comments (last first):" +#: 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/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" +#: IDF/gettexttemplates/idf/downloads/view.html.php:7 +msgid "Update File" 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" +#: IDF/gettexttemplates/idf/downloads/view.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:11 +msgid "Remove this file" msgstr "" -#: IDF/IssueComment.php:72 IDF/Review/Comment.php:75 IDF/Upload.php:63 -#: IDF/WikiRevision.php:85 -msgid "changes" +#: IDF/gettexttemplates/idf/downloads/view.html.php:12 +msgid "Delete this file" msgstr "" -#: IDF/IssueComment.php:73 -msgid "Serialized array of the changes in the issue." +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3 +msgid "A new file is available for download:" msgstr "" -#: IDF/IssueComment.php:171 -#, php-format -msgid "Comment on issue %d, by %s" +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6 +msgid "Submitted by:" msgstr "" -#: IDF/IssueComment.php:182 -#, php-format -msgid "%s: Comment on issue %d - %s" +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8 +msgid "Download:" msgstr "" #: IDF/IssueFile.php:64 @@ -3315,147 +2679,6 @@ msgstr "" msgid "Other" 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." -msgstr "" - -#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81 -#, php-format -msgid "The repository %s already exists." -msgstr "" - -#: IDF/Plugin/SyncMercurial.php:142 -#, php-format -msgid "%s does not exist or is not writable." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:86 IDF/Plugin/SyncMonotone.php:457 -#: IDF/Plugin/SyncMonotone.php:783 -msgid "\"mtn_repositories\" must be defined in your configuration file." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:93 IDF/Plugin/SyncMonotone.php:447 -msgid "\"mtn_usher_conf\" does not exist or is not writable." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:100 -#, php-format -msgid "Could not find mtn-post-push script \"%s\"." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:135 -#, php-format -msgid "The configuration file %s is missing." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:144 -#, php-format -msgid "The project path %s already exists." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:150 -#, php-format -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" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:243 -#, php-format -msgid "Could not create configuration directory \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 -#, php-format -msgid "Could not create symlink \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:269 -#, php-format -msgid "Could not write configuration file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 -#, php-format -msgid "Could not parse usher configuration in \"%s\": %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:295 -#, php-format -msgid "usher configuration already contains a server entry named \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 -#, php-format -msgid "Could not write usher configuration file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:366 -#, php-format -msgid "Could not write write-permissions file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:389 -#, php-format -msgid "Could not write read-permissions file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:406 -#, php-format -msgid "Could not remove symlink \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:465 -#, php-format -msgid "One or more paths underknees %s could not be deleted." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:477 -#, php-format -msgid "Could not delete client private key %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676 -#, php-format -msgid "Could not parse read-permissions for project \"%s\": %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 -#, php-format -msgid "Could not write read-permissions for project \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 -#, php-format -msgid "Could not write write-permissions file for project \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:790 -#, php-format -msgid "The project path %s does not exists." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:808 -#, php-format -msgid "The command \"%s\" could not be executed." -msgstr "" - #: IDF/Project.php:62 IDF/Tag.php:66 msgid "name" msgstr "" @@ -3474,6 +2697,11 @@ msgstr "" 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 "" @@ -3491,82 +2719,6 @@ msgstr "" msgid "Project \"%s\" not found." msgstr "" -#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80 -msgid "patch" -msgstr "" - -#: IDF/Review/Comment.php:83 -msgid "vote" -msgstr "" - -#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151 -#, php-format -msgid "" -"Review %3$d, %4$s" -msgstr "" - -#: IDF/Review/Comment.php:141 -#, php-format -msgid "Update of review %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 "" @@ -3583,200 +2735,160 @@ msgstr "" msgid "ponderated occurence" msgstr "" -#: IDF/Tag.php:59 -msgid "tag class" +#: IDF/Issue.php:76 +msgid "owner" msgstr "" -#: IDF/Tag.php:60 -msgid "The class of the tag." +#: IDF/Issue.php:84 IDF/WikiPage.php:86 +msgid "interested users" msgstr "" -#: IDF/Tag.php:73 -msgid "lcname" +#: IDF/Issue.php:85 +msgid "" +"Interested users will get an email notification when the issue is changed." msgstr "" -#: IDF/Tag.php:74 -msgid "Lower case version of the name for fast searching." -msgstr "" - -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" -msgstr "" - -#: IDF/Template/ShowUser.php:51 -msgid "Anonymous" -msgstr "" - -#: IDF/Template/ShowUser.php:54 -msgid "Me" -msgstr "" - -#: IDF/Timeline/Paginator.php:49 -msgid "Today" -msgstr "" - -#: IDF/Upload.php:70 -msgid "file" -msgstr "" - -#: 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 +#: IDF/Issue.php:196 #, php-format -msgid "Download %2$d, %3$s" +msgid "Creation of issue %d, by %s" msgstr "" -#: IDF/Upload.php:192 +#: IDF/Issue.php:206 #, php-format -msgid "Addition of download %d, by %s" +msgid "%s: Issue %d created - %s" msgstr "" -#: IDF/Upload.php:202 +#: IDF/Issue.php:272 #, php-format -msgid "%s: Download %d added - %s" +msgid "Issue %s - %s (%s)" msgstr "" -#: IDF/Upload.php:244 +#: IDF/Issue.php:318 #, php-format -msgid "New download - %s (%s)" +msgid "Updated Issue %s - %s (%s)" msgstr "" -#: IDF/Views/Admin.php:60 -msgid "This table shows the projects in the forge." +#: IDF/Views/Wiki.php:41 +#, php-format +msgid "%s Documentation" msgstr "" -#: IDF/Views/Admin.php:65 -msgid "Short Name" +#: IDF/Views/Wiki.php:48 +msgid "This table shows the documentation pages." msgstr "" -#: IDF/Views/Admin.php:67 -msgid "Repository Size" +#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:106 IDF/Views/Wiki.php:147 +msgid "Page Title" msgstr "" -#: IDF/Views/Admin.php:73 -msgid "No projects were found." +#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:107 IDF/Views/Wiki.php:148 +#: 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/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/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:312 +#: 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:312 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 #, 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 +#: IDF/Views/Wiki.php:324 #, php-format -msgid "Delete %s Project" +msgid "The page %s has been updated." msgstr "" -#: IDF/Views/Admin.php:167 -msgid "The project has been deleted." +#: IDF/Views/Wiki.php:362 +msgid "The documentation page 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 +#: IDF/Views/Wiki.php:370 #, php-format -msgid "The user %s has been created." +msgid "Delete Page %s" 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 +#: IDF/Views/Source.php:40 #, php-format -msgid "The server \"%s\" has been started" +msgid "%s Source Help" msgstr "" -#: IDF/Views/Admin.php:420 +#: IDF/Views/Source.php:58 #, php-format -msgid "The server \"%s\" has been stopped" +msgid "%s Invalid Revision" msgstr "" -#: IDF/Views/Admin.php:425 +#: IDF/Views/Source.php:81 #, php-format -msgid "The server \"%s\" has been killed" +msgid "%s Ambiguous Revision" msgstr "" -#: IDF/Views/Admin.php:445 +#: IDF/Views/Source.php:106 #, php-format -msgid "Open connections for \"%s\"" +msgid "%1$s %2$s Change Log" msgstr "" -#: IDF/Views/Admin.php:450 +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 #, php-format -msgid "no connections for server \"%s\"" +msgid "%1$s %2$s Source Tree" msgstr "" -#: IDF/Views/Admin.php:471 -msgid "Yes" +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" msgstr "" -#: IDF/Views/Admin.php:471 -msgid "No" +#: IDF/Views/Source.php:304 +#, php-format +msgid "%s Commit Details - %s" msgstr "" #: IDF/Views/Download.php:45 @@ -3830,6 +2942,113 @@ msgstr "" 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" @@ -3841,13 +3060,21 @@ 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 +#: IDF/Views/Issue.php:620 IDF/Views/User.php:81 IDF/Views/Review.php:57 msgid "Id" msgstr "" +#: 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/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:141 IDF/Views/Issue.php:223 #: IDF/Views/Issue.php:298 IDF/Views/Issue.php:385 IDF/Views/Issue.php:564 -#: IDF/Views/Issue.php:623 IDF/Views/Review.php:60 IDF/Views/User.php:85 +#: IDF/Views/Issue.php:623 IDF/Views/User.php:85 IDF/Views/Review.php:60 msgid "Last Updated" msgstr "" @@ -3986,91 +3213,45 @@ msgstr "" msgid "On your watch list." msgstr "" -#: IDF/Views/Project.php:72 -msgid "All Updates" +#: IDF/Views/User.php:59 +msgid "Your Dashboard - Working Issues" msgstr "" -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" +#: IDF/Views/User.php:62 +msgid "Your Dashboard - Submitted Issues" msgstr "" -#: IDF/Views/Project.php:76 -msgid "Documents" +#: IDF/Views/User.php:89 +msgid "No issues are assigned to you, yeah!" msgstr "" -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" +#: IDF/Views/User.php:89 +msgid "All the issues you submitted are fixed, yeah!" msgstr "" -#: IDF/Views/Project.php:142 -msgid "This table shows the project updates." +#: IDF/Views/User.php:121 +msgid "Your personal information has been updated." msgstr "" -#: IDF/Views/Project.php:153 -msgid "Change" +#: IDF/Views/User.php:133 +msgid "Your Account" msgstr "" -#: IDF/Views/Project.php:157 -msgid "No changes were found." +#: IDF/Views/User.php:157 +msgid "The public key has been deleted." msgstr "" -#: IDF/Views/Project.php:248 +#: IDF/Views/User.php:177 +msgid "The address has been deleted." +msgstr "" + +#: IDF/Views/User.php:200 +msgid "Confirm The Email Change" +msgstr "" + +#: IDF/Views/User.php:232 #, php-format -msgid "%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." +msgid "Your new email address \"%s\" has been validated. Thank you!" msgstr "" #: IDF/Views/Review.php:41 @@ -4101,203 +3282,843 @@ msgstr "" msgid "Your code review %d has been published." msgstr "" -#: IDF/Views/Source.php:40 +#: 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 "%s Source Help" +msgid "Delete %s Project" msgstr "" -#: IDF/Views/Source.php:58 +#: 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 "%s Invalid Revision" +msgid "The user %s has been created." msgstr "" -#: IDF/Views/Source.php:81 +#: 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 "%s Ambiguous Revision" +msgid "The server \"%s\" has been started" msgstr "" -#: IDF/Views/Source.php:106 +#: IDF/Views/Admin.php:420 #, php-format -msgid "%1$s %2$s Change Log" +msgid "The server \"%s\" has been stopped" msgstr "" -#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#: IDF/Views/Admin.php:425 #, php-format -msgid "%1$s %2$s Source Tree" +msgid "The server \"%s\" has been killed" msgstr "" -#: IDF/Views/Source.php:303 +#: IDF/Views/Admin.php:445 #, php-format -msgid "%s Commit Details" +msgid "Open connections for \"%s\"" msgstr "" -#: IDF/Views/Source.php:304 +#: IDF/Views/Admin.php:450 #, php-format -msgid "%s Commit Details - %s" +msgid "no connections for server \"%s\"" msgstr "" -#: IDF/Views/User.php:59 -msgid "Your Dashboard - Working Issues" +#: IDF/Views/Admin.php:471 +msgid "Yes" msgstr "" -#: IDF/Views/User.php:62 -msgid "Your Dashboard - Submitted Issues" +#: IDF/Views/Admin.php:471 +msgid "No" 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 +#: IDF/Form/WikiCreate.php:38 msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." +"# 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/Views.php:282 -msgid "Here to Help You!" +#: IDF/Form/WikiCreate.php:57 +msgid "PageName" msgstr "" -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" +#: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50 +msgid "Page title" msgstr "" -#: IDF/WikiPage.php:62 -msgid "title" -msgstr "" - -#: IDF/WikiPage.php:63 +#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56 msgid "" -"The title of the page must only contain letters, digits or the dash " -"character. For example: My-new-Wiki-Page." +"The page name must contains only letters, digits and the dash (-) character." msgstr "" -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." +#: 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:101 IDF/Form/IssueCreate.php:62 +#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 +msgid "Description" msgstr "" -#: IDF/WikiPage.php:196 IDF/WikiRevision.php:167 +#: 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 "%2$s, %3$s" +msgid "You cannot provide more than label from the %s class to a page." msgstr "" -#: IDF/WikiPage.php:198 -#, php-format -msgid "Creation of page %s, by %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/WikiPage.php:208 +#: 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:112 +#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 +#: IDF/Form/UserAccount.php:216 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 +msgid "For security reasons, 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 "%s: Documentation page %s added - %s" +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 +msgid "" +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is sent directly to the user." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 +#: IDF/Form/UserAccount.php:66 +msgid "Language" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161 +msgid "Add a public key" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:92 +msgid "" +"Paste a SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:157 +msgid "Your details to access your forge." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:420 +#: IDF/Form/UserAccount.php:429 +#, 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 through HTTP or HTTPS is allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:201 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashs and dots as separators." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101 +msgid "This master branch is already used. Please select another one." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:222 +msgid "" +"This shortname contains illegal characters, please use only letters, digits " +"and dash (-)." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:225 +msgid "The shortname cannot start with the dash (-) character." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:228 +msgid "The shortname cannot end with the dash (-) character." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:233 +msgid "This shortname is already used. Please select another one." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php: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 guess, 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: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:164 +msgid "If you give staff rights to a user, you really need to trust them." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:176 +msgid "" +"If the user is not getting the confirmation email or is abusing the system, " +"you can directly enable or disable their account here." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:274 +msgid "--- is not a valid first name." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:290 +msgid "" +"A user with this email already exists, please provide another email address." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:389 +msgid "For security reason, you cannot upload a file with this extension." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:452 +msgid "The passwords do not match. Please give them again." +msgstr "" + +#: IDF/Form/Admin/ProjectUpdate.php:90 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashes and dots as separators." +msgstr "" + +#: IDF/Form/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 +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:89 +#: 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:45 +msgid "" +"The login must be between 3 and 15 characters long and contain only letters " +"and digits." +msgstr "" + +#: IDF/Form/Register.php:53 +msgid "Your email" +msgstr "" + +#: IDF/Form/Register.php:55 +msgid "We will never send you any unsolicited emails. We hate spam too!" +msgstr "" + +#: IDF/Form/Register.php:60 +msgid "I agree to the terms and conditions." +msgstr "" + +#: IDF/Form/Register.php:88 +msgid "" +"We know, this is boring, but you need to agree with the terms and conditions." +msgstr "" + +#: IDF/Form/Register.php:97 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need to, click on the help link to " +"recover your password." +msgstr "" + +#: IDF/Form/Register.php:148 +msgid "Confirm the creation of your account." +msgstr "" + +#: IDF/Form/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:166 +msgid "" +"Paste an SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" + +#: IDF/Form/UserAccount.php:171 +msgid "Add a secondary mail address" +msgstr "" + +#: IDF/Form/UserAccount.php:173 +msgid "You will get a mail to confirm that you own the address you specify." +msgstr "" + +#: IDF/Form/UserAccount.php:200 +msgid "Confirm your new email address." +msgstr "" + +#: IDF/Form/UserAccount.php:203 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" + +#: IDF/Form/UserAccount.php:334 +msgid "" +"Please check the key as it does not appear to be a valid SSH public key." +msgstr "" + +#: IDF/Form/UserAccount.php:354 +msgid "" +"Please check the key as it does not appear to be a valid monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:362 +msgid "Public key looks like neither an SSH nor monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:374 +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 to 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:72 +msgid "" +"Your password must be hard for other people to guess, but easy for you to " +"remember." +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 @@ -4312,6 +4133,11 @@ msgstr "" 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" @@ -4331,3 +4157,243 @@ msgstr "" #, 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 +#, php-format +msgid "The repository %s already exists." +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." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:93 IDF/Plugin/SyncMonotone.php:447 +msgid "\"mtn_usher_conf\" does not exist or is not writable." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:100 +#, php-format +msgid "Could not find mtn-post-push script \"%s\"." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:135 +#, php-format +msgid "The configuration file %s is missing." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:144 +#, php-format +msgid "The project path %s already exists." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:150 +#, php-format +msgid "The project path %s could not be created." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:205 +#, php-format +msgid "Could not parse key information: %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:243 +#, php-format +msgid "Could not create configuration directory \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 +#, php-format +msgid "Could not create symlink \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:269 +#, php-format +msgid "Could not write configuration file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 +#, php-format +msgid "Could not parse usher configuration in \"%s\": %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:295 +#, php-format +msgid "usher configuration already contains a server entry named \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 +#, php-format +msgid "Could not write usher configuration file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:366 +#, php-format +msgid "Could not write write-permissions file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:389 +#, php-format +msgid "Could not write read-permissions file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:406 +#, php-format +msgid "Could not remove symlink \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:465 +#, php-format +msgid "One or more paths underknees %s could not be deleted." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:477 +#, php-format +msgid "Could not delete client private key %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676 +#, php-format +msgid "Could not parse read-permissions for project \"%s\": %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 +#, php-format +msgid "Could not write read-permissions for project \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 +#, php-format +msgid "Could not write write-permissions file for project \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:790 +#, php-format +msgid "The project path %s does not exists." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:808 +#, php-format +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/Timeline/Paginator.php:49 +msgid "Today" +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: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/Tag.php:59 +msgid "tag class" +msgstr "" + +#: IDF/Tag.php:60 +msgid "The class of the tag." +msgstr "" + +#: IDF/Tag.php:73 +msgid "lcname" +msgstr "" + +#: IDF/Tag.php:74 +msgid "Lower case version of the name for fast searching." +msgstr "" + +#: IDF/Key.php:55 +msgid "public key" +msgstr "" + +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." +msgstr "" + +#: IDF/Template/ShowUser.php:51 +msgid "Anonymous" +msgstr "" + +#: IDF/Template/ShowUser.php:54 +msgid "Me" +msgstr "" + +#: IDF/Template/Markdown.php:81 +msgid "Create this documentation page" +msgstr "" diff --git a/src/IDF/locale/ru/idf.po b/src/IDF/locale/ru/idf.po index 02dbf7f..01686ae 100644 --- a/src/IDF/locale/ru/idf.po +++ b/src/IDF/locale/ru/idf.po @@ -7,45 +7,182 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\n" "Report-Msgid-Bugs-To: \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" +"POT-Creation-Date: 2011-03-10 10:02+0100\n" +"PO-Revision-Date: 2011-03-04 18:20+0000\n" +"Last-Translator: tommyd \n" "Language-Team: Russian <>\n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\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" -#: 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/IssueComment.php:51 +msgid "issue" +msgstr "проблема" -#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65 -#: IDF/IssueFile.php:57 IDF/Review/Comment.php:69 IDF/Review.php:80 -#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79 +#: IDF/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/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 +#: 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 +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 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" @@ -56,812 +193,6 @@ 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 "класс модели" @@ -870,496 +201,92 @@ msgstr "класс модели" msgid "model id" msgstr "ID модели" -#: IDF/gettexttemplates/idf/admin/base.html.php:3 -msgid "Project Summary" -msgstr "Краткое описание проекта" +#: IDF/Gconf.php:73 IDF/Conf.php:61 +msgid "key" +msgstr "ключ" -#: IDF/gettexttemplates/idf/admin/base.html.php:6 -msgid "Issue Tracking" -msgstr "Слежение за проблемами" +#: IDF/Gconf.php:79 IDF/Conf.php:67 +msgid "value" +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/gettexttemplates/idf/faq-api.html.php:4 -#: IDF/gettexttemplates/idf/faq.html.php:35 +#: IDF/Views.php:47 IDF/gettexttemplates/idf/faq.html.php:35 #: IDF/gettexttemplates/idf/gadmin/base.html.php:3 +#: IDF/gettexttemplates/idf/faq-api.html.php:4 #: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57 -#: IDF/Views.php:45 msgid "Projects" msgstr "Проекты" +#: IDF/Views.php:90 IDF/gettexttemplates/idf/register/index.html.php:6 +msgid "Create Your Account" +msgstr "Создайте Ваш аккаунт" + +#: IDF/Views.php:126 IDF/Views.php:152 +msgid "Confirm Your Account Creation" +msgstr "Подтвердите создание аккаунта" + +#: IDF/Views.php:172 +msgid "Welcome! You can now participate in the life of your project of choice." +msgstr "" +"Добро пожаловать! Теперь Вы можете учавствовать в жизни выбранного проекта." + +#: IDF/Views.php:198 IDF/Views.php:222 IDF/Views.php:263 +msgid "Password Recovery" +msgstr "Восстановление пароля" + +#: IDF/Views.php:242 +msgid "" +"Welcome back! Next time, you can use your broswer options to remember the " +"password." +msgstr "" +"Рады Вас снова видеть! Следющий раз Вы можете использовать функцию " +"сохранения пароля в Вашем браузере." + +#: IDF/Views.php:284 +msgid "Here to Help You!" +msgstr "Здесь чтобы помогать Вам!" + +#: IDF/Views.php:300 +msgid "InDefero API (Application Programming Interface)" +msgstr "InDefero API (Application Programming Interface)" + +#: IDF/Scm/Mercurial.php:138 IDF/Scm/Git.php:288 +#, php-format +msgid "Folder %1$s not found in commit %2$s." +msgstr "" + +#: IDF/Scm/Mercurial.php:155 IDF/Scm/Git.php:404 +#, php-format +msgid "Not a valid tree: %s." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:79 +msgid "Monotone client key name or hash not in project conf." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:87 IDF/Plugin/SyncMonotone.php:187 +#, php-format +msgid "The key directory %s could not be created." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:98 +#, php-format +msgid "Could not write client key \"%s\"" +msgstr "" + +#: IDF/Scm/Git.php:237 +#, php-format +msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." +msgstr "Неверное значение параметра %1$s: %2$s. Используйте %3$s." + +#: IDF/EmailAddress.php:49 IDF/Key.php:49 +msgid "user" +msgstr "пользователь" + +#: IDF/EmailAddress.php:55 +#, fuzzy +msgid "email" +msgstr "Эл. адрес" + #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

    This is simple:

    \n" @@ -1416,7 +343,8 @@ msgstr "Как я могу вставить мое лицо рядом с мои #: IDF/gettexttemplates/idf/faq.html.php:15 #: IDF/gettexttemplates/idf/faq.html.php:33 -msgid "What is the API and how to use it?" +#, fuzzy +msgid "What is the API and how is it used?" msgstr "Что такое API и как это использовать?" #: IDF/gettexttemplates/idf/faq.html.php:17 @@ -1475,38 +403,167 @@ msgstr "Alt+2: Пропустить меню." msgid "Alt+4: Search (when available)." msgstr "Alt+4: Поиск (если доступен)." -#: IDF/gettexttemplates/idf/gadmin/base.html.php:4 -msgid "People" -msgstr "Люди" +#: 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:5 -msgid "Usher" +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You have requested the creation of an account to\n" +"participate in the life of a software project.\n" +"\n" +"To confirm the account please follow this link:\n" +"\n" +"%%url%%\n" +"\n" +"Alternatively, go to this page:\n" +"\n" +"%%urlik%%\n" +"\n" +"and provide the following confirmation key:\n" +"\n" +"%%key%%\n" +"\n" +"If you are not interested any longer in taking\n" +"part in the life of the software project or if\n" +"you can't remember having requested the creation\n" +"of an account, please excuse us and simply ignore\n" +"this email. \n" +"\n" +"Yours faithfully,\n" +"The development team.\n" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/home.html.php:3 -msgid "You have here access to the administration of the forge." +#: IDF/gettexttemplates/idf/register/inputkey.html.php:3 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:3 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3 +#, fuzzy +msgid "Oops, we found an error in the form." +msgstr "Упс, мы обнаружили ошибку в форме." + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:4 +msgid "Confirm Your Account" +msgstr "Подтвердить ваш аккаунт" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:5 +#: IDF/gettexttemplates/idf/register/index.html.php:7 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16 +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7 +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5 +#: IDF/gettexttemplates/idf/wiki/create.html.php:7 +#: IDF/gettexttemplates/idf/wiki/delete.html.php:10 +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7 +#: IDF/gettexttemplates/idf/wiki/update.html.php:7 +#: IDF/gettexttemplates/idf/review/create.html.php:12 +#: IDF/gettexttemplates/idf/review/view.html.php:43 +#: IDF/gettexttemplates/idf/issues/create.html.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:25 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:7 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:8 +msgid "Cancel" +msgstr "Отмена" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:6 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:6 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:10 +msgid "Instructions" +msgstr "Инструкции" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:7 +msgid "" +"Use your email software to read your emails and open your confirmation " +"email. Either click directly on the confirmation link or copy/paste the " +"confirmation key in the box and submit the form." msgstr "" -#: IDF/gettexttemplates/idf/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: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/projects/base.html.php:3 -#: IDF/gettexttemplates/idf/main-menu.html.php:6 -msgid "Project List" -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: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: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:5 -msgid "Change Project Details" -msgstr "Изменить данные о проекте" +#: IDF/gettexttemplates/idf/register/index.html.php:5 +#, fuzzy +msgid "Oops, please check the provided login and email address to register." +msgstr "" +"Упс, пожалуйста, проверьте логин и адрес электронной почты для регистрации." + +#: IDF/gettexttemplates/idf/register/index.html.php:8 +msgid "" +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." +msgstr "" +"Не забудьте указать действительный адрес электронной почты, т.к. на него " +"будет оправлена ссылка для подтверждения регистрации." + +#: IDF/gettexttemplates/idf/register/index.html.php:9 +msgid "Did you know?" +msgstr "Знаете ли Вы?" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:3 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:3 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:3 +#, fuzzy +msgid "Oops, please check the form for errors." +msgstr "Упс, пожалуйста, проверьте форму на наличие ошибок." + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:4 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4 +msgid "Login:" +msgstr "Логин:" + +#: 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/create.html.php:3 msgid "" @@ -1530,6 +587,19 @@ 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." @@ -1539,6 +609,18 @@ 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 "" @@ -1573,6 +655,15 @@ 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 "Аудит кода" @@ -1582,6 +673,12 @@ 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 "" @@ -1605,11 +702,18 @@ msgid "Repositories:" msgstr "Репозитории:" #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5 -#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11 #: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11 msgid "Attachments:" msgstr "Вложения:" +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:13 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:10 +#: IDF/gettexttemplates/idf/downloads/view.html.php:15 +msgid "Downloads:" +msgstr "Файлы:" + #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7 msgid "Database:" msgstr "Базы данных:" @@ -1618,6 +722,21 @@ 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." @@ -1637,24 +756,25 @@ 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/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" -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: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/projects/base.html.php:5 +msgid "Change Project Details" +msgstr "Изменить данные о проекте" #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3 msgid "The form contains some errors. Please correct them to create the user." @@ -1662,6 +782,11 @@ 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 "Пароль пользователя будет выслан ему по электронной почте." @@ -1718,13 +843,6 @@ 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" @@ -1734,22 +852,15 @@ msgstr "" msgid "Administrative" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 -msgid "Configured servers" -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: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/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" +msgstr "Список пользователей" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3 msgid "current server status:" @@ -1851,10 +962,1051 @@ msgstr "" msgid "usher is shut down, not running and not accepting connections" msgstr "" -#: IDF/gettexttemplates/idf/index.atom.php:3 +#: 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 #, php-format -msgid "Personal project feed for %%user%%." -msgstr "Personal project feed for %%user%%." +msgid "" +"If you don't have an account yet, you can create one here." +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:4 +msgid "What is your account information?" +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:5 +msgid "My login is" +msgstr "Мой логин" + +#: IDF/gettexttemplates/idf/login_form.html.php:6 +msgid "My password is" +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:7 +msgid "Sign in" +msgstr "Войти" + +#: IDF/gettexttemplates/idf/login_form.html.php:8 +msgid "I lost my password!" +msgstr "Я забыл пароль!" + +#: IDF/gettexttemplates/idf/login_form.html.php:9 +msgid "Welcome." +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:10 +msgid "It takes less than a minute to create your account." +msgstr "" + +#: IDF/gettexttemplates/idf/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: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 "Secondary Emails" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +msgid "Extra password" +msgstr "Дополнительный пароль" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 +msgid "" +"This password is used to access some of the external systems managed by our " +"infrastructure. It will be regenerated if you change your password." +msgstr "" +"Этот пароль служит для доступа с внешних систем, управляемых нашей " +"инфраструктурой. Он будет сгенерирован при смене Вашего пароля." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "API key" +msgstr "API ключ" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "API ключ будет сгенерирован автоматически при смене Вашего пароль." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +msgid "Update Your Account" +msgstr "Обновить профиль" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Your Current Public Keys" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +msgid "Delete this key" +msgstr "Удалить этот ключ" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 +#, fuzzy +msgid "Your additional email addresses" +msgstr "Подтвердите ваш новый адрес электронной почты." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 +#, fuzzy +msgid "Delete this address" +msgstr "Удалить эту страницу" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:18 +msgid "" +"If possible, use your real name. By using your real name, people will have " +"more trust in your comments and remarks." +msgstr "" +"Если возможно, используйте свое настоящее имя. При использовании свое " +"настоящего имени, люди будут больше доверять вашим комментариям и замечаниям." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:19 +msgid "" +"The extra password is used to access some of the external systems and the " +"API key is used to interact with this website using a program." +msgstr "" +"Дополнительный пароль используется для доступа с некоторых внешних систем и " +"ключ API используется для взаимодействия с этим веб-сайтом из внешней " +"программы." + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:20 +msgid "Show API key and extra password" +msgstr "Показать ключ API и дополнительный пароль" + +#: IDF/gettexttemplates/idf/user/dashboard.html.php:3 +#, 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 +#, fuzzy +msgid "" +"Just after providing the confirmation key, you will be able to reset your " +"password and use this website fully." +msgstr "" +"Сразу после предоставления подтверждающего ключа, вы сможете изменить пароль " +"и снова использовать этот веб-сайт полностью." + +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 +msgid "Reset Your Password" +msgstr "Сбросить пароль" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 +#, fuzzy +msgid "" +"Oops, please check the provided login or email address to recover your " +"password." +msgstr "" +"Упс, пожалуйста, проверьте предоставленный логин или электронный адрес для " +"восстановления пароля." + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4 +msgid "Recover My Password" +msgstr "Восстановить мой пароль" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6 +msgid "" +"Provide either your login or email address, if a corresponding user is found " +"in the database, we will send you an email with the details on how to reset " +"your password." +msgstr "" +"Введите ваш Логин или адрес электронной почты. Если соответствующий " +"пользователь найден в базе данных, мы вышлем Вам письмо с информацией о том, " +"как сменить пароль." + +#: IDF/gettexttemplates/idf/wiki/create.html.php:3 +#: IDF/gettexttemplates/idf/wiki/update.html.php:3 +msgid "Preview of the Page" +msgstr "Предпросмотр страницы" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:4 +msgid "The form contains some errors. Please correct them to create the page." +msgstr "Форма содержит ошибки. Пожалуйста исправтье их чтобы создать страницу." + +#: IDF/gettexttemplates/idf/wiki/create.html.php:5 +#: IDF/gettexttemplates/idf/wiki/update.html.php:5 +#: IDF/gettexttemplates/idf/issues/create.html.php:11 +#: IDF/gettexttemplates/idf/issues/create.html.php:13 +#: IDF/gettexttemplates/idf/issues/view.html.php:22 +#: IDF/gettexttemplates/idf/issues/view.html.php:24 +msgid "Preview" +msgstr "Предпросмотр" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:6 +msgid "Create Page" +msgstr "Создать страницу" + +#: IDF/gettexttemplates/idf/wiki/delete.html.php:3 +#, php-format +msgid "" +"You are looking at an old revision (%%oldrev.summary%%) of the " +"page \n" +"%%page.title%%. This revision was created\n" +"by %%submitter%%." +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/delete.html.php:6 +msgid "" +"If you delete this old revision, it will be removed from the database and " +"you will not be able to recover it." +msgstr "" +"Если вы удалите эту старую версию, она будет удалена из базы данных, и " +"вы не сможете ее восстановить." + +#: IDF/gettexttemplates/idf/wiki/delete.html.php:7 +#: IDF/gettexttemplates/idf/wiki/delete.html.php:8 +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:4 +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:5 +#: IDF/gettexttemplates/idf/wiki/view.html.php:8 +#: IDF/gettexttemplates/idf/wiki/view.html.php:9 +#: IDF/gettexttemplates/idf/issues/view.html.php:7 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:4 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:5 +#: IDF/gettexttemplates/idf/downloads/view.html.php:4 +#, php-format +msgid "by %%submitter%%" +msgstr "%%submitter%%" + +#: IDF/gettexttemplates/idf/wiki/delete.html.php:9 +msgid "Delete Revision" +msgstr "Удалить ревизию" + +#: IDF/gettexttemplates/idf/wiki/delete.html.php:11 +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:8 +#: IDF/gettexttemplates/idf/wiki/view.html.php:14 +#: IDF/gettexttemplates/idf/review/view.html.php:25 +#: IDF/gettexttemplates/idf/issues/view.html.php:26 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:7 +msgid "Created:" +msgstr "Создан:" + +#: 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:175 +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 +#: IDF/gettexttemplates/idf/source/commit.html.rej.php:4 +#: IDF/gettexttemplates/idf/source/commit.html.orig.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 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/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/source/commit.html.orig.php:7 +#: IDF/gettexttemplates/idf/review/view.html.php:28 +msgid "Commit:" +msgstr "Комит:" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8 +msgid "Created at:" +msgstr "Создан:" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10 +msgid "Commit details:" +msgstr "Детали комита:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:3 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:3 +#, php-format +msgid "%%ndiff%% diff" +msgid_plural "%%ndiff%% diffs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:4 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:4 +msgid "Date:" +msgstr "Дата:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:5 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:5 +#: IDF/gettexttemplates/idf/review/view.html.php:27 +msgid "Author:" +msgstr "Автор:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:6 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:6 +msgid "Branch:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:8 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:8 +#: IDF/gettexttemplates/idf/review/view.html.php:29 +msgid "View corresponding source tree" +msgstr "Просмотреть соответствующие дерево исходных текстов" + +#: IDF/gettexttemplates/idf/source/commit.html.php:9 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:9 +msgid "Parents:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:10 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:10 +#: IDF/gettexttemplates/idf/source/changelog.html.php:6 +msgid "View corresponding commit" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:11 +#: IDF/gettexttemplates/idf/source/commit.html.rej.php:3 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:11 +msgid "Message:" +msgstr "Сообщение:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:13 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:13 +msgid "deleted" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.php:17 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:17 +msgid "full" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:15 +msgid "renamed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:16 +msgid "added" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:18 +msgid "modified" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:19 +msgid "properies changed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:20 +msgid "removed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:21 +msgid "File differences" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/review/view.html.php:34 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 +msgid "Archive" +msgstr "Архив" + +#: IDF/gettexttemplates/idf/source/commit.html.php:23 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:23 +#: IDF/gettexttemplates/idf/review/view.html.php:35 +msgid "Download the corresponding diff file" +msgstr "Скачать соответствующий diff файл." + +#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 +#, php-format +msgid "%%cproject.name%%: Commit %%c.scm_id%%" +msgstr "%%cproject.name%%: Комит %%c.scm_id%%" + +#: IDF/gettexttemplates/idf/source/mtn/branch_tag_list.html.php:3 +#: IDF/gettexttemplates/idf/source/mercurial/branch_tag_list.html.php:3 +#: IDF/gettexttemplates/idf/source/git/branch_tag_list.html.php:3 +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:292 IDF/Form/Upload.php:59 +msgid "File" +msgstr "Файл" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/changelog.html.php:3 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:7 +#: IDF/Views/Project.php:152 +msgid "Age" +msgstr "Возраст" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8 +#: IDF/gettexttemplates/idf/source/changelog.html.php:4 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:8 +msgid "Message" +msgstr "Сообщение" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:9 +#: IDF/Views/Download.php:66 IDF/Views/Download.php:294 +msgid "Size" +msgstr "Размер" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:10 +msgid ":" +msgstr ":" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:12 +msgid "Download this version" +msgstr "Скачать эту версию" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:13 +msgid "or" +msgstr "или" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:14 +#: IDF/gettexttemplates/idf/main-menu.html.php:10 +msgid "Help" +msgstr "Помощь" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the monotone software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6 +#: IDF/gettexttemplates/idf/source/git/help.html.php:7 +msgid "To make a first commit in the repository, perform the following steps:" +msgstr "" +"Чтобы сделать первый комит в репозиторий, выполните следующие действия:" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7 +#: IDF/gettexttemplates/idf/source/git/help.html.php:8 +#, php-format +msgid "Find here more details on how to access %%project%% source code." +msgstr "" +"Найти здесь более подробную информацию о том, как получить доступ к " +"исходному коду проекта %%project%%." + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8 +#: IDF/gettexttemplates/idf/source/git/help.html.php:9 +msgid "Command-Line Access" +msgstr "Доступ к командной строке" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9 +#: IDF/gettexttemplates/idf/source/git/help.html.php:10 +msgid "First Commit" +msgstr "Первый комит" + +#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15 +#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3 +msgid "Revision:" +msgstr "Ревизия:" + +#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16 +#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4 +msgid "Go to revision" +msgstr "Перейти к ревизии" + +#: IDF/gettexttemplates/idf/source/svn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11 +msgid "Property" +msgstr "Собственность" + +#: IDF/gettexttemplates/idf/source/svn/file.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12 +msgid "set to:" +msgstr "установить в:" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8 +msgid "Rev" +msgstr "Рев" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17 +msgid "Branches:" +msgstr "Бранчи:" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18 +msgid "Tags:" +msgstr "Теги:" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the subversion software to manage the source\n" +"code." +msgstr "" +"Команда проекта %%project%% использует\n" +"subversion для управления исходными текстами." + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6 +#, php-format +msgid "" +"To get write access to the repository, you need to use your username and " +"your extra password." +msgstr "" +"Чтобы получить доступ на запись в репозиторий, вам необходимо использовать " +"свое имя пользователя и дополнительный пароль." + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9 +msgid "Write Access Authentication" +msgstr "Аутентификация для возможности записи" + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the Mercurial software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:3 +msgid "Source Tree" +msgstr "Исходный код" + +#: IDF/gettexttemplates/idf/source/base.html.php:4 +msgid "Change Log" +msgstr "История изменений" + +#: IDF/gettexttemplates/idf/source/base.html.php:5 +#: IDF/gettexttemplates/idf/source/changelog.html.php:7 +#: IDF/Form/ReviewCreate.php:74 +msgid "Commit" +msgstr "Комит" + +#: IDF/gettexttemplates/idf/source/base.html.php:6 +msgid "How To Get The Code" +msgstr "Как получить код" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:5 +msgid "Parent:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:8 +msgid "by" +msgstr " " + +#: IDF/gettexttemplates/idf/source/git/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the git software to manage the source\n" +"code." +msgstr "" +"Команда проекта %%project%% использует\n" +"git для управления исходными текстами." + +#: IDF/gettexttemplates/idf/source/git/help.html.php:6 +#, php-format +msgid "" +"You may need to provide your SSH key. The " +"synchronization of your SSH key can take a couple of minutes. You can learn " +"more about SSH key authentication." +msgstr "" + +#: 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." @@ -1862,118 +2014,455 @@ msgstr "Нет проектов управляемых InDefero найдено." #: IDF/gettexttemplates/idf/index.html.php:7 #, fuzzy -msgid "Projects:" -msgstr "Проекты" +msgid "Forge statistics" +msgstr "Статистика проекта" #: IDF/gettexttemplates/idf/index.html.php:8 -#, fuzzy -msgid "Members:" -msgstr "Участник с:" +msgid "Projects:" +msgstr "" #: IDF/gettexttemplates/idf/index.html.php:9 -#, fuzzy -msgid "Issues:" -msgstr "Проблемы" +msgid "Members:" +msgstr "" #: IDF/gettexttemplates/idf/index.html.php:10 -#, fuzzy -msgid "Commits:" -msgstr "Комит:" +msgid "Issues:" +msgstr "" #: IDF/gettexttemplates/idf/index.html.php:11 -#, fuzzy -msgid "Documentations:" -msgstr "Документация" - -#: IDF/gettexttemplates/idf/index.html.php:13 -#, fuzzy -msgid "Code reviews:" -msgstr "Аудит кода" - -#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 -#, php-format -msgid "Attachment to issue %%issue.id%%" -msgstr "Вложение к тикету %%issue.id%%" - -#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 -#: IDF/gettexttemplates/idf/review/view.html.php: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" +msgid "Commits:" msgstr "" -#: IDF/gettexttemplates/idf/issues/base.html.php:7 -#: IDF/gettexttemplates/idf/wiki/base.html.php:6 -msgid "Search" -msgstr "Искать" +#: IDF/gettexttemplates/idf/index.html.php:12 +msgid "Documentations:" +msgstr "" -#: IDF/gettexttemplates/idf/issues/base.html.php:8 -msgid "Back to the issue" -msgstr "Назад к проблеме" +#: IDF/gettexttemplates/idf/index.html.php:14 +msgid "Code reviews:" +msgstr "" -#: IDF/gettexttemplates/idf/issues/by-label.html.php:3 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.php:3 #, php-format msgid "" -"

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" +"Sign in or create your account to create issues or " +"add comments" msgstr "" -"

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

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

    \n" +"Войдите или зарегистрируйтесь что бы добавить " +"проблему или комментарий" -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" -msgstr "Ярлык:" +#: 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:8 -msgid "Completion:" -msgstr "Завершение:" +#: IDF/gettexttemplates/idf/base-full.html.php:6 +#: IDF/gettexttemplates/idf/admin/base.html.php:5 +#: IDF/gettexttemplates/idf/base.html.php:6 IDF/Form/TabsConf.php:40 +msgid "Documentation" +msgstr "Документация" + +#: IDF/gettexttemplates/idf/base-full.html.php:8 +#: IDF/gettexttemplates/idf/admin/base.html.php:7 +#: IDF/gettexttemplates/idf/base.html.php:8 IDF/Form/TabsConf.php:41 +msgid "Source" +msgstr "Исходный код" + +#: IDF/gettexttemplates/idf/base-full.html.php:9 +#: IDF/gettexttemplates/idf/base.html.php:9 IDF/Form/TabsConf.php:39 +msgid "Code Review" +msgstr "Аудит кода" + +#: IDF/gettexttemplates/idf/base-full.html.php:10 +#: IDF/gettexttemplates/idf/base.html.php:10 +msgid "Project Management" +msgstr "Управление проектом" + +#: IDF/gettexttemplates/idf/review/create.html.php:3 +#, fuzzy +msgid "" +"

    To start a code review, you need to provide:

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

    Когда вы отправляете проблему не забудьте указать следующую информацию: " +"

    \n" +"
    • Шаги по воспроизведению проблемы.
    • \n" +"
    • Версии программного обеспечения и операционной системы.
    • \n" +"
    • Любая информация, которая поможет разработчикам решить проблему.
    • \n" +"
    • Не добавляйте никаких паролей или конфиденциальной информации!
    • \n" +"
    " + +#: IDF/gettexttemplates/idf/review/create.html.php:9 +msgid "" +"The form contains some errors. Please correct them to submit the code review." +msgstr "" +"Форма содержит ошибки. Пожалуйста исправте их чтобы отправить вашу рецензию." + +#: IDF/gettexttemplates/idf/review/create.html.php:10 +msgid "" +"Select the commit against which you created your patch to be sure it applies " +"correctly." +msgstr "" +"Выберите комит для которого вы создали свой патч, чтобы убедиться, что он " +"применяется правильно." + +#: IDF/gettexttemplates/idf/review/create.html.php:11 +#: IDF/gettexttemplates/idf/review/index.html.php:3 +#: IDF/gettexttemplates/idf/review/base.html.php:4 IDF/Views/Review.php:83 +msgid "Start Code Review" +msgstr "Начать рецензирование кода" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3 +msgid "The following review has been updated:" +msgstr "Следющая рецензия была обновлена:" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4 +#, php-format +msgid "By %%who%%, %%c.creation_dtime%%:" +msgstr "%%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/create.html.php:3 msgid "" @@ -2000,15 +2489,6 @@ 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 "Отправить проблему" @@ -2025,42 +2505,35 @@ msgstr "Приложить файл" msgid "Attach another file" 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: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: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/search.html.php:4 +msgid "Found issues:" +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:3 +msgid "The following issue has been updated:" +msgstr "Следующая проблема была обновлена:" +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 +msgid "Comments (last first):" +msgstr "Комментарии (последние первыми):" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 +msgid "Issue:" +msgstr "Проблема:" + +#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:3 #: IDF/gettexttemplates/idf/issues/forge-watchlist.html.php:3 #: IDF/gettexttemplates/idf/issues/index.html.php:3 -#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:3 #, php-format msgid "" "

    Open issues: %%open%%

    \n" @@ -2072,6 +2545,26 @@ 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" @@ -2080,88 +2573,11 @@ 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." @@ -2229,81 +2645,62 @@ msgstr "Сохранить изменения" msgid "Followed by:" msgstr "Наблюдатели:" -#: IDF/gettexttemplates/idf/login_form.html.php:3 +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 #, php-format msgid "" -"If you don't have an account yet, you can create one here." -msgstr "" +"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/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 +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 #, php-format msgid "" -"Welcome, %%user%%." +"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" msgstr "" -"Привет, %%user%%." -#: IDF/gettexttemplates/idf/main-menu.html.php:4 -msgid "Sign Out" -msgstr "Выход" +#: IDF/gettexttemplates/idf/issues/base.html.php:8 +msgid "Back to the issue" +msgstr "Назад к проблеме" -#: IDF/gettexttemplates/idf/main-menu.html.php:5 -msgid "Sign in or create your account" -msgstr "Войти или создать аккаунт" +#: IDF/gettexttemplates/idf/project/timeline.html.php:3 +msgid "Latest updates" +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/home.html.php:4 #: IDF/gettexttemplates/idf/project/timeline.html.php:5 +#: IDF/gettexttemplates/idf/project/home.html.php:4 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 "Рекомендуемые загрузки" @@ -2329,1153 +2726,119 @@ msgstr "Админы" msgid "Happy Crew" msgstr "Счастливая комманда" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" -msgstr "Последние изменения" - -#: IDF/gettexttemplates/idf/project/timeline.html.php:6 -msgid "Filter by type" +#: 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/register/confirmation-email.txt.php:3 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 #, 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" +"Instead of deleting the file, you could mark it as " +"deprecated." 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:6 +msgid "Delete File" +msgstr "Удалить файл" -#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 -msgid "Email:" -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:6 -msgid "Enable Your Account" -msgstr "Включите Ваш аккаунт" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 msgid "" -"This is the last step, but just be sure to have the cookies enabled to log in afterwards." +"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 "" -"Это последний шаг, но убедитесь, что включены cookies чтобы " -"войдите потом." +"Каждый файл должен иметь уникальное имя и содержимое файла не может быть " +"изменено, так что не забудьте включить номер релиза в каждом имени файла." -#: 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 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 #, 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!" +"You can use the Markdown syntax for the description." msgstr "" +"Вы можете использовать Markdown синтаксис для " +"описания." -#: 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:7 +msgid "The form contains some errors. Please correct them to submit the file." +msgstr "Форма содержит ошибки. Пожалуйста исправте их чтобы отправить файл." -#: IDF/gettexttemplates/idf/register/index.html.php:6 IDF/Views.php:88 -msgid "Create Your Account" -msgstr "Создайте Ваш аккаунт" +#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 +msgid "Submit File" +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/downloads/feedfragment.xml.php:3 +msgid "Details" +msgstr "Детали" -#: 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 +#: 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:214 +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 msgid "" -"By %%who%%, %%c.creation_dtime%%, on file:\n" -"%%c.cfile%%\n" +"Attention! This file is marked as deprecated, download it " +"only if you are sure you need this specific version." 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/downloads/view.html.php:5 +msgid "Changes" +msgstr "Изменения" -#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15 -msgid "Detailed file comments (last first):" -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/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/downloads/view.html.php:7 +msgid "Update File" +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/downloads/view.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:11 +msgid "Remove this file" +msgstr "Удалить этот файл" -#: 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/downloads/view.html.php:12 +msgid "Delete this file" +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 "" -"\n" -"Предложение кода для рецензирования пугает. Знайте, вы " -"будете получать критику, поэтому, пожалуйста, как рецензент, " -"воспринимать этот процесс с улыбкой, использовать его, " -"чтобы помочь вашей команде узнать ваши стандарты кодирования и структуры " -"кода и сделать так, что бы они продолжили участие в проекте .\n" +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3 +msgid "A new file is available for download:" +msgstr "Новый файл доступен для скачивания:" -#: 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/downloads/download-created-email.txt.php:6 +msgid "Submitted by:" +msgstr "Размещен:" -#: 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/gettexttemplates/idf/downloads/download-created-email.txt.php:8 +msgid "Download:" +msgstr "Загрузить:" #: IDF/IssueFile.php:64 msgid "file name" @@ -3501,147 +2864,6 @@ msgstr "Изображение" msgid "Other" 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." -msgstr "" - -#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81 -#, php-format -msgid "The repository %s already exists." -msgstr "" - -#: IDF/Plugin/SyncMercurial.php:142 -#, php-format -msgid "%s does not exist or is not writable." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:86 IDF/Plugin/SyncMonotone.php:457 -#: IDF/Plugin/SyncMonotone.php:783 -msgid "\"mtn_repositories\" must be defined in your configuration file." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:93 IDF/Plugin/SyncMonotone.php:447 -msgid "\"mtn_usher_conf\" does not exist or is not writable." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:100 -#, php-format -msgid "Could not find mtn-post-push script \"%s\"." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:135 -#, php-format -msgid "The configuration file %s is missing." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:144 -#, php-format -msgid "The project path %s already exists." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:150 -#, php-format -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" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:243 -#, php-format -msgid "Could not create configuration directory \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 -#, php-format -msgid "Could not create symlink \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:269 -#, php-format -msgid "Could not write configuration file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 -#, php-format -msgid "Could not parse usher configuration in \"%s\": %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:295 -#, php-format -msgid "usher configuration already contains a server entry named \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 -#, php-format -msgid "Could not write usher configuration file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:366 -#, php-format -msgid "Could not write write-permissions file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:389 -#, php-format -msgid "Could not write read-permissions file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:406 -#, php-format -msgid "Could not remove symlink \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:465 -#, php-format -msgid "One or more paths underknees %s could not be deleted." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:477 -#, php-format -msgid "Could not delete client private key %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676 -#, php-format -msgid "Could not parse read-permissions for project \"%s\": %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 -#, php-format -msgid "Could not write read-permissions for project \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 -#, php-format -msgid "Could not write write-permissions file for project \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:790 -#, php-format -msgid "The project path %s does not exists." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:808 -#, php-format -msgid "The command \"%s\" could not be executed." -msgstr "" - #: IDF/Project.php:62 IDF/Tag.php:66 msgid "name" msgstr "имя" @@ -3660,6 +2882,11 @@ msgstr "Используется в адресе для доступа к про 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 "описания" @@ -3677,82 +2904,6 @@ msgstr "частный" 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/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/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 "" @@ -3769,201 +2920,162 @@ msgstr "" msgid "ponderated occurence" msgstr "" -#: IDF/Tag.php:59 -msgid "tag class" -msgstr "пометить класс" +#: IDF/Issue.php:76 +msgid "owner" +msgstr "владелец" -#: IDF/Tag.php:60 -msgid "The class of the tag." -msgstr "Класс метки." +#: IDF/Issue.php:84 IDF/WikiPage.php:86 +msgid "interested users" +msgstr "наблюдающие пользователи" -#: IDF/Tag.php:73 -msgid "lcname" -msgstr "lcname" +#: IDF/Issue.php:85 +msgid "" +"Interested users will get an email notification when the issue is changed." +msgstr "" +"Наблюдающие пользователи получат сообщение, когда проблема будем изменена." -#: IDF/Tag.php:74 -msgid "Lower case version of the name for fast searching." -msgstr "Имя в нижнем регистре для быстрого поиска." +#: IDF/Issue.php:196 +#, php-format +msgid "Creation of issue %d, by %s" +msgstr "Создание проблемы %d, %s" -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" +#: 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/Template/ShowUser.php:51 -msgid "Anonymous" -msgstr "Аноним" +#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:106 IDF/Views/Wiki.php:147 +msgid "Page Title" +msgstr "Заголовок страницы" -#: IDF/Template/ShowUser.php:54 -msgid "Me" -msgstr "Я" +#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:107 IDF/Views/Wiki.php:148 +#: 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/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/Timeline/Paginator.php:49 -msgid "Today" -msgstr "Сегодня" +#: IDF/Views/Wiki.php:63 IDF/Views/Wiki.php:108 IDF/Views/Wiki.php:149 +msgid "Updated" +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." +#: IDF/Views/Wiki.php:67 IDF/Views/Wiki.php:153 +msgid "No documentation pages were found." msgstr "" -#: IDF/Views/Admin.php:65 -msgid "Short Name" -msgstr "Краткое имя" +#: IDF/Views/Wiki.php:90 +#, php-format +msgid "Documentation Search - %s" +msgstr "" -#: IDF/Views/Admin.php:67 -msgid "Repository Size" -msgstr "Размер репозитория" +#: IDF/Views/Wiki.php:101 +msgid "This table shows the pages found." +msgstr "" -#: IDF/Views/Admin.php:73 -msgid "No projects were found." -msgstr "Проектов не найдено." +#: IDF/Views/Wiki.php:112 +msgid "No pages were found." +msgstr "Страниц не найдено." -#: IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:312 +#: 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:312 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 #, 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 +#: IDF/Views/Wiki.php:324 #, php-format -msgid "Delete %s Project" -msgstr "Удалить проект %s" - -#: IDF/Views/Admin.php:167 -msgid "The project has been deleted." +msgid "The page %s has been updated." msgstr "" -#: IDF/Views/Admin.php:197 -msgid "Not Validated User List" +#: IDF/Views/Wiki.php:362 +msgid "The documentation page has been deleted." 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 +#: IDF/Views/Wiki.php:370 #, php-format -msgid "The user %s has been created." +msgid "Delete Page %s" 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 +#: IDF/Views/Source.php:40 #, php-format -msgid "The server \"%s\" has been started" -msgstr "" +msgid "%s Source Help" +msgstr "Помощь по исходному коду для %s" -#: IDF/Views/Admin.php:420 +#: IDF/Views/Source.php:58 #, php-format -msgid "The server \"%s\" has been stopped" +msgid "%s Invalid Revision" msgstr "" -#: IDF/Views/Admin.php:425 +#: IDF/Views/Source.php:81 #, php-format -msgid "The server \"%s\" has been killed" +msgid "%s Ambiguous Revision" msgstr "" -#: IDF/Views/Admin.php:445 +#: IDF/Views/Source.php:106 #, php-format -msgid "Open connections for \"%s\"" +msgid "%1$s %2$s Change Log" msgstr "" -#: IDF/Views/Admin.php:450 +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 #, php-format -msgid "no connections for server \"%s\"" +msgid "%1$s %2$s Source Tree" msgstr "" -#: IDF/Views/Admin.php:471 -msgid "Yes" -msgstr "Да" +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" +msgstr "" -#: IDF/Views/Admin.php:471 -msgid "No" -msgstr "Нет" +#: IDF/Views/Source.php:304 +#, php-format +msgid "%s Commit Details - %s" +msgstr "" #: IDF/Views/Download.php:45 #, php-format @@ -4016,6 +3128,113 @@ msgstr "" 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" @@ -4027,13 +3246,21 @@ 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 +#: IDF/Views/Issue.php:620 IDF/Views/User.php:81 IDF/Views/Review.php:57 msgid "Id" msgstr "" +#: 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/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:141 IDF/Views/Issue.php:223 #: IDF/Views/Issue.php:298 IDF/Views/Issue.php:385 IDF/Views/Issue.php:564 -#: IDF/Views/Issue.php:623 IDF/Views/Review.php:60 IDF/Views/User.php:85 +#: IDF/Views/Issue.php:623 IDF/Views/User.php:85 IDF/Views/Review.php:60 msgid "Last Updated" msgstr "Последнее обновление" @@ -4172,91 +3399,46 @@ msgstr "" msgid "On your watch list." msgstr "В Вашем списке наблюдения." -#: IDF/Views/Project.php:72 -msgid "All Updates" +#: 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/Project.php:74 -msgid "Issues and Comments" +#: IDF/Views/User.php:121 +msgid "Your personal information has been updated." msgstr "" -#: IDF/Views/Project.php:76 -msgid "Documents" +#: IDF/Views/User.php:133 +msgid "Your Account" +msgstr "Ваш аккаунт" + +#: IDF/Views/User.php:157 +msgid "The public key has been deleted." msgstr "" -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" -msgstr "" +#: IDF/Views/User.php:177 +#, fuzzy +msgid "The address has been deleted." +msgstr "Файл был удален." -#: IDF/Views/Project.php:142 -msgid "This table shows the project updates." -msgstr "" +#: IDF/Views/User.php:200 +msgid "Confirm The Email Change" +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 +#: IDF/Views/User.php:232 #, 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." +msgid "Your new email address \"%s\" has been validated. Thank you!" msgstr "" #: IDF/Views/Review.php:41 @@ -4287,209 +3469,863 @@ msgstr "" msgid "Your code review %d has been published." msgstr "" -#: IDF/Views/Source.php:40 +#: 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 "%s Source Help" -msgstr "Помощь по исходному коду для %s" +msgid "Delete %s Project" +msgstr "Удалить проект %s" -#: IDF/Views/Source.php:58 +#: 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 "%s Invalid Revision" +msgid "The user %s has been created." msgstr "" -#: IDF/Views/Source.php:81 +#: 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 "%s Ambiguous Revision" +msgid "The server \"%s\" has been started" msgstr "" -#: IDF/Views/Source.php:106 +#: IDF/Views/Admin.php:420 #, php-format -msgid "%1$s %2$s Change Log" +msgid "The server \"%s\" has been stopped" msgstr "" -#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#: IDF/Views/Admin.php:425 #, php-format -msgid "%1$s %2$s Source Tree" +msgid "The server \"%s\" has been killed" msgstr "" -#: IDF/Views/Source.php:303 +#: IDF/Views/Admin.php:445 #, php-format -msgid "%s Commit Details" +msgid "Open connections for \"%s\"" msgstr "" -#: IDF/Views/Source.php:304 +#: IDF/Views/Admin.php:450 #, php-format -msgid "%s Commit Details - %s" +msgid "no connections for server \"%s\"" msgstr "" -#: IDF/Views/User.php:59 -msgid "Your Dashboard - Working Issues" -msgstr "Сводная информация - Проблемы в работе" +#: IDF/Views/Admin.php:471 +msgid "Yes" +msgstr "Да" -#: IDF/Views/User.php:62 -msgid "Your Dashboard - Submitted Issues" -msgstr "Сводная информация - Отправленные проблемы" +#: IDF/Views/Admin.php:471 +msgid "No" +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!" +#: 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/Views/User.php:121 -msgid "Your personal information has been updated." -msgstr "" +#: IDF/Form/WikiCreate.php:57 +msgid "PageName" +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" +#: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50 +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 +#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56 msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." +"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:101 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:112 +#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 +#: IDF/Form/UserAccount.php:216 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/Views.php:282 -msgid "Here to Help You!" -msgstr "Здесь чтобы помогать Вам!" +#: IDF/Form/WikiCreate.php:200 +msgid "Initial page creation" +msgstr "Создание первоначальной страницы" -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" -msgstr "InDefero API (Application Programming Interface)" +#: IDF/Form/Upload.php:86 +#, fuzzy +msgid "For security reasons, you cannot upload a file with this extension." +msgstr "В целях безопасности, вы не можете загрузить файл с таким расширением." -#: IDF/WikiPage.php:62 -msgid "title" -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/WikiPage.php:63 +#: 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 msgid "" -"The title of the page must only contain letters, digits or the dash " -"character. For example: My-new-Wiki-Page." +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." msgstr "" -"Заголовок страницы должен содержать только буквы, цифры или прочерк. " -"Например: Моя-новая-вики-страница." -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." -msgstr "Описание содержимого страницы в одну строчку." +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "Эл. адрес" -#: IDF/WikiPage.php:196 IDF/WikiRevision.php:167 +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is sent directly to the user." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 +#: IDF/Form/UserAccount.php:66 +msgid "Language" +msgstr "Язык" + +#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161 +msgid "Add a public key" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:92 +msgid "" +"Paste a SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:157 +msgid "Your details to access your forge." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:420 +#: IDF/Form/UserAccount.php:429 #, php-format -msgid "%2$s, %3$s" -msgstr "%2$s, %3$s" +msgid "The email \"%s\" is already used." +msgstr "Эл. адрес \"%s\" уже используется." -#: IDF/WikiPage.php:198 +#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 #, php-format -msgid "Creation of page %s, by %s" -msgstr "Создание страницы %s, %s" +msgid "The login \"%s\" can only contain letters and digits." +msgstr "" -#: IDF/WikiPage.php:208 +#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 #, php-format -msgid "%s: Documentation page %s added - %s" -msgstr "%s: Страницы документации %s добавлена - %s" +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 through HTTP or HTTPS is allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:201 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashs and dots as separators." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101 +msgid "This master branch is already used. Please select another one." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:222 +msgid "" +"This shortname contains illegal characters, please use only letters, digits " +"and dash (-)." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:225 +msgid "The shortname cannot start with the dash (-) character." +msgstr "Краткое имя не может начинаться с прочерка (-)." + +#: IDF/Form/Admin/ProjectCreate.php:228 +msgid "The shortname cannot end with the dash (-) character." +msgstr "Краткое имя не может заканчиваться прочером (-)." + +#: IDF/Form/Admin/ProjectCreate.php:233 +msgid "This shortname is already used. Please select another one." +msgstr "Краткое имя уже используется. Пожалуйста, выберите другое." + +#: IDF/Form/Admin/ProjectCreate.php: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 +#, fuzzy +msgid "" +"The password must be hard for other people to guess, but easy for the user " +"to remember." +msgstr "" +"Ваш пароль должен быть сложен для угадывания другими, но легок для " +"запоминания Вами." + +#: IDF/Form/Admin/UserUpdate.php:89 +msgid "Confirm password" +msgstr "Подтверждение пароля" + +#: IDF/Form/Admin/UserUpdate.php: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:164 +msgid "If you give staff rights to a user, you really need to trust them." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:176 +msgid "" +"If the user is not getting the confirmation email or is abusing the system, " +"you can directly enable or disable their account here." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:274 +msgid "--- is not a valid first name." +msgstr "--- неправильное имя." + +#: IDF/Form/Admin/UserUpdate.php:290 +msgid "" +"A user with this email already exists, please provide another email address." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:389 +msgid "For security reason, you cannot upload a file with this extension." +msgstr "В целях безопасности, вы не можете загрузить файл с таким расширением." + +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:452 +msgid "The passwords do not match. Please give them again." +msgstr "Пароли не совпадают. Пожалуйста, повторите ввод." + +#: IDF/Form/Admin/ProjectUpdate.php:90 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashes and dots as separators." +msgstr "" + +#: IDF/Form/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 +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:89 +#: 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:45 +msgid "" +"The login must be between 3 and 15 characters long and contain only letters " +"and digits." +msgstr "" + +#: IDF/Form/Register.php:53 +msgid "Your email" +msgstr "Ваш эл. адрес" + +#: IDF/Form/Register.php:55 +msgid "We will never send you any unsolicited emails. We hate spam too!" +msgstr "" + +#: IDF/Form/Register.php:60 +msgid "I agree to the terms and conditions." +msgstr "" + +#: IDF/Form/Register.php:88 +msgid "" +"We know, this is boring, but you need to agree with the terms and conditions." +msgstr "" + +#: IDF/Form/Register.php:97 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need to, click on the help link to " +"recover your password." +msgstr "" + +#: IDF/Form/Register.php:148 +msgid "Confirm the creation of your account." +msgstr "" + +#: IDF/Form/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:166 +msgid "" +"Paste an SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" + +#: IDF/Form/UserAccount.php:171 +msgid "Add a secondary mail address" +msgstr "" + +#: IDF/Form/UserAccount.php:173 +msgid "You will get a mail to confirm that you own the address you specify." +msgstr "" + +#: IDF/Form/UserAccount.php:200 +msgid "Confirm your new email address." +msgstr "Подтвердите ваш новый адрес электронной почты." + +#: IDF/Form/UserAccount.php:203 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" + +#: IDF/Form/UserAccount.php:334 +msgid "" +"Please check the key as it does not appear to be a valid SSH public key." +msgstr "" + +#: IDF/Form/UserAccount.php:354 +msgid "" +"Please check the key as it does not appear to be a valid monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:362 +msgid "Public key looks like neither an SSH nor monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:374 +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 to 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:72 +#, fuzzy +msgid "" +"Your password must be hard for other people to guess, but easy for you to " +"remember." +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" @@ -4503,6 +4339,11 @@ msgstr "Описание изменений в одну строку." 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" @@ -4523,15 +4364,244 @@ msgstr "Новая страница документации %s - %s (%s)" msgid "Documentation Page Changed %s - %s (%s)" msgstr "Страница документации изменена %s - %s (%s)" -#, fuzzy -#~ msgid "here" -#~ msgstr "Другой" +#: IDF/Review/Patch.php:52 +msgid "review" +msgstr "аудит" -#~ msgid "Managed Projects:" -#~ msgstr "Ваших проектов:" +#: IDF/Review/Patch.php:67 +msgid "commit" +msgstr "комит" -#~ msgid "Do you have a password?" -#~ msgstr "У вас есть пароль?" +#: IDF/Review/Patch.php:80 IDF/Review/Comment.php:55 +msgid "patch" +msgstr "патч" -#~ msgid "No, I am a new here." -#~ 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 +#, php-format +msgid "The repository %s already exists." +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." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:93 IDF/Plugin/SyncMonotone.php:447 +msgid "\"mtn_usher_conf\" does not exist or is not writable." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:100 +#, php-format +msgid "Could not find mtn-post-push script \"%s\"." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:135 +#, php-format +msgid "The configuration file %s is missing." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:144 +#, php-format +msgid "The project path %s already exists." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:150 +#, php-format +msgid "The project path %s could not be created." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:205 +#, php-format +msgid "Could not parse key information: %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:243 +#, php-format +msgid "Could not create configuration directory \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 +#, php-format +msgid "Could not create symlink \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:269 +#, php-format +msgid "Could not write configuration file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 +#, php-format +msgid "Could not parse usher configuration in \"%s\": %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:295 +#, php-format +msgid "usher configuration already contains a server entry named \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 +#, php-format +msgid "Could not write usher configuration file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:366 +#, php-format +msgid "Could not write write-permissions file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:389 +#, php-format +msgid "Could not write read-permissions file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:406 +#, php-format +msgid "Could not remove symlink \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:465 +#, php-format +msgid "One or more paths underknees %s could not be deleted." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:477 +#, php-format +msgid "Could not delete client private key %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676 +#, php-format +msgid "Could not parse read-permissions for project \"%s\": %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 +#, php-format +msgid "Could not write read-permissions for project \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 +#, php-format +msgid "Could not write write-permissions file for project \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:790 +#, php-format +msgid "The project path %s does not exists." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:808 +#, php-format +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/Timeline/Paginator.php:49 +msgid "Today" +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: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/Tag.php:59 +msgid "tag class" +msgstr "пометить класс" + +#: IDF/Tag.php:60 +msgid "The class of the tag." +msgstr "Класс метки." + +#: IDF/Tag.php:73 +msgid "lcname" +msgstr "lcname" + +#: IDF/Tag.php:74 +msgid "Lower case version of the name for fast searching." +msgstr "Имя в нижнем регистре для быстрого поиска." + +#: IDF/Key.php:55 +msgid "public key" +msgstr "" + +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." +msgstr "" + +#: IDF/Template/ShowUser.php:51 +msgid "Anonymous" +msgstr "Аноним" + +#: IDF/Template/ShowUser.php:54 +msgid "Me" +msgstr "Я" + +#: IDF/Template/Markdown.php:81 +msgid "Create this documentation page" +msgstr "" diff --git a/src/IDF/locale/sl/idf.po b/src/IDF/locale/sl/idf.po index aee6707..a773118 100644 --- a/src/IDF/locale/sl/idf.po +++ b/src/IDF/locale/sl/idf.po @@ -7,45 +7,180 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\n" "Report-Msgid-Bugs-To: \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" +"POT-Creation-Date: 2011-03-10 10:02+0100\n" +"PO-Revision-Date: 2011-03-04 18:20+0000\n" +"Last-Translator: tommyd \n" "Language-Team: 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/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/IssueComment.php:51 +msgid "issue" +msgstr "zadeva" -#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65 -#: IDF/IssueFile.php:57 IDF/Review/Comment.php:69 IDF/Review.php:80 -#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79 +#: IDF/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/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 +#: 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 +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 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" @@ -56,802 +191,6 @@ 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 "" @@ -860,454 +199,89 @@ msgstr "" msgid "model id" msgstr "" -#: IDF/gettexttemplates/idf/admin/base.html.php:3 -msgid "Project Summary" -msgstr "Splošno o projektu" +#: IDF/Gconf.php:73 IDF/Conf.php:61 +msgid "key" +msgstr "ključ" -#: IDF/gettexttemplates/idf/admin/base.html.php:6 -msgid "Issue Tracking" -msgstr "Sledenje zadevam" +#: IDF/Gconf.php:79 IDF/Conf.php:67 +msgid "value" +msgstr "vrednost" -#: 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/gettexttemplates/idf/faq-api.html.php:4 -#: IDF/gettexttemplates/idf/faq.html.php:35 +#: IDF/Views.php:47 IDF/gettexttemplates/idf/faq.html.php:35 #: IDF/gettexttemplates/idf/gadmin/base.html.php:3 +#: IDF/gettexttemplates/idf/faq-api.html.php:4 #: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57 -#: IDF/Views.php:45 msgid "Projects" msgstr "Projekti" +#: IDF/Views.php:90 IDF/gettexttemplates/idf/register/index.html.php:6 +msgid "Create Your Account" +msgstr "Ustvari Uporabniški Račun" + +#: IDF/Views.php:126 IDF/Views.php:152 +msgid "Confirm Your Account Creation" +msgstr "" + +#: IDF/Views.php:172 +msgid "Welcome! You can now participate in the life of your project of choice." +msgstr "" + +#: IDF/Views.php:198 IDF/Views.php:222 IDF/Views.php:263 +msgid "Password Recovery" +msgstr "Ponastavitev gesla" + +#: IDF/Views.php:242 +msgid "" +"Welcome back! Next time, you can use your broswer options to remember the " +"password." +msgstr "" + +#: IDF/Views.php:284 +msgid "Here to Help You!" +msgstr "Tukaj da pomagamo!" + +#: IDF/Views.php:300 +msgid "InDefero API (Application Programming Interface)" +msgstr "" + +#: IDF/Scm/Mercurial.php:138 IDF/Scm/Git.php:288 +#, php-format +msgid "Folder %1$s not found in commit %2$s." +msgstr "" + +#: IDF/Scm/Mercurial.php:155 IDF/Scm/Git.php:404 +#, php-format +msgid "Not a valid tree: %s." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:79 +msgid "Monotone client key name or hash not in project conf." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:87 IDF/Plugin/SyncMonotone.php:187 +#, php-format +msgid "The key directory %s could not be created." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:98 +#, php-format +msgid "Could not write client key \"%s\"" +msgstr "" + +#: IDF/Scm/Git.php:237 +#, php-format +msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." +msgstr "" + +#: IDF/EmailAddress.php:49 IDF/Key.php:49 +msgid "user" +msgstr "uporabnik" + +#: IDF/EmailAddress.php:55 +#, fuzzy +msgid "email" +msgstr "E-naslov" + #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

    This is simple:

    \n" @@ -1354,7 +328,7 @@ msgstr "" #: IDF/gettexttemplates/idf/faq.html.php:15 #: IDF/gettexttemplates/idf/faq.html.php:33 -msgid "What is the API and how to use it?" +msgid "What is the API and how is it used?" msgstr "" #: IDF/gettexttemplates/idf/faq.html.php:17 @@ -1413,37 +387,158 @@ msgstr "" msgid "Alt+4: Search (when available)." msgstr "" -#: IDF/gettexttemplates/idf/gadmin/base.html.php:4 -msgid "People" -msgstr "Ljudje" - -#: IDF/gettexttemplates/idf/gadmin/base.html.php:5 -msgid "Usher" +#: 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/home.html.php:3 -msgid "You have here access to the administration of the forge." +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You have requested the creation of an account to\n" +"participate in the life of a software project.\n" +"\n" +"To confirm the account please follow this link:\n" +"\n" +"%%url%%\n" +"\n" +"Alternatively, go to this page:\n" +"\n" +"%%urlik%%\n" +"\n" +"and provide the following confirmation key:\n" +"\n" +"%%key%%\n" +"\n" +"If you are not interested any longer in taking\n" +"part in the life of the software project or if\n" +"you can't remember having requested the creation\n" +"of an account, please excuse us and simply ignore\n" +"this email. \n" +"\n" +"Yours faithfully,\n" +"The development team.\n" msgstr "" -#: IDF/gettexttemplates/idf/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:3 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:3 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3 +msgid "Oops, we found an error in the form." +msgstr "" -#: IDF/gettexttemplates/idf/gadmin/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:4 +msgid "Confirm Your Account" +msgstr "Potrdi Račun" -#: 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:5 +#: IDF/gettexttemplates/idf/register/index.html.php:7 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16 +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7 +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5 +#: IDF/gettexttemplates/idf/wiki/create.html.php:7 +#: IDF/gettexttemplates/idf/wiki/delete.html.php:10 +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7 +#: IDF/gettexttemplates/idf/wiki/update.html.php:7 +#: IDF/gettexttemplates/idf/review/create.html.php:12 +#: IDF/gettexttemplates/idf/review/view.html.php:43 +#: IDF/gettexttemplates/idf/issues/create.html.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:25 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:7 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:8 +msgid "Cancel" +msgstr "Prekliči" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 -msgid "Change Project Details" +#: IDF/gettexttemplates/idf/register/inputkey.html.php:6 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:6 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:10 +msgid "Instructions" +msgstr "Navodila" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:7 +msgid "" +"Use your email software to read your emails and open your confirmation " +"email. Either click directly on the confirmation link or copy/paste the " +"confirmation key in the box and submit the form." +msgstr "" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:8 +msgid "" +"Just after providing the confirmation key, you will be able to set your " +"password and start using this website fully." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:3 +msgid "" +"Read the terms and conditions " +"– basically \"Please be nice, we respect you\"." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:4 +#, php-format +msgid "" +"With your account, you will able to participate in the life of all the " +"projects hosted here. Participating in a software project must be fun, so if " +"you have troubles, you can let us know about your issues " +"at anytime!" +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:5 +msgid "Oops, please check the provided login and email address to register." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:8 +msgid "" +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:9 +msgid "Did you know?" +msgstr "Ali ste vedeli, da ..." + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:3 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:3 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:3 +msgid "Oops, please check the form for errors." +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:4 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4 +msgid "Login:" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 +msgid "Email:" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:6 +msgid "Enable Your Account" +msgstr "Omogoči Račun" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 +msgid "" +"This is the last step, but just be sure to have the cookies enabled 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/create.html.php:3 @@ -1466,6 +561,19 @@ 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." @@ -1475,6 +583,18 @@ 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 "" @@ -1507,6 +627,15 @@ 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 "" @@ -1516,6 +645,12 @@ 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 "" @@ -1539,11 +674,18 @@ msgid "Repositories:" msgstr "Repozitoriji:" #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5 -#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11 #: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11 msgid "Attachments:" msgstr "Priponke:" +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:13 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:10 +#: IDF/gettexttemplates/idf/downloads/view.html.php:15 +msgid "Downloads:" +msgstr "" + #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7 msgid "Database:" msgstr "Zbirka podatkov:" @@ -1552,6 +694,16 @@ 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." @@ -1571,29 +723,35 @@ 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/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" -msgstr "Seznam uporabnikov" +#: 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: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" +#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 +msgid "Change Project Details" msgstr "" #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3 msgid "The form contains some errors. Please correct them to create the user." msgstr "" +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5 +msgid "Create User" +msgstr "" + #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6 msgid "The user password will be sent by email to the user." msgstr "" @@ -1646,13 +804,6 @@ 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" @@ -1662,22 +813,15 @@ msgstr "" msgid "Administrative" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 -msgid "Configured servers" -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: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/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" +msgstr "Seznam uporabnikov" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3 msgid "current server status:" @@ -1779,9 +923,1010 @@ msgstr "" msgid "usher is shut down, not running and not accepting connections" msgstr "" -#: IDF/gettexttemplates/idf/index.atom.php:3 +#: 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 #, php-format -msgid "Personal project feed for %%user%%." +msgid "" +"If you don't have an account yet, you can create one here." +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:4 +msgid "What is your account information?" +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:5 +msgid "My login is" +msgstr "Sem uporabnik" + +#: 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 "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 +msgid "Welcome." +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:10 +msgid "It takes less than a minute to create your account." +msgstr "" + +#: IDF/gettexttemplates/idf/user/public.html.php:3 +#, 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 "Secondary Emails" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +msgid "Extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 +msgid "" +"This password is used to access some of the external systems managed by our " +"infrastructure. It will be regenerated if you change your password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "API key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +msgid "Update Your Account" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Your Current Public Keys" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +msgid "Delete this key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 +msgid "Your additional email addresses" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 +#, fuzzy +msgid "Delete this address" +msgstr "Izbriši ta projekt" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:18 +msgid "" +"If possible, use your real name. By using your real name, people will have " +"more trust in your comments and remarks." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:19 +msgid "" +"The extra password is used to access some of the external systems and the " +"API key is used to interact with this website using a program." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:20 +msgid "Show API key and extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/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 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 "" +"Oops, please check the provided login or email address to recover your " +"password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:4 +msgid "Recover My Password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:6 +msgid "" +"Provide either your login or email address, if a corresponding user is found " +"in the database, we will send you an email with the details on how to reset " +"your password." +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:3 +#: IDF/gettexttemplates/idf/wiki/update.html.php:3 +msgid "Preview of the Page" +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:4 +msgid "The form contains some errors. Please correct them to create the page." +msgstr "" + +#: IDF/gettexttemplates/idf/wiki/create.html.php:5 +#: IDF/gettexttemplates/idf/wiki/update.html.php:5 +#: IDF/gettexttemplates/idf/issues/create.html.php:11 +#: IDF/gettexttemplates/idf/issues/create.html.php:13 +#: IDF/gettexttemplates/idf/issues/view.html.php:22 +#: IDF/gettexttemplates/idf/issues/view.html.php:24 +msgid "Preview" +msgstr "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:175 +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 +#: IDF/gettexttemplates/idf/source/commit.html.rej.php:4 +#: IDF/gettexttemplates/idf/source/commit.html.orig.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 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/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/source/commit.html.orig.php:7 +#: IDF/gettexttemplates/idf/review/view.html.php:28 +msgid "Commit:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8 +msgid "Created at:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10 +msgid "Commit details:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:3 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:3 +#, php-format +msgid "%%ndiff%% diff" +msgid_plural "%%ndiff%% diffs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:4 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:4 +msgid "Date:" +msgstr "Datum:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:5 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:5 +#: IDF/gettexttemplates/idf/review/view.html.php:27 +msgid "Author:" +msgstr "Avtor:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:6 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:6 +msgid "Branch:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:8 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:8 +#: IDF/gettexttemplates/idf/review/view.html.php:29 +msgid "View corresponding source tree" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:9 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:9 +msgid "Parents:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:10 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:10 +#: IDF/gettexttemplates/idf/source/changelog.html.php:6 +msgid "View corresponding commit" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:11 +#: IDF/gettexttemplates/idf/source/commit.html.rej.php:3 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:11 +msgid "Message:" +msgstr "Sporočilo:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:13 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:13 +msgid "deleted" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.php:17 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:17 +msgid "full" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:15 +msgid "renamed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:16 +msgid "added" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:18 +msgid "modified" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:19 +msgid "properies changed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:20 +msgid "removed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:21 +msgid "File differences" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/review/view.html.php:34 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 +msgid "Archive" +msgstr "Arhiv" + +#: IDF/gettexttemplates/idf/source/commit.html.php:23 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:23 +#: IDF/gettexttemplates/idf/review/view.html.php:35 +msgid "Download the corresponding diff file" +msgstr "" + +#: IDF/gettexttemplates/idf/source/feedfragment.xml.php:3 +#, 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:292 IDF/Form/Upload.php:59 +msgid "File" +msgstr "Datoteka" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/changelog.html.php:3 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:7 +#: IDF/Views/Project.php:152 +msgid "Age" +msgstr "Starost" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8 +#: IDF/gettexttemplates/idf/source/changelog.html.php:4 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:8 +msgid "Message" +msgstr "Sporočilo" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:9 +#: IDF/Views/Download.php:66 IDF/Views/Download.php:294 +msgid "Size" +msgstr "Velikost" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:10 +msgid ":" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:12 +msgid "Download this version" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:13 +msgid "or" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:14 +#: IDF/gettexttemplates/idf/main-menu.html.php:10 +msgid "Help" +msgstr "Pomoč" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the monotone software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6 +#: IDF/gettexttemplates/idf/source/git/help.html.php:7 +msgid "To make a first commit in the repository, perform the following steps:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7 +#: IDF/gettexttemplates/idf/source/git/help.html.php:8 +#, php-format +msgid "Find here more details on how to access %%project%% source code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8 +#: IDF/gettexttemplates/idf/source/git/help.html.php:9 +msgid "Command-Line Access" +msgstr "Možnosti ukazne vrstice" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9 +#: IDF/gettexttemplates/idf/source/git/help.html.php:10 +msgid "First Commit" +msgstr "Prvi vnos" + +#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15 +#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3 +msgid "Revision:" +msgstr "Revizija:" + +#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16 +#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4 +msgid "Go to revision" +msgstr "Pojdi na revizijo" + +#: IDF/gettexttemplates/idf/source/svn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11 +msgid "Property" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/file.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12 +msgid "set to:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8 +msgid "Rev" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17 +msgid "Branches:" +msgstr "Branža:" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18 +msgid "Tags:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the subversion software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6 +#, php-format +msgid "" +"To get write access to the repository, you need to use your username and " +"your extra password." +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9 +msgid "Write Access Authentication" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the Mercurial software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:3 +msgid "Source Tree" +msgstr "Drevo izvorne kode" + +#: IDF/gettexttemplates/idf/source/base.html.php:4 +msgid "Change Log" +msgstr "Dnevnik sprememb" + +#: IDF/gettexttemplates/idf/source/base.html.php:5 +#: IDF/gettexttemplates/idf/source/changelog.html.php:7 +#: IDF/Form/ReviewCreate.php:74 +msgid "Commit" +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:6 +msgid "How To Get The Code" +msgstr "Navodila za dostop" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:5 +msgid "Parent:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:8 +msgid "by" +msgstr "" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the git software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:6 +#, php-format +msgid "" +"You may need to provide your SSH key. The " +"synchronization of your SSH key can take a couple of minutes. You can learn " +"more about SSH key authentication." +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:3 +#, php-format +msgid "" +"Welcome, %%user%%." +msgstr "" +"Dobrodošel, %%user%%." + +#: IDF/gettexttemplates/idf/main-menu.html.php:4 +msgid "Sign Out" +msgstr "Odjava" + +#: IDF/gettexttemplates/idf/main-menu.html.php:5 +msgid "Sign in or create your account" +msgstr "Prijavi se ali pa ustvari uporabniški račun" + +#: IDF/gettexttemplates/idf/main-menu.html.php:7 +#: IDF/gettexttemplates/idf/index.html.php:6 +#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77 +msgid "Private project" +msgstr "Zaseben projekt" + +#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 +msgid "Forge Management" +msgstr "Nastavitve spletišča" + +#: IDF/gettexttemplates/idf/main-menu.html.php:9 +msgid "Help and accessibility features" msgstr "" #: IDF/gettexttemplates/idf/index.html.php:4 @@ -1790,114 +1935,398 @@ msgstr "" #: IDF/gettexttemplates/idf/index.html.php:7 #, fuzzy -msgid "Projects:" -msgstr "Projekti" +msgid "Forge statistics" +msgstr "Statistika Projekta" #: IDF/gettexttemplates/idf/index.html.php:8 -#, fuzzy -msgid "Members:" -msgstr "Osebje Projekta" +msgid "Projects:" +msgstr "" #: IDF/gettexttemplates/idf/index.html.php:9 -#, fuzzy -msgid "Issues:" -msgstr "Napake/Predlogi" +msgid "Members:" +msgstr "" #: IDF/gettexttemplates/idf/index.html.php:10 -#, fuzzy -msgid "Commits:" -msgstr "Komentar" +msgid "Issues:" +msgstr "" #: IDF/gettexttemplates/idf/index.html.php:11 -#, fuzzy +msgid "Commits:" +msgstr "" + +#: IDF/gettexttemplates/idf/index.html.php:12 msgid "Documentations:" -msgstr "Dokumentacija" +msgstr "" -#: IDF/gettexttemplates/idf/index.html.php:13 -#, fuzzy +#: IDF/gettexttemplates/idf/index.html.php:14 msgid "Code reviews:" -msgstr "Revizije Izvorne kode" - -#: 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 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.php:3 #, php-format msgid "" -"

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" +"Sign in or create your account to create issues or " +"add comments" msgstr "" -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" -msgstr "Oznaka:" +#: 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:8 -msgid "Completion:" -msgstr "Ocena končanosti:" +#: 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" +"
    • Check your patch does not provide any password or confidential " +"information!
    • \n" +"
    " +msgstr "" + +#: IDF/gettexttemplates/idf/review/create.html.php:9 +msgid "" +"The form contains some errors. Please correct them to submit the code review." +msgstr "" + +#: IDF/gettexttemplates/idf/review/create.html.php:10 +msgid "" +"Select the commit against which you created your patch to be sure it applies " +"correctly." +msgstr "" + +#: IDF/gettexttemplates/idf/review/create.html.php:11 +#: IDF/gettexttemplates/idf/review/index.html.php:3 +#: IDF/gettexttemplates/idf/review/base.html.php:4 IDF/Views/Review.php:83 +msgid "Start Code Review" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:3 +msgid "The following review has been updated:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:4 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:4 +#, php-format +msgid "By %%who%%, %%c.creation_dtime%%:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:5 +#, php-format +msgid "" +"By %%who%%, %%c.creation_dtime%%, on file:\n" +"%%c.cfile%%\n" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:11 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:7 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:8 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:8 +msgid "Reported by:" +msgstr "Sporočil:" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:12 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:8 +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:9 +msgid "URL:" +msgstr "URL:" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:14 +msgid "General comments (last first):" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:15 +msgid "Detailed file comments (last first):" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-updated-email.txt.php:16 +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:10 +msgid "Review:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:4 +#, php-format +msgid "%%nc%% comment" +msgid_plural "%%nc%% comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: IDF/gettexttemplates/idf/review/view.html.php:5 +msgid "" +"Code review is a process in which\n" +"after or before changes are commited into the code repository,\n" +"different people discuss the code changes. The goal is\n" +"to improve the quality of the code and the\n" +"contributions, as such, you must be pragmatic when writing\n" +"your review. Correctly mention the line numbers (in the old or in the\n" +"new file) and try to keep a good balance between seriousness and fun.\n" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:13 +msgid "" +"\n" +"Proposing code for review is intimidating, you know\n" +"you will receive critics, so please, as a reviewer, keep this\n" +"process fun, use it to help your contributor learn your\n" +"coding standards and the structure of the code and make them want\n" +"to propose more contributions.\n" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:20 +#, php-format +msgid "" +"Comment %%i%% by %%who%%, " +"%%c.creation_dtime%%" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:21 +#, php-format +msgid "Your comments on the changes in file %%file%%:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:22 +#: IDF/gettexttemplates/idf/issues/view.html.php:4 +#, php-format +msgid "" +"Comment %%i%% by %%submitter%%, %%c.creation_dtime%%" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:23 +#, php-format +msgid "Sign in to participate in the review." +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:24 +msgid "" +"The form contains some errors. Please correct them to submit your review." +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:31 +msgid "Reviewers:" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:32 +msgid "No reviewers at the moment." +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:33 +msgid "Files:" +msgstr "Datoteke:" + +#: IDF/gettexttemplates/idf/review/view.html.php:36 +msgid "How to Participate in a Code Review" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:37 +msgid "Old" +msgstr "Staro " + +#: IDF/gettexttemplates/idf/review/view.html.php:38 +msgid "New" +msgstr "Novo" + +#: IDF/gettexttemplates/idf/review/view.html.php:39 +msgid "General Comments" +msgstr "" + +#: IDF/gettexttemplates/idf/review/view.html.php:42 +msgid "Submit Code Review" +msgstr "" + +#: IDF/gettexttemplates/idf/review/base-full.html.php:3 +#: IDF/gettexttemplates/idf/review/base.html.php:3 +msgid "Open Reviews" +msgstr "" + +#: IDF/gettexttemplates/idf/review/review-created-email.txt.php:3 +msgid "The following review has been created:" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/members.html.php:13 +#: IDF/gettexttemplates/idf/admin/tabs.html.php:15 +#: IDF/gettexttemplates/idf/admin/summary.html.php:8 +#: IDF/gettexttemplates/idf/admin/wiki.html.php:8 +#: IDF/gettexttemplates/idf/admin/source.html.php:31 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:8 +#: IDF/gettexttemplates/idf/admin/downloads.html.php:8 +msgid "Save Changes" +msgstr "Shrani spremembe" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:3 +msgid "" +"\n" +"Only project members and admins have write access to the source.
    \n" +"If you restrict the access to the source, anonymous access is
    \n" +"not provided and the users must authenticate themselves with their
    \n" +"password or SSH key." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:8 +msgid "" +"You can configure here the project tabs access rights and notification " +"emails." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:9 +#, php-format +msgid "" +"Notification emails will be sent from the %%from_email%% " +"address, if you send the email to a mailing list, you may need to register " +"this email address. Multiple email addresses must be separated through " +"commas (','). If you do not want to send emails for a given type of changes, " +"simply leave the corresponding field empty." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:10 +msgid "" +"If you mark a project as private, only the project members and " +"administrators, together with the extra authorized users you provide will " +"have access to the project. You will still be able to define further access " +"rights for the different tabs but the \"Open to all\" and \"Signed in users" +"\" will default to authorized users only." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:11 +msgid "" +"Specify each person by its login. Each person must have already registered " +"with the given login. Separate the logins with commas and/or new lines." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:12 +msgid "" +"The form contains some errors. Please correct them to update the access " +"rights." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:13 +msgid "Access Rights" +msgstr "Pravice dostopa" + +#: IDF/gettexttemplates/idf/admin/tabs.html.php:14 +msgid "Notification Email" +msgstr "Potrditvena e-pošta" + +#: IDF/gettexttemplates/idf/admin/summary.html.php:3 +#, php-format +msgid "" +"\n" +"

    Instructions:

    \n" +"

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

    \n" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/summary.html.php:7 +msgid "" +"The form contains some errors. Please correct them to update the summary." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/wiki.html.php:3 +#: IDF/gettexttemplates/idf/admin/issue-tracking.html.php:3 +#: IDF/gettexttemplates/idf/admin/downloads.html.php:3 +msgid "" +"\n" +"

    Instructions:

    \n" +"

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

    \n" +"

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

    \n" +msgstr "" + +#: IDF/gettexttemplates/idf/admin/source.html.php:3 +msgid "You can find here the current repository configuration of your project." +msgstr "" + +#: IDF/gettexttemplates/idf/admin/source.html.php:4 +msgid "" +"

    The webhook URL setting specifies a URL to which a HTTP POST\n" +"request is sent after each repository commit. If this field is empty,\n" +"notifications are disabled.

    \n" +"\n" +"

    Only properly-escaped HTTP URLs are supported, for " +"example:

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

    In addition, the URL may contain the following \"%\" notation, which\n" +"will be replaced with specific project values for each commit:

    \n" +"\n" +"
      \n" +"
    • %p - project name
    • \n" +"
    • %r - revision number
    • \n" +"
    \n" +"\n" +"

    For example, committing revision 123 to project 'my-project' with\n" +"post-commit URL http://mydomain.com/%p/%r would send a request to\n" +"http://mydomain.com/my-project/123.

    " +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/create.html.php:3 msgid "" @@ -1916,15 +2345,6 @@ 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" @@ -1941,42 +2361,35 @@ msgstr "Dodaj datoteko ..." msgid "Attach another file" msgstr "Naloži novo datoteke" -#: 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: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: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/search.html.php:4 +msgid "Found issues:" +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:3 +msgid "The following issue has been updated:" +msgstr "" +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 +msgid "Comments (last first):" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 +msgid "Issue:" +msgstr "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" @@ -1988,92 +2401,33 @@ 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." @@ -2138,82 +2492,62 @@ msgstr "Shrani spremembe" msgid "Followed by:" msgstr "" -#: IDF/gettexttemplates/idf/login_form.html.php:3 +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 #, php-format msgid "" -"If you don't have an account yet, you can create one here." -msgstr "" +"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/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 +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 #, php-format msgid "" -"Welcome, %%user%%." -msgstr "" -"Dobrodošel, %%user%%." +"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/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" +#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 +#, php-format +msgid "Attachment to issue %%issue.id%%" 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 "Pomoč" +#: IDF/gettexttemplates/idf/issues/base.html.php:3 +msgid "Open Issues" +msgstr "Odprte zadeve" + +#: 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/home.html.php:4 #: IDF/gettexttemplates/idf/project/timeline.html.php:5 +#: IDF/gettexttemplates/idf/project/home.html.php:4 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" @@ -2239,1084 +2573,106 @@ msgstr "Administratorji" msgid "Happy Crew" msgstr "Ostali člani" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" -msgstr "Zadnje spremembe" - -#: IDF/gettexttemplates/idf/project/timeline.html.php:6 -msgid "Filter by type" +#: 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/register/confirmation-email.txt.php:3 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 #, 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" +"Instead of deleting the file, you could mark it as " +"deprecated." 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." +#: 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:" 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 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 msgid "" -"This is the last step, but just be sure to have the cookies enabled to log in afterwards." +"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/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 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 #, 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!" +"You can use the Markdown syntax for the description." msgstr "" -#: IDF/gettexttemplates/idf/register/index.html.php:5 -msgid "Oups, please check the provided login and email address to register." +#: 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:6 IDF/Views.php:88 -msgid "Create Your Account" -msgstr "Ustvari Uporabniški Račun" - -#: 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." +#: IDF/gettexttemplates/idf/downloads/submit.html.php:8 +msgid "Submit File" msgstr "" -#: IDF/gettexttemplates/idf/register/index.html.php:9 -msgid "Did you know?" -msgstr "Ali ste vedeli, da ..." +#: IDF/gettexttemplates/idf/downloads/feedfragment.xml.php:3 +msgid "Details" +msgstr "Podrobnosti" -#: 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 "Potrdi Račun" - -#: IDF/gettexttemplates/idf/register/inputkey.html.php:7 -msgid "" -"Use your email software to read your emails and open your confirmation " -"email. Either click directly on the confirmation link or copy/paste the " -"confirmation key in the box and submit the form." -msgstr "" - -#: IDF/gettexttemplates/idf/register/inputkey.html.php:8 -msgid "" -"Just after providing the confirmation key, you will be able to set your " -"password and start using this website fully." -msgstr "" - -#: IDF/gettexttemplates/idf/review/base-full.html.php:3 -#: IDF/gettexttemplates/idf/review/base.html.php:3 -msgid "Open Reviews" -msgstr "" - -#: IDF/gettexttemplates/idf/review/base.html.php:4 -#: IDF/gettexttemplates/idf/review/create.html.php:11 -#: IDF/gettexttemplates/idf/review/index.html.php:3 IDF/Views/Review.php:83 -msgid "Start Code Review" -msgstr "" - -#: IDF/gettexttemplates/idf/review/create.html.php:3 -msgid "" -"

    To start a code review, you need to provide:

    \n" -"
      \n" -"
    • A commit or revision of the current code in the repository from which " -"you started your work.
    • \n" -"
    • A patch describing your changes with respect to the reference commit.\n" -"
    • 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 +#: 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:214 +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 msgid "" -"By %%who%%, %%c.creation_dtime%%, on file:\n" -"%%c.cfile%%\n" +"Attention! This file is marked as deprecated, download it " +"only if you are sure you need this specific version." 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/downloads/view.html.php:5 +msgid "Changes" +msgstr "Spremembe" -#: IDF/gettexttemplates/idf/wiki/update.html.php:6 -msgid "Update Page" +#: 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/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" +#: IDF/gettexttemplates/idf/downloads/view.html.php:7 +msgid "Update File" 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." +#: IDF/gettexttemplates/idf/downloads/view.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:11 +msgid "Remove this file" 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%%." +#: IDF/gettexttemplates/idf/downloads/view.html.php:12 +msgid "Delete this file" 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." +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:3 +msgid "A new file is available for download:" msgstr "" -#: IDF/IssueComment.php:171 -#, php-format -msgid "Comment on issue %d, by %s" +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:6 +msgid "Submitted by:" msgstr "" -#: IDF/IssueComment.php:182 -#, php-format -msgid "%s: Comment on issue %d - %s" +#: IDF/gettexttemplates/idf/downloads/download-created-email.txt.php:8 +msgid "Download:" msgstr "" #: IDF/IssueFile.php:64 @@ -3343,147 +2699,6 @@ msgstr "Slika" msgid "Other" msgstr "Ostalo" -#: 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." -msgstr "" - -#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81 -#, php-format -msgid "The repository %s already exists." -msgstr "" - -#: IDF/Plugin/SyncMercurial.php:142 -#, php-format -msgid "%s does not exist or is not writable." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:86 IDF/Plugin/SyncMonotone.php:457 -#: IDF/Plugin/SyncMonotone.php:783 -msgid "\"mtn_repositories\" must be defined in your configuration file." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:93 IDF/Plugin/SyncMonotone.php:447 -msgid "\"mtn_usher_conf\" does not exist or is not writable." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:100 -#, php-format -msgid "Could not find mtn-post-push script \"%s\"." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:135 -#, php-format -msgid "The configuration file %s is missing." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:144 -#, php-format -msgid "The project path %s already exists." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:150 -#, php-format -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" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:243 -#, php-format -msgid "Could not create configuration directory \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 -#, php-format -msgid "Could not create symlink \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:269 -#, php-format -msgid "Could not write configuration file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 -#, php-format -msgid "Could not parse usher configuration in \"%s\": %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:295 -#, php-format -msgid "usher configuration already contains a server entry named \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 -#, php-format -msgid "Could not write usher configuration file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:366 -#, php-format -msgid "Could not write write-permissions file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:389 -#, php-format -msgid "Could not write read-permissions file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:406 -#, php-format -msgid "Could not remove symlink \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:465 -#, php-format -msgid "One or more paths underknees %s could not be deleted." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:477 -#, php-format -msgid "Could not delete client private key %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676 -#, php-format -msgid "Could not parse read-permissions for project \"%s\": %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 -#, php-format -msgid "Could not write read-permissions for project \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 -#, php-format -msgid "Could not write write-permissions file for project \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:790 -#, php-format -msgid "The project path %s does not exists." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:808 -#, php-format -msgid "The command \"%s\" could not be executed." -msgstr "" - #: IDF/Project.php:62 IDF/Tag.php:66 msgid "name" msgstr "ime" @@ -3502,6 +2717,11 @@ msgstr "" 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" @@ -3519,82 +2739,6 @@ msgstr "zasebno" msgid "Project \"%s\" not found." msgstr "" -#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80 -msgid "patch" -msgstr "" - -#: IDF/Review/Comment.php:83 -msgid "vote" -msgstr "" - -#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151 -#, php-format -msgid "" -"Review %3$d, %4$s" -msgstr "" - -#: IDF/Review/Comment.php:141 -#, php-format -msgid "Update of review %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 "" @@ -3611,201 +2755,161 @@ msgstr "" msgid "ponderated occurence" msgstr "" -#: IDF/Tag.php:59 -msgid "tag class" +#: IDF/Issue.php:76 +msgid "owner" +msgstr "lastnik" + +#: IDF/Issue.php:84 IDF/WikiPage.php:86 +msgid "interested users" msgstr "" -#: IDF/Tag.php:60 -msgid "The class of the tag." +#: IDF/Issue.php:85 +msgid "" +"Interested users will get an email notification when the issue is changed." msgstr "" -#: IDF/Tag.php:73 -msgid "lcname" -msgstr "" - -#: IDF/Tag.php:74 -msgid "Lower case version of the name for fast searching." -msgstr "" - -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" -msgstr "" - -#: IDF/Template/ShowUser.php:51 -msgid "Anonymous" -msgstr "" - -#: IDF/Template/ShowUser.php:54 -msgid "Me" -msgstr "Jaz" - -#: IDF/Timeline/Paginator.php:49 -msgid "Today" -msgstr "Danes" - -#: IDF/Upload.php:70 -msgid "file" -msgstr "datoteka" - -#: IDF/Upload.php:71 -msgid "The path is relative to the upload path." -msgstr "" - -#: IDF/Upload.php:78 -msgid "file size in bytes" -msgstr "Velikost v bajtih" - -#: IDF/Upload.php:100 -msgid "number of downloads" -msgstr "število prenosov" - -#: IDF/Upload.php:189 +#: IDF/Issue.php:196 #, php-format -msgid "Download %2$d, %3$s" +msgid "Creation of issue %d, by %s" msgstr "" -#: IDF/Upload.php:192 +#: IDF/Issue.php:206 #, php-format -msgid "Addition of download %d, by %s" +msgid "%s: Issue %d created - %s" msgstr "" -#: IDF/Upload.php:202 +#: IDF/Issue.php:272 #, php-format -msgid "%s: Download %d added - %s" +msgid "Issue %s - %s (%s)" msgstr "" -#: IDF/Upload.php:244 +#: IDF/Issue.php:318 #, php-format -msgid "New download - %s (%s)" +msgid "Updated Issue %s - %s (%s)" msgstr "" -#: IDF/Views/Admin.php:60 -msgid "This table shows the projects in the forge." +#: IDF/Views/Wiki.php:41 +#, php-format +msgid "%s Documentation" 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." +#: IDF/Views/Wiki.php:48 +msgid "This table shows the documentation pages." msgstr "" -#: IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:312 +#: 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:62 IDF/Views/Wiki.php:107 IDF/Views/Wiki.php:148 +#: 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/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: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:312 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 #, 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 +#: IDF/Views/Wiki.php:324 #, php-format -msgid "Delete %s Project" +msgid "The page %s has been updated." msgstr "" -#: IDF/Views/Admin.php:167 -msgid "The project has been deleted." +#: IDF/Views/Wiki.php:362 +msgid "The documentation page 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 +#: IDF/Views/Wiki.php:370 #, php-format -msgid "The user %s has been created." +msgid "Delete Page %s" 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 +#: IDF/Views/Source.php:40 #, php-format -msgid "The server \"%s\" has been started" +msgid "%s Source Help" msgstr "" -#: IDF/Views/Admin.php:420 +#: IDF/Views/Source.php:58 #, php-format -msgid "The server \"%s\" has been stopped" +msgid "%s Invalid Revision" msgstr "" -#: IDF/Views/Admin.php:425 +#: IDF/Views/Source.php:81 #, php-format -msgid "The server \"%s\" has been killed" +msgid "%s Ambiguous Revision" msgstr "" -#: IDF/Views/Admin.php:445 +#: IDF/Views/Source.php:106 #, php-format -msgid "Open connections for \"%s\"" +msgid "%1$s %2$s Change Log" msgstr "" -#: IDF/Views/Admin.php:450 +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 #, php-format -msgid "no connections for server \"%s\"" +msgid "%1$s %2$s Source Tree" msgstr "" -#: IDF/Views/Admin.php:471 -msgid "Yes" -msgstr "Da" +#: IDF/Views/Source.php:303 +#, php-format +msgid "%s Commit Details" +msgstr "" -#: IDF/Views/Admin.php:471 -msgid "No" -msgstr "Ne" +#: IDF/Views/Source.php:304 +#, php-format +msgid "%s Commit Details - %s" +msgstr "" #: IDF/Views/Download.php:45 #, php-format @@ -3858,6 +2962,113 @@ msgstr "" 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" @@ -3869,13 +3080,21 @@ 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 +#: IDF/Views/Issue.php:620 IDF/Views/User.php:81 IDF/Views/Review.php:57 msgid "Id" msgstr "Id" +#: 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/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:141 IDF/Views/Issue.php:223 #: IDF/Views/Issue.php:298 IDF/Views/Issue.php:385 IDF/Views/Issue.php:564 -#: IDF/Views/Issue.php:623 IDF/Views/Review.php:60 IDF/Views/User.php:85 +#: IDF/Views/Issue.php:623 IDF/Views/User.php:85 IDF/Views/Review.php:60 msgid "Last Updated" msgstr "" @@ -4014,91 +3233,45 @@ msgstr "" msgid "On your watch list." msgstr "" -#: IDF/Views/Project.php:72 -msgid "All Updates" +#: IDF/Views/User.php:59 +msgid "Your Dashboard - Working Issues" msgstr "" -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" +#: IDF/Views/User.php:62 +msgid "Your Dashboard - Submitted Issues" msgstr "" -#: IDF/Views/Project.php:76 -msgid "Documents" +#: IDF/Views/User.php:89 +msgid "No issues are assigned to you, yeah!" msgstr "" -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" +#: IDF/Views/User.php:89 +msgid "All the issues you submitted are fixed, yeah!" msgstr "" -#: IDF/Views/Project.php:142 -msgid "This table shows the project updates." +#: IDF/Views/User.php:121 +msgid "Your personal information has been updated." msgstr "" -#: IDF/Views/Project.php:153 -msgid "Change" -msgstr "Spremeni" +#: IDF/Views/User.php:133 +msgid "Your Account" +msgstr "Vaš račun" -#: IDF/Views/Project.php:157 -msgid "No changes were found." +#: IDF/Views/User.php:157 +msgid "The public key has been deleted." msgstr "" -#: IDF/Views/Project.php:248 +#: IDF/Views/User.php:177 +msgid "The address has been deleted." +msgstr "" + +#: IDF/Views/User.php:200 +msgid "Confirm The Email Change" +msgstr "" + +#: IDF/Views/User.php:232 #, php-format -msgid "%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." +msgid "Your new email address \"%s\" has been validated. Thank you!" msgstr "" #: IDF/Views/Review.php:41 @@ -4129,203 +3302,845 @@ msgstr "" msgid "Your code review %d has been published." msgstr "" -#: IDF/Views/Source.php:40 +#: 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 "%s Source Help" +msgid "Delete %s Project" msgstr "" -#: IDF/Views/Source.php:58 +#: 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 "%s Invalid Revision" +msgid "The user %s has been created." msgstr "" -#: IDF/Views/Source.php:81 +#: 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 "%s Ambiguous Revision" +msgid "The server \"%s\" has been started" msgstr "" -#: IDF/Views/Source.php:106 +#: IDF/Views/Admin.php:420 #, php-format -msgid "%1$s %2$s Change Log" +msgid "The server \"%s\" has been stopped" msgstr "" -#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#: IDF/Views/Admin.php:425 #, php-format -msgid "%1$s %2$s Source Tree" +msgid "The server \"%s\" has been killed" msgstr "" -#: IDF/Views/Source.php:303 +#: IDF/Views/Admin.php:445 #, php-format -msgid "%s Commit Details" +msgid "Open connections for \"%s\"" msgstr "" -#: IDF/Views/Source.php:304 +#: IDF/Views/Admin.php:450 #, php-format -msgid "%s Commit Details - %s" +msgid "no connections for server \"%s\"" msgstr "" -#: IDF/Views/User.php:59 -msgid "Your Dashboard - Working Issues" +#: 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/Views/User.php:62 -msgid "Your Dashboard - Submitted Issues" +#: IDF/Form/WikiCreate.php:57 +msgid "PageName" 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" +#: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50 +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 +#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56 msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." +"The page name must contains only letters, digits and the dash (-) character." msgstr "" -#: IDF/Views.php:282 -msgid "Here to Help You!" -msgstr "Tukaj da pomagamo!" +#: 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:101 IDF/Form/IssueCreate.php:62 +#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 +msgid "Description" +msgstr "Opis" -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" +#: IDF/Form/WikiCreate.php:71 IDF/Form/WikiUpdate.php:61 +msgid "This one line description is displayed in the list of pages." msgstr "" -#: IDF/WikiPage.php:62 -msgid "title" -msgstr "naslov" +#: IDF/Form/WikiCreate.php:80 IDF/Form/WikiUpdate.php:72 +msgid "Content" +msgstr "Vsebina" -#: IDF/WikiPage.php:63 +#: 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:112 +#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 +#: IDF/Form/UserAccount.php:216 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 +msgid "For security reasons, 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 msgid "" -"The title of the page must only contain letters, digits or the dash " -"character. For example: My-new-Wiki-Page." +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." msgstr "" -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "E-naslov" + +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is sent directly to the user." msgstr "" -#: IDF/WikiPage.php:196 IDF/WikiRevision.php:167 +#: IDF/Form/Admin/UserCreate.php:76 IDF/Form/Admin/UserUpdate.php:67 +#: IDF/Form/UserAccount.php:66 +msgid "Language" +msgstr "Jezik" + +#: IDF/Form/Admin/UserCreate.php:87 IDF/Form/UserAccount.php:161 +msgid "Add a public key" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:92 +msgid "" +"Paste a SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:157 +msgid "Your details to access your forge." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:420 +#: IDF/Form/UserAccount.php:429 #, php-format -msgid "%2$s, %3$s" +msgid "The email \"%s\" is already used." msgstr "" -#: IDF/WikiPage.php:198 +#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 #, php-format -msgid "Creation of page %s, by %s" +msgid "The login \"%s\" can only contain letters and digits." msgstr "" -#: IDF/WikiPage.php:208 +#: IDF/Form/Admin/UserCreate.php:203 IDF/Form/Register.php:77 #, php-format -msgid "%s: Documentation page %s added - %s" +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 through HTTP or HTTPS is allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:201 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashs and dots as separators." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101 +msgid "This master branch is already used. Please select another one." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:222 +msgid "" +"This shortname contains illegal characters, please use only letters, digits " +"and dash (-)." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:225 +msgid "The shortname cannot start with the dash (-) character." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:228 +msgid "The shortname cannot end with the dash (-) character." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:233 +msgid "This shortname is already used. Please select another one." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php: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 guess, but easy for the user " +"to remember." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:89 +msgid "Confirm password" +msgstr "Potrditev gesla" + +#: IDF/Form/Admin/UserUpdate.php: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:164 +msgid "If you give staff rights to a user, you really need to trust them." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:176 +msgid "" +"If the user is not getting the confirmation email or is abusing the system, " +"you can directly enable or disable their account here." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:274 +msgid "--- is not a valid first name." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:290 +msgid "" +"A user with this email already exists, please provide another email address." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:389 +msgid "For security reason, you cannot upload a file with this extension." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:452 +msgid "The passwords do not match. Please give them again." +msgstr "" + +#: IDF/Form/Admin/ProjectUpdate.php:90 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashes and dots as separators." +msgstr "" + +#: IDF/Form/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 +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:89 +#: 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:45 +msgid "" +"The login must be between 3 and 15 characters long and contain only letters " +"and digits." +msgstr "" + +#: IDF/Form/Register.php:53 +msgid "Your email" +msgstr "E-naslov" + +#: IDF/Form/Register.php:55 +msgid "We will never send you any unsolicited emails. We hate spam too!" +msgstr "" + +#: IDF/Form/Register.php:60 +msgid "I agree to the terms and conditions." +msgstr "" + +#: IDF/Form/Register.php:88 +msgid "" +"We know, this is boring, but you need to agree with the terms and conditions." +msgstr "" + +#: IDF/Form/Register.php:97 +#, php-format +msgid "" +"The email \"%s\" is already used. If you need to, click on the help link to " +"recover your password." +msgstr "" + +#: IDF/Form/Register.php:148 +msgid "Confirm the creation of your account." +msgstr "" + +#: IDF/Form/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:166 +msgid "" +"Paste an SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" + +#: IDF/Form/UserAccount.php:171 +msgid "Add a secondary mail address" +msgstr "" + +#: IDF/Form/UserAccount.php:173 +msgid "You will get a mail to confirm that you own the address you specify." +msgstr "" + +#: IDF/Form/UserAccount.php:200 +msgid "Confirm your new email address." +msgstr "" + +#: IDF/Form/UserAccount.php:203 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" + +#: IDF/Form/UserAccount.php:334 +msgid "" +"Please check the key as it does not appear to be a valid SSH public key." +msgstr "" + +#: IDF/Form/UserAccount.php:354 +msgid "" +"Please check the key as it does not appear to be a valid monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:362 +msgid "Public key looks like neither an SSH nor monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:374 +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 to 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:72 +msgid "" +"Your password must be hard for other people to guess, but easy for you to " +"remember." +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 @@ -4340,6 +4155,11 @@ msgstr "" 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" @@ -4360,15 +4180,242 @@ msgstr "" msgid "Documentation Page Changed %s - %s (%s)" msgstr "" -#, fuzzy -#~ msgid "here" -#~ msgstr "Ostalo" +#: IDF/Review/Patch.php:52 +msgid "review" +msgstr "" -#~ msgid "Managed Projects:" -#~ msgstr "Seznam projektov:" +#: IDF/Review/Patch.php:67 +msgid "commit" +msgstr "" -#~ msgid "Do you have a password?" -#~ msgstr "Ali že imaš geslo?" +#: IDF/Review/Patch.php:80 IDF/Review/Comment.php:55 +msgid "patch" +msgstr "" -#~ msgid "No, I am a new here." -#~ msgstr "Ne, tukaj sem nov." +#: 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 +#, php-format +msgid "The repository %s already exists." +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." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:93 IDF/Plugin/SyncMonotone.php:447 +msgid "\"mtn_usher_conf\" does not exist or is not writable." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:100 +#, php-format +msgid "Could not find mtn-post-push script \"%s\"." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:135 +#, php-format +msgid "The configuration file %s is missing." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:144 +#, php-format +msgid "The project path %s already exists." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:150 +#, php-format +msgid "The project path %s could not be created." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:205 +#, php-format +msgid "Could not parse key information: %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:243 +#, php-format +msgid "Could not create configuration directory \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 +#, php-format +msgid "Could not create symlink \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:269 +#, php-format +msgid "Could not write configuration file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 +#, php-format +msgid "Could not parse usher configuration in \"%s\": %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:295 +#, php-format +msgid "usher configuration already contains a server entry named \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 +#, php-format +msgid "Could not write usher configuration file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:366 +#, php-format +msgid "Could not write write-permissions file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:389 +#, php-format +msgid "Could not write read-permissions file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:406 +#, php-format +msgid "Could not remove symlink \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:465 +#, php-format +msgid "One or more paths underknees %s could not be deleted." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:477 +#, php-format +msgid "Could not delete client private key %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676 +#, php-format +msgid "Could not parse read-permissions for project \"%s\": %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 +#, php-format +msgid "Could not write read-permissions for project \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 +#, php-format +msgid "Could not write write-permissions file for project \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:790 +#, php-format +msgid "The project path %s does not exists." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:808 +#, php-format +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/Timeline/Paginator.php:49 +msgid "Today" +msgstr "Danes" + +#: 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: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/Tag.php:59 +msgid "tag class" +msgstr "" + +#: IDF/Tag.php:60 +msgid "The class of the tag." +msgstr "" + +#: IDF/Tag.php:73 +msgid "lcname" +msgstr "" + +#: IDF/Tag.php:74 +msgid "Lower case version of the name for fast searching." +msgstr "" + +#: IDF/Key.php:55 +msgid "public key" +msgstr "" + +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." +msgstr "" + +#: IDF/Template/ShowUser.php:51 +msgid "Anonymous" +msgstr "" + +#: IDF/Template/ShowUser.php:54 +msgid "Me" +msgstr "Jaz" + +#: IDF/Template/Markdown.php:81 +msgid "Create this documentation page" +msgstr "" diff --git a/src/IDF/locale/zh_CN/idf.po b/src/IDF/locale/zh_CN/idf.po index e3de821..6c67c41 100644 --- a/src/IDF/locale/zh_CN/idf.po +++ b/src/IDF/locale/zh_CN/idf.po @@ -7,44 +7,179 @@ msgid "" msgstr "" "Project-Id-Version: Indefero\n" "Report-Msgid-Bugs-To: \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" +"POT-Creation-Date: 2011-03-10 10:02+0100\n" +"PO-Revision-Date: 2011-03-04 18:20+0000\n" +"Last-Translator: tommyd \n" "Language-Team: 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/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/IssueComment.php:51 +msgid "issue" +msgstr "问题" -#: IDF/Commit.php:63 IDF/Issue.php:67 IDF/IssueComment.php:65 -#: IDF/IssueFile.php:57 IDF/Review/Comment.php:69 IDF/Review.php:80 -#: IDF/Upload.php:85 IDF/WikiPage.php:78 IDF/WikiRevision.php:79 +#: IDF/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/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 +#: 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 +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 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" @@ -55,799 +190,6 @@ 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 "" @@ -856,477 +198,89 @@ msgstr "" msgid "model id" msgstr "" -#: IDF/gettexttemplates/idf/admin/base.html.php:3 -msgid "Project Summary" -msgstr "项目摘要" +#: IDF/Gconf.php:73 IDF/Conf.php:61 +msgid "key" +msgstr "键" -#: IDF/gettexttemplates/idf/admin/base.html.php:6 -msgid "Issue Tracking" -msgstr "问题跟踪" +#: IDF/Gconf.php:79 IDF/Conf.php:67 +msgid "value" +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/gettexttemplates/idf/faq-api.html.php:4 -#: IDF/gettexttemplates/idf/faq.html.php:35 +#: IDF/Views.php:47 IDF/gettexttemplates/idf/faq.html.php:35 #: IDF/gettexttemplates/idf/gadmin/base.html.php:3 +#: IDF/gettexttemplates/idf/faq-api.html.php:4 #: IDF/gettexttemplates/idf/index.html.php:3 IDF/Views/Admin.php:57 -#: IDF/Views.php:45 msgid "Projects" msgstr "项目列表" +#: IDF/Views.php:90 IDF/gettexttemplates/idf/register/index.html.php:6 +msgid "Create Your Account" +msgstr "注册" + +#: IDF/Views.php:126 IDF/Views.php:152 +msgid "Confirm Your Account Creation" +msgstr "" + +#: IDF/Views.php:172 +msgid "Welcome! You can now participate in the life of your project of choice." +msgstr "" + +#: IDF/Views.php:198 IDF/Views.php:222 IDF/Views.php:263 +msgid "Password Recovery" +msgstr "找回密码" + +#: IDF/Views.php:242 +msgid "" +"Welcome back! Next time, you can use your broswer options to remember the " +"password." +msgstr "欢迎回来!接下来,你可以使用浏览器记住你的密码" + +#: IDF/Views.php:284 +msgid "Here to Help You!" +msgstr "希望这些能帮到你" + +#: IDF/Views.php:300 +msgid "InDefero API (Application Programming Interface)" +msgstr "" + +#: IDF/Scm/Mercurial.php:138 IDF/Scm/Git.php:288 +#, php-format +msgid "Folder %1$s not found in commit %2$s." +msgstr "" + +#: IDF/Scm/Mercurial.php:155 IDF/Scm/Git.php:404 +#, php-format +msgid "Not a valid tree: %s." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:79 +msgid "Monotone client key name or hash not in project conf." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:87 IDF/Plugin/SyncMonotone.php:187 +#, php-format +msgid "The key directory %s could not be created." +msgstr "" + +#: IDF/Scm/Monotone/Stdio.php:98 +#, php-format +msgid "Could not write client key \"%s\"" +msgstr "" + +#: IDF/Scm/Git.php:237 +#, php-format +msgid "Invalid value for the parameter %1$s: %2$s. Use %3$s." +msgstr "" + +#: IDF/EmailAddress.php:49 IDF/Key.php:49 +msgid "user" +msgstr "用户" + +#: IDF/EmailAddress.php:55 +#, fuzzy +msgid "email" +msgstr "Email" + #: IDF/gettexttemplates/idf/faq.html.php:3 msgid "" "

    This is simple:

    \n" @@ -1373,7 +327,7 @@ msgstr "" #: IDF/gettexttemplates/idf/faq.html.php:15 #: IDF/gettexttemplates/idf/faq.html.php:33 -msgid "What is the API and how to use it?" +msgid "What is the API and how is it used?" msgstr "" #: IDF/gettexttemplates/idf/faq.html.php:17 @@ -1432,38 +386,162 @@ msgstr "" msgid "Alt+4: Search (when available)." msgstr "" -#: IDF/gettexttemplates/idf/gadmin/base.html.php:4 -msgid "People" -msgstr "用户列表" - -#: IDF/gettexttemplates/idf/gadmin/base.html.php:5 -msgid "Usher" +#: 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/home.html.php:3 -msgid "You have here access to the administration of the forge." +#: IDF/gettexttemplates/idf/register/confirmation-email.txt.php:3 +#, php-format +msgid "" +"Hello,\n" +"\n" +"You have requested the creation of an account to\n" +"participate in the life of a software project.\n" +"\n" +"To confirm the account please follow this link:\n" +"\n" +"%%url%%\n" +"\n" +"Alternatively, go to this page:\n" +"\n" +"%%urlik%%\n" +"\n" +"and provide the following confirmation key:\n" +"\n" +"%%key%%\n" +"\n" +"If you are not interested any longer in taking\n" +"part in the life of the software project or if\n" +"you can't remember having requested the creation\n" +"of an account, please excuse us and simply ignore\n" +"this email. \n" +"\n" +"Yours faithfully,\n" +"The development team.\n" msgstr "" -#: IDF/gettexttemplates/idf/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:3 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:3 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:3 +msgid "Oops, we found an error in the form." +msgstr "" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:3 -#: IDF/gettexttemplates/idf/main-menu.html.php:6 -msgid "Project List" -msgstr "项目列表" +#: IDF/gettexttemplates/idf/register/inputkey.html.php:4 +msgid "Confirm Your Account" +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:5 +#: IDF/gettexttemplates/idf/register/index.html.php:7 +#: IDF/gettexttemplates/idf/register/confirmation.html.php:7 +#: IDF/gettexttemplates/idf/gadmin/projects/delete.html.php:21 +#: IDF/gettexttemplates/idf/gadmin/projects/update.html.php:16 +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:5 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:14 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:13 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:7 +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:5 +#: IDF/gettexttemplates/idf/wiki/create.html.php:7 +#: IDF/gettexttemplates/idf/wiki/delete.html.php:10 +#: IDF/gettexttemplates/idf/wiki/deletepage.html.php:7 +#: IDF/gettexttemplates/idf/wiki/update.html.php:7 +#: IDF/gettexttemplates/idf/review/create.html.php:12 +#: IDF/gettexttemplates/idf/review/view.html.php:43 +#: IDF/gettexttemplates/idf/issues/create.html.php:14 +#: IDF/gettexttemplates/idf/issues/view.html.php:25 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:7 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:9 +#: IDF/gettexttemplates/idf/downloads/view.html.php:8 +msgid "Cancel" +msgstr "取消" -#: IDF/gettexttemplates/idf/gadmin/projects/base.html.php:5 -msgid "Change Project Details" -msgstr "修改项目摘要" +#: IDF/gettexttemplates/idf/register/inputkey.html.php:6 +#: IDF/gettexttemplates/idf/user/changeemail.html.php:6 +#: IDF/gettexttemplates/idf/user/passrecovery-inputkey.html.php:6 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:10 +msgid "Instructions" +msgstr "提示" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:7 +msgid "" +"Use your email software to read your emails and open your confirmation " +"email. Either click directly on the confirmation link or copy/paste the " +"confirmation key in the box and submit the form." +msgstr "" + +#: IDF/gettexttemplates/idf/register/inputkey.html.php:8 +msgid "" +"Just after providing the confirmation key, you will be able to set your " +"password and start using this website fully." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:3 +msgid "" +"Read the terms and conditions " +"– basically \"Please be nice, we respect you\"." +msgstr "" +"阅读 注册协议 – jerry " +"\"请善用此系统\"." + +#: IDF/gettexttemplates/idf/register/index.html.php:4 +#, php-format +msgid "" +"With your account, you will able to participate in the life of all the " +"projects hosted here. Participating in a software project must be fun, so if " +"you have troubles, you can let us know about your issues " +"at anytime!" +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:5 +#, fuzzy +msgid "Oops, please check the provided login and email address to register." +msgstr "注册失败,请检查一下你提供的账号和Email" + +#: IDF/gettexttemplates/idf/register/index.html.php:8 +msgid "" +"Be sure to provide a valid email address, as we are sending a validation " +"link by email." +msgstr "" + +#: IDF/gettexttemplates/idf/register/index.html.php:9 +msgid "Did you know?" +msgstr "你知道吗?" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:3 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:3 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:3 +msgid "Oops, please check the form for errors." +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/update.html.php:10 +#: IDF/gettexttemplates/idf/user/myaccount.html.php:4 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:4 +msgid "Login:" +msgstr "账号:" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 +msgid "Email:" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:6 +msgid "Enable Your Account" +msgstr "" + +#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 +msgid "" +"This is the last step, but just be sure to have the cookies enabled 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/create.html.php:3 msgid "" @@ -1485,6 +563,26 @@ 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." @@ -1494,6 +592,18 @@ 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 "" @@ -1526,6 +636,15 @@ 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 "代码审核" @@ -1535,6 +654,12 @@ 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 "" @@ -1558,11 +683,18 @@ msgid "Repositories:" msgstr "仓库:" #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:5 -#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11 #: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:16 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:11 msgid "Attachments:" msgstr "附件:" +#: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:6 +#: IDF/gettexttemplates/idf/index.html.php:13 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:10 +#: IDF/gettexttemplates/idf/downloads/view.html.php:15 +msgid "Downloads:" +msgstr "下载:" + #: IDF/gettexttemplates/idf/gadmin/projects/index.html.php:7 msgid "Database:" msgstr "数据库:" @@ -1571,6 +703,21 @@ 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." @@ -1590,29 +737,35 @@ 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/users/base.html.php:3 -#: IDF/Views/Admin.php:201 -msgid "User List" -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: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/projects/base.html.php:5 +msgid "Change Project Details" +msgstr "修改项目摘要" #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:3 msgid "The form contains some errors. Please correct them to create the user." msgstr "" +#: IDF/gettexttemplates/idf/gadmin/users/create.html.php:4 +#: IDF/gettexttemplates/idf/gadmin/users/base.html.php:5 +msgid "Create User" +msgstr "添加用户" + #: IDF/gettexttemplates/idf/gadmin/users/create.html.php:6 msgid "The user password will be sent by email to the user." msgstr "" @@ -1667,13 +820,6 @@ 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" @@ -1683,22 +829,15 @@ msgstr "" msgid "Administrative" msgstr "" -#: IDF/gettexttemplates/idf/gadmin/usher/base.html.php:3 -msgid "Configured servers" -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: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/users/base.html.php:3 +#: IDF/Views/Admin.php:201 +msgid "User List" +msgstr "用户列表" #: IDF/gettexttemplates/idf/gadmin/usher/control.html.php:3 msgid "current server status:" @@ -1800,128 +939,1422 @@ msgstr "" msgid "usher is shut down, not running and not accepting connections" msgstr "" -#: IDF/gettexttemplates/idf/index.atom.php:3 -#, php-format -msgid "Personal project feed for %%user%%." +#: 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 +#, php-format +msgid "" +"If you don't have an account yet, you can create one here." +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:4 +msgid "What is your account information?" +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:5 +msgid "My login is" +msgstr "账号" + +#: IDF/gettexttemplates/idf/login_form.html.php:6 +msgid "My password is" +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:7 +msgid "Sign in" +msgstr "登录" + +#: IDF/gettexttemplates/idf/login_form.html.php:8 +msgid "I lost my password!" +msgstr "忘记密码!" + +#: IDF/gettexttemplates/idf/login_form.html.php:9 +msgid "Welcome." +msgstr "" + +#: IDF/gettexttemplates/idf/login_form.html.php:10 +msgid "It takes less than a minute to create your account." +msgstr "" + +#: IDF/gettexttemplates/idf/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: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 "Secondary Emails" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:8 +msgid "Extra password" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:9 +msgid "" +"This password is used to access some of the external systems managed by our " +"infrastructure. It will be regenerated if you change your password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:10 +msgid "API key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:11 +msgid "" +"Your API key will be regenerated automatically if you change your password." +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:12 +msgid "Update Your Account" +msgstr "更新" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:14 +msgid "Your Current Public Keys" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:15 +msgid "Delete this key" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:16 +msgid "Your additional email addresses" +msgstr "" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:17 +#, fuzzy +msgid "Delete this address" +msgstr "删除此文件" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:18 +msgid "" +"If possible, use your real name. By using your real name, people will have " +"more trust in your comments and remarks." +msgstr "如果可以,请使用你的真名。" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:19 +msgid "" +"The extra password is used to access some of the external systems and the " +"API key is used to interact with this website using a program." +msgstr "扩展密码用于访问外部系统(如svn)和系统API" + +#: IDF/gettexttemplates/idf/user/myaccount.html.php:20 +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 this website fully." +msgstr "" + +#: IDF/gettexttemplates/idf/user/passrecovery.html.php:6 +msgid "Reset Your Password" +msgstr "重置密码" + +#: IDF/gettexttemplates/idf/user/passrecovery-ask.html.php:3 +#, fuzzy +msgid "" +"Oops, please check the provided login or email address to recover your " +"password." +msgstr "出错了,请检查你提供的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:175 +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 +#: IDF/gettexttemplates/idf/source/commit.html.rej.php:4 +#: IDF/gettexttemplates/idf/source/commit.html.orig.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 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/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/source/commit.html.orig.php:7 +#: IDF/gettexttemplates/idf/review/view.html.php:28 +msgid "Commit:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:8 +msgid "Created at:" +msgstr "创建于:" + +#: IDF/gettexttemplates/idf/source/commit-created-email.txt.php:10 +msgid "Commit details:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:3 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:3 +#: IDF/gettexttemplates/idf/review/view.html.php:3 +#, php-format +msgid "%%ndiff%% diff" +msgid_plural "%%ndiff%% diffs" +msgstr[0] "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:4 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:4 +msgid "Date:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:5 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:5 +#: IDF/gettexttemplates/idf/review/view.html.php:27 +msgid "Author:" +msgstr "作者:" + +#: IDF/gettexttemplates/idf/source/commit.html.php:6 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:6 +msgid "Branch:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:8 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:8 +#: IDF/gettexttemplates/idf/review/view.html.php:29 +msgid "View corresponding source tree" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:9 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:9 +msgid "Parents:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:10 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:10 +#: IDF/gettexttemplates/idf/source/changelog.html.php:6 +msgid "View corresponding commit" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:11 +#: IDF/gettexttemplates/idf/source/commit.html.rej.php:3 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:11 +msgid "Message:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:13 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:13 +msgid "deleted" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.php:17 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:14 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:17 +msgid "full" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:15 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:15 +msgid "renamed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:16 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:16 +msgid "added" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:18 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:18 +msgid "modified" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:19 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:19 +msgid "properies changed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:20 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:20 +msgid "removed" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:21 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:21 +msgid "File differences" +msgstr "" + +#: IDF/gettexttemplates/idf/source/commit.html.php:22 +#: IDF/gettexttemplates/idf/source/mtn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/file.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:11 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:22 +#: IDF/gettexttemplates/idf/source/git/file.html.php:6 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:11 +#: IDF/gettexttemplates/idf/review/view.html.php:34 +#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 +msgid "Archive" +msgstr "归档" + +#: IDF/gettexttemplates/idf/source/commit.html.php:23 +#: IDF/gettexttemplates/idf/source/commit.html.orig.php:23 +#: IDF/gettexttemplates/idf/review/view.html.php:35 +msgid "Download the corresponding diff file" +msgstr "" + +#: 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:292 IDF/Form/Upload.php:59 +msgid "File" +msgstr "文件" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:7 +#: IDF/gettexttemplates/idf/source/changelog.html.php:3 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:7 +#: IDF/Views/Project.php:152 +msgid "Age" +msgstr "时间" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:8 +#: IDF/gettexttemplates/idf/source/changelog.html.php:4 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:8 +msgid "Message" +msgstr "消息" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:9 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:9 +#: IDF/Views/Download.php:66 IDF/Views/Download.php:294 +msgid "Size" +msgstr "大小" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:10 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:10 +msgid ":" +msgstr ":" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:12 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:12 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:12 +msgid "Download this version" +msgstr "下载这个版本" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:13 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:13 +msgid "or" +msgstr "或" + +#: IDF/gettexttemplates/idf/source/mtn/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/mercurial/tree.html.php:14 +#: IDF/gettexttemplates/idf/source/git/tree.html.php:14 +#: IDF/gettexttemplates/idf/main-menu.html.php:10 +msgid "Help" +msgstr "帮助" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the monotone software to manage the source\n" +"code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:6 +#: IDF/gettexttemplates/idf/source/git/help.html.php:7 +msgid "To make a first commit in the repository, perform the following steps:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:7 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:7 +#: IDF/gettexttemplates/idf/source/git/help.html.php:8 +#, php-format +msgid "Find here more details on how to access %%project%% source code." +msgstr "" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/svn/help.html.php:8 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:8 +#: IDF/gettexttemplates/idf/source/git/help.html.php:9 +msgid "Command-Line Access" +msgstr "获取代码" + +#: IDF/gettexttemplates/idf/source/mtn/help.html.php:9 +#: IDF/gettexttemplates/idf/source/git/help.html.php:10 +msgid "First Commit" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/commit.html.php:3 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:10 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:15 +#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:3 +msgid "Revision:" +msgstr "版本:" + +#: IDF/gettexttemplates/idf/source/svn/commit.html.php:4 +#: IDF/gettexttemplates/idf/source/svn/file.html.php:11 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:16 +#: IDF/gettexttemplates/idf/source/svn/changelog.html.php:4 +msgid "Go to revision" +msgstr "切换版本" + +#: IDF/gettexttemplates/idf/source/svn/file.html.php:6 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:11 +msgid "Property" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/file.html.php:7 +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:12 +msgid "set to:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:8 +msgid "Rev" +msgstr "版本" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:17 +msgid "Branches:" +msgstr "分支" + +#: IDF/gettexttemplates/idf/source/svn/tree.html.php:18 +msgid "Tags:" +msgstr "标签:" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the subversion software to manage the source\n" +"code." +msgstr "%%project%% 项目使用 subversion 管理源代码" + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:6 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:6 +#, php-format +msgid "" +"To get write access to the repository, you need to use your username and " +"your extra password." +msgstr " " + +#: IDF/gettexttemplates/idf/source/svn/help.html.php:9 +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:9 +msgid "Write Access Authentication" +msgstr "提交代码认证" + +#: IDF/gettexttemplates/idf/source/mercurial/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the Mercurial software to manage the source\n" +"code." +msgstr "%%project%% 项目使用 Mercurial 管理源代码" + +#: IDF/gettexttemplates/idf/source/base.html.php:3 +msgid "Source Tree" +msgstr "源码" + +#: IDF/gettexttemplates/idf/source/base.html.php:4 +msgid "Change Log" +msgstr "修改日志" + +#: IDF/gettexttemplates/idf/source/base.html.php:5 +#: IDF/gettexttemplates/idf/source/changelog.html.php:7 +#: IDF/Form/ReviewCreate.php:74 +msgid "Commit" +msgstr "" + +#: IDF/gettexttemplates/idf/source/base.html.php:6 +msgid "How To Get The Code" +msgstr "获取代码" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:5 +msgid "Parent:" +msgstr "" + +#: IDF/gettexttemplates/idf/source/changelog.html.php:8 +msgid "by" +msgstr "" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:3 +#, php-format +msgid "" +"The team behind %%project%% is using\n" +"the git software to manage the source\n" +"code." +msgstr " %%project%% 项目使用 git 管理源代码" + +#: IDF/gettexttemplates/idf/source/git/help.html.php:6 +#, php-format +msgid "" +"You may need to provide your SSH key. The " +"synchronization of your SSH key can take a couple of minutes. You can learn " +"more about SSH key authentication." +msgstr "" + +#: IDF/gettexttemplates/idf/main-menu.html.php:3 +#, php-format +msgid "" +"Welcome, %%user%%." +msgstr "" +"欢迎,%%user%%" + +#: IDF/gettexttemplates/idf/main-menu.html.php:4 +msgid "Sign Out" +msgstr "退出" + +#: IDF/gettexttemplates/idf/main-menu.html.php:5 +msgid "Sign in or create your account" +msgstr "登录或创建新用户" + +#: IDF/gettexttemplates/idf/main-menu.html.php:7 +#: IDF/gettexttemplates/idf/index.html.php:6 +#: IDF/Form/Admin/ProjectCreate.php:55 IDF/Form/TabsConf.php:77 +msgid "Private project" +msgstr "私有项目" + +#: IDF/gettexttemplates/idf/main-menu.html.php:8 IDF/Views/Admin.php:42 +msgid "Forge Management" +msgstr "系统管理" + +#: IDF/gettexttemplates/idf/main-menu.html.php:9 +msgid "Help and accessibility features" +msgstr "帮助和辅助功能" + #: IDF/gettexttemplates/idf/index.html.php:4 msgid "No projects managed with InDefero were found." msgstr "没有合适项目" #: IDF/gettexttemplates/idf/index.html.php:7 #, fuzzy -msgid "Projects:" -msgstr "项目列表" +msgid "Forge statistics" +msgstr "项目统计" #: IDF/gettexttemplates/idf/index.html.php:8 -#, fuzzy -msgid "Members:" -msgstr "注册时间" +msgid "Projects:" +msgstr "" #: IDF/gettexttemplates/idf/index.html.php:9 -#, fuzzy -msgid "Issues:" -msgstr "问题跟踪" +msgid "Members:" +msgstr "" #: IDF/gettexttemplates/idf/index.html.php:10 -#, fuzzy -msgid "Commits:" -msgstr "评论" +msgid "Issues:" +msgstr "" #: IDF/gettexttemplates/idf/index.html.php:11 -#, fuzzy +msgid "Commits:" +msgstr "" + +#: IDF/gettexttemplates/idf/index.html.php:12 msgid "Documentations:" -msgstr "文档" +msgstr "" -#: IDF/gettexttemplates/idf/index.html.php:13 -#, fuzzy +#: IDF/gettexttemplates/idf/index.html.php:14 msgid "Code reviews:" -msgstr "代码审核" - -#: IDF/gettexttemplates/idf/issues/attachment.html.php:3 -#, php-format -msgid "Attachment to issue %%issue.id%%" msgstr "" -#: IDF/gettexttemplates/idf/issues/attachment.html.php:5 -#: IDF/gettexttemplates/idf/review/view.html.php: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 +#: IDF/gettexttemplates/idf/base-full.html.php:3 +#: IDF/gettexttemplates/idf/base.html.php:3 #, php-format msgid "" -"

    Open issues: %%open%%

    \n" -"

    Closed issues: %%closed%%

    \n" +"Sign in or create your account to create issues or " +"add comments" +msgstr "登录 以便提交问题或评论" + +#: IDF/gettexttemplates/idf/base-full.html.php:4 +#: IDF/gettexttemplates/idf/base.html.php:4 +msgid "Project Home" +msgstr "项目首页" + +#: IDF/gettexttemplates/idf/base-full.html.php:6 +#: IDF/gettexttemplates/idf/admin/base.html.php:5 +#: IDF/gettexttemplates/idf/base.html.php:6 IDF/Form/TabsConf.php:40 +msgid "Documentation" +msgstr "文档" + +#: IDF/gettexttemplates/idf/base-full.html.php:8 +#: IDF/gettexttemplates/idf/admin/base.html.php:7 +#: IDF/gettexttemplates/idf/base.html.php:8 IDF/Form/TabsConf.php:41 +msgid "Source" +msgstr "源代码" + +#: IDF/gettexttemplates/idf/base-full.html.php:9 +#: IDF/gettexttemplates/idf/base.html.php:9 IDF/Form/TabsConf.php:39 +msgid "Code Review" +msgstr "代码审核" + +#: IDF/gettexttemplates/idf/base-full.html.php:10 +#: IDF/gettexttemplates/idf/base.html.php:10 +msgid "Project Management" +msgstr "管理" + +#: IDF/gettexttemplates/idf/review/create.html.php:3 +#, fuzzy +msgid "" +"

    To start a code review, you need to provide:

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

    开放的问题: %%open%%

    \n" -"

    已关闭的问题: %%closed%%\n" +"

    提交的问题是,不要忘记提供以下资料:

    \n" +"
      \n" +"
    • 如何发现此问题,怎么操作可以遇到此问题
    • \n" +"
    • 你使用的软件版本和操作系统版本
    • \n" +"
    • 任何可以帮助开发人员解决问题的信息
    • \n" +"
    " -#: IDF/gettexttemplates/idf/issues/by-label.html.php:7 -msgid "Label:" -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/issues/by-label.html.php:8 -msgid "Completion:" -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/create.html.php:3 msgid "" @@ -1946,15 +2379,6 @@ 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 "提交问题" @@ -1971,42 +2395,35 @@ msgstr "附件" msgid "Attach another file" 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: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: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/search.html.php:4 +msgid "Found issues:" +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:3 +msgid "The following issue has been updated:" +msgstr "你关注的问题更新了:" +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:11 +msgid "Comments (last first):" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/issue-updated-email.txt.php:17 +#: IDF/gettexttemplates/idf/issues/issue-created-email.txt.php:12 +msgid "Issue:" +msgstr "" + +#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:3 #: IDF/gettexttemplates/idf/issues/forge-watchlist.html.php:3 #: IDF/gettexttemplates/idf/issues/index.html.php:3 -#: IDF/gettexttemplates/idf/issues/project-watchlist.html.php:3 #, php-format msgid "" "

    Open issues: %%open%%

    \n" @@ -2014,88 +2431,36 @@ 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." @@ -2157,81 +2522,56 @@ msgstr "提交修改" msgid "Followed by:" msgstr "关注:" -#: IDF/gettexttemplates/idf/login_form.html.php:3 +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:3 #, php-format msgid "" -"If you don't have an account yet, you can create one here." -msgstr "" +"See the %%nb_submit_closed%% closed." +msgid_plural "" +"See the %%nb_submit_closed%% closed." +msgstr[0] "" -#: 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 +#: IDF/gettexttemplates/idf/issues/my-issues.html.php:4 #, php-format msgid "" -"Welcome, %%user%%." +"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%%" msgstr "" -"欢迎,%%user%%" -#: IDF/gettexttemplates/idf/main-menu.html.php:4 -msgid "Sign Out" -msgstr "退出" +#: IDF/gettexttemplates/idf/issues/base.html.php:3 +msgid "Open 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:5 +msgid "My Issues" +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:6 +msgid "My watch list" +msgstr "" -#: IDF/gettexttemplates/idf/main-menu.html.php:9 -msgid "Help and accessibility features" -msgstr "帮助和辅助功能" +#: IDF/gettexttemplates/idf/issues/base.html.php:8 +msgid "Back to the issue" +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:3 +msgid "Latest updates" +msgstr "最近更新" -#: IDF/gettexttemplates/idf/project/home.html.php:4 #: IDF/gettexttemplates/idf/project/timeline.html.php:5 +#: IDF/gettexttemplates/idf/project/home.html.php:4 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 "特色下载" @@ -2257,1083 +2597,110 @@ msgstr "管理员" msgid "Happy Crew" msgstr "成员" -#: IDF/gettexttemplates/idf/project/timeline.html.php:3 -msgid "Latest updates" -msgstr "最近更新" - -#: IDF/gettexttemplates/idf/project/timeline.html.php:6 -msgid "Filter by type" +#: 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/register/confirmation-email.txt.php:3 +#: IDF/gettexttemplates/idf/downloads/delete.html.php:4 #, 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" +"Instead of deleting the file, you could mark it as " +"deprecated." 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:6 +msgid "Delete File" +msgstr "删除文件" -#: IDF/gettexttemplates/idf/register/confirmation.html.php:5 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:5 -msgid "Email:" -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:6 -msgid "Enable Your Account" -msgstr "" - -#: IDF/gettexttemplates/idf/register/confirmation.html.php:8 -#: IDF/gettexttemplates/idf/user/passrecovery.html.php:8 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:3 msgid "" -"This is the last step, but just be sure to have the cookies enabled to log in afterwards." +"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/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 +#: IDF/gettexttemplates/idf/downloads/submit.html.php:6 #, 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!" +"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/register/index.html.php:5 -msgid "Oups, please check the provided login and email address to register." -msgstr "注册失败,请检查一下你提供的账号和Email" +#: 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/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/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 +#: 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:214 +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 msgid "" -"By %%who%%, %%c.creation_dtime%%, on file:\n" -"%%c.cfile%%\n" +"Attention! This file is marked as deprecated, download it " +"only if you are sure you need this specific version." 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" +#: IDF/gettexttemplates/idf/downloads/view.html.php:5 +msgid "Changes" msgstr "修改" -#: IDF/IssueComment.php:73 -msgid "Serialized array of the changes in the issue." +#: IDF/gettexttemplates/idf/downloads/view.html.php:6 +msgid "The form contains some errors. Please correct them to update the 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:7 +msgid "Update File" +msgstr "更新文件" -#: IDF/IssueComment.php:182 -#, php-format -msgid "%s: Comment on 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:" 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 "文件名" @@ -3358,147 +2725,6 @@ msgstr "图片" msgid "Other" 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." -msgstr "" - -#: IDF/Plugin/SyncMercurial.php:78 IDF/Plugin/SyncSvn.php:81 -#, php-format -msgid "The repository %s already exists." -msgstr "" - -#: IDF/Plugin/SyncMercurial.php:142 -#, php-format -msgid "%s does not exist or is not writable." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:86 IDF/Plugin/SyncMonotone.php:457 -#: IDF/Plugin/SyncMonotone.php:783 -msgid "\"mtn_repositories\" must be defined in your configuration file." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:93 IDF/Plugin/SyncMonotone.php:447 -msgid "\"mtn_usher_conf\" does not exist or is not writable." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:100 -#, php-format -msgid "Could not find mtn-post-push script \"%s\"." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:135 -#, php-format -msgid "The configuration file %s is missing." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:144 -#, php-format -msgid "The project path %s already exists." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:150 -#, php-format -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" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:243 -#, php-format -msgid "Could not create configuration directory \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 -#, php-format -msgid "Could not create symlink \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:269 -#, php-format -msgid "Could not write configuration file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 -#, php-format -msgid "Could not parse usher configuration in \"%s\": %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:295 -#, php-format -msgid "usher configuration already contains a server entry named \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 -#, php-format -msgid "Could not write usher configuration file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:366 -#, php-format -msgid "Could not write write-permissions file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:389 -#, php-format -msgid "Could not write read-permissions file \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:406 -#, php-format -msgid "Could not remove symlink \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:465 -#, php-format -msgid "One or more paths underknees %s could not be deleted." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:477 -#, php-format -msgid "Could not delete client private key %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676 -#, php-format -msgid "Could not parse read-permissions for project \"%s\": %s" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 -#, php-format -msgid "Could not write read-permissions for project \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 -#, php-format -msgid "Could not write write-permissions file for project \"%s\"" -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:790 -#, php-format -msgid "The project path %s does not exists." -msgstr "" - -#: IDF/Plugin/SyncMonotone.php:808 -#, php-format -msgid "The command \"%s\" could not be executed." -msgstr "" - #: IDF/Project.php:62 IDF/Tag.php:66 msgid "name" msgstr "名称" @@ -3517,6 +2743,11 @@ msgstr "" 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 "说明" @@ -3534,82 +2765,6 @@ msgstr "私有" msgid "Project \"%s\" not found." msgstr "" -#: IDF/Review/Comment.php:55 IDF/Review/Patch.php:80 -msgid "patch" -msgstr "补丁" - -#: IDF/Review/Comment.php:83 -msgid "vote" -msgstr "" - -#: IDF/Review/Comment.php:139 IDF/Review/Patch.php:151 -#, php-format -msgid "" -"Review %3$d, %4$s" -msgstr "" - -#: IDF/Review/Comment.php:141 -#, php-format -msgid "Update of review %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 "" @@ -3626,201 +2781,161 @@ msgstr "" msgid "ponderated occurence" msgstr "" -#: IDF/Tag.php:59 -msgid "tag class" +#: IDF/Issue.php:76 +msgid "owner" +msgstr "所有者" + +#: IDF/Issue.php:84 IDF/WikiPage.php:86 +msgid "interested users" msgstr "" -#: IDF/Tag.php:60 -msgid "The class of the tag." +#: IDF/Issue.php:85 +msgid "" +"Interested users will get an email notification when the issue is changed." msgstr "" -#: IDF/Tag.php:73 -msgid "lcname" -msgstr "" - -#: IDF/Tag.php:74 -msgid "Lower case version of the name for fast searching." -msgstr "" - -#: IDF/Template/Markdown.php:74 -msgid "Create this documentation page" -msgstr "" - -#: IDF/Template/ShowUser.php:51 -msgid "Anonymous" -msgstr "匿名" - -#: IDF/Template/ShowUser.php:54 -msgid "Me" -msgstr "" - -#: IDF/Timeline/Paginator.php:49 -msgid "Today" -msgstr "今天" - -#: IDF/Upload.php:70 -msgid "file" -msgstr "文件" - -#: 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 +#: IDF/Issue.php:196 #, php-format -msgid "Download %2$d, %3$s" +msgid "Creation of issue %d, by %s" msgstr "" -#: IDF/Upload.php:192 +#: IDF/Issue.php:206 #, php-format -msgid "Addition of download %d, by %s" -msgstr "" +msgid "%s: Issue %d created - %s" +msgstr "%s: Issue %d created - %s" -#: IDF/Upload.php:202 +#: IDF/Issue.php:272 #, php-format -msgid "%s: Download %d added - %s" +msgid "Issue %s - %s (%s)" msgstr "" -#: IDF/Upload.php:244 +#: IDF/Issue.php:318 #, php-format -msgid "New download - %s (%s)" -msgstr "上传 - %s (%s)" - -#: IDF/Views/Admin.php:60 -msgid "This table shows the projects in the forge." +msgid "Updated Issue %s - %s (%s)" msgstr "" -#: IDF/Views/Admin.php:65 -msgid "Short Name" -msgstr "短名称" +#: IDF/Views/Wiki.php:41 +#, php-format +msgid "%s Documentation" +msgstr "%s 文档" -#: IDF/Views/Admin.php:67 -msgid "Repository Size" -msgstr "仓库大小" +#: IDF/Views/Wiki.php:48 +msgid "This table shows the documentation pages." +msgstr "" -#: IDF/Views/Admin.php:73 -msgid "No projects were found." -msgstr "没有项目" +#: IDF/Views/Wiki.php:61 IDF/Views/Wiki.php:106 IDF/Views/Wiki.php:147 +msgid "Page Title" +msgstr "标题" -#: IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 IDF/Views/Wiki.php:312 +#: IDF/Views/Wiki.php:62 IDF/Views/Wiki.php:107 IDF/Views/Wiki.php:148 +#: 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/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: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:312 IDF/Views/Admin.php:93 IDF/Views/Admin.php:251 #, 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 +#: IDF/Views/Wiki.php:324 #, 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." +msgid "The page %s has been updated." 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." +#: IDF/Views/Wiki.php:362 +msgid "The documentation page has been deleted." msgstr "" -#: IDF/Views/Admin.php:276 -msgid "The user has been updated." -msgstr "" - -#: IDF/Views/Admin.php:309 +#: IDF/Views/Wiki.php:370 #, php-format -msgid "The user %s has been created." +msgid "Delete Page %s" 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 +#: IDF/Views/Source.php:40 #, php-format -msgid "The server \"%s\" has been started" -msgstr "" +msgid "%s Source Help" +msgstr "%s 源代码帮助" -#: IDF/Views/Admin.php:420 +#: IDF/Views/Source.php:58 #, php-format -msgid "The server \"%s\" has been stopped" +msgid "%s Invalid Revision" msgstr "" -#: IDF/Views/Admin.php:425 +#: IDF/Views/Source.php:81 #, php-format -msgid "The server \"%s\" has been killed" +msgid "%s Ambiguous Revision" msgstr "" -#: IDF/Views/Admin.php:445 +#: IDF/Views/Source.php:106 #, php-format -msgid "Open connections for \"%s\"" -msgstr "" +msgid "%1$s %2$s Change Log" +msgstr "%1$s %2$s 修改日志" -#: IDF/Views/Admin.php:450 +#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 #, php-format -msgid "no connections for server \"%s\"" +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/Admin.php:471 -msgid "Yes" -msgstr "是" - -#: IDF/Views/Admin.php:471 -msgid "No" -msgstr "不" +#: IDF/Views/Source.php:304 +#, php-format +msgid "%s Commit Details - %s" +msgstr "" #: IDF/Views/Download.php:45 #, php-format @@ -3873,6 +2988,113 @@ msgstr "" 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" @@ -3884,13 +3106,21 @@ 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 +#: IDF/Views/Issue.php:620 IDF/Views/User.php:81 IDF/Views/Review.php:57 msgid "Id" msgstr "编号" +#: 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/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:141 IDF/Views/Issue.php:223 #: IDF/Views/Issue.php:298 IDF/Views/Issue.php:385 IDF/Views/Issue.php:564 -#: IDF/Views/Issue.php:623 IDF/Views/Review.php:60 IDF/Views/User.php:85 +#: IDF/Views/Issue.php:623 IDF/Views/User.php:85 IDF/Views/Review.php:60 msgid "Last Updated" msgstr "最后更新" @@ -4029,91 +3259,46 @@ msgstr "" msgid "On your watch list." msgstr "" -#: IDF/Views/Project.php:72 -msgid "All Updates" +#: IDF/Views/User.php:59 +msgid "Your Dashboard - Working Issues" +msgstr "你的任务" + +#: IDF/Views/User.php:62 +msgid "Your Dashboard - Submitted Issues" msgstr "" -#: IDF/Views/Project.php:74 -msgid "Issues and Comments" +#: 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/Project.php:76 -msgid "Documents" +#: IDF/Views/User.php:121 +msgid "Your personal information has been updated." +msgstr "你的个人资料更新成功" + +#: IDF/Views/User.php:133 +msgid "Your Account" +msgstr "账户" + +#: IDF/Views/User.php:157 +msgid "The public key has been deleted." msgstr "" -#: IDF/Views/Project.php:77 -msgid "Reviews and Patches" +#: IDF/Views/User.php:177 +#, fuzzy +msgid "The address has been deleted." +msgstr "项目删除成功" + +#: IDF/Views/User.php:200 +msgid "Confirm The Email Change" 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 +#: IDF/Views/User.php:232 #, 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." +msgid "Your new email address \"%s\" has been validated. Thank you!" msgstr "" #: IDF/Views/Review.php:41 @@ -4144,203 +3329,848 @@ msgstr "" msgid "Your code review %d has been published." msgstr "" -#: IDF/Views/Source.php:40 +#: 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 "%s Source Help" -msgstr "%s 源代码帮助" +msgid "Delete %s Project" +msgstr "删除 %s 项目" -#: IDF/Views/Source.php:58 +#: 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 "%s Invalid Revision" +msgid "The user %s has been created." msgstr "" -#: IDF/Views/Source.php:81 +#: 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 "%s Ambiguous Revision" +msgid "The server \"%s\" has been started" msgstr "" -#: IDF/Views/Source.php:106 +#: IDF/Views/Admin.php:420 #, php-format -msgid "%1$s %2$s Change Log" -msgstr "%1$s %2$s 修改日志" +msgid "The server \"%s\" has been stopped" +msgstr "" -#: IDF/Views/Source.php:146 IDF/Views/Source.php:227 IDF/Views/Source.php:359 +#: IDF/Views/Admin.php:425 #, php-format -msgid "%1$s %2$s Source Tree" -msgstr "%1$s %2$s 源码树" +msgid "The server \"%s\" has been killed" +msgstr "" -#: IDF/Views/Source.php:303 +#: IDF/Views/Admin.php:445 #, php-format -msgid "%s Commit Details" +msgid "Open connections for \"%s\"" msgstr "" -#: IDF/Views/Source.php:304 +#: IDF/Views/Admin.php:450 #, php-format -msgid "%s Commit Details - %s" +msgid "no connections for server \"%s\"" msgstr "" -#: IDF/Views/User.php:59 -msgid "Your Dashboard - Working Issues" -msgstr "你的任务" +#: IDF/Views/Admin.php:471 +msgid "Yes" +msgstr "是" -#: IDF/Views/User.php:62 -msgid "Your Dashboard - Submitted Issues" +#: 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/Views/User.php:89 -msgid "No issues are assigned to you, yeah!" -msgstr "太棒了,没有签给你的问题!" +#: IDF/Form/WikiCreate.php:57 +msgid "PageName" +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" +#: IDF/Form/WikiCreate.php:60 IDF/Form/WikiUpdate.php:50 +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 +#: IDF/Form/WikiCreate.php:66 IDF/Form/WikiUpdate.php:56 msgid "" -"Welcome back! Next time, you can use your broswer options to remember the " -"password." -msgstr "欢迎回来!接下来,你可以使用浏览器记住你的密码" +"The page name must contains only letters, digits and the dash (-) character." +msgstr "标题只能包含字母、数字和连接号(-)" -#: IDF/Views.php:282 -msgid "Here to Help You!" -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:101 IDF/Form/IssueCreate.php:62 +#: IDF/Form/WikiUpdate.php:60 IDF/Form/UpdateUpload.php:51 +msgid "Description" +msgstr "描述" -#: IDF/Views.php:298 -msgid "InDefero API (Application Programming Interface)" +#: 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/WikiPage.php:62 -msgid "title" -msgstr "标题" +#: IDF/Form/WikiCreate.php:114 IDF/Form/WikiUpdate.php:125 +msgid "A page with this title already exists." +msgstr "" -#: IDF/WikiPage.php:63 +#: 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:112 +#: IDF/Form/IssueUpdate.php:232 IDF/Form/WikiDelete.php:59 +#: IDF/Form/UserAccount.php:216 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 +msgid "For security reasons, 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 msgid "" -"The title of the page must only contain letters, digits or the dash " -"character. For example: My-new-Wiki-Page." +"The login must be between 3 and 15 characters long and contains only letters " +"and digits." +msgstr "账号必须是3至15位的字母或数字组成的字符串" + +#: IDF/Form/Admin/UserCreate.php:69 IDF/Form/Admin/UserUpdate.php:57 +msgid "Email" +msgstr "Email" + +#: IDF/Form/Admin/UserCreate.php:71 +msgid "" +"Double check the email address as the password is sent directly to the user." msgstr "" -#: IDF/WikiPage.php:71 -msgid "A one line description of the page content." +#: 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/WikiPage.php:196 IDF/WikiRevision.php:167 +#: IDF/Form/Admin/UserCreate.php:92 +msgid "" +"Paste a SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:157 +msgid "Your details to access your forge." +msgstr "" + +#: IDF/Form/Admin/UserCreate.php:189 IDF/Form/UserAccount.php:420 +#: IDF/Form/UserAccount.php:429 #, php-format -msgid "%2$s, %3$s" +msgid "The email \"%s\" is already used." msgstr "" -#: IDF/WikiPage.php:198 +#: IDF/Form/Admin/UserCreate.php:198 IDF/Form/Register.php:72 #, php-format -msgid "Creation of page %s, by %s" +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/WikiPage.php:208 +#: IDF/Form/Admin/ProjectCreate.php:77 +msgid "Repository type" +msgstr "仓库类型" + +#: IDF/Form/Admin/ProjectCreate.php:85 +msgid "Remote Subversion repository" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:92 IDF/Form/SourceConf.php:40 +msgid "Repository username" +msgstr "仓库用户名称" + +#: IDF/Form/Admin/ProjectCreate.php:99 IDF/Form/SourceConf.php:47 +msgid "Repository password" +msgstr "仓库用户密码" + +#: IDF/Form/Admin/ProjectCreate.php:106 IDF/Form/Admin/ProjectUpdate.php:59 +msgid "Master branch" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:109 IDF/Form/Admin/ProjectUpdate.php:62 +msgid "" +"This should be a world-wide unique identifier for your project. A reverse " +"DNS notation like \"com.my-domain.my-project\" is a good idea." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:114 IDF/Form/Admin/ProjectUpdate.php:68 +#: IDF/Form/MembersConf.php:46 IDF/Form/TabsConf.php:53 +msgid "Project owners" +msgstr "项目所有者" + +#: IDF/Form/Admin/ProjectCreate.php:123 IDF/Form/Admin/ProjectUpdate.php:76 +#: IDF/Form/MembersConf.php:54 IDF/Form/TabsConf.php:52 +msgid "Project members" +msgstr "项目成员" + +#: IDF/Form/Admin/ProjectCreate.php:136 +msgid "Project template" +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:138 +msgid "" +"Use the given project to initialize the new project. Access rights and " +"general configuration will be taken from the template project." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:185 +msgid "" +"Only a remote repository available through HTTP or HTTPS is allowed. For " +"example \"http://somewhere.com/svn/trunk\"." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:201 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashs and dots as separators." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:211 IDF/Form/Admin/ProjectUpdate.php:101 +msgid "This master branch is already used. Please select another one." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:222 +msgid "" +"This shortname contains illegal characters, please use only letters, digits " +"and dash (-)." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:225 +msgid "The shortname cannot start with the dash (-) character." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:228 +msgid "The shortname cannot end with the dash (-) character." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php:233 +msgid "This shortname is already used. Please select another one." +msgstr "" + +#: IDF/Form/Admin/ProjectCreate.php: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 +#, fuzzy +msgid "" +"The password must be hard for other people to guess, but easy for the user " +"to remember." +msgstr "密码需要别人很难猜到并且方便用户自己记忆" + +#: IDF/Form/Admin/UserUpdate.php:89 +msgid "Confirm password" +msgstr "确认密码" + +#: IDF/Form/Admin/UserUpdate.php: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:164 +#, fuzzy +msgid "If you give staff rights to a user, you really need to trust them." +msgstr "如果你给一个用户工作人员权限,你需要绝对信任他。" + +#: IDF/Form/Admin/UserUpdate.php:176 +#, fuzzy +msgid "" +"If the user is not getting the confirmation email or is abusing the system, " +"you can directly enable or disable their account here." +msgstr "如果用户不能收到确认邮件或滥用系统,你可以在此开启或禁用他的账户" + +#: IDF/Form/Admin/UserUpdate.php:274 +msgid "--- is not a valid first name." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:290 +msgid "" +"A user with this email already exists, please provide another email address." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:301 IDF/Form/UserAccount.php:389 +msgid "For security reason, you cannot upload a file with this extension." +msgstr "" + +#: IDF/Form/Admin/UserUpdate.php:316 IDF/Form/UserAccount.php:452 +msgid "The passwords do not match. Please give them again." +msgstr "" + +#: IDF/Form/Admin/ProjectUpdate.php:90 +msgid "" +"The master branch is empty or contains illegal characters, please use only " +"letters, digits, dashes and dots as separators." +msgstr "" + +#: IDF/Form/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 +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:89 +#: 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:45 +#, fuzzy +msgid "" +"The login must be between 3 and 15 characters long and contain only letters " +"and digits." +msgstr "账号必须是3至15位的字母或数字组成的字符串" + +#: IDF/Form/Register.php:53 +msgid "Your email" +msgstr "你的Email" + +#: IDF/Form/Register.php:55 +#, fuzzy +msgid "We will never send you any unsolicited emails. We hate spam too!" +msgstr "我们永远不会给你发送垃圾邮件,我们也讨厌垃圾邮件!" + +#: IDF/Form/Register.php:60 +msgid "I agree to the terms and conditions." +msgstr "同意注册协议" + +#: IDF/Form/Register.php:88 +msgid "" +"We know, this is boring, but you need to agree with the terms and conditions." +msgstr "" + +#: IDF/Form/Register.php:97 #, php-format -msgid "%s: Documentation page %s added - %s" +msgid "" +"The email \"%s\" is already used. If you need to, click on the help link to " +"recover your password." +msgstr "" + +#: IDF/Form/Register.php:148 +msgid "Confirm the creation of your account." +msgstr "" + +#: IDF/Form/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:166 +msgid "" +"Paste an SSH or monotone public key. Be careful to not provide your private " +"key here!" +msgstr "" + +#: IDF/Form/UserAccount.php:171 +msgid "Add a secondary mail address" +msgstr "" + +#: IDF/Form/UserAccount.php:173 +msgid "You will get a mail to confirm that you own the address you specify." +msgstr "" + +#: IDF/Form/UserAccount.php:200 +msgid "Confirm your new email address." +msgstr "" + +#: IDF/Form/UserAccount.php:203 +#, php-format +msgid "" +"A validation email has been sent to \"%s\" to validate the email address " +"change." +msgstr "" + +#: IDF/Form/UserAccount.php:334 +msgid "" +"Please check the key as it does not appear to be a valid SSH public key." +msgstr "" + +#: IDF/Form/UserAccount.php:354 +msgid "" +"Please check the key as it does not appear to be a valid monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:362 +msgid "Public key looks like neither an SSH nor monotone public key." +msgstr "" + +#: IDF/Form/UserAccount.php:374 +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 to 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:72 +#, fuzzy +msgid "" +"Your password must be hard for other people to guess, but easy for you to " +"remember." +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 @@ -4355,6 +4185,11 @@ msgstr "" 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" @@ -4375,15 +4210,242 @@ msgstr "" msgid "Documentation Page Changed %s - %s (%s)" msgstr "" -#, fuzzy -#~ msgid "here" -#~ msgstr "其它" +#: IDF/Review/Patch.php:52 +msgid "review" +msgstr "" -#~ msgid "Managed Projects:" -#~ msgstr "可用项目" +#: IDF/Review/Patch.php:67 +msgid "commit" +msgstr "" -#~ msgid "Do you have a password?" -#~ msgstr "你有一个密码?" +#: IDF/Review/Patch.php:80 IDF/Review/Comment.php:55 +msgid "patch" +msgstr "补丁" -#~ msgid "No, I am a new here." -#~ 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 +#, php-format +msgid "The repository %s already exists." +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." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:93 IDF/Plugin/SyncMonotone.php:447 +msgid "\"mtn_usher_conf\" does not exist or is not writable." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:100 +#, php-format +msgid "Could not find mtn-post-push script \"%s\"." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:135 +#, php-format +msgid "The configuration file %s is missing." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:144 +#, php-format +msgid "The project path %s already exists." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:150 +#, php-format +msgid "The project path %s could not be created." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:205 +#, php-format +msgid "Could not parse key information: %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:243 +#, php-format +msgid "Could not create configuration directory \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:252 IDF/Plugin/SyncMonotone.php:414 +#, php-format +msgid "Could not create symlink \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:269 +#, php-format +msgid "Could not write configuration file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:284 IDF/Plugin/SyncMonotone.php:489 +#, php-format +msgid "Could not parse usher configuration in \"%s\": %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:295 +#, php-format +msgid "usher configuration already contains a server entry named \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:320 IDF/Plugin/SyncMonotone.php:510 +#, php-format +msgid "Could not write usher configuration file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:366 +#, php-format +msgid "Could not write write-permissions file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:389 +#, php-format +msgid "Could not write read-permissions file \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:406 +#, php-format +msgid "Could not remove symlink \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:465 +#, php-format +msgid "One or more paths underknees %s could not be deleted." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:477 +#, php-format +msgid "Could not delete client private key %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:560 IDF/Plugin/SyncMonotone.php:676 +#, php-format +msgid "Could not parse read-permissions for project \"%s\": %s" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:604 IDF/Plugin/SyncMonotone.php:699 +#, php-format +msgid "Could not write read-permissions for project \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:617 IDF/Plugin/SyncMonotone.php:717 +#, php-format +msgid "Could not write write-permissions file for project \"%s\"" +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:790 +#, php-format +msgid "The project path %s does not exists." +msgstr "" + +#: IDF/Plugin/SyncMonotone.php:808 +#, php-format +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/Timeline/Paginator.php:49 +msgid "Today" +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: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/Tag.php:59 +msgid "tag class" +msgstr "" + +#: IDF/Tag.php:60 +msgid "The class of the tag." +msgstr "" + +#: IDF/Tag.php:73 +msgid "lcname" +msgstr "" + +#: IDF/Tag.php:74 +msgid "Lower case version of the name for fast searching." +msgstr "" + +#: IDF/Key.php:55 +msgid "public key" +msgstr "" + +#: IDF/Key.php:87 +msgid "Invalid or unknown key data detected." +msgstr "" + +#: IDF/Template/ShowUser.php:51 +msgid "Anonymous" +msgstr "匿名" + +#: IDF/Template/ShowUser.php:54 +msgid "Me" +msgstr "" + +#: IDF/Template/Markdown.php:81 +msgid "Create this documentation page" +msgstr "" diff --git a/src/IDF/templates/idf/base-full.html b/src/IDF/templates/idf/base-full.html index d2e69fa..8e19345 100644 --- a/src/IDF/templates/idf/base-full.html +++ b/src/IDF/templates/idf/base-full.html @@ -32,6 +32,7 @@ {block extraheader}{/block} {block pagetitle}{$page_title|strip_tags}{/block}{if $project} - {$project.shortdesc}{/if} + {appversion}
    diff --git a/src/IDF/templates/idf/base-simple.html b/src/IDF/templates/idf/base-simple.html index 39c1a9b..8a0a3d5 100644 --- a/src/IDF/templates/idf/base-simple.html +++ b/src/IDF/templates/idf/base-simple.html @@ -32,6 +32,7 @@ {block extraheader}{/block} {block pagetitle}{$page_title|strip_tags}{/block} + {appversion}
    diff --git a/src/IDF/templates/idf/base.html b/src/IDF/templates/idf/base.html index 0d3cfb1..cfddd85 100644 --- a/src/IDF/templates/idf/base.html +++ b/src/IDF/templates/idf/base.html @@ -32,6 +32,7 @@ {block extraheader}{/block} {block pagetitle}{$page_title|strip_tags}{/block}{if $project} - {$project.shortdesc}{/if} + {appversion}
    diff --git a/src/IDF/templates/idf/gadmin/base.html b/src/IDF/templates/idf/gadmin/base.html index 15e830d..4f8a745 100644 --- a/src/IDF/templates/idf/gadmin/base.html +++ b/src/IDF/templates/idf/gadmin/base.html @@ -31,6 +31,7 @@ {block extraheader}{/block} {block pagetitle}{$page_title|strip_tags}{/block} + {appversion}
    diff --git a/src/IDF/templates/idf/index.html b/src/IDF/templates/idf/index.html index 072e7ae..b093e76 100644 --- a/src/IDF/templates/idf/index.html +++ b/src/IDF/templates/idf/index.html @@ -16,7 +16,7 @@ {/block} {block context}
    -

    Forge statistics

    +

    {trans 'Forge statistics'}

    diff --git a/src/IDF/templates/idf/issues/view.html b/src/IDF/templates/idf/issues/view.html index 4ad9e4e..050460d 100644 --- a/src/IDF/templates/idf/issues/view.html +++ b/src/IDF/templates/idf/issues/view.html @@ -1,7 +1,7 @@ {extends "idf/issues/base.html"} {block titleicon}{if $form} {/if}{/block} {block body} -
    +
    {if $previous_issue_id} Previous issue {/if} diff --git a/src/IDF/templates/idf/project/timeline.html b/src/IDF/templates/idf/project/timeline.html index 9aacd0a..55186ac 100644 --- a/src/IDF/templates/idf/project/timeline.html +++ b/src/IDF/templates/idf/project/timeline.html @@ -13,9 +13,12 @@ {/block} {block context} +

    {trans 'All Updates'}

    {trans 'Filter by type'}
    {foreach $all_model_filters as $filter_key => $filter_name} +{if $filter_key != 'all'} {$filter_name}
    +{/if} {/foreach}

    {/block} diff --git a/src/IDF/templates/idf/source/commit.html b/src/IDF/templates/idf/source/commit.html index b276d03..2c972ed 100644 --- a/src/IDF/templates/idf/source/commit.html +++ b/src/IDF/templates/idf/source/commit.html @@ -9,9 +9,9 @@
    - +{if $cobject.branch} - +{/if} diff --git a/src/IDF/version.php b/src/IDF/version.php new file mode 100644 index 0000000..c6605dc --- /dev/null +++ b/src/IDF/version.php @@ -0,0 +1,5 @@ + '1.1', + 'revision' => '$Format:%H$', +); diff --git a/test/IDF/DiffTest.php b/test/IDF/DiffTest.php new file mode 100644 index 0000000..68e4ca3 --- /dev/null +++ b/test/IDF/DiffTest.php @@ -0,0 +1,30 @@ +assertEquals(unserialize($expectedcontent), + $diff->parse(), + 'parsed diff '.$difffile.' does not match'); + } + } +} + diff --git a/test/bootstrap.php b/test/bootstrap.php new file mode 100644 index 0000000..3cb7f1f --- /dev/null +++ b/test/bootstrap.php @@ -0,0 +1,7 @@ + ++ * ++ * This program is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public License as ++ * published by the Free Software Foundation; version 2 of ++ * the License. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, ++ * MA 02110-1301 USA ++ */ ++ ++Field(ERAM, ByteAcc, NoLock, Preserve) ++{ ++ Offset (0x46), ++ , 4, ++ HPAC, 1 ++} ++ ++Device(AC) ++{ ++ Name(_HID, "ACPI0003") ++ Name(_UID, 0x00) ++ Name(_PCL, Package() { \_SB } ) ++ ++ Method(_PSR, 0, NotSerialized) ++ { ++ return (HPAC) ++ } ++ ++ Method(_STA, 0, NotSerialized) ++ { ++ Return (0x0f) ++ } ++} +Index: src/mainboard/lenovo/x60/acpi/i945_pci_irqs.asl +=================================================================== +--- src/mainboard/lenovo/x60/acpi/i945_pci_irqs.asl (Revision 0) ++++ src/mainboard/lenovo/x60/acpi/i945_pci_irqs.asl (Revision 6368) +@@ -0,0 +1,63 @@ ++/* ++ * This file is part of the coreboot project. ++ * ++ * Copyright (C) 2011 Sven Schnelle ++ * ++ * This program is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public License as ++ * published by the Free Software Foundation; version 2 of ++ * the License. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, ++ * MA 02110-1301 USA ++ */ ++ ++/* This is board specific information: IRQ routing for the ++ * i945 ++ */ ++ ++ ++// PCI Interrupt Routing ++Method(_PRT) ++{ ++ If (PICM) { ++ Return (Package() { ++ Package() { 0x0002ffff, 0, 0, 0x10 }, // VGA ++ Package() { 0x001bffff, 1, 0, 0x11 }, // Audio ++ Package() { 0x001cffff, 0, 0, 0x14 }, // PCI bridge ++ Package() { 0x001cffff, 1, 0, 0x15 }, // PCI bridge ++ Package() { 0x001cffff, 2, 0, 0x16 }, // PCI bridge ++ Package() { 0x001cffff, 3, 0, 0x17 }, // PCI bridge ++ Package() { 0x001dffff, 0, 0, 0x10 }, // USB ++ Package() { 0x001dffff, 1, 0, 0x11 }, // USB ++ Package() { 0x001dffff, 2, 0, 0x12 }, // USB ++ Package() { 0x001dffff, 3, 0, 0x13 }, // USB ++ Package() { 0x001fffff, 0, 0, 0x17 }, // LPC ++ Package() { 0x001fffff, 1, 0, 0x10 }, // IDE ++ Package() { 0x001fffff, 2, 0, 0x10 } // SATA ++ }) ++ } Else { ++ Return (Package() { ++ Package() { 0x0002ffff, 0, \_SB.PCI0.LPCB.LNKA, 0 }, // VGA ++ Package() { 0x001bffff, 1, \_SB.PCI0.LPCB.LNKB, 0 }, // Audio ++ Package() { 0x001cffff, 0, \_SB.PCI0.LPCB.LNKE, 0 }, // PCI ++ Package() { 0x001cffff, 1, \_SB.PCI0.LPCB.LNKF, 0 }, // PCI ++ Package() { 0x001cffff, 2, \_SB.PCI0.LPCB.LNKG, 0 }, // PCI ++ Package() { 0x001cffff, 3, \_SB.PCI0.LPCB.LNKH, 0 }, // PCI ++ Package() { 0x001dffff, 0, \_SB.PCI0.LPCB.LNKA, 0 }, // USB ++ Package() { 0x001dffff, 1, \_SB.PCI0.LPCB.LNKB, 0 }, // USB ++ Package() { 0x001dffff, 2, \_SB.PCI0.LPCB.LNKC, 0 }, // USB ++ Package() { 0x001dffff, 3, \_SB.PCI0.LPCB.LNKD, 0 }, // USB ++ Package() { 0x001fffff, 0, \_SB.PCI0.LPCB.LNKH, 0 }, // LPC ++ Package() { 0x001fffff, 1, \_SB.PCI0.LPCB.LNKA, 0 }, // IDE ++ Package() { 0x001fffff, 2, \_SB.PCI0.LPCB.LNKA, 0 } // SATA ++ }) ++ } ++} +Index: src/mainboard/lenovo/x60/acpi/ich7_pci_irqs.asl +=================================================================== +--- src/mainboard/lenovo/x60/acpi/ich7_pci_irqs.asl (Revision 0) ++++ src/mainboard/lenovo/x60/acpi/ich7_pci_irqs.asl (Revision 6368) +@@ -0,0 +1,46 @@ ++/* ++ * This file is part of the coreboot project. ++ * ++ * Copyright (C) 2007-2009 coresystems GmbH ++ * ++ * This program is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public License as ++ * published by the Free Software Foundation; version 2 of ++ * the License. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, ++ * MA 02110-1301 USA ++ */ ++ ++/* This is board specific information: IRQ routing for the ++ * 0:1e.0 PCI bridge of the ICH7 ++ */ ++ ++If (PICM) { ++ Return (Package() { ++ Package (0x04) { 0x0000FFFF, 0x00, 0x00, 0x10 }, ++ Package (0x04) { 0x0000FFFF, 0x01, 0x00, 0x11 }, ++ Package (0x04) { 0x0000FFFF, 0x02, 0x00, 0x12 }, ++ Package (0x04) { 0x0001FFFF, 0x00, 0x00, 0x10 }, ++ Package (0x04) { 0x0002FFFF, 0x00, 0x00, 0x15 }, ++ Package (0x04) { 0x0002FFFF, 0x01, 0x00, 0x16 }, ++ Package (0x04) { 0x0008FFFF, 0x00, 0x00, 0x14 } ++ }) ++ } Else { ++ Return (Package() { ++ Package (0x04) { 0x0000FFFF, 0x00, \_SB.PCI0.LPCB.LNKA, 0x00 }, ++ Package (0x04) { 0x0000FFFF, 0x01, \_SB.PCI0.LPCB.LNKB, 0x00 }, ++ Package (0x04) { 0x0000FFFF, 0x02, \_SB.PCI0.LPCB.LNKC, 0x00 }, ++ Package (0x04) { 0x0001FFFF, 0x00, \_SB.PCI0.LPCB.LNKA, 0x00 }, ++ Package (0x04) { 0x0002FFFF, 0x00, \_SB.PCI0.LPCB.LNKF, 0x00 }, ++ Package (0x04) { 0x0002FFFF, 0x01, \_SB.PCI0.LPCB.LNKG, 0x00 }, ++ Package (0x04) { 0x0008FFFF, 0x00, \_SB.PCI0.LPCB.LNKE, 0x00 } ++ }) ++} +Index: src/mainboard/lenovo/x60/acpi/platform.asl +=================================================================== +--- src/mainboard/lenovo/x60/acpi/platform.asl (Revision 0) ++++ src/mainboard/lenovo/x60/acpi/platform.asl (Revision 6368) +@@ -0,0 +1,206 @@ ++/* ++ * This file is part of the coreboot project. ++ * ++ * Copyright (C) 2007-2009 coresystems GmbH ++ * ++ * This program is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public License as ++ * published by the Free Software Foundation; version 2 of ++ * the License. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, ++ * MA 02110-1301 USA ++ */ ++ ++/* These come from the dynamically created CPU SSDT */ ++External(PDC0) ++External(PDC1) ++ ++/* The APM port can be used for generating software SMIs */ ++ ++OperationRegion (APMP, SystemIO, 0xb2, 2) ++Field (APMP, ByteAcc, NoLock, Preserve) ++{ ++ APMC, 8, // APM command ++ APMS, 8 // APM status ++} ++ ++/* Port 80 POST */ ++ ++OperationRegion (POST, SystemIO, 0x80, 1) ++Field (POST, ByteAcc, Lock, Preserve) ++{ ++ DBG0, 8 ++} ++ ++/* SMI I/O Trap */ ++Method(TRAP, 1, Serialized) ++{ ++ Store (Arg0, SMIF) // SMI Function ++ Store (0, TRP0) // Generate trap ++ Return (SMIF) // Return value of SMI handler ++} ++ ++/* The _PIC method is called by the OS to choose between interrupt ++ * routing via the i8259 interrupt controller or the APIC. ++ * ++ * _PIC is called with a parameter of 0 for i8259 configuration and ++ * with a parameter of 1 for Local Apic/IOAPIC configuration. ++ */ ++ ++Method(_PIC, 1) ++{ ++ // Remember the OS' IRQ routing choice. ++ Store(Arg0, PICM) ++} ++ ++/* The _PTS method (Prepare To Sleep) is called before the OS is ++ * entering a sleep state. The sleep state number is passed in Arg0 ++ */ ++ ++Method(_PTS,1) ++{ ++ // Call a trap so SMI can prepare for Sleep as well. ++ // TRAP(0x55) ++} ++ ++/* The _WAK method is called on system wakeup */ ++ ++Method(_WAK,1) ++{ ++ // CPU specific part ++ ++ // Notify PCI Express slots in case a card ++ // was inserted while a sleep state was active. ++ ++ // Are we going to S3? ++ If (LEqual(Arg0, 3)) { ++ // .. ++ } ++ ++ // Are we going to S4? ++ If (LEqual(Arg0, 4)) { ++ // .. ++ } ++ ++ // TODO: Windows XP SP2 P-State restore ++ ++ Return(Package(){0,0}) ++} ++ ++// Power notification ++ ++External (\_PR_.CPU0, DeviceObj) ++External (\_PR_.CPU1, DeviceObj) ++ ++Method (PNOT) ++{ ++ If (MPEN) { ++ If(And(PDC0, 0x08)) { ++ Notify (\_PR_.CPU0, 0x80) // _PPC ++ ++ If (And(PDC0, 0x10)) { ++ Sleep(100) ++ Notify(\_PR_.CPU0, 0x81) // _CST ++ } ++ } ++ ++ If(And(PDC1, 0x08)) { ++ Notify (\_PR_.CPU1, 0x80) // _PPC ++ If (And(PDC1, 0x10)) { ++ Sleep(100) ++ Notify(\_PR_.CPU1, 0x81) // _CST ++ } ++ } ++ ++ } Else { // UP ++ Notify (\_PR_.CPU0, 0x80) ++ Sleep(0x64) ++ Notify(\_PR_.CPU0, 0x81) ++ } ++ ++ // Notify the Batteries ++ Notify(\_SB.PCI0.LPCB.EC.BAT0, 0x80) // Execute BAT1 _BST ++ Notify(\_SB.PCI0.LPCB.EC.BAT1, 0x80) // Execute BAT2 _BST ++} ++ ++/* System Bus */ ++ ++Scope(\_SB) ++{ ++ /* This method is placed on the top level, so we can make sure it's the ++ * first executed _INI method. ++ */ ++ Method(_INI, 0) ++ { ++ /* The DTS data in NVS is probably not up to date. ++ * Update temperature values and make sure AP thermal ++ * interrupts can happen ++ */ ++ ++ // TRAP(71) // TODO ++ ++ /* Determine the Operating System and save the value in OSYS. ++ * We have to do this in order to be able to work around ++ * certain windows bugs. ++ * ++ * OSYS value | Operating System ++ * -----------+------------------ ++ * 2000 | Windows 2000 ++ * 2001 | Windows XP(+SP1) ++ * 2002 | Windows XP SP2 ++ * 2006 | Windows Vista ++ * ???? | Windows 7 ++ */ ++ ++ /* Let's assume we're running at least Windows 2000 */ ++ Store (2000, OSYS) ++ ++ If (CondRefOf(_OSI, Local0)) { ++ /* Linux answers _OSI with "True" for a couple of ++ * Windows version queries. But unlike Windows it ++ * needs a Video repost, so let's determine whether ++ * we're running Linux. ++ */ ++ ++ If (_OSI("Linux")) { ++ Store (1, LINX) ++ } ++ ++ If (_OSI("Windows 2001")) { ++ Store (2001, OSYS) ++ } ++ ++ If (_OSI("Windows 2001 SP1")) { ++ Store (2001, OSYS) ++ } ++ ++ If (_OSI("Windows 2001 SP2")) { ++ Store (2002, OSYS) ++ } ++ ++ If (_OSI("Windows 2006")) { ++ Store (2006, OSYS) ++ } ++ } ++ ++ /* And the OS workarounds start right after we know what we're ++ * running: Windows XP SP1 needs to have C-State coordination ++ * enabled in SMM. ++ */ ++ If (LAnd(LEqual(OSYS, 2001), MPEN)) { ++ // TRAP(61) // TODO ++ } ++ ++ /* SMM power state and C4-on-C3 settings need to be updated */ ++ // TRAP(43) // TODO ++ } ++} ++ +Index: src/mainboard/lenovo/x60/acpi/sleepbutton.asl +=================================================================== +--- src/mainboard/lenovo/x60/acpi/sleepbutton.asl (Revision 0) ++++ src/mainboard/lenovo/x60/acpi/sleepbutton.asl (Revision 6368) +@@ -0,0 +1,25 @@ ++/* ++ * This file is part of the coreboot project. ++ * ++ * Copyright (c) 2011 Sven Schnelle ++ * ++ * This program is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public License as ++ * published by the Free Software Foundation; version 2 of ++ * the License. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, ++ * MA 02110-1301 USA ++ */ ++ ++Device(SLPB) ++{ ++ Name (_HID, EisaId ("PNP0C0E")) ++} +Index: src/mainboard/lenovo/x60/acpi/superio.asl +=================================================================== +Index: src/mainboard/lenovo/x60/acpi/video.asl +=================================================================== +--- src/mainboard/lenovo/x60/acpi/video.asl (Revision 0) ++++ src/mainboard/lenovo/x60/acpi/video.asl (Revision 6368) +@@ -0,0 +1,51 @@ ++/* ++ * This file is part of the coreboot project. ++ * ++ * Copyright (c) 2011 Sven Schnelle ++ * ++ * This program is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public License as ++ * published by the Free Software Foundation; version 2 of ++ * the License. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, ++ * MA 02110-1301 USA ++ */ ++ ++Device (DSPC) ++{ ++ Name (_ADR, 0x00020001) ++ OperationRegion (DSPC, PCI_Config, 0x00, 0x100) ++ Field (DSPC, ByteAcc, NoLock, Preserve) ++ { ++ Offset (0xf4), ++ BRTC, 8 ++ } ++ ++ Method(BRTD, 0, NotSerialized) ++ { ++ Store(BRTC, Local0) ++ if (LGreater (Local0, 15)) ++ { ++ Subtract(Local0, 16, Local0) ++ Store(Local0, BRTC) ++ } ++ } ++ ++ Method(BRTU, 0, NotSerialized) ++ { ++ Store (BRTC, Local0) ++ if (LLess(Local0, 0xff)) ++ { ++ Add (Local0, 16, Local0) ++ Store(Local0, BRTC) ++ } ++ } ++} +Index: src/mainboard/lenovo/x60/acpi/ec.asl +=================================================================== +--- src/mainboard/lenovo/x60/acpi/ec.asl (Revision 0) ++++ src/mainboard/lenovo/x60/acpi/ec.asl (Revision 6368) +@@ -0,0 +1,101 @@ ++/* ++ * This file is part of the coreboot project. ++ * ++ * Copyright (c) 2011 Sven Schnelle ++ * ++ * This program is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public License as ++ * published by the Free Software Foundation; version 2 of ++ * the License. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, ++ * MA 02110-1301 USA ++ */ ++ ++Device(EC) ++{ ++ Name (_HID, EISAID("PNP0C09")) ++ Name (_UID, 0) ++ ++ Name (_GPE, 28) ++ Mutex (ECLK, 0) ++ ++ OperationRegion(ERAM, EmbeddedControl, 0x00, 0x100) ++ Field (ERAM, ByteAcc, NoLock, Preserve) ++ { ++ Offset (0x05), ++ HSPA, 1, ++ Offset (0x0C), ++ LEDS, 8, /* LED state */ ++ Offset (0x3B), ++ , 1, ++ KBLT, 1, /* Keyboard Light */ ++ Offset (0x81), ++ PAGE, 8 /* Information Page Selector */ ++ } ++ ++ Method (_CRS, 0) ++ { ++ Name (ECMD, ResourceTemplate() ++ { ++ IO (Decode16, 0x62, 0x62, 1, 1) ++ IO (Decode16, 0x66, 0x66, 1, 1) ++ }) ++ Return (ECMD) ++ } ++ ++ Method (LED, 1, NotSerialized) ++ { ++ Store(Arg0, LEDS) ++ } ++ ++ Method (_INI, 0, NotSerialized) ++ { ++ } ++ ++ /* Sleep Button pressed */ ++ Method(_Q13, 0, NotSerialized) ++ { ++ Notify(\_SB.PCI0.LPCB.EC.SLPB, 0x80) ++ } ++ ++ /* Brightness up GPE */ ++ Method(_Q14, 0, NotSerialized) ++ { ++ \DSPC.BRTU () ++ } ++ ++ /* Brightness down GPE */ ++ Method(_Q15, 0, NotSerialized) ++ { ++ \DSPC.BRTD() ++ } ++ ++ /* AC status change: present */ ++ Method(_Q26, 0, NotSerialized) ++ { ++ Notify (AC, 0x80) ++ Beep(6) ++ } ++ ++ /* AC status change: not present */ ++ Method(_Q27, 0, NotSerialized) ++ { ++ Notify (AC, 0x80) ++ Beep(6) ++ } ++ ++ ++#include "ac.asl" ++#include "battery.asl" ++#include "sleepbutton.asl" ++#include "lid.asl" ++#include "beep.asl" ++} +Index: src/mainboard/lenovo/x60/acpi/lid.asl +=================================================================== +--- src/mainboard/lenovo/x60/acpi/lid.asl (Revision 0) ++++ src/mainboard/lenovo/x60/acpi/lid.asl (Revision 6368) +@@ -0,0 +1,37 @@ ++/* ++ * This file is part of the coreboot project. ++ * ++ * Copyright (c) 2011 Sven Schnelle ++ * ++ * This program is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public License as ++ * published by the Free Software Foundation; version 2 of ++ * the License. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, ++ * MA 02110-1301 USA ++ */ ++ ++Field(ERAM, ByteAcc, NoLock, Preserve) ++{ ++ Offset (0x46), ++ , 2, ++ LIDS , 1 ++} ++ ++Device(LID) ++{ ++ Name(_HID, "PNP0C0D") ++ ++ Method(_LId, 0, NotSerialized) ++ { ++ return (LIDS) ++ } ++} +Index: src/mainboard/lenovo/x60/acpi/battery.asl +=================================================================== +--- src/mainboard/lenovo/x60/acpi/battery.asl (Revision 0) ++++ src/mainboard/lenovo/x60/acpi/battery.asl (Revision 6368) +@@ -0,0 +1,296 @@ ++/* ++ * This file is part of the coreboot project. ++ * ++ * Copyright (c) 2011 Sven Schnelle ++ * ++ * This program is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public License as ++ * published by the Free Software Foundation; version 2 of ++ * the License. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, ++ * MA 02110-1301 USA ++ */ ++ ++Field(ERAM, ByteAcc, NoLock, Preserve) ++{ ++ Offset (0x38), ++ B0ST, 4, /* Battery 0 state */ ++ , 1, ++ B0CH, 1, /* Battery 0 charging */ ++ B0DI, 1, /* Battery 0 discharging */ ++ B0PR, 1, /* Battery 0 present */ ++ Offset (0x39), ++ B1ST, 4, /* Battery 1 state */ ++ , 1, ++ B1CH, 1, /* Battery 1 charging, */ ++ B1DI, 1, /* Battery 1 discharging,*/ ++ B1PR, 1 /* Battery 1 present */ ++} ++ ++/* EC Registers */ ++/* PAGE == 0x00 */ ++Field (ERAM, ByteAcc, NoLock, Preserve) ++{ ++ Offset(0xa0), ++ BARC, 16, /* Battery remaining capacity */ ++ BAFC, 16, /* Battery full charge capacity */ ++ Offset(0xa8), ++ BAPR, 16, /* Battery present rate */ ++ BAVO, 16, /* Battery Voltage */ ++} ++ ++/* PAGE == 0x01 */ ++Field (ERAM, ByteAcc, NoLock, Preserve) ++{ ++ Offset(0xa0), ++ , 15, ++ BAMA, 1, ++} ++ ++/* PAGE == 0x02 */ ++Field (ERAM, ByteAcc, NoLock, Preserve) ++{ ++ Offset(0xa0), ++ BADC, 16, /* Design Capacity */ ++ BADV, 16, /* Design voltage */ ++ , 16, ++ , 16, ++ , 16, ++ BASN, 16, ++} ++ ++/* PAGE == 0x04: Battery type */ ++Field (ERAM, ByteAcc, NoLock, Preserve) ++{ ++ Offset(0xa0), ++ BATY, 32 ++} ++ ++ ++/* PAGE == 0x05: Battery OEM information */ ++Field (ERAM, ByteAcc, NoLock, Preserve) ++{ ++ Offset(0xa0), ++ BAOE, 128 ++} ++ ++/* PAGE == 0x06: Battery name */ ++Field (ERAM, ByteAcc, NoLock, Preserve) ++{ ++ Offset(0xa0), ++ BANA, 128 ++} ++ ++/* Arg0: Battery ++ * Arg1: Battery Status Package ++ * Arg2: charging ++ * Arg3: discharging ++ */ ++Method(BSTA, 4, NotSerialized) ++{ ++ Acquire(ECLK, 0xffff) ++ Store(0, Local0) ++ Or(1, Arg0, PAGE) ++ Store(BAMA, Local1) ++ Store(Arg0, PAGE) /* Battery dynamic information */ ++ ++ Store(BAPR, Local2) ++ ++ if (Arg2) // charging ++ { ++ Or(2, Local0, Local0) ++ ++ If (LGreaterEqual (Local2, 0x8000)) { ++ Store(0, Local2) ++ } ++ } ++ ++ if (Arg3) // discharging ++ { ++ Or(1, Local0, Local0) ++ Subtract(0x10000, Local2, Local2) ++ } ++ ++ Store(Local0, Index(Arg1, 0x00)) ++ ++ if (Local1) { ++ Multiply (BARC, 10, Index(Arg1, 2)) ++ Multiply (Local2, BAVO, Local2) ++ Divide (Local2, 1000, Local3, Index(Arg1, 1)) ++ } else { ++ Store(BARC, Index(Arg1, 2)) ++ Store(Local2, Index(Arg1, 1)) ++ } ++ Store(BAVO, Index(Arg1, 3)) ++ Release(ECLK) ++ Return (Arg1) ++} ++ ++Method(BINF, 2, NotSerialized) ++{ ++ Acquire(ECLK, 0xffff) ++ Or(1, Arg1, PAGE) /* Battery 0 static information */ ++ Xor(BAMA, 1, Index(Arg0, 0)) ++ Store(BAMA, Local0) ++ Store(Arg1, PAGE) ++ Store(BAFC, Local2) ++ Or(2, Arg1, PAGE) ++ Store(BADC, Local1) ++ ++ if (Local0) ++ { ++ Multiply (Local1, 10, Local1) ++ Multiply (Local2, 10, Local2) ++ } ++ ++ Store(Local1, Index(Arg0, 1)) // Design Capacity ++ Store(Local2, Index(Arg0, 2)) // Last full charge capacity ++ Store(BADV, Index(Arg0, 4)) // Design Voltage ++ Divide (Local2, 20, Local0, Index(Arg0, 5)) // Warning capacity ++ ++ Store (BASN, Local0) ++ Name (SERN, Buffer (0x06) { " " }) ++ Store (4, Local1) ++ While (Local0) ++ { ++ Divide (Local0, 0x0A, Local2, Local0) ++ Add (Local2, 48, Index (SERN, Local1)) ++ Decrement (Local1) ++ } ++ Store (SERN, Index (Arg0, 10)) // Serial Number ++ ++ Or(4, Arg1, PAGE) ++ Name (TYPE, Buffer() { 0, 0, 0, 0, 0 }) ++ Store(BATY, TYPE) ++ Store(TYPE, Index (Arg0, 11)) // Battery type ++ Or(5, Arg1, PAGE) ++ Store(BAOE, Index (Arg0, 12)) // OEM information ++ Or(6, Arg1, PAGE) ++ Store(BANA, Index (Arg0, 9)) // Model number ++ Release(ECLK) ++ Return (Arg0) ++} ++ ++Device (BAT0) ++{ ++ Name (_HID, EisaId ("PNP0C0A")) ++ Name (_UID, 0x00) ++ Name (_PCL, Package () { \_SB }) ++ ++ Name (BATS, Package () ++ { ++ 0x00, // 0: PowerUnit: Report in mWh ++ 0xFFFFFFFF, // 1: Design cap ++ 0xFFFFFFFF, // 2: Last full charge cap ++ 0x01, // 3: Battery Technology ++ 10800, // 4: Design Voltage (mV) ++ 0x00, // 5: Warning design capacity ++ 200, // 6: Low design capacity ++ 1, // 7: granularity1 ++ 1, // 8: granularity2 ++ "", // 9: Model number ++ "", // A: Serial number ++ "", // B: Battery Type ++ "" // C: OEM information ++ }) ++ ++ Method (_BIF, 0, NotSerialized) ++ { ++ Return (BINF(BATS, 0)) ++ } ++ ++ Name (BATI, Package () ++ { ++ 0, // Battery State ++ // Bit 0 - discharge ++ // Bit 1 - charge ++ // Bit 2 - critical state ++ 0, // Battery present Rate ++ 0, // Battery remaining capacity ++ 0 // Battery present voltage ++ }) ++ ++ Method (_BST, 0, NotSerialized) ++ { ++ if (B0PR) { ++ Return (BSTA(0, BATI, B0CH, B0DI)) ++ } else { ++ Return (BATS) ++ } ++ } ++ ++ Method (_STA, 0, NotSerialized) ++ { ++ if (B0PR) { ++ Return (0x1f) ++ } else { ++ Return (0x0f) ++ } ++ } ++} ++ ++Device (BAT1) ++{ ++ Name (_HID, EisaId ("PNP0C0A")) ++ Name (_UID, 0x00) ++ Name (_PCL, Package () { \_SB }) ++ ++ Name (BATS, Package () ++ { ++ 0x00, // 0: PowerUnit: Report in mWh ++ 0xFFFFFFFF, // 1: Design cap ++ 0xFFFFFFFF, // 2: Last full charge cap ++ 0x01, // 3: Battery Technology ++ 10800, // 4: Design Voltage (mV) ++ 0x00, // 5: Warning design capacity ++ 200, // 6: Low design capacity ++ 1, // 7: granularity1 ++ 1, // 8: granularity2 ++ "", // 9: Model number ++ "", // A: Serial number ++ "", // B: Battery Type ++ "" // C: OEM information ++ }) ++ ++ Method (_BIF, 0, NotSerialized) ++ { ++ Return (BINF(BATS, 0x10)) ++ } ++ ++ Name (BATI, Package () ++ { ++ 0, // Battery State ++ // Bit 0 - discharge ++ // Bit 1 - charge ++ // Bit 2 - critical state ++ 0, // Battery present Rate ++ 0, // Battery remaining capacity ++ 0 // Battery present voltage ++ }) ++ ++ Method (_BST, 0, NotSerialized) ++ { ++ if (B1PR) { ++ Return (BSTA(0x10, BATI, B1CH, B1DI)) ++ } else { ++ Return (BATS) ++ } ++ } ++ ++ Method (_STA, 0, NotSerialized) ++ { ++ if (B1PR) { ++ Return (0x1f) ++ } else { ++ Return (0x0f) ++ } ++ } ++} +Index: src/mainboard/lenovo/x60/acpi/beep.asl +=================================================================== +--- src/mainboard/lenovo/x60/acpi/beep.asl (Revision 0) ++++ src/mainboard/lenovo/x60/acpi/beep.asl (Revision 6368) +@@ -0,0 +1,32 @@ ++/* ++ * This file is part of the coreboot project. ++ * ++ * Copyright (c) 2011 Sven Schnelle ++ * ++ * This program is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public License as ++ * published by the Free Software Foundation; version 2 of ++ * the License. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, ++ * MA 02110-1301 USA ++ */ ++ ++Field(ERAM, ByteAcc, NoLock, Preserve) ++{ ++ Offset (0x06), ++ SNDS, 8 /* Write to this register to generate sound */ ++ ++} ++ ++Method(BEEP, 1, NotSerialized) ++{ ++ Store (Arg0, SNDS) ++} +Index: src/mainboard/lenovo/x60/acpi/gpe.asl +=================================================================== +Index: src/mainboard/lenovo/x60/acpi/mainboard.asl +=================================================================== +Index: src/mainboard/lenovo/x60/acpi/thermal.asl +=================================================================== +Index: src/mainboard/lenovo/x60/dsdt.asl +=================================================================== +--- src/mainboard/lenovo/x60/dsdt.asl (Revision 0) ++++ src/mainboard/lenovo/x60/dsdt.asl (Revision 6368) +@@ -0,0 +1,56 @@ ++/* ++ * This file is part of the coreboot project. ++ * ++ * Copyright (C) 2007-2009 coresystems GmbH ++ * ++ * This program is free software; you can redistribute it and/or ++ * modify it under the terms of the GNU General Public License as ++ * published by the Free Software Foundation; version 2 of ++ * the License. ++ * ++ * This program is distributed in the hope that it will be useful, ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ * GNU General Public License for more details. ++ * ++ * You should have received a copy of the GNU General Public License ++ * along with this program; if not, write to the Free Software ++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, ++ * MA 02110-1301 USA ++ */ ++ ++DefinitionBlock( ++ "dsdt.aml", ++ "DSDT", ++ 0x03, // DSDT revision: ACPI v3.0 ++ "COREv4", // OEM id ++ "COREBOOT", // OEM table id ++ 0x20090419 // OEM revision ++) ++{ ++ // Some generic macros ++ #include "acpi/platform.asl" ++ ++ // global NVS and variables ++ #include "../../../southbridge/intel/i82801gx/acpi/globalnvs.asl" ++ ++ // General Purpose Events ++ #include "acpi/gpe.asl" ++ ++ // mainboard specific devices ++ #include "acpi/mainboard.asl" ++ ++ // Thermal Zone ++ #include "acpi/thermal.asl" ++ ++ Scope (\_SB) { ++ Device (PCI0) ++ { ++ #include "../../../northbridge/intel/i945/acpi/i945.asl" ++ #include "../../../southbridge/intel/i82801gx/acpi/ich7.asl" ++ } ++ } ++ ++ /* Chipset specific sleep states */ ++ #include "../../../southbridge/intel/i82801gx/acpi/sleepstates.asl" ++} diff --git a/test/data/IDF_DiffTest/test-01-svn-new-files.expected b/test/data/IDF_DiffTest/test-01-svn-new-files.expected new file mode 100644 index 0000000..00c201a --- /dev/null +++ b/test/data/IDF_DiffTest/test-01-svn-new-files.expected @@ -0,0 +1 @@ +a:12:{s:32:"src/mainboard/lenovo/x60/Kconfig";a:2:{s:6:"chunks";a:1:{i:0;a:7:{i:0;a:3:{i:0;s:2:"21";i:1;s:2:"21";i:2;s:29:" select BOARD_ROMSIZE_KB_2048";}i:1;a:3:{i:0;i:22;i:1;i:22;i:2;s:33:" select CHANNEL_XOR_RANDOMIZATION";}i:2;a:3:{i:0;i:23;i:1;i:23;i:2;s:24:" select HAVE_SMI_HANDLER";}i:3;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:24:" select HAVE_ACPI_TABLES";}i:4;a:3:{i:0;i:24;i:1;i:25;i:2;b:0;}i:5;a:3:{i:0;i:25;i:1;i:26;i:2;s:20:"config MAINBOARD_DIR";}i:6;a:3:{i:0;i:26;i:1;i:27;i:2;s:7:" string";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:2:"21";i:1;s:1:"6";}i:1;a:2:{i:0;s:2:"21";i:1;s:1:"7";}}}}s:36:"src/mainboard/lenovo/x60/acpi/ac.asl";a:2:{s:6:"chunks";a:1:{i:0;a:44:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"/*";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:45:" * This file is part of the coreboot project.";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:2:" *";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:58:" * Copyright (c) 2011 Sven Schnelle ";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:2:" *";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:64:" * This program is free software; you can redistribute it and/or";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:65:" * modify it under the terms of the GNU General Public License as";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:58:" * published by the Free Software Foundation; version 2 of";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:15:" * the License.";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:2:" *";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:66:" * This program is distributed in the hope that it will be useful,";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:65:" * but WITHOUT ANY WARRANTY; without even the implied warranty of";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:64:" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:47:" * GNU General Public License for more details.";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:2:" *";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:68:" * You should have received a copy of the GNU General Public License";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:62:" * along with this program; if not, write to the Free Software";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:57:" * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:20:" * MA 02110-1301 USA";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:3:" */";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;b:0;}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:38:"Field(ERAM, ByteAcc, NoLock, Preserve)";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:1:"{";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:16:" Offset (0x46),";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;s:8:" , 4,";}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;s:14:" HPAC, 1";}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;s:1:"}";}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;b:0;}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;s:10:"Device(AC)";}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:1:"{";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;s:23:" Name(_HID, "ACPI0003")";}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;s:17:" Name(_UID, 0x00)";}i:32;a:3:{i:0;s:0:"";i:1;i:33;i:2;s:32:" Name(_PCL, Package() { \_SB } )";}i:33;a:3:{i:0;s:0:"";i:1;i:34;i:2;b:0;}i:34;a:3:{i:0;s:0:"";i:1;i:35;i:2;s:31:" Method(_PSR, 0, NotSerialized)";}i:35;a:3:{i:0;s:0:"";i:1;i:36;i:2;s:2:" {";}i:36;a:3:{i:0;s:0:"";i:1;i:37;i:2;s:15:" return (HPAC)";}i:37;a:3:{i:0;s:0:"";i:1;i:38;i:2;s:2:" }";}i:38;a:3:{i:0;s:0:"";i:1;i:39;i:2;b:0;}i:39;a:3:{i:0;s:0:"";i:1;i:40;i:2;s:31:" Method(_STA, 0, NotSerialized)";}i:40;a:3:{i:0;s:0:"";i:1;i:41;i:2;s:2:" {";}i:41;a:3:{i:0;s:0:"";i:1;i:42;i:2;s:15:" Return (0x0f)";}i:42;a:3:{i:0;s:0:"";i:1;i:43;i:2;s:2:" }";}i:43;a:3:{i:0;s:0:"";i:1;i:44;i:2;s:1:"}";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:2:"44";}}}}s:47:"src/mainboard/lenovo/x60/acpi/i945_pci_irqs.asl";a:2:{s:6:"chunks";a:1:{i:0;a:63:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"/*";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:45:" * This file is part of the coreboot project.";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:2:" *";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:58:" * Copyright (C) 2011 Sven Schnelle ";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:2:" *";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:64:" * This program is free software; you can redistribute it and/or";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:65:" * modify it under the terms of the GNU General Public License as";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:58:" * published by the Free Software Foundation; version 2 of";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:15:" * the License.";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:2:" *";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:66:" * This program is distributed in the hope that it will be useful,";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:65:" * but WITHOUT ANY WARRANTY; without even the implied warranty of";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:64:" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:47:" * GNU General Public License for more details.";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:2:" *";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:68:" * You should have received a copy of the GNU General Public License";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:62:" * along with this program; if not, write to the Free Software";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:57:" * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:20:" * MA 02110-1301 USA";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:3:" */";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;b:0;}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:58:"/* This is board specific information: IRQ routing for the";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:7:" * i945";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:3:" */";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;b:0;}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;b:0;}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;s:24:"// PCI Interrupt Routing";}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;s:12:"Method(_PRT)";}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;s:1:"{";}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:12:" If (PICM) {";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;s:21:" Return (Package() {";}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;s:47:" Package() { 0x0002ffff, 0, 0, 0x10 }, // VGA";}i:32;a:3:{i:0;s:0:"";i:1;i:33;i:2;s:49:" Package() { 0x001bffff, 1, 0, 0x11 }, // Audio";}i:33;a:3:{i:0;s:0:"";i:1;i:34;i:2;s:54:" Package() { 0x001cffff, 0, 0, 0x14 }, // PCI bridge";}i:34;a:3:{i:0;s:0:"";i:1;i:35;i:2;s:54:" Package() { 0x001cffff, 1, 0, 0x15 }, // PCI bridge";}i:35;a:3:{i:0;s:0:"";i:1;i:36;i:2;s:54:" Package() { 0x001cffff, 2, 0, 0x16 }, // PCI bridge";}i:36;a:3:{i:0;s:0:"";i:1;i:37;i:2;s:54:" Package() { 0x001cffff, 3, 0, 0x17 }, // PCI bridge";}i:37;a:3:{i:0;s:0:"";i:1;i:38;i:2;s:47:" Package() { 0x001dffff, 0, 0, 0x10 }, // USB";}i:38;a:3:{i:0;s:0:"";i:1;i:39;i:2;s:47:" Package() { 0x001dffff, 1, 0, 0x11 }, // USB";}i:39;a:3:{i:0;s:0:"";i:1;i:40;i:2;s:47:" Package() { 0x001dffff, 2, 0, 0x12 }, // USB";}i:40;a:3:{i:0;s:0:"";i:1;i:41;i:2;s:47:" Package() { 0x001dffff, 3, 0, 0x13 }, // USB";}i:41;a:3:{i:0;s:0:"";i:1;i:42;i:2;s:47:" Package() { 0x001fffff, 0, 0, 0x17 }, // LPC";}i:42;a:3:{i:0;s:0:"";i:1;i:43;i:2;s:47:" Package() { 0x001fffff, 1, 0, 0x10 }, // IDE";}i:43;a:3:{i:0;s:0:"";i:1;i:44;i:2;s:48:" Package() { 0x001fffff, 2, 0, 0x10 } // SATA";}i:44;a:3:{i:0;s:0:"";i:1;i:45;i:2;s:4:" })";}i:45;a:3:{i:0;s:0:"";i:1;i:46;i:2;s:9:" } Else {";}i:46;a:3:{i:0;s:0:"";i:1;i:47;i:2;s:21:" Return (Package() {";}i:47;a:3:{i:0;s:0:"";i:1;i:48;i:2;s:62:" Package() { 0x0002ffff, 0, \_SB.PCI0.LPCB.LNKA, 0 }, // VGA";}i:48;a:3:{i:0;s:0:"";i:1;i:49;i:2;s:64:" Package() { 0x001bffff, 1, \_SB.PCI0.LPCB.LNKB, 0 }, // Audio";}i:49;a:3:{i:0;s:0:"";i:1;i:50;i:2;s:62:" Package() { 0x001cffff, 0, \_SB.PCI0.LPCB.LNKE, 0 }, // PCI";}i:50;a:3:{i:0;s:0:"";i:1;i:51;i:2;s:62:" Package() { 0x001cffff, 1, \_SB.PCI0.LPCB.LNKF, 0 }, // PCI";}i:51;a:3:{i:0;s:0:"";i:1;i:52;i:2;s:62:" Package() { 0x001cffff, 2, \_SB.PCI0.LPCB.LNKG, 0 }, // PCI";}i:52;a:3:{i:0;s:0:"";i:1;i:53;i:2;s:62:" Package() { 0x001cffff, 3, \_SB.PCI0.LPCB.LNKH, 0 }, // PCI";}i:53;a:3:{i:0;s:0:"";i:1;i:54;i:2;s:62:" Package() { 0x001dffff, 0, \_SB.PCI0.LPCB.LNKA, 0 }, // USB";}i:54;a:3:{i:0;s:0:"";i:1;i:55;i:2;s:62:" Package() { 0x001dffff, 1, \_SB.PCI0.LPCB.LNKB, 0 }, // USB";}i:55;a:3:{i:0;s:0:"";i:1;i:56;i:2;s:62:" Package() { 0x001dffff, 2, \_SB.PCI0.LPCB.LNKC, 0 }, // USB";}i:56;a:3:{i:0;s:0:"";i:1;i:57;i:2;s:62:" Package() { 0x001dffff, 3, \_SB.PCI0.LPCB.LNKD, 0 }, // USB";}i:57;a:3:{i:0;s:0:"";i:1;i:58;i:2;s:62:" Package() { 0x001fffff, 0, \_SB.PCI0.LPCB.LNKH, 0 }, // LPC";}i:58;a:3:{i:0;s:0:"";i:1;i:59;i:2;s:62:" Package() { 0x001fffff, 1, \_SB.PCI0.LPCB.LNKA, 0 }, // IDE";}i:59;a:3:{i:0;s:0:"";i:1;i:60;i:2;s:63:" Package() { 0x001fffff, 2, \_SB.PCI0.LPCB.LNKA, 0 } // SATA";}i:60;a:3:{i:0;s:0:"";i:1;i:61;i:2;s:4:" })";}i:61;a:3:{i:0;s:0:"";i:1;i:62;i:2;s:2:" }";}i:62;a:3:{i:0;s:0:"";i:1;i:63;i:2;s:1:"}";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:2:"63";}}}}s:47:"src/mainboard/lenovo/x60/acpi/ich7_pci_irqs.asl";a:2:{s:6:"chunks";a:1:{i:0;a:46:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"/*";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:45:" * This file is part of the coreboot project.";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:2:" *";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:43:" * Copyright (C) 2007-2009 coresystems GmbH";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:2:" *";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:64:" * This program is free software; you can redistribute it and/or";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:65:" * modify it under the terms of the GNU General Public License as";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:58:" * published by the Free Software Foundation; version 2 of";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:15:" * the License.";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:2:" *";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:66:" * This program is distributed in the hope that it will be useful,";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:65:" * but WITHOUT ANY WARRANTY; without even the implied warranty of";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:64:" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:47:" * GNU General Public License for more details.";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:2:" *";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:68:" * You should have received a copy of the GNU General Public License";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:62:" * along with this program; if not, write to the Free Software";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:57:" * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:20:" * MA 02110-1301 USA";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:3:" */";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;b:0;}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:58:"/* This is board specific information: IRQ routing for the";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:32:" * 0:1e.0 PCI bridge of the ICH7";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:3:" */";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;b:0;}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;s:11:"If (PICM) {";}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;s:20:" Return (Package() {";}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;s:50:" Package (0x04) { 0x0000FFFF, 0x00, 0x00, 0x10 },";}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;s:50:" Package (0x04) { 0x0000FFFF, 0x01, 0x00, 0x11 },";}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:50:" Package (0x04) { 0x0000FFFF, 0x02, 0x00, 0x12 },";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;s:50:" Package (0x04) { 0x0001FFFF, 0x00, 0x00, 0x10 },";}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;s:50:" Package (0x04) { 0x0002FFFF, 0x00, 0x00, 0x15 },";}i:32;a:3:{i:0;s:0:"";i:1;i:33;i:2;s:50:" Package (0x04) { 0x0002FFFF, 0x01, 0x00, 0x16 },";}i:33;a:3:{i:0;s:0:"";i:1;i:34;i:2;s:49:" Package (0x04) { 0x0008FFFF, 0x00, 0x00, 0x14 }";}i:34;a:3:{i:0;s:0:"";i:1;i:35;i:2;s:3:" })";}i:35;a:3:{i:0;s:0:"";i:1;i:36;i:2;s:9:" } Else {";}i:36;a:3:{i:0;s:0:"";i:1;i:37;i:2;s:20:" Return (Package() {";}i:37;a:3:{i:0;s:0:"";i:1;i:38;i:2;s:65:" Package (0x04) { 0x0000FFFF, 0x00, \_SB.PCI0.LPCB.LNKA, 0x00 },";}i:38;a:3:{i:0;s:0:"";i:1;i:39;i:2;s:65:" Package (0x04) { 0x0000FFFF, 0x01, \_SB.PCI0.LPCB.LNKB, 0x00 },";}i:39;a:3:{i:0;s:0:"";i:1;i:40;i:2;s:65:" Package (0x04) { 0x0000FFFF, 0x02, \_SB.PCI0.LPCB.LNKC, 0x00 },";}i:40;a:3:{i:0;s:0:"";i:1;i:41;i:2;s:65:" Package (0x04) { 0x0001FFFF, 0x00, \_SB.PCI0.LPCB.LNKA, 0x00 },";}i:41;a:3:{i:0;s:0:"";i:1;i:42;i:2;s:65:" Package (0x04) { 0x0002FFFF, 0x00, \_SB.PCI0.LPCB.LNKF, 0x00 },";}i:42;a:3:{i:0;s:0:"";i:1;i:43;i:2;s:65:" Package (0x04) { 0x0002FFFF, 0x01, \_SB.PCI0.LPCB.LNKG, 0x00 },";}i:43;a:3:{i:0;s:0:"";i:1;i:44;i:2;s:64:" Package (0x04) { 0x0008FFFF, 0x00, \_SB.PCI0.LPCB.LNKE, 0x00 }";}i:44;a:3:{i:0;s:0:"";i:1;i:45;i:2;s:3:" })";}i:45;a:3:{i:0;s:0:"";i:1;i:46;i:2;s:1:"}";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:2:"46";}}}}s:42:"src/mainboard/lenovo/x60/acpi/platform.asl";a:2:{s:6:"chunks";a:1:{i:0;a:206:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"/*";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:45:" * This file is part of the coreboot project.";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:2:" *";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:43:" * Copyright (C) 2007-2009 coresystems GmbH";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:2:" *";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:64:" * This program is free software; you can redistribute it and/or";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:65:" * modify it under the terms of the GNU General Public License as";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:58:" * published by the Free Software Foundation; version 2 of";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:15:" * the License.";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:2:" *";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:66:" * This program is distributed in the hope that it will be useful,";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:65:" * but WITHOUT ANY WARRANTY; without even the implied warranty of";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:64:" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:47:" * GNU General Public License for more details.";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:2:" *";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:68:" * You should have received a copy of the GNU General Public License";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:62:" * along with this program; if not, write to the Free Software";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:57:" * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:20:" * MA 02110-1301 USA";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:3:" */";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;b:0;}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:54:"/* These come from the dynamically created CPU SSDT */";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:14:"External(PDC0)";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:14:"External(PDC1)";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;b:0;}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;s:59:"/* The APM port can be used for generating software SMIs */";}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;b:0;}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;s:41:"OperationRegion (APMP, SystemIO, 0xb2, 2)";}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;s:39:"Field (APMP, ByteAcc, NoLock, Preserve)";}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:1:"{";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;s:24:" APMC, 8, // APM command";}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;s:23:" APMS, 8 // APM status";}i:32;a:3:{i:0;s:0:"";i:1;i:33;i:2;s:1:"}";}i:33;a:3:{i:0;s:0:"";i:1;i:34;i:2;b:0;}i:34;a:3:{i:0;s:0:"";i:1;i:35;i:2;s:18:"/* Port 80 POST */";}i:35;a:3:{i:0;s:0:"";i:1;i:36;i:2;b:0;}i:36;a:3:{i:0;s:0:"";i:1;i:37;i:2;s:41:"OperationRegion (POST, SystemIO, 0x80, 1)";}i:37;a:3:{i:0;s:0:"";i:1;i:38;i:2;s:37:"Field (POST, ByteAcc, Lock, Preserve)";}i:38;a:3:{i:0;s:0:"";i:1;i:39;i:2;s:1:"{";}i:39;a:3:{i:0;s:0:"";i:1;i:40;i:2;s:8:" DBG0, 8";}i:40;a:3:{i:0;s:0:"";i:1;i:41;i:2;s:1:"}";}i:41;a:3:{i:0;s:0:"";i:1;i:42;i:2;b:0;}i:42;a:3:{i:0;s:0:"";i:1;i:43;i:2;s:18:"/* SMI I/O Trap */";}i:43;a:3:{i:0;s:0:"";i:1;i:44;i:2;s:27:"Method(TRAP, 1, Serialized)";}i:44;a:3:{i:0;s:0:"";i:1;i:45;i:2;s:1:"{";}i:45;a:3:{i:0;s:0:"";i:1;i:46;i:2;s:35:" Store (Arg0, SMIF) // SMI Function";}i:46;a:3:{i:0;s:0:"";i:1;i:47;i:2;s:34:" Store (0, TRP0) // Generate trap";}i:47;a:3:{i:0;s:0:"";i:1;i:48;i:2;s:46:" Return (SMIF) // Return value of SMI handler";}i:48;a:3:{i:0;s:0:"";i:1;i:49;i:2;s:1:"}";}i:49;a:3:{i:0;s:0:"";i:1;i:50;i:2;b:0;}i:50;a:3:{i:0;s:0:"";i:1;i:51;i:2;s:66:"/* The _PIC method is called by the OS to choose between interrupt";}i:51;a:3:{i:0;s:0:"";i:1;i:52;i:2;s:58:" * routing via the i8259 interrupt controller or the APIC.";}i:52;a:3:{i:0;s:0:"";i:1;i:53;i:2;s:2:" *";}i:53;a:3:{i:0;s:0:"";i:1;i:54;i:2;s:67:" * _PIC is called with a parameter of 0 for i8259 configuration and";}i:54;a:3:{i:0;s:0:"";i:1;i:55;i:2;s:61:" * with a parameter of 1 for Local Apic/IOAPIC configuration.";}i:55;a:3:{i:0;s:0:"";i:1;i:56;i:2;s:3:" */";}i:56;a:3:{i:0;s:0:"";i:1;i:57;i:2;b:0;}i:57;a:3:{i:0;s:0:"";i:1;i:58;i:2;s:15:"Method(_PIC, 1)";}i:58;a:3:{i:0;s:0:"";i:1;i:59;i:2;s:1:"{";}i:59;a:3:{i:0;s:0:"";i:1;i:60;i:2;s:40:" // Remember the OS' IRQ routing choice.";}i:60;a:3:{i:0;s:0:"";i:1;i:61;i:2;s:18:" Store(Arg0, PICM)";}i:61;a:3:{i:0;s:0:"";i:1;i:62;i:2;s:1:"}";}i:62;a:3:{i:0;s:0:"";i:1;i:63;i:2;b:0;}i:63;a:3:{i:0;s:0:"";i:1;i:64;i:2;s:64:"/* The _PTS method (Prepare To Sleep) is called before the OS is";}i:64;a:3:{i:0;s:0:"";i:1;i:65;i:2;s:67:" * entering a sleep state. The sleep state number is passed in Arg0";}i:65;a:3:{i:0;s:0:"";i:1;i:66;i:2;s:3:" */";}i:66;a:3:{i:0;s:0:"";i:1;i:67;i:2;b:0;}i:67;a:3:{i:0;s:0:"";i:1;i:68;i:2;s:14:"Method(_PTS,1)";}i:68;a:3:{i:0;s:0:"";i:1;i:69;i:2;s:1:"{";}i:69;a:3:{i:0;s:0:"";i:1;i:70;i:2;s:53:" // Call a trap so SMI can prepare for Sleep as well.";}i:70;a:3:{i:0;s:0:"";i:1;i:71;i:2;s:14:" // TRAP(0x55)";}i:71;a:3:{i:0;s:0:"";i:1;i:72;i:2;s:1:"}";}i:72;a:3:{i:0;s:0:"";i:1;i:73;i:2;b:0;}i:73;a:3:{i:0;s:0:"";i:1;i:74;i:2;s:48:"/* The _WAK method is called on system wakeup */";}i:74;a:3:{i:0;s:0:"";i:1;i:75;i:2;b:0;}i:75;a:3:{i:0;s:0:"";i:1;i:76;i:2;s:14:"Method(_WAK,1)";}i:76;a:3:{i:0;s:0:"";i:1;i:77;i:2;s:1:"{";}i:77;a:3:{i:0;s:0:"";i:1;i:78;i:2;s:21:" // CPU specific part";}i:78;a:3:{i:0;s:0:"";i:1;i:79;i:2;b:0;}i:79;a:3:{i:0;s:0:"";i:1;i:80;i:2;s:43:" // Notify PCI Express slots in case a card";}i:80;a:3:{i:0;s:0:"";i:1;i:81;i:2;s:48:" // was inserted while a sleep state was active.";}i:81;a:3:{i:0;s:0:"";i:1;i:82;i:2;b:0;}i:82;a:3:{i:0;s:0:"";i:1;i:83;i:2;s:23:" // Are we going to S3?";}i:83;a:3:{i:0;s:0:"";i:1;i:84;i:2;s:23:" If (LEqual(Arg0, 3)) {";}i:84;a:3:{i:0;s:0:"";i:1;i:85;i:2;s:7:" // ..";}i:85;a:3:{i:0;s:0:"";i:1;i:86;i:2;s:2:" }";}i:86;a:3:{i:0;s:0:"";i:1;i:87;i:2;b:0;}i:87;a:3:{i:0;s:0:"";i:1;i:88;i:2;s:23:" // Are we going to S4?";}i:88;a:3:{i:0;s:0:"";i:1;i:89;i:2;s:23:" If (LEqual(Arg0, 4)) {";}i:89;a:3:{i:0;s:0:"";i:1;i:90;i:2;s:7:" // ..";}i:90;a:3:{i:0;s:0:"";i:1;i:91;i:2;s:2:" }";}i:91;a:3:{i:0;s:0:"";i:1;i:92;i:2;b:0;}i:92;a:3:{i:0;s:0:"";i:1;i:93;i:2;s:40:" // TODO: Windows XP SP2 P-State restore";}i:93;a:3:{i:0;s:0:"";i:1;i:94;i:2;b:0;}i:94;a:3:{i:0;s:0:"";i:1;i:95;i:2;s:23:" Return(Package(){0,0})";}i:95;a:3:{i:0;s:0:"";i:1;i:96;i:2;s:1:"}";}i:96;a:3:{i:0;s:0:"";i:1;i:97;i:2;b:0;}i:97;a:3:{i:0;s:0:"";i:1;i:98;i:2;s:21:"// Power notification";}i:98;a:3:{i:0;s:0:"";i:1;i:99;i:2;b:0;}i:99;a:3:{i:0;s:0:"";i:1;i:100;i:2;s:32:"External (\_PR_.CPU0, DeviceObj)";}i:100;a:3:{i:0;s:0:"";i:1;i:101;i:2;s:32:"External (\_PR_.CPU1, DeviceObj)";}i:101;a:3:{i:0;s:0:"";i:1;i:102;i:2;b:0;}i:102;a:3:{i:0;s:0:"";i:1;i:103;i:2;s:13:"Method (PNOT)";}i:103;a:3:{i:0;s:0:"";i:1;i:104;i:2;s:1:"{";}i:104;a:3:{i:0;s:0:"";i:1;i:105;i:2;s:12:" If (MPEN) {";}i:105;a:3:{i:0;s:0:"";i:1;i:106;i:2;s:23:" If(And(PDC0, 0x08)) {";}i:106;a:3:{i:0;s:0:"";i:1;i:107;i:2;s:37:" Notify (\_PR_.CPU0, 0x80) // _PPC";}i:107;a:3:{i:0;s:0:"";i:1;i:108;i:2;b:0;}i:108;a:3:{i:0;s:0:"";i:1;i:109;i:2;s:25:" If (And(PDC0, 0x10)) {";}i:109;a:3:{i:0;s:0:"";i:1;i:110;i:2;s:14:" Sleep(100)";}i:110;a:3:{i:0;s:0:"";i:1;i:111;i:2;s:36:" Notify(\_PR_.CPU0, 0x81) // _CST";}i:111;a:3:{i:0;s:0:"";i:1;i:112;i:2;s:4:" }";}i:112;a:3:{i:0;s:0:"";i:1;i:113;i:2;s:3:" }";}i:113;a:3:{i:0;s:0:"";i:1;i:114;i:2;b:0;}i:114;a:3:{i:0;s:0:"";i:1;i:115;i:2;s:23:" If(And(PDC1, 0x08)) {";}i:115;a:3:{i:0;s:0:"";i:1;i:116;i:2;s:37:" Notify (\_PR_.CPU1, 0x80) // _PPC";}i:116;a:3:{i:0;s:0:"";i:1;i:117;i:2;s:25:" If (And(PDC1, 0x10)) {";}i:117;a:3:{i:0;s:0:"";i:1;i:118;i:2;s:14:" Sleep(100)";}i:118;a:3:{i:0;s:0:"";i:1;i:119;i:2;s:36:" Notify(\_PR_.CPU1, 0x81) // _CST";}i:119;a:3:{i:0;s:0:"";i:1;i:120;i:2;s:4:" }";}i:120;a:3:{i:0;s:0:"";i:1;i:121;i:2;s:3:" }";}i:121;a:3:{i:0;s:0:"";i:1;i:122;i:2;b:0;}i:122;a:3:{i:0;s:0:"";i:1;i:123;i:2;s:15:" } Else { // UP";}i:123;a:3:{i:0;s:0:"";i:1;i:124;i:2;s:27:" Notify (\_PR_.CPU0, 0x80)";}i:124;a:3:{i:0;s:0:"";i:1;i:125;i:2;s:13:" Sleep(0x64)";}i:125;a:3:{i:0;s:0:"";i:1;i:126;i:2;s:26:" Notify(\_PR_.CPU0, 0x81)";}i:126;a:3:{i:0;s:0:"";i:1;i:127;i:2;s:2:" }";}i:127;a:3:{i:0;s:0:"";i:1;i:128;i:2;b:0;}i:128;a:3:{i:0;s:0:"";i:1;i:129;i:2;s:24:" // Notify the Batteries";}i:129;a:3:{i:0;s:0:"";i:1;i:130;i:2;s:58:" Notify(\_SB.PCI0.LPCB.EC.BAT0, 0x80) // Execute BAT1 _BST";}i:130;a:3:{i:0;s:0:"";i:1;i:131;i:2;s:58:" Notify(\_SB.PCI0.LPCB.EC.BAT1, 0x80) // Execute BAT2 _BST";}i:131;a:3:{i:0;s:0:"";i:1;i:132;i:2;s:1:"}";}i:132;a:3:{i:0;s:0:"";i:1;i:133;i:2;b:0;}i:133;a:3:{i:0;s:0:"";i:1;i:134;i:2;s:16:"/* System Bus */";}i:134;a:3:{i:0;s:0:"";i:1;i:135;i:2;b:0;}i:135;a:3:{i:0;s:0:"";i:1;i:136;i:2;s:11:"Scope(\_SB)";}i:136;a:3:{i:0;s:0:"";i:1;i:137;i:2;s:1:"{";}i:137;a:3:{i:0;s:0:"";i:1;i:138;i:2;s:72:" /* This method is placed on the top level, so we can make sure it's the";}i:138;a:3:{i:0;s:0:"";i:1;i:139;i:2;s:31:" * first executed _INI method.";}i:139;a:3:{i:0;s:0:"";i:1;i:140;i:2;s:4:" */";}i:140;a:3:{i:0;s:0:"";i:1;i:141;i:2;s:16:" Method(_INI, 0)";}i:141;a:3:{i:0;s:0:"";i:1;i:142;i:2;s:2:" {";}i:142;a:3:{i:0;s:0:"";i:1;i:143;i:2;s:52:" /* The DTS data in NVS is probably not up to date.";}i:143;a:3:{i:0;s:0:"";i:1;i:144;i:2;s:55:" * Update temperature values and make sure AP thermal";}i:144;a:3:{i:0;s:0:"";i:1;i:145;i:2;s:26:" * interrupts can happen";}i:145;a:3:{i:0;s:0:"";i:1;i:146;i:2;s:5:" */";}i:146;a:3:{i:0;s:0:"";i:1;i:147;i:2;b:0;}i:147;a:3:{i:0;s:0:"";i:1;i:148;i:2;s:21:" // TRAP(71) // TODO";}i:148;a:3:{i:0;s:0:"";i:1;i:149;i:2;b:0;}i:149;a:3:{i:0;s:0:"";i:1;i:150;i:2;s:63:" /* Determine the Operating System and save the value in OSYS.";}i:150;a:3:{i:0;s:0:"";i:1;i:151;i:2;s:58:" * We have to do this in order to be able to work around";}i:151;a:3:{i:0;s:0:"";i:1;i:152;i:2;s:26:" * certain windows bugs.";}i:152;a:3:{i:0;s:0:"";i:1;i:153;i:2;s:4:" *";}i:153;a:3:{i:0;s:0:"";i:1;i:154;i:2;s:37:" * OSYS value | Operating System";}i:154;a:3:{i:0;s:0:"";i:1;i:155;i:2;s:38:" * -----------+------------------";}i:155;a:3:{i:0;s:0:"";i:1;i:156;i:2;s:33:" * 2000 | Windows 2000";}i:156;a:3:{i:0;s:0:"";i:1;i:157;i:2;s:37:" * 2001 | Windows XP(+SP1)";}i:157;a:3:{i:0;s:0:"";i:1;i:158;i:2;s:35:" * 2002 | Windows XP SP2";}i:158;a:3:{i:0;s:0:"";i:1;i:159;i:2;s:34:" * 2006 | Windows Vista";}i:159;a:3:{i:0;s:0:"";i:1;i:160;i:2;s:30:" * ???? | Windows 7";}i:160;a:3:{i:0;s:0:"";i:1;i:161;i:2;s:5:" */";}i:161;a:3:{i:0;s:0:"";i:1;i:162;i:2;b:0;}i:162;a:3:{i:0;s:0:"";i:1;i:163;i:2;s:56:" /* Let's assume we're running at least Windows 2000 */";}i:163;a:3:{i:0;s:0:"";i:1;i:164;i:2;s:20:" Store (2000, OSYS)";}i:164;a:3:{i:0;s:0:"";i:1;i:165;i:2;b:0;}i:165;a:3:{i:0;s:0:"";i:1;i:166;i:2;s:32:" If (CondRefOf(_OSI, Local0)) {";}i:166;a:3:{i:0;s:0:"";i:1;i:167;i:2;s:52:" /* Linux answers _OSI with "True" for a couple of";}i:167;a:3:{i:0;s:0:"";i:1;i:168;i:2;s:52:" * Windows version queries. But unlike Windows it";}i:168;a:3:{i:0;s:0:"";i:1;i:169;i:2;s:54:" * needs a Video repost, so let's determine whether";}i:169;a:3:{i:0;s:0:"";i:1;i:170;i:2;s:26:" * we're running Linux.";}i:170;a:3:{i:0;s:0:"";i:1;i:171;i:2;s:6:" */";}i:171;a:3:{i:0;s:0:"";i:1;i:172;i:2;b:0;}i:172;a:3:{i:0;s:0:"";i:1;i:173;i:2;s:23:" If (_OSI("Linux")) {";}i:173;a:3:{i:0;s:0:"";i:1;i:174;i:2;s:19:" Store (1, LINX)";}i:174;a:3:{i:0;s:0:"";i:1;i:175;i:2;s:4:" }";}i:175;a:3:{i:0;s:0:"";i:1;i:176;i:2;b:0;}i:176;a:3:{i:0;s:0:"";i:1;i:177;i:2;s:30:" If (_OSI("Windows 2001")) {";}i:177;a:3:{i:0;s:0:"";i:1;i:178;i:2;s:22:" Store (2001, OSYS)";}i:178;a:3:{i:0;s:0:"";i:1;i:179;i:2;s:4:" }";}i:179;a:3:{i:0;s:0:"";i:1;i:180;i:2;b:0;}i:180;a:3:{i:0;s:0:"";i:1;i:181;i:2;s:34:" If (_OSI("Windows 2001 SP1")) {";}i:181;a:3:{i:0;s:0:"";i:1;i:182;i:2;s:22:" Store (2001, OSYS)";}i:182;a:3:{i:0;s:0:"";i:1;i:183;i:2;s:4:" }";}i:183;a:3:{i:0;s:0:"";i:1;i:184;i:2;b:0;}i:184;a:3:{i:0;s:0:"";i:1;i:185;i:2;s:34:" If (_OSI("Windows 2001 SP2")) {";}i:185;a:3:{i:0;s:0:"";i:1;i:186;i:2;s:22:" Store (2002, OSYS)";}i:186;a:3:{i:0;s:0:"";i:1;i:187;i:2;s:4:" }";}i:187;a:3:{i:0;s:0:"";i:1;i:188;i:2;b:0;}i:188;a:3:{i:0;s:0:"";i:1;i:189;i:2;s:30:" If (_OSI("Windows 2006")) {";}i:189;a:3:{i:0;s:0:"";i:1;i:190;i:2;s:22:" Store (2006, OSYS)";}i:190;a:3:{i:0;s:0:"";i:1;i:191;i:2;s:4:" }";}i:191;a:3:{i:0;s:0:"";i:1;i:192;i:2;s:3:" }";}i:192;a:3:{i:0;s:0:"";i:1;i:193;i:2;b:0;}i:193;a:3:{i:0;s:0:"";i:1;i:194;i:2;s:64:" /* And the OS workarounds start right after we know what we're";}i:194;a:3:{i:0;s:0:"";i:1;i:195;i:2;s:63:" * running: Windows XP SP1 needs to have C-State coordination";}i:195;a:3:{i:0;s:0:"";i:1;i:196;i:2;s:20:" * enabled in SMM.";}i:196;a:3:{i:0;s:0:"";i:1;i:197;i:2;s:5:" */";}i:197;a:3:{i:0;s:0:"";i:1;i:198;i:2;s:39:" If (LAnd(LEqual(OSYS, 2001), MPEN)) {";}i:198;a:3:{i:0;s:0:"";i:1;i:199;i:2;s:22:" // TRAP(61) // TODO";}i:199;a:3:{i:0;s:0:"";i:1;i:200;i:2;s:3:" }";}i:200;a:3:{i:0;s:0:"";i:1;i:201;i:2;b:0;}i:201;a:3:{i:0;s:0:"";i:1;i:202;i:2;s:64:" /* SMM power state and C4-on-C3 settings need to be updated */";}i:202;a:3:{i:0;s:0:"";i:1;i:203;i:2;s:21:" // TRAP(43) // TODO";}i:203;a:3:{i:0;s:0:"";i:1;i:204;i:2;s:2:" }";}i:204;a:3:{i:0;s:0:"";i:1;i:205;i:2;s:1:"}";}i:205;a:3:{i:0;s:0:"";i:1;i:206;i:2;b:0;}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:3:"206";}}}}s:45:"src/mainboard/lenovo/x60/acpi/sleepbutton.asl";a:2:{s:6:"chunks";a:1:{i:0;a:25:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"/*";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:45:" * This file is part of the coreboot project.";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:2:" *";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:58:" * Copyright (c) 2011 Sven Schnelle ";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:2:" *";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:64:" * This program is free software; you can redistribute it and/or";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:65:" * modify it under the terms of the GNU General Public License as";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:58:" * published by the Free Software Foundation; version 2 of";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:15:" * the License.";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:2:" *";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:66:" * This program is distributed in the hope that it will be useful,";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:65:" * but WITHOUT ANY WARRANTY; without even the implied warranty of";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:64:" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:47:" * GNU General Public License for more details.";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:2:" *";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:68:" * You should have received a copy of the GNU General Public License";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:62:" * along with this program; if not, write to the Free Software";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:57:" * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:20:" * MA 02110-1301 USA";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:3:" */";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;b:0;}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:12:"Device(SLPB)";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:1:"{";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:39:" Name (_HID, EisaId ("PNP0C0E"))";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;s:1:"}";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:2:"25";}}}}s:39:"src/mainboard/lenovo/x60/acpi/video.asl";a:2:{s:6:"chunks";a:1:{i:0;a:51:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"/*";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:45:" * This file is part of the coreboot project.";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:2:" *";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:58:" * Copyright (c) 2011 Sven Schnelle ";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:2:" *";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:64:" * This program is free software; you can redistribute it and/or";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:65:" * modify it under the terms of the GNU General Public License as";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:58:" * published by the Free Software Foundation; version 2 of";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:15:" * the License.";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:2:" *";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:66:" * This program is distributed in the hope that it will be useful,";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:65:" * but WITHOUT ANY WARRANTY; without even the implied warranty of";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:64:" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:47:" * GNU General Public License for more details.";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:2:" *";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:68:" * You should have received a copy of the GNU General Public License";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:62:" * along with this program; if not, write to the Free Software";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:57:" * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:20:" * MA 02110-1301 USA";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:3:" */";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;b:0;}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:13:"Device (DSPC)";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:1:"{";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:24:" Name (_ADR, 0x00020001)";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;s:48:" OperationRegion (DSPC, PCI_Config, 0x00, 0x100)";}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;s:40:" Field (DSPC, ByteAcc, NoLock, Preserve)";}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;s:2:" {";}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;s:16:" Offset (0xf4),";}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;s:16:" BRTC, 8";}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:2:" }";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;b:0;}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;s:31:" Method(BRTD, 0, NotSerialized)";}i:32;a:3:{i:0;s:0:"";i:1;i:33;i:2;s:2:" {";}i:33;a:3:{i:0;s:0:"";i:1;i:34;i:2;s:21:" Store(BRTC, Local0)";}i:34;a:3:{i:0;s:0:"";i:1;i:35;i:2;s:28:" if (LGreater (Local0, 15))";}i:35;a:3:{i:0;s:0:"";i:1;i:36;i:2;s:3:" {";}i:36;a:3:{i:0;s:0:"";i:1;i:37;i:2;s:31:" Subtract(Local0, 16, Local0)";}i:37;a:3:{i:0;s:0:"";i:1;i:38;i:2;s:22:" Store(Local0, BRTC)";}i:38;a:3:{i:0;s:0:"";i:1;i:39;i:2;s:3:" }";}i:39;a:3:{i:0;s:0:"";i:1;i:40;i:2;s:2:" }";}i:40;a:3:{i:0;s:0:"";i:1;i:41;i:2;b:0;}i:41;a:3:{i:0;s:0:"";i:1;i:42;i:2;s:31:" Method(BRTU, 0, NotSerialized)";}i:42;a:3:{i:0;s:0:"";i:1;i:43;i:2;s:2:" {";}i:43;a:3:{i:0;s:0:"";i:1;i:44;i:2;s:22:" Store (BRTC, Local0)";}i:44;a:3:{i:0;s:0:"";i:1;i:45;i:2;s:26:" if (LLess(Local0, 0xff))";}i:45;a:3:{i:0;s:0:"";i:1;i:46;i:2;s:3:" {";}i:46;a:3:{i:0;s:0:"";i:1;i:47;i:2;s:27:" Add (Local0, 16, Local0)";}i:47;a:3:{i:0;s:0:"";i:1;i:48;i:2;s:22:" Store(Local0, BRTC)";}i:48;a:3:{i:0;s:0:"";i:1;i:49;i:2;s:3:" }";}i:49;a:3:{i:0;s:0:"";i:1;i:50;i:2;s:2:" }";}i:50;a:3:{i:0;s:0:"";i:1;i:51;i:2;s:1:"}";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:2:"51";}}}}s:36:"src/mainboard/lenovo/x60/acpi/ec.asl";a:2:{s:6:"chunks";a:1:{i:0;a:101:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"/*";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:45:" * This file is part of the coreboot project.";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:2:" *";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:58:" * Copyright (c) 2011 Sven Schnelle ";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:2:" *";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:64:" * This program is free software; you can redistribute it and/or";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:65:" * modify it under the terms of the GNU General Public License as";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:58:" * published by the Free Software Foundation; version 2 of";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:15:" * the License.";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:2:" *";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:66:" * This program is distributed in the hope that it will be useful,";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:65:" * but WITHOUT ANY WARRANTY; without even the implied warranty of";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:64:" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:47:" * GNU General Public License for more details.";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:2:" *";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:68:" * You should have received a copy of the GNU General Public License";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:62:" * along with this program; if not, write to the Free Software";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:57:" * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:20:" * MA 02110-1301 USA";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:3:" */";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;b:0;}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:10:"Device(EC)";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:1:"{";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:31:" Name (_HID, EISAID("PNP0C09"))";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;s:15:" Name (_UID, 0)";}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;b:0;}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;s:16:" Name (_GPE, 28)";}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;s:16:" Mutex (ECLK, 0)";}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;b:0;}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:52:" OperationRegion(ERAM, EmbeddedControl, 0x00, 0x100)";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;s:40:" Field (ERAM, ByteAcc, NoLock, Preserve)";}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;s:2:" {";}i:32;a:3:{i:0;s:0:"";i:1;i:33;i:2;s:16:" Offset (0x05),";}i:33;a:3:{i:0;s:0:"";i:1;i:34;i:2;s:12:" HSPA, 1,";}i:34;a:3:{i:0;s:0:"";i:1;i:35;i:2;s:16:" Offset (0x0C),";}i:35;a:3:{i:0;s:0:"";i:1;i:36;i:2;s:28:" LEDS, 8, /* LED state */";}i:36;a:3:{i:0;s:0:"";i:1;i:37;i:2;s:16:" Offset (0x3B),";}i:37;a:3:{i:0;s:0:"";i:1;i:38;i:2;s:12:" , 1,";}i:38;a:3:{i:0;s:0:"";i:1;i:39;i:2;s:41:" KBLT, 1, /* Keyboard Light */";}i:39;a:3:{i:0;s:0:"";i:1;i:40;i:2;s:16:" Offset (0x81),";}i:40;a:3:{i:0;s:0:"";i:1;i:41;i:2;s:44:" PAGE, 8 /* Information Page Selector */";}i:41;a:3:{i:0;s:0:"";i:1;i:42;i:2;s:9:" }";}i:42;a:3:{i:0;s:0:"";i:1;i:43;i:2;b:0;}i:43;a:3:{i:0;s:0:"";i:1;i:44;i:2;s:17:" Method (_CRS, 0)";}i:44;a:3:{i:0;s:0:"";i:1;i:45;i:2;s:2:" {";}i:45;a:3:{i:0;s:0:"";i:1;i:46;i:2;s:32:" Name (ECMD, ResourceTemplate()";}i:46;a:3:{i:0;s:0:"";i:1;i:47;i:2;s:3:" {";}i:47;a:3:{i:0;s:0:"";i:1;i:48;i:2;s:34:" IO (Decode16, 0x62, 0x62, 1, 1)";}i:48;a:3:{i:0;s:0:"";i:1;i:49;i:2;s:37:" IO (Decode16, 0x66, 0x66, 1, 1)";}i:49;a:3:{i:0;s:0:"";i:1;i:50;i:2;s:4:" })";}i:50;a:3:{i:0;s:0:"";i:1;i:51;i:2;s:15:" Return (ECMD)";}i:51;a:3:{i:0;s:0:"";i:1;i:52;i:2;s:2:" }";}i:52;a:3:{i:0;s:0:"";i:1;i:53;i:2;b:0;}i:53;a:3:{i:0;s:0:"";i:1;i:54;i:2;s:31:" Method (LED, 1, NotSerialized)";}i:54;a:3:{i:0;s:0:"";i:1;i:55;i:2;s:2:" {";}i:55;a:3:{i:0;s:0:"";i:1;i:56;i:2;s:19:" Store(Arg0, LEDS)";}i:56;a:3:{i:0;s:0:"";i:1;i:57;i:2;s:2:" }";}i:57;a:3:{i:0;s:0:"";i:1;i:58;i:2;b:0;}i:58;a:3:{i:0;s:0:"";i:1;i:59;i:2;s:32:" Method (_INI, 0, NotSerialized)";}i:59;a:3:{i:0;s:0:"";i:1;i:60;i:2;s:2:" {";}i:60;a:3:{i:0;s:0:"";i:1;i:61;i:2;s:2:" }";}i:61;a:3:{i:0;s:0:"";i:1;i:62;i:2;b:0;}i:62;a:3:{i:0;s:0:"";i:1;i:63;i:2;s:27:" /* Sleep Button pressed */";}i:63;a:3:{i:0;s:0:"";i:1;i:64;i:2;s:31:" Method(_Q13, 0, NotSerialized)";}i:64;a:3:{i:0;s:0:"";i:1;i:65;i:2;s:2:" {";}i:65;a:3:{i:0;s:0:"";i:1;i:66;i:2;s:38:" Notify(\_SB.PCI0.LPCB.EC.SLPB, 0x80)";}i:66;a:3:{i:0;s:0:"";i:1;i:67;i:2;s:2:" }";}i:67;a:3:{i:0;s:0:"";i:1;i:68;i:2;b:0;}i:68;a:3:{i:0;s:0:"";i:1;i:69;i:2;s:24:" /* Brightness up GPE */";}i:69;a:3:{i:0;s:0:"";i:1;i:70;i:2;s:31:" Method(_Q14, 0, NotSerialized)";}i:70;a:3:{i:0;s:0:"";i:1;i:71;i:2;s:2:" {";}i:71;a:3:{i:0;s:0:"";i:1;i:72;i:2;s:15:" \DSPC.BRTU ()";}i:72;a:3:{i:0;s:0:"";i:1;i:73;i:2;s:2:" }";}i:73;a:3:{i:0;s:0:"";i:1;i:74;i:2;b:0;}i:74;a:3:{i:0;s:0:"";i:1;i:75;i:2;s:26:" /* Brightness down GPE */";}i:75;a:3:{i:0;s:0:"";i:1;i:76;i:2;s:31:" Method(_Q15, 0, NotSerialized)";}i:76;a:3:{i:0;s:0:"";i:1;i:77;i:2;s:2:" {";}i:77;a:3:{i:0;s:0:"";i:1;i:78;i:2;s:14:" \DSPC.BRTD()";}i:78;a:3:{i:0;s:0:"";i:1;i:79;i:2;s:2:" }";}i:79;a:3:{i:0;s:0:"";i:1;i:80;i:2;b:0;}i:80;a:3:{i:0;s:0:"";i:1;i:81;i:2;s:32:" /* AC status change: present */";}i:81;a:3:{i:0;s:0:"";i:1;i:82;i:2;s:31:" Method(_Q26, 0, NotSerialized)";}i:82;a:3:{i:0;s:0:"";i:1;i:83;i:2;s:2:" {";}i:83;a:3:{i:0;s:0:"";i:1;i:84;i:2;s:19:" Notify (AC, 0x80)";}i:84;a:3:{i:0;s:0:"";i:1;i:85;i:2;s:9:" Beep(6)";}i:85;a:3:{i:0;s:0:"";i:1;i:86;i:2;s:2:" }";}i:86;a:3:{i:0;s:0:"";i:1;i:87;i:2;b:0;}i:87;a:3:{i:0;s:0:"";i:1;i:88;i:2;s:36:" /* AC status change: not present */";}i:88;a:3:{i:0;s:0:"";i:1;i:89;i:2;s:31:" Method(_Q27, 0, NotSerialized)";}i:89;a:3:{i:0;s:0:"";i:1;i:90;i:2;s:2:" {";}i:90;a:3:{i:0;s:0:"";i:1;i:91;i:2;s:19:" Notify (AC, 0x80)";}i:91;a:3:{i:0;s:0:"";i:1;i:92;i:2;s:9:" Beep(6)";}i:92;a:3:{i:0;s:0:"";i:1;i:93;i:2;s:2:" }";}i:93;a:3:{i:0;s:0:"";i:1;i:94;i:2;b:0;}i:94;a:3:{i:0;s:0:"";i:1;i:95;i:2;b:0;}i:95;a:3:{i:0;s:0:"";i:1;i:96;i:2;s:17:"#include "ac.asl"";}i:96;a:3:{i:0;s:0:"";i:1;i:97;i:2;s:22:"#include "battery.asl"";}i:97;a:3:{i:0;s:0:"";i:1;i:98;i:2;s:26:"#include "sleepbutton.asl"";}i:98;a:3:{i:0;s:0:"";i:1;i:99;i:2;s:18:"#include "lid.asl"";}i:99;a:3:{i:0;s:0:"";i:1;i:100;i:2;s:19:"#include "beep.asl"";}i:100;a:3:{i:0;s:0:"";i:1;i:101;i:2;s:1:"}";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:3:"101";}}}}s:37:"src/mainboard/lenovo/x60/acpi/lid.asl";a:2:{s:6:"chunks";a:1:{i:0;a:37:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"/*";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:45:" * This file is part of the coreboot project.";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:2:" *";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:58:" * Copyright (c) 2011 Sven Schnelle ";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:2:" *";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:64:" * This program is free software; you can redistribute it and/or";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:65:" * modify it under the terms of the GNU General Public License as";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:58:" * published by the Free Software Foundation; version 2 of";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:15:" * the License.";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:2:" *";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:66:" * This program is distributed in the hope that it will be useful,";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:65:" * but WITHOUT ANY WARRANTY; without even the implied warranty of";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:64:" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:47:" * GNU General Public License for more details.";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:2:" *";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:68:" * You should have received a copy of the GNU General Public License";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:62:" * along with this program; if not, write to the Free Software";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:57:" * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:20:" * MA 02110-1301 USA";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:3:" */";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;b:0;}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:38:"Field(ERAM, ByteAcc, NoLock, Preserve)";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:1:"{";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:16:" Offset (0x46),";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;s:8:" , 2,";}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;s:11:" LIDS , 1";}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;s:1:"}";}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;b:0;}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;s:11:"Device(LID)";}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:1:"{";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;s:22:" Name(_HID, "PNP0C0D")";}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;b:0;}i:32;a:3:{i:0;s:0:"";i:1;i:33;i:2;s:31:" Method(_LId, 0, NotSerialized)";}i:33;a:3:{i:0;s:0:"";i:1;i:34;i:2;s:2:" {";}i:34;a:3:{i:0;s:0:"";i:1;i:35;i:2;s:15:" return (LIDS)";}i:35;a:3:{i:0;s:0:"";i:1;i:36;i:2;s:2:" }";}i:36;a:3:{i:0;s:0:"";i:1;i:37;i:2;s:1:"}";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:2:"37";}}}}s:41:"src/mainboard/lenovo/x60/acpi/battery.asl";a:2:{s:6:"chunks";a:1:{i:0;a:296:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"/*";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:45:" * This file is part of the coreboot project.";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:2:" *";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:58:" * Copyright (c) 2011 Sven Schnelle ";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:2:" *";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:64:" * This program is free software; you can redistribute it and/or";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:65:" * modify it under the terms of the GNU General Public License as";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:58:" * published by the Free Software Foundation; version 2 of";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:15:" * the License.";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:2:" *";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:66:" * This program is distributed in the hope that it will be useful,";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:65:" * but WITHOUT ANY WARRANTY; without even the implied warranty of";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:64:" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:47:" * GNU General Public License for more details.";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:2:" *";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:68:" * You should have received a copy of the GNU General Public License";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:62:" * along with this program; if not, write to the Free Software";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:57:" * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:20:" * MA 02110-1301 USA";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:3:" */";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;b:0;}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:38:"Field(ERAM, ByteAcc, NoLock, Preserve)";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:1:"{";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:15:" Offset (0x38),";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;s:33:" B0ST, 4, /* Battery 0 state */";}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;s:11:" , 1,";}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;s:36:" B0CH, 1, /* Battery 0 charging */";}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;s:39:" B0DI, 1, /* Battery 0 discharging */";}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;s:35:" B0PR, 1, /* Battery 0 present */";}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:15:" Offset (0x39),";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;s:33:" B1ST, 4, /* Battery 1 state */";}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;s:11:" , 1,";}i:32;a:3:{i:0;s:0:"";i:1;i:33;i:2;s:37:" B1CH, 1, /* Battery 1 charging, */";}i:33;a:3:{i:0;s:0:"";i:1;i:34;i:2;s:46:" B1DI, 1, /* Battery 1 discharging,*/";}i:34;a:3:{i:0;s:0:"";i:1;i:35;i:2;s:35:" B1PR, 1 /* Battery 1 present */";}i:35;a:3:{i:0;s:0:"";i:1;i:36;i:2;s:1:"}";}i:36;a:3:{i:0;s:0:"";i:1;i:37;i:2;b:0;}i:37;a:3:{i:0;s:0:"";i:1;i:38;i:2;s:18:"/* EC Registers */";}i:38;a:3:{i:0;s:0:"";i:1;i:39;i:2;s:18:"/* PAGE == 0x00 */";}i:39;a:3:{i:0;s:0:"";i:1;i:40;i:2;s:39:"Field (ERAM, ByteAcc, NoLock, Preserve)";}i:40;a:3:{i:0;s:0:"";i:1;i:41;i:2;s:1:"{";}i:41;a:3:{i:0;s:0:"";i:1;i:42;i:2;s:14:" Offset(0xa0),";}i:42;a:3:{i:0;s:0:"";i:1;i:43;i:2;s:46:" BARC, 16, /* Battery remaining capacity */";}i:43;a:3:{i:0;s:0:"";i:1;i:44;i:2;s:48:" BAFC, 16, /* Battery full charge capacity */";}i:44;a:3:{i:0;s:0:"";i:1;i:45;i:2;s:14:" Offset(0xa8),";}i:45;a:3:{i:0;s:0:"";i:1;i:46;i:2;s:40:" BAPR, 16, /* Battery present rate */";}i:46;a:3:{i:0;s:0:"";i:1;i:47;i:2;s:35:" BAVO, 16, /* Battery Voltage */";}i:47;a:3:{i:0;s:0:"";i:1;i:48;i:2;s:1:"}";}i:48;a:3:{i:0;s:0:"";i:1;i:49;i:2;b:0;}i:49;a:3:{i:0;s:0:"";i:1;i:50;i:2;s:18:"/* PAGE == 0x01 */";}i:50;a:3:{i:0;s:0:"";i:1;i:51;i:2;s:39:"Field (ERAM, ByteAcc, NoLock, Preserve)";}i:51;a:3:{i:0;s:0:"";i:1;i:52;i:2;s:1:"{";}i:52;a:3:{i:0;s:0:"";i:1;i:53;i:2;s:14:" Offset(0xa0),";}i:53;a:3:{i:0;s:0:"";i:1;i:54;i:2;s:12:" , 15,";}i:54;a:3:{i:0;s:0:"";i:1;i:55;i:2;s:12:" BAMA, 1,";}i:55;a:3:{i:0;s:0:"";i:1;i:56;i:2;s:1:"}";}i:56;a:3:{i:0;s:0:"";i:1;i:57;i:2;b:0;}i:57;a:3:{i:0;s:0:"";i:1;i:58;i:2;s:18:"/* PAGE == 0x02 */";}i:58;a:3:{i:0;s:0:"";i:1;i:59;i:2;s:39:"Field (ERAM, ByteAcc, NoLock, Preserve)";}i:59;a:3:{i:0;s:0:"";i:1;i:60;i:2;s:1:"{";}i:60;a:3:{i:0;s:0:"";i:1;i:61;i:2;s:14:" Offset(0xa0),";}i:61;a:3:{i:0;s:0:"";i:1;i:62;i:2;s:35:" BADC, 16, /* Design Capacity */";}i:62;a:3:{i:0;s:0:"";i:1;i:63;i:2;s:34:" BADV, 16, /* Design voltage */";}i:63;a:3:{i:0;s:0:"";i:1;i:64;i:2;s:12:" , 16,";}i:64;a:3:{i:0;s:0:"";i:1;i:65;i:2;s:12:" , 16,";}i:65;a:3:{i:0;s:0:"";i:1;i:66;i:2;s:12:" , 16,";}i:66;a:3:{i:0;s:0:"";i:1;i:67;i:2;s:12:" BASN, 16,";}i:67;a:3:{i:0;s:0:"";i:1;i:68;i:2;s:1:"}";}i:68;a:3:{i:0;s:0:"";i:1;i:69;i:2;b:0;}i:69;a:3:{i:0;s:0:"";i:1;i:70;i:2;s:32:"/* PAGE == 0x04: Battery type */";}i:70;a:3:{i:0;s:0:"";i:1;i:71;i:2;s:39:"Field (ERAM, ByteAcc, NoLock, Preserve)";}i:71;a:3:{i:0;s:0:"";i:1;i:72;i:2;s:1:"{";}i:72;a:3:{i:0;s:0:"";i:1;i:73;i:2;s:14:" Offset(0xa0),";}i:73;a:3:{i:0;s:0:"";i:1;i:74;i:2;s:11:" BATY, 32";}i:74;a:3:{i:0;s:0:"";i:1;i:75;i:2;s:1:"}";}i:75;a:3:{i:0;s:0:"";i:1;i:76;i:2;b:0;}i:76;a:3:{i:0;s:0:"";i:1;i:77;i:2;b:0;}i:77;a:3:{i:0;s:0:"";i:1;i:78;i:2;s:43:"/* PAGE == 0x05: Battery OEM information */";}i:78;a:3:{i:0;s:0:"";i:1;i:79;i:2;s:39:"Field (ERAM, ByteAcc, NoLock, Preserve)";}i:79;a:3:{i:0;s:0:"";i:1;i:80;i:2;s:1:"{";}i:80;a:3:{i:0;s:0:"";i:1;i:81;i:2;s:14:" Offset(0xa0),";}i:81;a:3:{i:0;s:0:"";i:1;i:82;i:2;s:12:" BAOE, 128";}i:82;a:3:{i:0;s:0:"";i:1;i:83;i:2;s:1:"}";}i:83;a:3:{i:0;s:0:"";i:1;i:84;i:2;b:0;}i:84;a:3:{i:0;s:0:"";i:1;i:85;i:2;s:32:"/* PAGE == 0x06: Battery name */";}i:85;a:3:{i:0;s:0:"";i:1;i:86;i:2;s:39:"Field (ERAM, ByteAcc, NoLock, Preserve)";}i:86;a:3:{i:0;s:0:"";i:1;i:87;i:2;s:1:"{";}i:87;a:3:{i:0;s:0:"";i:1;i:88;i:2;s:14:" Offset(0xa0),";}i:88;a:3:{i:0;s:0:"";i:1;i:89;i:2;s:12:" BANA, 128";}i:89;a:3:{i:0;s:0:"";i:1;i:90;i:2;s:1:"}";}i:90;a:3:{i:0;s:0:"";i:1;i:91;i:2;b:0;}i:91;a:3:{i:0;s:0:"";i:1;i:92;i:2;s:16:"/* Arg0: Battery";}i:92;a:3:{i:0;s:0:"";i:1;i:93;i:2;s:31:" * Arg1: Battery Status Package";}i:93;a:3:{i:0;s:0:"";i:1;i:94;i:2;s:17:" * Arg2: charging";}i:94;a:3:{i:0;s:0:"";i:1;i:95;i:2;s:20:" * Arg3: discharging";}i:95;a:3:{i:0;s:0:"";i:1;i:96;i:2;s:3:" */";}i:96;a:3:{i:0;s:0:"";i:1;i:97;i:2;s:30:"Method(BSTA, 4, NotSerialized)";}i:97;a:3:{i:0;s:0:"";i:1;i:98;i:2;s:1:"{";}i:98;a:3:{i:0;s:0:"";i:1;i:99;i:2;s:22:" Acquire(ECLK, 0xffff)";}i:99;a:3:{i:0;s:0:"";i:1;i:100;i:2;s:17:" Store(0, Local0)";}i:100;a:3:{i:0;s:0:"";i:1;i:101;i:2;s:18:" Or(1, Arg0, PAGE)";}i:101;a:3:{i:0;s:0:"";i:1;i:102;i:2;s:20:" Store(BAMA, Local1)";}i:102;a:3:{i:0;s:0:"";i:1;i:103;i:2;s:52:" Store(Arg0, PAGE) /* Battery dynamic information */";}i:103;a:3:{i:0;s:0:"";i:1;i:104;i:2;b:0;}i:104;a:3:{i:0;s:0:"";i:1;i:105;i:2;s:20:" Store(BAPR, Local2)";}i:105;a:3:{i:0;s:0:"";i:1;i:106;i:2;b:0;}i:106;a:3:{i:0;s:0:"";i:1;i:107;i:2;s:22:" if (Arg2) // charging";}i:107;a:3:{i:0;s:0:"";i:1;i:108;i:2;s:2:" {";}i:108;a:3:{i:0;s:0:"";i:1;i:109;i:2;s:23:" Or(2, Local0, Local0)";}i:109;a:3:{i:0;s:0:"";i:1;i:110;i:2;b:0;}i:110;a:3:{i:0;s:0:"";i:1;i:111;i:2;s:39:" If (LGreaterEqual (Local2, 0x8000)) {";}i:111;a:3:{i:0;s:0:"";i:1;i:112;i:2;s:19:" Store(0, Local2)";}i:112;a:3:{i:0;s:0:"";i:1;i:113;i:2;s:3:" }";}i:113;a:3:{i:0;s:0:"";i:1;i:114;i:2;s:2:" }";}i:114;a:3:{i:0;s:0:"";i:1;i:115;i:2;b:0;}i:115;a:3:{i:0;s:0:"";i:1;i:116;i:2;s:25:" if (Arg3) // discharging";}i:116;a:3:{i:0;s:0:"";i:1;i:117;i:2;s:2:" {";}i:117;a:3:{i:0;s:0:"";i:1;i:118;i:2;s:23:" Or(1, Local0, Local0)";}i:118;a:3:{i:0;s:0:"";i:1;i:119;i:2;s:35:" Subtract(0x10000, Local2, Local2)";}i:119;a:3:{i:0;s:0:"";i:1;i:120;i:2;s:2:" }";}i:120;a:3:{i:0;s:0:"";i:1;i:121;i:2;b:0;}i:121;a:3:{i:0;s:0:"";i:1;i:122;i:2;s:33:" Store(Local0, Index(Arg1, 0x00))";}i:122;a:3:{i:0;s:0:"";i:1;i:123;i:2;b:0;}i:123;a:3:{i:0;s:0:"";i:1;i:124;i:2;s:14:" if (Local1) {";}i:124;a:3:{i:0;s:0:"";i:1;i:125;i:2;s:37:" Multiply (BARC, 10, Index(Arg1, 2))";}i:125;a:3:{i:0;s:0:"";i:1;i:126;i:2;s:33:" Multiply (Local2, BAVO, Local2)";}i:126;a:3:{i:0;s:0:"";i:1;i:127;i:2;s:47:" Divide (Local2, 1000, Local3, Index(Arg1, 1))";}i:127;a:3:{i:0;s:0:"";i:1;i:128;i:2;s:9:" } else {";}i:128;a:3:{i:0;s:0:"";i:1;i:129;i:2;s:29:" Store(BARC, Index(Arg1, 2))";}i:129;a:3:{i:0;s:0:"";i:1;i:130;i:2;s:31:" Store(Local2, Index(Arg1, 1))";}i:130;a:3:{i:0;s:0:"";i:1;i:131;i:2;s:2:" }";}i:131;a:3:{i:0;s:0:"";i:1;i:132;i:2;s:28:" Store(BAVO, Index(Arg1, 3))";}i:132;a:3:{i:0;s:0:"";i:1;i:133;i:2;s:14:" Release(ECLK)";}i:133;a:3:{i:0;s:0:"";i:1;i:134;i:2;s:14:" Return (Arg1)";}i:134;a:3:{i:0;s:0:"";i:1;i:135;i:2;s:1:"}";}i:135;a:3:{i:0;s:0:"";i:1;i:136;i:2;b:0;}i:136;a:3:{i:0;s:0:"";i:1;i:137;i:2;s:30:"Method(BINF, 2, NotSerialized)";}i:137;a:3:{i:0;s:0:"";i:1;i:138;i:2;s:1:"{";}i:138;a:3:{i:0;s:0:"";i:1;i:139;i:2;s:22:" Acquire(ECLK, 0xffff)";}i:139;a:3:{i:0;s:0:"";i:1;i:140;i:2;s:53:" Or(1, Arg1, PAGE) /* Battery 0 static information */";}i:140;a:3:{i:0;s:0:"";i:1;i:141;i:2;s:29:" Xor(BAMA, 1, Index(Arg0, 0))";}i:141;a:3:{i:0;s:0:"";i:1;i:142;i:2;s:20:" Store(BAMA, Local0)";}i:142;a:3:{i:0;s:0:"";i:1;i:143;i:2;s:18:" Store(Arg1, PAGE)";}i:143;a:3:{i:0;s:0:"";i:1;i:144;i:2;s:20:" Store(BAFC, Local2)";}i:144;a:3:{i:0;s:0:"";i:1;i:145;i:2;s:18:" Or(2, Arg1, PAGE)";}i:145;a:3:{i:0;s:0:"";i:1;i:146;i:2;s:20:" Store(BADC, Local1)";}i:146;a:3:{i:0;s:0:"";i:1;i:147;i:2;b:0;}i:147;a:3:{i:0;s:0:"";i:1;i:148;i:2;s:12:" if (Local0)";}i:148;a:3:{i:0;s:0:"";i:1;i:149;i:2;s:2:" {";}i:149;a:3:{i:0;s:0:"";i:1;i:150;i:2;s:31:" Multiply (Local1, 10, Local1)";}i:150;a:3:{i:0;s:0:"";i:1;i:151;i:2;s:31:" Multiply (Local2, 10, Local2)";}i:151;a:3:{i:0;s:0:"";i:1;i:152;i:2;s:2:" }";}i:152;a:3:{i:0;s:0:"";i:1;i:153;i:2;b:0;}i:153;a:3:{i:0;s:0:"";i:1;i:154;i:2;s:49:" Store(Local1, Index(Arg0, 1)) // Design Capacity";}i:154;a:3:{i:0;s:0:"";i:1;i:155;i:2;s:59:" Store(Local2, Index(Arg0, 2)) // Last full charge capacity";}i:155;a:3:{i:0;s:0:"";i:1;i:156;i:2;s:46:" Store(BADV, Index(Arg0, 4)) // Design Voltage";}i:156;a:3:{i:0;s:0:"";i:1;i:157;i:2;s:64:" Divide (Local2, 20, Local0, Index(Arg0, 5)) // Warning capacity";}i:157;a:3:{i:0;s:0:"";i:1;i:158;i:2;b:0;}i:158;a:3:{i:0;s:0:"";i:1;i:159;i:2;s:21:" Store (BASN, Local0)";}i:159;a:3:{i:0;s:0:"";i:1;i:160;i:2;s:39:" Name (SERN, Buffer (0x06) { " " })";}i:160;a:3:{i:0;s:0:"";i:1;i:161;i:2;s:18:" Store (4, Local1)";}i:161;a:3:{i:0;s:0:"";i:1;i:162;i:2;s:15:" While (Local0)";}i:162;a:3:{i:0;s:0:"";i:1;i:163;i:2;s:2:" {";}i:163;a:3:{i:0;s:0:"";i:1;i:164;i:2;s:39:" Divide (Local0, 0x0A, Local2, Local0)";}i:164;a:3:{i:0;s:0:"";i:1;i:165;i:2;s:40:" Add (Local2, 48, Index (SERN, Local1))";}i:165;a:3:{i:0;s:0:"";i:1;i:166;i:2;s:20:" Decrement (Local1)";}i:166;a:3:{i:0;s:0:"";i:1;i:167;i:2;s:2:" }";}i:167;a:3:{i:0;s:0:"";i:1;i:168;i:2;s:48:" Store (SERN, Index (Arg0, 10)) // Serial Number";}i:168;a:3:{i:0;s:0:"";i:1;i:169;i:2;b:0;}i:169;a:3:{i:0;s:0:"";i:1;i:170;i:2;s:18:" Or(4, Arg1, PAGE)";}i:170;a:3:{i:0;s:0:"";i:1;i:171;i:2;s:40:" Name (TYPE, Buffer() { 0, 0, 0, 0, 0 })";}i:171;a:3:{i:0;s:0:"";i:1;i:172;i:2;s:18:" Store(BATY, TYPE)";}i:172;a:3:{i:0;s:0:"";i:1;i:173;i:2;s:46:" Store(TYPE, Index (Arg0, 11)) // Battery type";}i:173;a:3:{i:0;s:0:"";i:1;i:174;i:2;s:18:" Or(5, Arg1, PAGE)";}i:174;a:3:{i:0;s:0:"";i:1;i:175;i:2;s:49:" Store(BAOE, Index (Arg0, 12)) // OEM information";}i:175;a:3:{i:0;s:0:"";i:1;i:176;i:2;s:18:" Or(6, Arg1, PAGE)";}i:176;a:3:{i:0;s:0:"";i:1;i:177;i:2;s:46:" Store(BANA, Index (Arg0, 9)) // Model number";}i:177;a:3:{i:0;s:0:"";i:1;i:178;i:2;s:14:" Release(ECLK)";}i:178;a:3:{i:0;s:0:"";i:1;i:179;i:2;s:14:" Return (Arg0)";}i:179;a:3:{i:0;s:0:"";i:1;i:180;i:2;s:1:"}";}i:180;a:3:{i:0;s:0:"";i:1;i:181;i:2;b:0;}i:181;a:3:{i:0;s:0:"";i:1;i:182;i:2;s:13:"Device (BAT0)";}i:182;a:3:{i:0;s:0:"";i:1;i:183;i:2;s:1:"{";}i:183;a:3:{i:0;s:0:"";i:1;i:184;i:2;s:32:" Name (_HID, EisaId ("PNP0C0A"))";}i:184;a:3:{i:0;s:0:"";i:1;i:185;i:2;s:18:" Name (_UID, 0x00)";}i:185;a:3:{i:0;s:0:"";i:1;i:186;i:2;s:33:" Name (_PCL, Package () { \_SB })";}i:186;a:3:{i:0;s:0:"";i:1;i:187;i:2;b:0;}i:187;a:3:{i:0;s:0:"";i:1;i:188;i:2;s:23:" Name (BATS, Package ()";}i:188;a:3:{i:0;s:0:"";i:1;i:189;i:2;s:2:" {";}i:189;a:3:{i:0;s:0:"";i:1;i:190;i:2;s:40:" 0x00, // 0: PowerUnit: Report in mWh";}i:190;a:3:{i:0;s:0:"";i:1;i:191;i:2;s:31:" 0xFFFFFFFF, // 1: Design cap";}i:191;a:3:{i:0;s:0:"";i:1;i:192;i:2;s:41:" 0xFFFFFFFF, // 2: Last full charge cap";}i:192;a:3:{i:0;s:0:"";i:1;i:193;i:2;s:34:" 0x01, // 3: Battery Technology";}i:193;a:3:{i:0;s:0:"";i:1;i:194;i:2;s:36:" 10800, // 4: Design Voltage (mV)";}i:194;a:3:{i:0;s:0:"";i:1;i:195;i:2;s:39:" 0x00, // 5: Warning design capacity";}i:195;a:3:{i:0;s:0:"";i:1;i:196;i:2;s:34:" 200, // 6: Low design capacity";}i:196;a:3:{i:0;s:0:"";i:1;i:197;i:2;s:25:" 1, // 7: granularity1";}i:197;a:3:{i:0;s:0:"";i:1;i:198;i:2;s:25:" 1, // 8: granularity2";}i:198;a:3:{i:0;s:0:"";i:1;i:199;i:2;s:26:" "", // 9: Model number";}i:199;a:3:{i:0;s:0:"";i:1;i:200;i:2;s:27:" "", // A: Serial number";}i:200;a:3:{i:0;s:0:"";i:1;i:201;i:2;s:26:" "", // B: Battery Type";}i:201;a:3:{i:0;s:0:"";i:1;i:202;i:2;s:28:" "" // C: OEM information";}i:202;a:3:{i:0;s:0:"";i:1;i:203;i:2;s:3:" })";}i:203;a:3:{i:0;s:0:"";i:1;i:204;i:2;b:0;}i:204;a:3:{i:0;s:0:"";i:1;i:205;i:2;s:32:" Method (_BIF, 0, NotSerialized)";}i:205;a:3:{i:0;s:0:"";i:1;i:206;i:2;s:2:" {";}i:206;a:3:{i:0;s:0:"";i:1;i:207;i:2;s:24:" Return (BINF(BATS, 0))";}i:207;a:3:{i:0;s:0:"";i:1;i:208;i:2;s:2:" }";}i:208;a:3:{i:0;s:0:"";i:1;i:209;i:2;b:0;}i:209;a:3:{i:0;s:0:"";i:1;i:210;i:2;s:23:" Name (BATI, Package ()";}i:210;a:3:{i:0;s:0:"";i:1;i:211;i:2;s:2:" {";}i:211;a:3:{i:0;s:0:"";i:1;i:212;i:2;s:23:" 0, // Battery State";}i:212;a:3:{i:0;s:0:"";i:1;i:213;i:2;s:25:" // Bit 0 - discharge";}i:213;a:3:{i:0;s:0:"";i:1;i:214;i:2;s:22:" // Bit 1 - charge";}i:214;a:3:{i:0;s:0:"";i:1;i:215;i:2;s:30:" // Bit 2 - critical state";}i:215;a:3:{i:0;s:0:"";i:1;i:216;i:2;s:30:" 0, // Battery present Rate";}i:216;a:3:{i:0;s:0:"";i:1;i:217;i:2;s:36:" 0, // Battery remaining capacity";}i:217;a:3:{i:0;s:0:"";i:1;i:218;i:2;s:32:" 0 // Battery present voltage";}i:218;a:3:{i:0;s:0:"";i:1;i:219;i:2;s:3:" })";}i:219;a:3:{i:0;s:0:"";i:1;i:220;i:2;b:0;}i:220;a:3:{i:0;s:0:"";i:1;i:221;i:2;s:32:" Method (_BST, 0, NotSerialized)";}i:221;a:3:{i:0;s:0:"";i:1;i:222;i:2;s:2:" {";}i:222;a:3:{i:0;s:0:"";i:1;i:223;i:2;s:13:" if (B0PR) {";}i:223;a:3:{i:0;s:0:"";i:1;i:224;i:2;s:37:" Return (BSTA(0, BATI, B0CH, B0DI))";}i:224;a:3:{i:0;s:0:"";i:1;i:225;i:2;s:10:" } else {";}i:225;a:3:{i:0;s:0:"";i:1;i:226;i:2;s:16:" Return (BATS)";}i:226;a:3:{i:0;s:0:"";i:1;i:227;i:2;s:3:" }";}i:227;a:3:{i:0;s:0:"";i:1;i:228;i:2;s:2:" }";}i:228;a:3:{i:0;s:0:"";i:1;i:229;i:2;b:0;}i:229;a:3:{i:0;s:0:"";i:1;i:230;i:2;s:32:" Method (_STA, 0, NotSerialized)";}i:230;a:3:{i:0;s:0:"";i:1;i:231;i:2;s:2:" {";}i:231;a:3:{i:0;s:0:"";i:1;i:232;i:2;s:13:" if (B0PR) {";}i:232;a:3:{i:0;s:0:"";i:1;i:233;i:2;s:16:" Return (0x1f)";}i:233;a:3:{i:0;s:0:"";i:1;i:234;i:2;s:10:" } else {";}i:234;a:3:{i:0;s:0:"";i:1;i:235;i:2;s:16:" Return (0x0f)";}i:235;a:3:{i:0;s:0:"";i:1;i:236;i:2;s:3:" }";}i:236;a:3:{i:0;s:0:"";i:1;i:237;i:2;s:2:" }";}i:237;a:3:{i:0;s:0:"";i:1;i:238;i:2;s:1:"}";}i:238;a:3:{i:0;s:0:"";i:1;i:239;i:2;b:0;}i:239;a:3:{i:0;s:0:"";i:1;i:240;i:2;s:13:"Device (BAT1)";}i:240;a:3:{i:0;s:0:"";i:1;i:241;i:2;s:1:"{";}i:241;a:3:{i:0;s:0:"";i:1;i:242;i:2;s:32:" Name (_HID, EisaId ("PNP0C0A"))";}i:242;a:3:{i:0;s:0:"";i:1;i:243;i:2;s:18:" Name (_UID, 0x00)";}i:243;a:3:{i:0;s:0:"";i:1;i:244;i:2;s:33:" Name (_PCL, Package () { \_SB })";}i:244;a:3:{i:0;s:0:"";i:1;i:245;i:2;b:0;}i:245;a:3:{i:0;s:0:"";i:1;i:246;i:2;s:23:" Name (BATS, Package ()";}i:246;a:3:{i:0;s:0:"";i:1;i:247;i:2;s:2:" {";}i:247;a:3:{i:0;s:0:"";i:1;i:248;i:2;s:40:" 0x00, // 0: PowerUnit: Report in mWh";}i:248;a:3:{i:0;s:0:"";i:1;i:249;i:2;s:31:" 0xFFFFFFFF, // 1: Design cap";}i:249;a:3:{i:0;s:0:"";i:1;i:250;i:2;s:41:" 0xFFFFFFFF, // 2: Last full charge cap";}i:250;a:3:{i:0;s:0:"";i:1;i:251;i:2;s:34:" 0x01, // 3: Battery Technology";}i:251;a:3:{i:0;s:0:"";i:1;i:252;i:2;s:36:" 10800, // 4: Design Voltage (mV)";}i:252;a:3:{i:0;s:0:"";i:1;i:253;i:2;s:39:" 0x00, // 5: Warning design capacity";}i:253;a:3:{i:0;s:0:"";i:1;i:254;i:2;s:34:" 200, // 6: Low design capacity";}i:254;a:3:{i:0;s:0:"";i:1;i:255;i:2;s:25:" 1, // 7: granularity1";}i:255;a:3:{i:0;s:0:"";i:1;i:256;i:2;s:25:" 1, // 8: granularity2";}i:256;a:3:{i:0;s:0:"";i:1;i:257;i:2;s:26:" "", // 9: Model number";}i:257;a:3:{i:0;s:0:"";i:1;i:258;i:2;s:27:" "", // A: Serial number";}i:258;a:3:{i:0;s:0:"";i:1;i:259;i:2;s:26:" "", // B: Battery Type";}i:259;a:3:{i:0;s:0:"";i:1;i:260;i:2;s:28:" "" // C: OEM information";}i:260;a:3:{i:0;s:0:"";i:1;i:261;i:2;s:3:" })";}i:261;a:3:{i:0;s:0:"";i:1;i:262;i:2;b:0;}i:262;a:3:{i:0;s:0:"";i:1;i:263;i:2;s:32:" Method (_BIF, 0, NotSerialized)";}i:263;a:3:{i:0;s:0:"";i:1;i:264;i:2;s:2:" {";}i:264;a:3:{i:0;s:0:"";i:1;i:265;i:2;s:27:" Return (BINF(BATS, 0x10))";}i:265;a:3:{i:0;s:0:"";i:1;i:266;i:2;s:2:" }";}i:266;a:3:{i:0;s:0:"";i:1;i:267;i:2;b:0;}i:267;a:3:{i:0;s:0:"";i:1;i:268;i:2;s:23:" Name (BATI, Package ()";}i:268;a:3:{i:0;s:0:"";i:1;i:269;i:2;s:2:" {";}i:269;a:3:{i:0;s:0:"";i:1;i:270;i:2;s:23:" 0, // Battery State";}i:270;a:3:{i:0;s:0:"";i:1;i:271;i:2;s:25:" // Bit 0 - discharge";}i:271;a:3:{i:0;s:0:"";i:1;i:272;i:2;s:22:" // Bit 1 - charge";}i:272;a:3:{i:0;s:0:"";i:1;i:273;i:2;s:30:" // Bit 2 - critical state";}i:273;a:3:{i:0;s:0:"";i:1;i:274;i:2;s:30:" 0, // Battery present Rate";}i:274;a:3:{i:0;s:0:"";i:1;i:275;i:2;s:36:" 0, // Battery remaining capacity";}i:275;a:3:{i:0;s:0:"";i:1;i:276;i:2;s:32:" 0 // Battery present voltage";}i:276;a:3:{i:0;s:0:"";i:1;i:277;i:2;s:3:" })";}i:277;a:3:{i:0;s:0:"";i:1;i:278;i:2;b:0;}i:278;a:3:{i:0;s:0:"";i:1;i:279;i:2;s:32:" Method (_BST, 0, NotSerialized)";}i:279;a:3:{i:0;s:0:"";i:1;i:280;i:2;s:2:" {";}i:280;a:3:{i:0;s:0:"";i:1;i:281;i:2;s:13:" if (B1PR) {";}i:281;a:3:{i:0;s:0:"";i:1;i:282;i:2;s:40:" Return (BSTA(0x10, BATI, B1CH, B1DI))";}i:282;a:3:{i:0;s:0:"";i:1;i:283;i:2;s:10:" } else {";}i:283;a:3:{i:0;s:0:"";i:1;i:284;i:2;s:16:" Return (BATS)";}i:284;a:3:{i:0;s:0:"";i:1;i:285;i:2;s:3:" }";}i:285;a:3:{i:0;s:0:"";i:1;i:286;i:2;s:2:" }";}i:286;a:3:{i:0;s:0:"";i:1;i:287;i:2;b:0;}i:287;a:3:{i:0;s:0:"";i:1;i:288;i:2;s:32:" Method (_STA, 0, NotSerialized)";}i:288;a:3:{i:0;s:0:"";i:1;i:289;i:2;s:2:" {";}i:289;a:3:{i:0;s:0:"";i:1;i:290;i:2;s:13:" if (B1PR) {";}i:290;a:3:{i:0;s:0:"";i:1;i:291;i:2;s:16:" Return (0x1f)";}i:291;a:3:{i:0;s:0:"";i:1;i:292;i:2;s:10:" } else {";}i:292;a:3:{i:0;s:0:"";i:1;i:293;i:2;s:16:" Return (0x0f)";}i:293;a:3:{i:0;s:0:"";i:1;i:294;i:2;s:3:" }";}i:294;a:3:{i:0;s:0:"";i:1;i:295;i:2;s:2:" }";}i:295;a:3:{i:0;s:0:"";i:1;i:296;i:2;s:1:"}";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:3:"296";}}}}s:38:"src/mainboard/lenovo/x60/acpi/beep.asl";a:2:{s:6:"chunks";a:1:{i:0;a:32:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"/*";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:45:" * This file is part of the coreboot project.";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:2:" *";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:58:" * Copyright (c) 2011 Sven Schnelle ";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:2:" *";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:64:" * This program is free software; you can redistribute it and/or";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:65:" * modify it under the terms of the GNU General Public License as";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:58:" * published by the Free Software Foundation; version 2 of";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:15:" * the License.";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:2:" *";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:66:" * This program is distributed in the hope that it will be useful,";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:65:" * but WITHOUT ANY WARRANTY; without even the implied warranty of";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:64:" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:47:" * GNU General Public License for more details.";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:2:" *";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:68:" * You should have received a copy of the GNU General Public License";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:62:" * along with this program; if not, write to the Free Software";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:57:" * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:20:" * MA 02110-1301 USA";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:3:" */";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;b:0;}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:38:"Field(ERAM, ByteAcc, NoLock, Preserve)";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:1:"{";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:16:" Offset (0x06),";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;s:58:" SNDS, 8 /* Write to this register to generate sound */";}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;b:0;}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;s:1:"}";}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;b:0;}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;s:30:"Method(BEEP, 1, NotSerialized)";}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:1:"{";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;s:19:" Store (Arg0, SNDS)";}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;s:1:"}";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:2:"32";}}}}s:33:"src/mainboard/lenovo/x60/dsdt.asl";a:2:{s:6:"chunks";a:1:{i:0;a:56:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"/*";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:45:" * This file is part of the coreboot project.";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:2:" *";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:43:" * Copyright (C) 2007-2009 coresystems GmbH";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:2:" *";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:64:" * This program is free software; you can redistribute it and/or";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:65:" * modify it under the terms of the GNU General Public License as";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:58:" * published by the Free Software Foundation; version 2 of";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:15:" * the License.";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:2:" *";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:66:" * This program is distributed in the hope that it will be useful,";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:65:" * but WITHOUT ANY WARRANTY; without even the implied warranty of";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:64:" * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:47:" * GNU General Public License for more details.";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:2:" *";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:68:" * You should have received a copy of the GNU General Public License";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:62:" * along with this program; if not, write to the Free Software";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:57:" * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:20:" * MA 02110-1301 USA";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:3:" */";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;b:0;}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:16:"DefinitionBlock(";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:12:" "dsdt.aml",";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:8:" "DSDT",";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;s:35:" 0x03, // DSDT revision: ACPI v3.0";}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;s:20:" "COREv4", // OEM id";}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;s:32:" "COREBOOT", // OEM table id";}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;s:27:" 0x20090419 // OEM revision";}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;s:1:")";}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:1:"{";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;s:23:" // Some generic macros";}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;s:29:" #include "acpi/platform.asl"";}i:32;a:3:{i:0;s:0:"";i:1;i:33;i:2;b:0;}i:33;a:3:{i:0;s:0:"";i:1;i:34;i:2;s:28:" // global NVS and variables";}i:34;a:3:{i:0;s:0:"";i:1;i:35;i:2;s:66:" #include "../../../southbridge/intel/i82801gx/acpi/globalnvs.asl"";}i:35;a:3:{i:0;s:0:"";i:1;i:36;i:2;b:0;}i:36;a:3:{i:0;s:0:"";i:1;i:37;i:2;s:26:" // General Purpose Events";}i:37;a:3:{i:0;s:0:"";i:1;i:38;i:2;s:24:" #include "acpi/gpe.asl"";}i:38;a:3:{i:0;s:0:"";i:1;i:39;i:2;b:0;}i:39;a:3:{i:0;s:0:"";i:1;i:40;i:2;s:30:" // mainboard specific devices";}i:40;a:3:{i:0;s:0:"";i:1;i:41;i:2;s:30:" #include "acpi/mainboard.asl"";}i:41;a:3:{i:0;s:0:"";i:1;i:42;i:2;b:0;}i:42;a:3:{i:0;s:0:"";i:1;i:43;i:2;s:16:" // Thermal Zone";}i:43;a:3:{i:0;s:0:"";i:1;i:44;i:2;s:28:" #include "acpi/thermal.asl"";}i:44;a:3:{i:0;s:0:"";i:1;i:45;i:2;b:0;}i:45;a:3:{i:0;s:0:"";i:1;i:46;i:2;s:15:" Scope (\_SB) {";}i:46;a:3:{i:0;s:0:"";i:1;i:47;i:2;s:15:" Device (PCI0)";}i:47;a:3:{i:0;s:0:"";i:1;i:48;i:2;s:3:" {";}i:48;a:3:{i:0;s:0:"";i:1;i:49;i:2;s:59:" #include "../../../northbridge/intel/i945/acpi/i945.asl"";}i:49;a:3:{i:0;s:0:"";i:1;i:50;i:2;s:63:" #include "../../../southbridge/intel/i82801gx/acpi/ich7.asl"";}i:50;a:3:{i:0;s:0:"";i:1;i:51;i:2;s:3:" }";}i:51;a:3:{i:0;s:0:"";i:1;i:52;i:2;s:2:" }";}i:52;a:3:{i:0;s:0:"";i:1;i:53;i:2;b:0;}i:53;a:3:{i:0;s:0:"";i:1;i:54;i:2;s:36:" /* Chipset specific sleep states */";}i:54;a:3:{i:0;s:0:"";i:1;i:55;i:2;s:68:" #include "../../../southbridge/intel/i82801gx/acpi/sleepstates.asl"";}i:55;a:3:{i:0;s:0:"";i:1;i:56;i:2;s:1:"}";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:2:"56";}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-02-svn-new-files-with-properties.diff b/test/data/IDF_DiffTest/test-02-svn-new-files-with-properties.diff new file mode 100644 index 0000000..8e6bf24 --- /dev/null +++ b/test/data/IDF_DiffTest/test-02-svn-new-files-with-properties.diff @@ -0,0 +1,389 @@ +Index: LinuxBIOSv1/src/include/cpu/i786/cpufixup.h +=================================================================== +--- LinuxBIOSv1/src/include/cpu/i786/cpufixup.h (Revision 0) ++++ LinuxBIOSv1/src/include/cpu/i786/cpufixup.h (Revision 665) +@@ -0,0 +1,11 @@ ++#ifndef CPU_I786_CPUFIXUP_H ++#define CPU_I786_CPUFIXUP_H ++ ++ ++void i786_cpufixup(struct mem_range *mem); ++ ++#define L3_CACHE_DISABLE 0x40 ++ ++#endif /* CPU_I786_CPUFIXUP_H */ ++ ++ + +Eigenschaftsnderungen: LinuxBIOSv1\src\include\cpu\i786\cpufixup.h +___________________________________________________________________ +Hinzugefgt: svn:keywords + + Author Date Id Revision +Hinzugefgt: svn:eol-style + + native + +Index: LinuxBIOSv1/src/mainboard/tyan/guiness/cmos.layout +=================================================================== +--- LinuxBIOSv1/src/mainboard/tyan/guiness/cmos.layout (Revision 0) ++++ LinuxBIOSv1/src/mainboard/tyan/guiness/cmos.layout (Revision 665) +@@ -0,0 +1,63 @@ ++entries ++ ++#start-bit length config config-ID name ++#0 8 r 0 seconds ++#8 8 r 0 alarm_seconds ++#16 8 r 0 minutes ++#24 8 r 0 alarm_minutes ++#32 8 r 0 hours ++#40 8 r 0 alarm_hours ++#48 8 r 0 day_of_week ++#56 8 r 0 day_of_month ++#64 8 r 0 month ++#72 8 r 0 year ++#80 4 r 0 rate_select ++#84 3 r 0 REF_Clock ++#87 1 r 0 UIP ++#88 1 r 0 auto_switch_DST ++#89 1 r 0 24_hour_mode ++#90 1 r 0 binary_values_enable ++#91 1 r 0 square-wave_out_enable ++#92 1 r 0 update_finished_enable ++#93 1 r 0 alarm_interrupt_enable ++#94 1 r 0 periodic_interrupt_enable ++#95 1 r 0 disable_clock_updates ++#96 288 r 0 temporary_filler ++0 384 r 0 reserved_memory ++384 1 e 4 boot_option ++385 1 e 4 last_boot ++386 3 e 5 baud_rate ++392 4 e 6 debug_level ++396 1 e 1 power_on_after_fail ++#401 1 e 1 ECC_memory ++#402 1 e 2 hda_disk ++#403 1 e 2 hdb_disk ++#404 1 e 2 hdc_disk ++#405 1 e 2 hdd_disk ++#406 2 e 7 boot_device ++ ++enumerations ++ ++#ID value text ++1 0 Disable ++1 1 Enable ++#2 0 No ++#2 1 Yes ++4 0 Fallback ++4 1 Normal ++5 0 115200 ++5 1 57600 ++5 2 38400 ++5 3 19200 ++5 4 9600 ++5 5 4800 ++5 6 2400 ++5 7 1200 ++6 6 Notice ++6 7 Info ++6 8 Debug ++6 9 Spew ++#7 0 Network ++#7 1 HDD ++#7 2 Floppy ++#7 3 ROM + +Eigenschaftsnderungen: LinuxBIOSv1\src\mainboard\tyan\guiness\cmos.layout +___________________________________________________________________ +Hinzugefgt: svn:keywords + + Author Date Id Revision +Hinzugefgt: svn:eol-style + + native + +Index: LinuxBIOSv1/src/config/linuxbios_c.ld +=================================================================== +--- LinuxBIOSv1/src/config/linuxbios_c.ld (Revision 0) ++++ LinuxBIOSv1/src/config/linuxbios_c.ld (Revision 665) +@@ -0,0 +1,105 @@ ++/* ++ * Memory map: ++ * ++ * _RAMBASE ++ * : data segment ++ * : bss segment ++ * : heap ++ * : stack ++ */ ++/* ++ * Bootstrap code for the STPC Consumer ++ * Copyright (c) 1999 by Net Insight AB. All Rights Reserved. ++ * ++ * $Id$ ++ * ++ */ ++ ++/* ++ * Written by Johan Rydberg, based on work by Daniel Kahlin. ++ * Rewritten by Eric Biederman ++ */ ++/* ++ * We use ELF as output format. So that we can ++ * debug the code in some form. ++ */ ++INCLUDE ldoptions ++ ++ENTRY(_start) ++ ++SECTIONS ++{ ++ . = _RAMBASE; ++ /* ++ * First we place the code and read only data (typically const declared). ++ * This get placed in rom. ++ */ ++ .text : { ++ _text = .; ++ *(.text); ++ *(.text.*); ++ . = ALIGN(16); ++ _etext = .; ++ } ++ .rodata : { ++ _rodata = .; ++ . = ALIGN(4); ++ streams = . ; ++ *(.rodata.streams) ++ estreams = .; ++ . = ALIGN(4); ++ pci_drivers = . ; ++ *(.rodata.pci_drivers) ++ epci_drivers = . ; ++ *(.rodata) ++ *(.rodata.*) ++ _erodata = .; ++ } ++ /* ++ * After the code we place initialized data (typically initialized ++ * global variables). This gets copied into ram by startup code. ++ * __data_start and __data_end shows where in ram this should be placed, ++ * whereas __data_loadstart and __data_loadend shows where in rom to ++ * copy from. ++ */ ++ .data : { ++ _data = .; ++ *(.data) ++ _edata = .; ++ } ++ /* ++ * bss does not contain data, it is just a space that should be zero ++ * initialized on startup. (typically uninitialized global variables) ++ * crt0.S fills between _bss and _ebss with zeroes. ++ */ ++ _bss = .; ++ .bss . : { ++ *(.bss) ++ *(.sbss) ++ *(COMMON) ++ } ++ _ebss = .; ++ _end = .; ++ _stack = .; ++ .stack . : { ++ /* Reserve a stack for each possible cpu, +1 extra */ ++ . = ((MAX_CPUS * STACK_SIZE) + STACK_SIZE) ; ++ } ++ _estack = .; ++ _heap = .; ++ .heap . : { ++ /* Reserve 256K for the heap */ ++ . = HEAP_SIZE ; ++ . = ALIGN(4); ++ } ++ _eheap = .; ++ /* The ram segment ++ * This is all address of the memory resident copy of linuxBIOS. ++ */ ++ _ram_seg = _text; ++ _eram_seg = _eheap; ++ /DISCARD/ : { ++ *(.comment) ++ *(.note) ++ } ++} + +Eigenschaftsnderungen: LinuxBIOSv1\src\config\linuxbios_c.ld +___________________________________________________________________ +Hinzugefgt: svn:keywords + + Author Date Id Revision +Hinzugefgt: svn:eol-style + + native + +Index: LinuxBIOSv1/src/arch/i386/include/arch/rom_segs.h +=================================================================== +--- LinuxBIOSv1/src/arch/i386/include/arch/rom_segs.h (Revision 0) ++++ LinuxBIOSv1/src/arch/i386/include/arch/rom_segs.h (Revision 665) +@@ -0,0 +1,10 @@ ++#ifndef ROM_SEGS_H ++#define ROM_SEGS_H ++ ++#define ROM_CODE_SEG 0x08 ++#define ROM_DATA_SEG 0x10 ++ ++#define CACHE_RAM_CODE_SEG 0x18 ++#define CACHE_RAM_DATA_SEG 0x20 ++ ++#endif /* ROM_SEGS_H */ + +Eigenschaftsnderungen: LinuxBIOSv1\src\arch\i386\include\arch\rom_segs.h +___________________________________________________________________ +Hinzugefgt: svn:keywords + + Author Date Id Revision +Hinzugefgt: svn:eol-style + + native + +Index: LinuxBIOSv1/src/arch/i386/lib/c_start.S +=================================================================== +--- LinuxBIOSv1/src/arch/i386/lib/c_start.S (Revision 0) ++++ LinuxBIOSv1/src/arch/i386/lib/c_start.S (Revision 665) +@@ -0,0 +1,135 @@ ++#include ++#include ++#ifdef SMP ++#include ++#endif ++ .section ".text" ++ .code32 ++ .globl _start ++_start: ++ cli ++ lgdt %cs:gdtaddr ++ ljmp $0x10, $1f ++1: movl $0x18, %ax ++ movl %eax, %ds ++ movl %eax, %es ++ movl %eax, %ss ++ movl %eax, %fs ++ movl %eax, %gs ++ ++ intel_chip_post_macro(0x13) /* post 12 */ ++ ++ /** clear stack */ ++ leal EXT(_stack), %edi ++ movl $EXT(_estack), %ecx ++ subl %edi, %ecx ++ xorl %eax, %eax ++ rep ++ stosb ++ ++ /** clear bss */ ++ leal EXT(_bss), %edi ++ movl $EXT(_ebss), %ecx ++ subl %edi, %ecx ++ jz .Lnobss ++ xorl %eax, %eax ++ rep ++ stosb ++.Lnobss: ++ ++ /* set new stack */ ++ movl $_estack, %esp ++#ifdef SMP ++ /* Get the cpu id */ ++ movl $APIC_DEFAULT_BASE, %edi ++ movl APIC_ID(%edi), %eax ++ shrl $24, %eax ++ ++ /* Get the cpu index (MAX_CPUS on error) */ ++ movl $-4, %ebx ++1: addl $4, %ebx ++ cmpl $(MAX_CPUS << 2), %ebx ++ je 2 ++ cmpl %eax, EXT(initial_apicid)(%ebx) ++ jne 1b ++2: shrl $2, %ebx ++ ++ /* Now compute the appropriate stack */ ++ movl %ebx, %eax ++ movl $STACK_SIZE, %ebx ++ mull %ebx ++ subl %eax, %esp ++ ++ /* push the boot_complete flag */ ++ pushl %ebp ++ ++ /* Save the stack location */ ++ movl %esp, %ebp ++ ++ /* ++ * Now we are finished. Memory is up, data is copied and ++ * bss is cleared. Now we call the main routine and ++ * let it do the rest. ++ */ ++ intel_chip_post_macro(0xfe) /* post fe */ ++ ++ /* Resort the stack location */ ++ movl %ebp, %esp ++ ++ /* The boot_complete flag has already been pushed */ ++ call EXT(hardwaremain) ++ /*NOTREACHED*/ ++.Lhlt: ++ intel_chip_post_macro(0xee) /* post fe */ ++ hlt ++ jmp .Lhlt ++#endif ++ ++ ++ .globl gdt, gdt_end, gdt_limit ++ ++gdt_limit = gdt_end - gdt - 1 /* compute the table limit */ ++gdtaddr: ++ .word gdt_limit ++ .long gdt /* we know the offset */ ++ ++gdt: ++// selgdt 0 ++ .word 0x0000, 0x0000 /* dummy */ ++ .byte 0x00, 0x00, 0x00, 0x00 ++ ++// selgdt 8 ++ .word 0x0000, 0x0000 /* dummy */ ++ .byte 0x00, 0x00, 0x00, 0x00 ++ ++// selgdt 0x10 ++/* flat code segment */ ++ .word 0xffff, 0x0000 ++ .byte 0x00, 0x9b, 0xcf, 0x00 ++ ++//selgdt 0x18 ++/* flat data segment */ ++ .word 0xffff, 0x0000 ++ .byte 0x00, 0x93, 0xcf, 0x00 ++ ++//selgdt 0x20 ++ .word 0x0000, 0x0000 /* dummy */ ++ .byte 0x00, 0x00, 0x00, 0x00 ++ ++#if defined(CONFIG_VGABIOS) && (CONFIG_VGABIOS == 1) ++ // from monty: ++ /* 0x00009a00,0000ffffULL, 20h: 16-bit 64k code at 0x00000000 */ ++ /* 0x00009200,0000ffffULL 28h: 16-bit 64k data at 0x00000000 */ ++// selgdt 0x28 ++/*16-bit 64k code at 0x00000000 */ ++ .word 0xffff, 0x0000 ++ .byte 0, 0x9a, 0, 0 ++ ++// selgdt 0x30 ++/*16-bit 64k data at 0x00000000 */ ++ .word 0xffff, 0x0000 ++ .byte 0, 0x92, 0, 0 ++#endif // defined(CONFIG_VGABIOS) && (CONFIG_VGABIOS == 1) ++gdt_end: ++ ++.code32 + +Eigenschaftsnderungen: LinuxBIOSv1\src\arch\i386\lib\c_start.S +___________________________________________________________________ +Hinzugefgt: svn:keywords + + Author Date Id Revision +Hinzugefgt: svn:eol-style + + native + diff --git a/test/data/IDF_DiffTest/test-02-svn-new-files-with-properties.expected b/test/data/IDF_DiffTest/test-02-svn-new-files-with-properties.expected new file mode 100644 index 0000000..c61fdf6 --- /dev/null +++ b/test/data/IDF_DiffTest/test-02-svn-new-files-with-properties.expected @@ -0,0 +1 @@ +a:5:{s:43:"LinuxBIOSv1/src/include/cpu/i786/cpufixup.h";a:2:{s:6:"chunks";a:1:{i:0;a:11:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:27:"#ifndef CPU_I786_CPUFIXUP_H";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:27:"#define CPU_I786_CPUFIXUP_H";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;b:0;}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;b:0;}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:42:"void i786_cpufixup(struct mem_range *mem);";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;b:0;}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:29:"#define L3_CACHE_DISABLE 0x40";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;b:0;}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:32:"#endif /* CPU_I786_CPUFIXUP_H */";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;b:0;}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;b:0;}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:2:"11";}}}}s:50:"LinuxBIOSv1/src/mainboard/tyan/guiness/cmos.layout";a:2:{s:6:"chunks";a:1:{i:0;a:63:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:7:"entries";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;b:0;}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:43:"#start-bit length config config-ID name";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:46:"#0 8 r 0 seconds";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:52:"#8 8 r 0 alarm_seconds";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:46:"#16 8 r 0 minutes";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:52:"#24 8 r 0 alarm_minutes";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:44:"#32 8 r 0 hours";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:50:"#40 8 r 0 alarm_hours";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:50:"#48 8 r 0 day_of_week";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:51:"#56 8 r 0 day_of_month";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:44:"#64 8 r 0 month";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:43:"#72 8 r 0 year";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:50:"#80 4 r 0 rate_select";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:48:"#84 3 r 0 REF_Clock";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:42:"#87 1 r 0 UIP";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:54:"#88 1 r 0 auto_switch_DST";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:51:"#89 1 r 0 24_hour_mode";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:59:"#90 1 r 0 binary_values_enable";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:61:"#91 1 r 0 square-wave_out_enable";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;s:61:"#92 1 r 0 update_finished_enable";}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:61:"#93 1 r 0 alarm_interrupt_enable";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:64:"#94 1 r 0 periodic_interrupt_enable";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:60:"#95 1 r 0 disable_clock_updates";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;s:55:"#96 288 r 0 temporary_filler";}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;s:53:"0 384 r 0 reserved_memory";}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;s:49:"384 1 e 4 boot_option";}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;s:47:"385 1 e 4 last_boot";}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;s:47:"386 3 e 5 baud_rate";}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:49:"392 4 e 6 debug_level";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;s:57:"396 1 e 1 power_on_after_fail";}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;s:49:"#401 1 e 1 ECC_memory";}i:32;a:3:{i:0;s:0:"";i:1;i:33;i:2;s:47:"#402 1 e 2 hda_disk";}i:33;a:3:{i:0;s:0:"";i:1;i:34;i:2;s:47:"#403 1 e 2 hdb_disk";}i:34;a:3:{i:0;s:0:"";i:1;i:35;i:2;s:47:"#404 1 e 2 hdc_disk";}i:35;a:3:{i:0;s:0:"";i:1;i:36;i:2;s:47:"#405 1 e 2 hdd_disk";}i:36;a:3:{i:0;s:0:"";i:1;i:37;i:2;s:50:"#406 2 e 7 boot_device";}i:37;a:3:{i:0;s:0:"";i:1;i:38;i:2;b:0;}i:38;a:3:{i:0;s:0:"";i:1;i:39;i:2;s:12:"enumerations";}i:39;a:3:{i:0;s:0:"";i:1;i:40;i:2;b:0;}i:40;a:3:{i:0;s:0:"";i:1;i:41;i:2;s:16:"#ID value text";}i:41;a:3:{i:0;s:0:"";i:1;i:42;i:2;s:19:"1 0 Disable";}i:42;a:3:{i:0;s:0:"";i:1;i:43;i:2;s:18:"1 1 Enable";}i:43;a:3:{i:0;s:0:"";i:1;i:44;i:2;s:15:"#2 0 No";}i:44;a:3:{i:0;s:0:"";i:1;i:45;i:2;s:16:"#2 1 Yes";}i:45;a:3:{i:0;s:0:"";i:1;i:46;i:2;s:20:"4 0 Fallback";}i:46;a:3:{i:0;s:0:"";i:1;i:47;i:2;s:18:"4 1 Normal";}i:47;a:3:{i:0;s:0:"";i:1;i:48;i:2;s:18:"5 0 115200";}i:48;a:3:{i:0;s:0:"";i:1;i:49;i:2;s:17:"5 1 57600";}i:49;a:3:{i:0;s:0:"";i:1;i:50;i:2;s:17:"5 2 38400";}i:50;a:3:{i:0;s:0:"";i:1;i:51;i:2;s:17:"5 3 19200";}i:51;a:3:{i:0;s:0:"";i:1;i:52;i:2;s:16:"5 4 9600";}i:52;a:3:{i:0;s:0:"";i:1;i:53;i:2;s:16:"5 5 4800";}i:53;a:3:{i:0;s:0:"";i:1;i:54;i:2;s:16:"5 6 2400";}i:54;a:3:{i:0;s:0:"";i:1;i:55;i:2;s:16:"5 7 1200";}i:55;a:3:{i:0;s:0:"";i:1;i:56;i:2;s:18:"6 6 Notice";}i:56;a:3:{i:0;s:0:"";i:1;i:57;i:2;s:16:"6 7 Info";}i:57;a:3:{i:0;s:0:"";i:1;i:58;i:2;s:17:"6 8 Debug";}i:58;a:3:{i:0;s:0:"";i:1;i:59;i:2;s:16:"6 9 Spew";}i:59;a:3:{i:0;s:0:"";i:1;i:60;i:2;s:20:"#7 0 Network";}i:60;a:3:{i:0;s:0:"";i:1;i:61;i:2;s:16:"#7 1 HDD";}i:61;a:3:{i:0;s:0:"";i:1;i:62;i:2;s:19:"#7 2 Floppy";}i:62;a:3:{i:0;s:0:"";i:1;i:63;i:2;s:16:"#7 3 ROM";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:2:"63";}}}}s:37:"LinuxBIOSv1/src/config/linuxbios_c.ld";a:2:{s:6:"chunks";a:1:{i:0;a:105:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"/*";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:14:" * Memory map:";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:2:" *";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:13:" * _RAMBASE ";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:20:" * : data segment";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:19:" * : bss segment";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:12:" * : heap";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:13:" * : stack";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:3:" */";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:2:"/*";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:39:" * Bootstrap code for the STPC Consumer";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:61:" * Copyright (c) 1999 by Net Insight AB. All Rights Reserved.";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:2:" *";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:7:" * $Id$";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:2:" *";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:3:" */";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;b:0;}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:2:"/*";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;s:60:" * Written by Johan Rydberg, based on work by Daniel Kahlin.";}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:35:" * Rewritten by Eric Biederman";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;s:3:" */";}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:2:"/*";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:46:" * We use ELF as output format. So that we can";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:32:" * debug the code in some form. ";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;s:3:" */";}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;s:17:"INCLUDE ldoptions";}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;b:0;}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;s:13:"ENTRY(_start)";}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;b:0;}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:8:"SECTIONS";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;s:1:"{";}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;s:14:" . = _RAMBASE;";}i:32;a:3:{i:0;s:0:"";i:1;i:33;i:2;s:3:" /*";}i:33;a:3:{i:0;s:0:"";i:1;i:34;i:2;s:74:" * First we place the code and read only data (typically const declared).";}i:34;a:3:{i:0;s:0:"";i:1;i:35;i:2;s:27:" * This get placed in rom.";}i:35;a:3:{i:0;s:0:"";i:1;i:36;i:2;s:4:" */";}i:36;a:3:{i:0;s:0:"";i:1;i:37;i:2;s:10:" .text : {";}i:37;a:3:{i:0;s:0:"";i:1;i:38;i:2;s:12:" _text = .;";}i:38;a:3:{i:0;s:0:"";i:1;i:39;i:2;s:11:" *(.text);";}i:39;a:3:{i:0;s:0:"";i:1;i:40;i:2;s:13:" *(.text.*);";}i:40;a:3:{i:0;s:0:"";i:1;i:41;i:2;s:16:" . = ALIGN(16);";}i:41;a:3:{i:0;s:0:"";i:1;i:42;i:2;s:13:" _etext = .;";}i:42;a:3:{i:0;s:0:"";i:1;i:43;i:2;s:2:" }";}i:43;a:3:{i:0;s:0:"";i:1;i:44;i:2;s:12:" .rodata : {";}i:44;a:3:{i:0;s:0:"";i:1;i:45;i:2;s:14:" _rodata = .;";}i:45;a:3:{i:0;s:0:"";i:1;i:46;i:2;s:15:" . = ALIGN(4);";}i:46;a:3:{i:0;s:0:"";i:1;i:47;i:2;s:15:" streams = . ;";}i:47;a:3:{i:0;s:0:"";i:1;i:48;i:2;s:20:" *(.rodata.streams)";}i:48;a:3:{i:0;s:0:"";i:1;i:49;i:2;s:15:" estreams = .;";}i:49;a:3:{i:0;s:0:"";i:1;i:50;i:2;s:15:" . = ALIGN(4);";}i:50;a:3:{i:0;s:0:"";i:1;i:51;i:2;s:19:" pci_drivers = . ;";}i:51;a:3:{i:0;s:0:"";i:1;i:52;i:2;s:24:" *(.rodata.pci_drivers)";}i:52;a:3:{i:0;s:0:"";i:1;i:53;i:2;s:20:" epci_drivers = . ;";}i:53;a:3:{i:0;s:0:"";i:1;i:54;i:2;s:12:" *(.rodata)";}i:54;a:3:{i:0;s:0:"";i:1;i:55;i:2;s:14:" *(.rodata.*)";}i:55;a:3:{i:0;s:0:"";i:1;i:56;i:2;s:15:" _erodata = .;";}i:56;a:3:{i:0;s:0:"";i:1;i:57;i:2;s:3:" } ";}i:57;a:3:{i:0;s:0:"";i:1;i:58;i:2;s:3:" /*";}i:58;a:3:{i:0;s:0:"";i:1;i:59;i:2;s:67:" * After the code we place initialized data (typically initialized";}i:59;a:3:{i:0;s:0:"";i:1;i:60;i:2;s:65:" * global variables). This gets copied into ram by startup code.";}i:60;a:3:{i:0;s:0:"";i:1;i:61;i:2;s:73:" * __data_start and __data_end shows where in ram this should be placed,";}i:61;a:3:{i:0;s:0:"";i:1;i:62;i:2;s:69:" * whereas __data_loadstart and __data_loadend shows where in rom to";}i:62;a:3:{i:0;s:0:"";i:1;i:63;i:2;s:14:" * copy from.";}i:63;a:3:{i:0;s:0:"";i:1;i:64;i:2;s:4:" */";}i:64;a:3:{i:0;s:0:"";i:1;i:65;i:2;s:10:" .data : {";}i:65;a:3:{i:0;s:0:"";i:1;i:66;i:2;s:12:" _data = .;";}i:66;a:3:{i:0;s:0:"";i:1;i:67;i:2;s:10:" *(.data)";}i:67;a:3:{i:0;s:0:"";i:1;i:68;i:2;s:13:" _edata = .;";}i:68;a:3:{i:0;s:0:"";i:1;i:69;i:2;s:2:" }";}i:69;a:3:{i:0;s:0:"";i:1;i:70;i:2;s:3:" /*";}i:70;a:3:{i:0;s:0:"";i:1;i:71;i:2;s:69:" * bss does not contain data, it is just a space that should be zero";}i:71;a:3:{i:0;s:0:"";i:1;i:72;i:2;s:70:" * initialized on startup. (typically uninitialized global variables)";}i:72;a:3:{i:0;s:0:"";i:1;i:73;i:2;s:52:" * crt0.S fills between _bss and _ebss with zeroes.";}i:73;a:3:{i:0;s:0:"";i:1;i:74;i:2;s:4:" */";}i:74;a:3:{i:0;s:0:"";i:1;i:75;i:2;s:10:" _bss = .;";}i:75;a:3:{i:0;s:0:"";i:1;i:76;i:2;s:11:" .bss . : {";}i:76;a:3:{i:0;s:0:"";i:1;i:77;i:2;s:9:" *(.bss)";}i:77;a:3:{i:0;s:0:"";i:1;i:78;i:2;s:10:" *(.sbss)";}i:78;a:3:{i:0;s:0:"";i:1;i:79;i:2;s:11:" *(COMMON)";}i:79;a:3:{i:0;s:0:"";i:1;i:80;i:2;s:2:" }";}i:80;a:3:{i:0;s:0:"";i:1;i:81;i:2;s:11:" _ebss = .;";}i:81;a:3:{i:0;s:0:"";i:1;i:82;i:2;s:10:" _end = .;";}i:82;a:3:{i:0;s:0:"";i:1;i:83;i:2;s:12:" _stack = .;";}i:83;a:3:{i:0;s:0:"";i:1;i:84;i:2;s:13:" .stack . : {";}i:84;a:3:{i:0;s:0:"";i:1;i:85;i:2;s:55:" /* Reserve a stack for each possible cpu, +1 extra */";}i:85;a:3:{i:0;s:0:"";i:1;i:86;i:2;s:47:" . = ((MAX_CPUS * STACK_SIZE) + STACK_SIZE) ; ";}i:86;a:3:{i:0;s:0:"";i:1;i:87;i:2;s:2:" }";}i:87;a:3:{i:0;s:0:"";i:1;i:88;i:2;s:13:" _estack = .;";}i:88;a:3:{i:0;s:0:"";i:1;i:89;i:2;s:11:" _heap = .;";}i:89;a:3:{i:0;s:0:"";i:1;i:90;i:2;s:12:" .heap . : {";}i:90;a:3:{i:0;s:0:"";i:1;i:91;i:2;s:33:" /* Reserve 256K for the heap */";}i:91;a:3:{i:0;s:0:"";i:1;i:92;i:2;s:17:" . = HEAP_SIZE ;";}i:92;a:3:{i:0;s:0:"";i:1;i:93;i:2;s:15:" . = ALIGN(4);";}i:93;a:3:{i:0;s:0:"";i:1;i:94;i:2;s:2:" }";}i:94;a:3:{i:0;s:0:"";i:1;i:95;i:2;s:12:" _eheap = .;";}i:95;a:3:{i:0;s:0:"";i:1;i:96;i:2;s:19:" /* The ram segment";}i:96;a:3:{i:0;s:0:"";i:1;i:97;i:2;s:66:" * This is all address of the memory resident copy of linuxBIOS.";}i:97;a:3:{i:0;s:0:"";i:1;i:98;i:2;s:4:" */";}i:98;a:3:{i:0;s:0:"";i:1;i:99;i:2;s:18:" _ram_seg = _text;";}i:99;a:3:{i:0;s:0:"";i:1;i:100;i:2;s:20:" _eram_seg = _eheap;";}i:100;a:3:{i:0;s:0:"";i:1;i:101;i:2;s:14:" /DISCARD/ : {";}i:101;a:3:{i:0;s:0:"";i:1;i:102;i:2;s:13:" *(.comment)";}i:102;a:3:{i:0;s:0:"";i:1;i:103;i:2;s:10:" *(.note)";}i:103;a:3:{i:0;s:0:"";i:1;i:104;i:2;s:2:" }";}i:104;a:3:{i:0;s:0:"";i:1;i:105;i:2;s:1:"}";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:3:"105";}}}}s:49:"LinuxBIOSv1/src/arch/i386/include/arch/rom_segs.h";a:2:{s:6:"chunks";a:1:{i:0;a:10:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:18:"#ifndef ROM_SEGS_H";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:18:"#define ROM_SEGS_H";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;b:0;}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:25:"#define ROM_CODE_SEG 0x08";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:25:"#define ROM_DATA_SEG 0x10";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;b:0;}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:31:"#define CACHE_RAM_CODE_SEG 0x18";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:31:"#define CACHE_RAM_DATA_SEG 0x20";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;b:0;}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:23:"#endif /* ROM_SEGS_H */";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:2:"10";}}}}s:39:"LinuxBIOSv1/src/arch/i386/lib/c_start.S";a:2:{s:6:"chunks";a:1:{i:0;a:135:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:21:"#include ";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:23:"#include ";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:10:"#ifdef SMP";}i:3;a:3:{i:0;s:0:"";i:1;i:4;i:2;s:24:"#include ";}i:4;a:3:{i:0;s:0:"";i:1;i:5;i:2;s:6:"#endif";}i:5;a:3:{i:0;s:0:"";i:1;i:6;i:2;s:17:" .section ".text"";}i:6;a:3:{i:0;s:0:"";i:1;i:7;i:2;s:8:" .code32";}i:7;a:3:{i:0;s:0:"";i:1;i:8;i:2;s:14:" .globl _start";}i:8;a:3:{i:0;s:0:"";i:1;i:9;i:2;s:7:"_start:";}i:9;a:3:{i:0;s:0:"";i:1;i:10;i:2;s:4:" cli";}i:10;a:3:{i:0;s:0:"";i:1;i:11;i:2;s:17:" lgdt %cs:gdtaddr";}i:11;a:3:{i:0;s:0:"";i:1;i:12;i:2;s:16:" ljmp $0x10, $1f";}i:12;a:3:{i:0;s:0:"";i:1;i:13;i:2;s:18:"1: movl $0x18, %ax";}i:13;a:3:{i:0;s:0:"";i:1;i:14;i:2;s:15:" movl %eax, %ds";}i:14;a:3:{i:0;s:0:"";i:1;i:15;i:2;s:15:" movl %eax, %es";}i:15;a:3:{i:0;s:0:"";i:1;i:16;i:2;s:15:" movl %eax, %ss";}i:16;a:3:{i:0;s:0:"";i:1;i:17;i:2;s:15:" movl %eax, %fs";}i:17;a:3:{i:0;s:0:"";i:1;i:18;i:2;s:15:" movl %eax, %gs";}i:18;a:3:{i:0;s:0:"";i:1;i:19;i:2;b:0;}i:19;a:3:{i:0;s:0:"";i:1;i:20;i:2;s:43:" intel_chip_post_macro(0x13) /* post 12 */";}i:20;a:3:{i:0;s:0:"";i:1;i:21;i:2;b:0;}i:21;a:3:{i:0;s:0:"";i:1;i:22;i:2;s:19:" /** clear stack */";}i:22;a:3:{i:0;s:0:"";i:1;i:23;i:2;s:23:" leal EXT(_stack), %edi";}i:23;a:3:{i:0;s:0:"";i:1;i:24;i:2;s:25:" movl $EXT(_estack), %ecx";}i:24;a:3:{i:0;s:0:"";i:1;i:25;i:2;s:16:" subl %edi, %ecx";}i:25;a:3:{i:0;s:0:"";i:1;i:26;i:2;s:16:" xorl %eax, %eax";}i:26;a:3:{i:0;s:0:"";i:1;i:27;i:2;s:4:" rep";}i:27;a:3:{i:0;s:0:"";i:1;i:28;i:2;s:6:" stosb";}i:28;a:3:{i:0;s:0:"";i:1;i:29;i:2;b:0;}i:29;a:3:{i:0;s:0:"";i:1;i:30;i:2;s:17:" /** clear bss */";}i:30;a:3:{i:0;s:0:"";i:1;i:31;i:2;s:21:" leal EXT(_bss), %edi";}i:31;a:3:{i:0;s:0:"";i:1;i:32;i:2;s:23:" movl $EXT(_ebss), %ecx";}i:32;a:3:{i:0;s:0:"";i:1;i:33;i:2;s:16:" subl %edi, %ecx";}i:33;a:3:{i:0;s:0:"";i:1;i:34;i:2;s:11:" jz .Lnobss";}i:34;a:3:{i:0;s:0:"";i:1;i:35;i:2;s:16:" xorl %eax, %eax";}i:35;a:3:{i:0;s:0:"";i:1;i:36;i:2;s:4:" rep";}i:36;a:3:{i:0;s:0:"";i:1;i:37;i:2;s:6:" stosb";}i:37;a:3:{i:0;s:0:"";i:1;i:38;i:2;s:8:".Lnobss:";}i:38;a:3:{i:0;s:0:"";i:1;i:39;i:2;b:0;}i:39;a:3:{i:0;s:0:"";i:1;i:40;i:2;s:20:" /* set new stack */";}i:40;a:3:{i:0;s:0:"";i:1;i:41;i:2;s:20:" movl $_estack, %esp";}i:41;a:3:{i:0;s:0:"";i:1;i:42;i:2;s:10:"#ifdef SMP";}i:42;a:3:{i:0;s:0:"";i:1;i:43;i:2;s:21:" /* Get the cpu id */";}i:43;a:3:{i:0;s:0:"";i:1;i:44;i:2;s:30:" movl $APIC_DEFAULT_BASE, %edi";}i:44;a:3:{i:0;s:0:"";i:1;i:45;i:2;s:25:" movl APIC_ID(%edi), %eax";}i:45;a:3:{i:0;s:0:"";i:1;i:46;i:2;s:15:" shrl $24, %eax";}i:46;a:3:{i:0;s:0:"";i:1;i:47;i:2;b:0;}i:47;a:3:{i:0;s:0:"";i:1;i:48;i:2;s:44:" /* Get the cpu index (MAX_CPUS on error) */";}i:48;a:3:{i:0;s:0:"";i:1;i:49;i:2;s:15:" movl $-4, %ebx";}i:49;a:3:{i:0;s:0:"";i:1;i:50;i:2;s:16:"1: addl $4, %ebx";}i:50;a:3:{i:0;s:0:"";i:1;i:51;i:2;s:28:" cmpl $(MAX_CPUS << 2), %ebx";}i:51;a:3:{i:0;s:0:"";i:1;i:52;i:2;s:5:" je 2";}i:52;a:3:{i:0;s:0:"";i:1;i:53;i:2;s:37:" cmpl %eax, EXT(initial_apicid)(%ebx)";}i:53;a:3:{i:0;s:0:"";i:1;i:54;i:2;s:7:" jne 1b";}i:54;a:3:{i:0;s:0:"";i:1;i:55;i:2;s:16:"2: shrl $2, %ebx";}i:55;a:3:{i:0;s:0:"";i:1;i:56;i:2;b:0;}i:56;a:3:{i:0;s:0:"";i:1;i:57;i:2;s:40:" /* Now compute the appropriate stack */";}i:57;a:3:{i:0;s:0:"";i:1;i:58;i:2;s:16:" movl %ebx, %eax";}i:58;a:3:{i:0;s:0:"";i:1;i:59;i:2;s:23:" movl $STACK_SIZE, %ebx";}i:59;a:3:{i:0;s:0:"";i:1;i:60;i:2;s:10:" mull %ebx";}i:60;a:3:{i:0;s:0:"";i:1;i:61;i:2;s:16:" subl %eax, %esp";}i:61;a:3:{i:0;s:0:"";i:1;i:62;i:2;b:0;}i:62;a:3:{i:0;s:0:"";i:1;i:63;i:2;s:34:" /* push the boot_complete flag */";}i:63;a:3:{i:0;s:0:"";i:1;i:64;i:2;s:11:" pushl %ebp";}i:64;a:3:{i:0;s:0:"";i:1;i:65;i:2;b:0;}i:65;a:3:{i:0;s:0:"";i:1;i:66;i:2;s:30:" /* Save the stack location */";}i:66;a:3:{i:0;s:0:"";i:1;i:67;i:2;s:16:" movl %esp, %ebp";}i:67;a:3:{i:0;s:0:"";i:1;i:68;i:2;b:0;}i:68;a:3:{i:0;s:0:"";i:1;i:69;i:2;s:3:" /*";}i:69;a:3:{i:0;s:0:"";i:1;i:70;i:2;s:57:" * Now we are finished. Memory is up, data is copied and";}i:70;a:3:{i:0;s:0:"";i:1;i:71;i:2;s:54:" * bss is cleared. Now we call the main routine and";}i:71;a:3:{i:0;s:0:"";i:1;i:72;i:2;s:23:" * let it do the rest.";}i:72;a:3:{i:0;s:0:"";i:1;i:73;i:2;s:5:" */ ";}i:73;a:3:{i:0;s:0:"";i:1;i:74;i:2;s:42:" intel_chip_post_macro(0xfe) /* post fe */";}i:74;a:3:{i:0;s:0:"";i:1;i:75;i:2;b:0;}i:75;a:3:{i:0;s:0:"";i:1;i:76;i:2;s:32:" /* Resort the stack location */";}i:76;a:3:{i:0;s:0:"";i:1;i:77;i:2;s:16:" movl %ebp, %esp";}i:77;a:3:{i:0;s:0:"";i:1;i:78;i:2;s:1:" ";}i:78;a:3:{i:0;s:0:"";i:1;i:79;i:2;s:53:" /* The boot_complete flag has already been pushed */";}i:79;a:3:{i:0;s:0:"";i:1;i:80;i:2;s:23:" call EXT(hardwaremain)";}i:80;a:3:{i:0;s:0:"";i:1;i:81;i:2;s:15:" /*NOTREACHED*/";}i:81;a:3:{i:0;s:0:"";i:1;i:82;i:2;s:6:".Lhlt:";}i:82;a:3:{i:0;s:0:"";i:1;i:83;i:2;s:42:" intel_chip_post_macro(0xee) /* post fe */";}i:83;a:3:{i:0;s:0:"";i:1;i:84;i:2;s:4:" hlt";}i:84;a:3:{i:0;s:0:"";i:1;i:85;i:2;s:10:" jmp .Lhlt";}i:85;a:3:{i:0;s:0:"";i:1;i:86;i:2;s:6:"#endif";}i:86;a:3:{i:0;s:0:"";i:1;i:87;i:2;b:0;}i:87;a:3:{i:0;s:0:"";i:1;i:88;i:2;b:0;}i:88;a:3:{i:0;s:0:"";i:1;i:89;i:2;s:31:" .globl gdt, gdt_end, gdt_limit";}i:89;a:3:{i:0;s:0:"";i:1;i:90;i:2;b:0;}i:90;a:3:{i:0;s:0:"";i:1;i:91;i:2;s:59:"gdt_limit = gdt_end - gdt - 1 /* compute the table limit */";}i:91;a:3:{i:0;s:0:"";i:1;i:92;i:2;s:8:"gdtaddr:";}i:92;a:3:{i:0;s:0:"";i:1;i:93;i:2;s:16:" .word gdt_limit";}i:93;a:3:{i:0;s:0:"";i:1;i:94;i:2;s:50:" .long gdt /* we know the offset */";}i:94;a:3:{i:0;s:0:"";i:1;i:95;i:2;b:0;}i:95;a:3:{i:0;s:0:"";i:1;i:96;i:2;s:4:"gdt:";}i:96;a:3:{i:0;s:0:"";i:1;i:97;i:2;s:11:"// selgdt 0";}i:97;a:3:{i:0;s:0:"";i:1;i:98;i:2;s:34:" .word 0x0000, 0x0000 /* dummy */";}i:98;a:3:{i:0;s:0:"";i:1;i:99;i:2;s:29:" .byte 0x00, 0x00, 0x00, 0x00";}i:99;a:3:{i:0;s:0:"";i:1;i:100;i:2;b:0;}i:100;a:3:{i:0;s:0:"";i:1;i:101;i:2;s:11:"// selgdt 8";}i:101;a:3:{i:0;s:0:"";i:1;i:102;i:2;s:34:" .word 0x0000, 0x0000 /* dummy */";}i:102;a:3:{i:0;s:0:"";i:1;i:103;i:2;s:29:" .byte 0x00, 0x00, 0x00, 0x00";}i:103;a:3:{i:0;s:0:"";i:1;i:104;i:2;b:0;}i:104;a:3:{i:0;s:0:"";i:1;i:105;i:2;s:15:"// selgdt 0x10 ";}i:105;a:3:{i:0;s:0:"";i:1;i:106;i:2;s:23:"/* flat code segment */";}i:106;a:3:{i:0;s:0:"";i:1;i:107;i:2;s:23:" .word 0xffff, 0x0000 ";}i:107;a:3:{i:0;s:0:"";i:1;i:108;i:2;s:30:" .byte 0x00, 0x9b, 0xcf, 0x00 ";}i:108;a:3:{i:0;s:0:"";i:1;i:109;i:2;s:1:" ";}i:109;a:3:{i:0;s:0:"";i:1;i:110;i:2;s:13:"//selgdt 0x18";}i:110;a:3:{i:0;s:0:"";i:1;i:111;i:2;s:23:"/* flat data segment */";}i:111;a:3:{i:0;s:0:"";i:1;i:112;i:2;s:23:" .word 0xffff, 0x0000 ";}i:112;a:3:{i:0;s:0:"";i:1;i:113;i:2;s:30:" .byte 0x00, 0x93, 0xcf, 0x00 ";}i:113;a:3:{i:0;s:0:"";i:1;i:114;i:2;b:0;}i:114;a:3:{i:0;s:0:"";i:1;i:115;i:2;s:13:"//selgdt 0x20";}i:115;a:3:{i:0;s:0:"";i:1;i:116;i:2;s:34:" .word 0x0000, 0x0000 /* dummy */";}i:116;a:3:{i:0;s:0:"";i:1;i:117;i:2;s:29:" .byte 0x00, 0x00, 0x00, 0x00";}i:117;a:3:{i:0;s:0:"";i:1;i:118;i:2;b:0;}i:118;a:3:{i:0;s:0:"";i:1;i:119;i:2;s:52:"#if defined(CONFIG_VGABIOS) && (CONFIG_VGABIOS == 1)";}i:119;a:3:{i:0;s:0:"";i:1;i:120;i:2;s:15:" // from monty:";}i:120;a:3:{i:0;s:0:"";i:1;i:121;i:2;s:67:" /* 0x00009a00,0000ffffULL, 20h: 16-bit 64k code at 0x00000000 */";}i:121;a:3:{i:0;s:0:"";i:1;i:122;i:2;s:74:" /* 0x00009200,0000ffffULL 28h: 16-bit 64k data at 0x00000000 */";}i:122;a:3:{i:0;s:0:"";i:1;i:123;i:2;s:14:"// selgdt 0x28";}i:123;a:3:{i:0;s:0:"";i:1;i:124;i:2;s:34:"/*16-bit 64k code at 0x00000000 */";}i:124;a:3:{i:0;s:0:"";i:1;i:125;i:2;s:21:" .word 0xffff, 0x0000";}i:125;a:3:{i:0;s:0:"";i:1;i:126;i:2;s:20:" .byte 0, 0x9a, 0, 0";}i:126;a:3:{i:0;s:0:"";i:1;i:127;i:2;b:0;}i:127;a:3:{i:0;s:0:"";i:1;i:128;i:2;s:14:"// selgdt 0x30";}i:128;a:3:{i:0;s:0:"";i:1;i:129;i:2;s:34:"/*16-bit 64k data at 0x00000000 */";}i:129;a:3:{i:0;s:0:"";i:1;i:130;i:2;s:21:" .word 0xffff, 0x0000";}i:130;a:3:{i:0;s:0:"";i:1;i:131;i:2;s:20:" .byte 0, 0x92, 0, 0";}i:131;a:3:{i:0;s:0:"";i:1;i:132;i:2;s:58:"#endif // defined(CONFIG_VGABIOS) && (CONFIG_VGABIOS == 1)";}i:132;a:3:{i:0;s:0:"";i:1;i:133;i:2;s:8:"gdt_end:";}i:133;a:3:{i:0;s:0:"";i:1;i:134;i:2;b:0;}i:134;a:3:{i:0;s:0:"";i:1;i:135;i:2;s:7:".code32";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:3:"135";}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-03-mtn-new-file-single-line.diff b/test/data/IDF_DiffTest/test-03-mtn-new-file-single-line.diff new file mode 100644 index 0000000..69f6a1c --- /dev/null +++ b/test/data/IDF_DiffTest/test-03-mtn-new-file-single-line.diff @@ -0,0 +1,13 @@ +# +# old_revision [] +# +# add_dir "" +# +# add_file "a" +# content [03cfd743661f07975fa2f1220c5194cbaff48451] +# +============================================================ +--- /dev/null ++++ a 03cfd743661f07975fa2f1220c5194cbaff48451 +@@ -0,0 +1 @@ ++abc diff --git a/test/data/IDF_DiffTest/test-03-mtn-new-file-single-line.expected b/test/data/IDF_DiffTest/test-03-mtn-new-file-single-line.expected new file mode 100644 index 0000000..ac04a8d --- /dev/null +++ b/test/data/IDF_DiffTest/test-03-mtn-new-file-single-line.expected @@ -0,0 +1 @@ +a:1:{s:1:"a";a:2:{s:6:"chunks";a:1:{i:0;a:1:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:3:"abc";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;i:1;}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-04-mtn-new-file-multi-lines.diff b/test/data/IDF_DiffTest/test-04-mtn-new-file-multi-lines.diff new file mode 100644 index 0000000..f37538d --- /dev/null +++ b/test/data/IDF_DiffTest/test-04-mtn-new-file-multi-lines.diff @@ -0,0 +1,14 @@ +# +# old_revision [] +# +# add_dir "" +# +# add_file "a" +# content [9decd90bc2eedb78c74d5059a6bb6244dd2d0562] +# +============================================================ +--- /dev/null ++++ a 9decd90bc2eedb78c74d5059a6bb6244dd2d0562 +@@ -0,0 +1,2 @@ ++abc ++abc diff --git a/test/data/IDF_DiffTest/test-04-mtn-new-file-multi-lines.expected b/test/data/IDF_DiffTest/test-04-mtn-new-file-multi-lines.expected new file mode 100644 index 0000000..fe50d15 --- /dev/null +++ b/test/data/IDF_DiffTest/test-04-mtn-new-file-multi-lines.expected @@ -0,0 +1 @@ +a:1:{s:1:"a";a:2:{s:6:"chunks";a:1:{i:0;a:2:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:3:"abc";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:3:"abc";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:1:"2";}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-05-mtn-change-to-single-line.diff b/test/data/IDF_DiffTest/test-05-mtn-change-to-single-line.diff new file mode 100644 index 0000000..18fd4f5 --- /dev/null +++ b/test/data/IDF_DiffTest/test-05-mtn-change-to-single-line.diff @@ -0,0 +1,13 @@ +# +# old_revision [1f31865f7c91525e96aa7615e660303ca04c708f] +# +# patch "a" +# from [9decd90bc2eedb78c74d5059a6bb6244dd2d0562] +# to [03cfd743661f07975fa2f1220c5194cbaff48451] +# +============================================================ +--- a 9decd90bc2eedb78c74d5059a6bb6244dd2d0562 ++++ a 03cfd743661f07975fa2f1220c5194cbaff48451 +@@ -1,2 +1 @@ abc + abc +-abc diff --git a/test/data/IDF_DiffTest/test-05-mtn-change-to-single-line.expected b/test/data/IDF_DiffTest/test-05-mtn-change-to-single-line.expected new file mode 100644 index 0000000..1658746 --- /dev/null +++ b/test/data/IDF_DiffTest/test-05-mtn-change-to-single-line.expected @@ -0,0 +1 @@ +a:1:{s:1:"a";a:2:{s:6:"chunks";a:1:{i:0;a:2:{i:0;a:3:{i:0;s:1:"1";i:1;s:1:"1";i:2;s:3:"abc";}i:1;a:3:{i:0;i:2;i:1;s:0:"";i:2;s:3:"abc";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"1";i:1;s:1:"2";}i:1;a:2:{i:0;s:1:"1";i:1;i:1;}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-06-mtn-single-line.diff b/test/data/IDF_DiffTest/test-06-mtn-single-line.diff new file mode 100644 index 0000000..1f350dc --- /dev/null +++ b/test/data/IDF_DiffTest/test-06-mtn-single-line.diff @@ -0,0 +1,13 @@ +# +# old_revision [019c2c7a876819db59add22c98c7939e32d81161] +# +# patch "a" +# from [03cfd743661f07975fa2f1220c5194cbaff48451] +# to [023cc93272e5cbc11f128ffc90fbbe42f6f08d8c] +# +============================================================ +--- a 03cfd743661f07975fa2f1220c5194cbaff48451 ++++ a 023cc93272e5cbc11f128ffc90fbbe42f6f08d8c +@@ -1 +1 @@ +-abc ++ls diff --git a/test/data/IDF_DiffTest/test-06-mtn-single-line.expected b/test/data/IDF_DiffTest/test-06-mtn-single-line.expected new file mode 100644 index 0000000..d3d118c --- /dev/null +++ b/test/data/IDF_DiffTest/test-06-mtn-single-line.expected @@ -0,0 +1 @@ +a:1:{s:1:"a";a:2:{s:6:"chunks";a:1:{i:0;a:2:{i:0;a:3:{i:0;s:1:"1";i:1;s:0:"";i:2;s:3:"abc";}i:1;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:2:"ls";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"1";i:1;i:1;}i:1;a:2:{i:0;s:1:"1";i:1;i:1;}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-07-mtn-single-line-to-multiline.diff b/test/data/IDF_DiffTest/test-07-mtn-single-line-to-multiline.diff new file mode 100644 index 0000000..c813aab --- /dev/null +++ b/test/data/IDF_DiffTest/test-07-mtn-single-line-to-multiline.diff @@ -0,0 +1,13 @@ +# +# old_revision [7950c8a4e13342d1dca94c05efc49b291ab327f5] +# +# patch "a" +# from [023cc93272e5cbc11f128ffc90fbbe42f6f08d8c] +# to [b3d40c241ccfd6ff1a06047a9f6d609227d2893f] +# +============================================================ +--- a 023cc93272e5cbc11f128ffc90fbbe42f6f08d8c ++++ a b3d40c241ccfd6ff1a06047a9f6d609227d2893f +@@ -1 +1,2 @@ ls + ls ++ls diff --git a/test/data/IDF_DiffTest/test-07-mtn-single-line-to-multiline.expected b/test/data/IDF_DiffTest/test-07-mtn-single-line-to-multiline.expected new file mode 100644 index 0000000..b5c748d --- /dev/null +++ b/test/data/IDF_DiffTest/test-07-mtn-single-line-to-multiline.expected @@ -0,0 +1 @@ +a:1:{s:1:"a";a:2:{s:6:"chunks";a:1:{i:0;a:2:{i:0;a:3:{i:0;s:1:"1";i:1;s:1:"1";i:2;s:2:"ls";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:2:"ls";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"1";i:1;i:1;}i:1;a:2:{i:0;s:1:"1";i:1;s:1:"2";}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-08-mtn-multiline-diff-with-property.diff b/test/data/IDF_DiffTest/test-08-mtn-multiline-diff-with-property.diff new file mode 100644 index 0000000..ba0343c --- /dev/null +++ b/test/data/IDF_DiffTest/test-08-mtn-multiline-diff-with-property.diff @@ -0,0 +1,18 @@ +# +# old_revision [9b51b47c6fdd4918f970b81a8672503b8bb30402] +# +# patch "a" +# from [b3d40c241ccfd6ff1a06047a9f6d609227d2893f] +# to [4ba8cb789fc34bd4557b5bbf7cb9f4b68b3a9f5e] +# +# set "a" +# attr "foo" +# value "bar" +# +============================================================ +--- a b3d40c241ccfd6ff1a06047a9f6d609227d2893f ++++ a 4ba8cb789fc34bd4557b5bbf7cb9f4b68b3a9f5e +@@ -1,2 +1,3 @@ ls + ls + ls ++l diff --git a/test/data/IDF_DiffTest/test-08-mtn-multiline-diff-with-property.expected b/test/data/IDF_DiffTest/test-08-mtn-multiline-diff-with-property.expected new file mode 100644 index 0000000..bfd9767 --- /dev/null +++ b/test/data/IDF_DiffTest/test-08-mtn-multiline-diff-with-property.expected @@ -0,0 +1 @@ +a:1:{s:1:"a";a:2:{s:6:"chunks";a:1:{i:0;a:3:{i:0;a:3:{i:0;s:1:"1";i:1;s:1:"1";i:2;s:2:"ls";}i:1;a:3:{i:0;i:2;i:1;i:2;i:2;s:2:"ls";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;s:1:"l";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"1";i:1;s:1:"2";}i:1;a:2:{i:0;s:1:"1";i:1;s:1:"3";}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-09-hg-new-file.diff b/test/data/IDF_DiffTest/test-09-hg-new-file.diff new file mode 100644 index 0000000..c8ac290 --- /dev/null +++ b/test/data/IDF_DiffTest/test-09-hg-new-file.diff @@ -0,0 +1,5 @@ +diff -r 000000000000 -r 5203a6d9dc87 a +--- /dev/null Thu Jan 01 00:00:00 1970 +0000 ++++ b/a Wed Mar 16 16:12:09 2011 +0100 +@@ -0,0 +1,1 @@ ++foo diff --git a/test/data/IDF_DiffTest/test-09-hg-new-file.expected b/test/data/IDF_DiffTest/test-09-hg-new-file.expected new file mode 100644 index 0000000..da9221b --- /dev/null +++ b/test/data/IDF_DiffTest/test-09-hg-new-file.expected @@ -0,0 +1 @@ +a:1:{s:1:"a";a:2:{s:6:"chunks";a:1:{i:0;a:1:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:3:"foo";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:1:"1";}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-10-hg-change.diff b/test/data/IDF_DiffTest/test-10-hg-change.diff new file mode 100644 index 0000000..515037c --- /dev/null +++ b/test/data/IDF_DiffTest/test-10-hg-change.diff @@ -0,0 +1,6 @@ +diff -r 5203a6d9dc87 -r 76fd636881a3 a +--- a/a Wed Mar 16 16:12:09 2011 +0100 ++++ b/a Wed Mar 16 16:13:23 2011 +0100 +@@ -1,1 +1,2 @@ + foo ++bf diff --git a/test/data/IDF_DiffTest/test-10-hg-change.expected b/test/data/IDF_DiffTest/test-10-hg-change.expected new file mode 100644 index 0000000..bda94a9 --- /dev/null +++ b/test/data/IDF_DiffTest/test-10-hg-change.expected @@ -0,0 +1 @@ +a:1:{s:1:"a";a:2:{s:6:"chunks";a:1:{i:0;a:2:{i:0;a:3:{i:0;s:1:"1";i:1;s:1:"1";i:2;s:3:"foo";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:2:"bf";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"1";i:1;s:1:"1";}i:1;a:2:{i:0;s:1:"1";i:1;s:1:"2";}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-11-git-add-singleline-file.diff b/test/data/IDF_DiffTest/test-11-git-add-singleline-file.diff new file mode 100644 index 0000000..c88fe6c --- /dev/null +++ b/test/data/IDF_DiffTest/test-11-git-add-singleline-file.diff @@ -0,0 +1,13 @@ +commit c28f1dd026dd832398d699fa1fee0cce0562f350 +Author: Patrick Georgi +Date: Wed Mar 16 15:14:41 2011 +0100 + + foo + +diff --git a/a b/a +new file mode 100644 +index 0000000..8baef1b +--- /dev/null ++++ b/a +@@ -0,0 +1 @@ ++abc diff --git a/test/data/IDF_DiffTest/test-11-git-add-singleline-file.expected b/test/data/IDF_DiffTest/test-11-git-add-singleline-file.expected new file mode 100644 index 0000000..ac04a8d --- /dev/null +++ b/test/data/IDF_DiffTest/test-11-git-add-singleline-file.expected @@ -0,0 +1 @@ +a:1:{s:1:"a";a:2:{s:6:"chunks";a:1:{i:0;a:1:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:3:"abc";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;i:1;}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-12-git-add-multiline-file.diff b/test/data/IDF_DiffTest/test-12-git-add-multiline-file.diff new file mode 100644 index 0000000..06747a3 --- /dev/null +++ b/test/data/IDF_DiffTest/test-12-git-add-multiline-file.diff @@ -0,0 +1,9 @@ +diff --git a/b b/b +new file mode 100644 +index 0000000..bfdaa0f +--- /dev/null ++++ b/b +@@ -0,0 +1,3 @@ ++a ++b ++ diff --git a/test/data/IDF_DiffTest/test-12-git-add-multiline-file.expected b/test/data/IDF_DiffTest/test-12-git-add-multiline-file.expected new file mode 100644 index 0000000..ee1df51 --- /dev/null +++ b/test/data/IDF_DiffTest/test-12-git-add-multiline-file.expected @@ -0,0 +1 @@ +a:1:{s:1:"b";a:2:{s:6:"chunks";a:1:{i:0;a:3:{i:0;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:1:"a";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:1:"b";}i:2;a:3:{i:0;s:0:"";i:1;i:3;i:2;b:0;}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"0";i:1;s:1:"0";}i:1;a:2:{i:0;s:1:"1";i:1;s:1:"3";}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-13-git-change-file.diff b/test/data/IDF_DiffTest/test-13-git-change-file.diff new file mode 100644 index 0000000..7d90a13 --- /dev/null +++ b/test/data/IDF_DiffTest/test-13-git-change-file.diff @@ -0,0 +1,9 @@ +diff --git a/b b/b +index bfdaa0f..e528a92 100644 +--- a/b ++++ b/b +@@ -1,3 +1,4 @@ + a ++l + b + diff --git a/test/data/IDF_DiffTest/test-13-git-change-file.expected b/test/data/IDF_DiffTest/test-13-git-change-file.expected new file mode 100644 index 0000000..29a30b6 --- /dev/null +++ b/test/data/IDF_DiffTest/test-13-git-change-file.expected @@ -0,0 +1 @@ +a:1:{s:1:"b";a:2:{s:6:"chunks";a:1:{i:0;a:4:{i:0;a:3:{i:0;s:1:"1";i:1;s:1:"1";i:2;s:1:"a";}i:1;a:3:{i:0;s:0:"";i:1;i:2;i:2;s:1:"l";}i:2;a:3:{i:0;i:2;i:1;i:3;i:2;s:1:"b";}i:3;a:3:{i:0;i:3;i:1;i:4;i:2;b:0;}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"1";i:1;s:1:"3";}i:1;a:2:{i:0;s:1:"1";i:1;s:1:"4";}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-14-git-change-file-to-singleline.diff b/test/data/IDF_DiffTest/test-14-git-change-file-to-singleline.diff new file mode 100644 index 0000000..a1f8075 --- /dev/null +++ b/test/data/IDF_DiffTest/test-14-git-change-file-to-singleline.diff @@ -0,0 +1,8 @@ +diff --git a/b b/b +index bfdaa0f..7898192 100644 +--- a/b ++++ b/b +@@ -1,3 +1 @@ + a +-b +- diff --git a/test/data/IDF_DiffTest/test-14-git-change-file-to-singleline.expected b/test/data/IDF_DiffTest/test-14-git-change-file-to-singleline.expected new file mode 100644 index 0000000..49b3e70 --- /dev/null +++ b/test/data/IDF_DiffTest/test-14-git-change-file-to-singleline.expected @@ -0,0 +1 @@ +a:1:{s:1:"b";a:2:{s:6:"chunks";a:1:{i:0;a:3:{i:0;a:3:{i:0;s:1:"1";i:1;s:1:"1";i:2;s:1:"a";}i:1;a:3:{i:0;i:2;i:1;s:0:"";i:2;s:1:"b";}i:2;a:3:{i:0;i:3;i:1;s:0:"";i:2;b:0;}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"1";i:1;s:1:"3";}i:1;a:2:{i:0;s:1:"1";i:1;i:1;}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-15-git-change-single-line-invalid.diff b/test/data/IDF_DiffTest/test-15-git-change-single-line-invalid.diff new file mode 100644 index 0000000..224561d --- /dev/null +++ b/test/data/IDF_DiffTest/test-15-git-change-single-line-invalid.diff @@ -0,0 +1,7 @@ +diff --git a/test_file b/test_file +index 2134e75..2eaf9ea 100644 +--- a/test_file ++++ b/test_file +@@ -1 +1 @@ +-Steddy is awesome ++Steddy is very awesome \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-15-git-change-single-line-invalid.expected b/test/data/IDF_DiffTest/test-15-git-change-single-line-invalid.expected new file mode 100644 index 0000000..e526730 --- /dev/null +++ b/test/data/IDF_DiffTest/test-15-git-change-single-line-invalid.expected @@ -0,0 +1 @@ +a:1:{s:9:"test_file";a:2:{s:6:"chunks";a:1:{i:0;a:2:{i:0;a:3:{i:0;s:1:"1";i:1;s:0:"";i:2;s:17:"Steddy is awesome";}i:1;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:22:"Steddy is very awesome";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"1";i:1;i:1;}i:1;a:2:{i:0;s:1:"1";i:1;i:1;}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-16-git-newline-removed.diff b/test/data/IDF_DiffTest/test-16-git-newline-removed.diff new file mode 100644 index 0000000..45302b2 --- /dev/null +++ b/test/data/IDF_DiffTest/test-16-git-newline-removed.diff @@ -0,0 +1,8 @@ +diff --git a/foo b/foo +index a86c18f..71ccdd0 100644 +--- a/foo ++++ b/foo +@@ -1 +1 @@ +-This is foo ++This is foo +\ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-16-git-newline-removed.expected b/test/data/IDF_DiffTest/test-16-git-newline-removed.expected new file mode 100644 index 0000000..7fd1428 --- /dev/null +++ b/test/data/IDF_DiffTest/test-16-git-newline-removed.expected @@ -0,0 +1 @@ +a:1:{s:3:"foo";a:2:{s:6:"chunks";a:1:{i:0;a:2:{i:0;a:3:{i:0;s:1:"1";i:1;s:0:"";i:2;s:11:"This is foo";}i:1;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:11:"This is foo";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"1";i:1;i:1;}i:1;a:2:{i:0;s:1:"1";i:1;i:1;}}}}} \ No newline at end of file diff --git a/test/data/IDF_DiffTest/test-17-git-newline-added.diff b/test/data/IDF_DiffTest/test-17-git-newline-added.diff new file mode 100644 index 0000000..5e0c3ff --- /dev/null +++ b/test/data/IDF_DiffTest/test-17-git-newline-added.diff @@ -0,0 +1,8 @@ +diff --git a/foo b/foo +index 71ccdd0..a86c18f 100644 +--- a/foo ++++ b/foo +@@ -1 +1 @@ +-This is foo +\ No newline at end of file ++This is foo diff --git a/test/data/IDF_DiffTest/test-17-git-newline-added.expected b/test/data/IDF_DiffTest/test-17-git-newline-added.expected new file mode 100644 index 0000000..7fd1428 --- /dev/null +++ b/test/data/IDF_DiffTest/test-17-git-newline-added.expected @@ -0,0 +1 @@ +a:1:{s:3:"foo";a:2:{s:6:"chunks";a:1:{i:0;a:2:{i:0;a:3:{i:0;s:1:"1";i:1;s:0:"";i:2;s:11:"This is foo";}i:1;a:3:{i:0;s:0:"";i:1;s:1:"1";i:2;s:11:"This is foo";}}}s:10:"chunks_def";a:1:{i:0;a:2:{i:0;a:2:{i:0;s:1:"1";i:1;i:1;}i:1;a:2:{i:0;s:1:"1";i:1;i:1;}}}}} \ No newline at end of file diff --git a/www/media/idf/css/style.css b/www/media/idf/css/style.css index 93dd28b..c1e3356 100644 --- a/www/media/idf/css/style.css +++ b/www/media/idf/css/style.css @@ -216,7 +216,7 @@ span.px-header-title a, span.px-header-title a:link, span.px-header-title a:visi margin: 0; display: inline; } - + a.issue-c { text-decoration: line-through; } @@ -273,6 +273,11 @@ div.issue-changes-timeline { color: #888a85; } +div.issue-prev-next { + float: right; + margin-top: -25px; +} + div.issue-submit-info { background-color: #d3d7cf; -moz-border-radius: 3px; @@ -577,10 +582,6 @@ td.diff-a { background-color: #dfd; } -td.diff-a > span { - float: left; -} - td.diff-r { background-color: #fdd; } @@ -588,6 +589,13 @@ td.diff-r { td.diff-a, td.diff-r, td.diff-c { border-bottom: none; border-top: none; + white-space: pre; +} + +td.diff-a > span, +td.diff-r > span, +td.diff-c > span { + float: left; } table.diff tr.diff-next {
    {trans 'Projects:'}{$stats.projects}
    {trans 'Members:'}{$stats.members}
    {trans 'Author:'}{showuser $rcommit.get_author(), $request, $cobject.author}
    {trans 'Branch:'}{$cobject.branch}
    {trans 'Commit:'}{$cobject.commit}