Changeset - 4df61d1bd2d5
[Not reviewed]
kallithea/controllers/changeset.py
Show inline comments
 
@@ -41,111 +41,111 @@ from kallithea.lib.vcs.exceptions import
 

	
 
from kallithea.lib.compat import json
 
import kallithea.lib.helpers as h
 
from kallithea.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator,\
 
    NotAnonymous
 
from kallithea.lib.base import BaseRepoController, render
 
from kallithea.lib.utils import action_logger
 
from kallithea.lib.compat import OrderedDict
 
from kallithea.lib import diffs
 
from kallithea.model.db import ChangesetComment, ChangesetStatus
 
from kallithea.model.comment import ChangesetCommentsModel
 
from kallithea.model.changeset_status import ChangesetStatusModel
 
from kallithea.model.meta import Session
 
from kallithea.model.repo import RepoModel
 
from kallithea.lib.diffs import LimitedDiffContainer
 
from kallithea.lib.exceptions import StatusChangeOnClosedPullRequestError
 
from kallithea.lib.vcs.backends.base import EmptyChangeset
 
from kallithea.lib.utils2 import safe_unicode, safe_str
 
from kallithea.lib.graphmod import graph_data
 

	
 
log = logging.getLogger(__name__)
 

	
 

	
 
def _update_with_GET(params, GET):
 
    for k in ['diff1', 'diff2', 'diff']:
 
        params[k] += GET.getall(k)
 

	
 

	
 
def anchor_url(revision, path, GET):
 
    fid = h.FID(revision, path)
 
    return h.url.current(anchor=fid, **dict(GET))
 

	
 

	
 
def get_ignore_ws(fid, GET):
 
    ig_ws_global = GET.get('ignorews')
 
    ig_ws = filter(lambda k: k.startswith('WS'), GET.getall(fid))
 
    if ig_ws:
 
        try:
 
            return int(ig_ws[0].split(':')[-1])
 
        except Exception:
 
            pass
 
    return ig_ws_global
 

	
 

	
 
def _ignorews_url(GET, fileid=None):
 
    fileid = str(fileid) if fileid else None
 
    params = defaultdict(list)
 
    _update_with_GET(params, GET)
 
    lbl = _('Show white space')
 
    lbl = _('Show whitespace')
 
    ig_ws = get_ignore_ws(fileid, GET)
 
    ln_ctx = get_line_ctx(fileid, GET)
 
    # global option
 
    if fileid is None:
 
        if ig_ws is None:
 
            params['ignorews'] += [1]
 
            lbl = _('Ignore white space')
 
            lbl = _('Ignore whitespace')
 
        ctx_key = 'context'
 
        ctx_val = ln_ctx
 
    # per file options
 
    else:
 
        if ig_ws is None:
 
            params[fileid] += ['WS:1']
 
            lbl = _('Ignore white space')
 
            lbl = _('Ignore whitespace')
 

	
 
        ctx_key = fileid
 
        ctx_val = 'C:%s' % ln_ctx
 
    # if we have passed in ln_ctx pass it along to our params
 
    if ln_ctx:
 
        params[ctx_key] += [ctx_val]
 

	
 
    params['anchor'] = fileid
 
    img = h.image(h.url('/images/icons/text_strikethrough.png'), lbl, class_='icon')
 
    return h.link_to(img, h.url.current(**params), title=lbl, class_='tooltip')
 

	
 

	
 
def get_line_ctx(fid, GET):
 
    ln_ctx_global = GET.get('context')
 
    if fid:
 
        ln_ctx = filter(lambda k: k.startswith('C'), GET.getall(fid))
 
    else:
 
        _ln_ctx = filter(lambda k: k.startswith('C'), GET)
 
        ln_ctx = GET.get(_ln_ctx[0]) if _ln_ctx  else ln_ctx_global
 
        if ln_ctx:
 
            ln_ctx = [ln_ctx]
 

	
 
    if ln_ctx:
 
        retval = ln_ctx[0].split(':')[-1]
 
    else:
 
        retval = ln_ctx_global
 

	
 
    try:
 
        return int(retval)
 
    except Exception:
 
        return 3
 

	
 

	
 
def _context_url(GET, fileid=None):
 
    """
 
    Generates url for context lines
 

	
 
    :param fileid:
 
    """
 

	
 
    fileid = str(fileid) if fileid else None
 
    ig_ws = get_ignore_ws(fileid, GET)
 
    ln_ctx = (get_line_ctx(fileid, GET) or 3) * 2
 

	
 
    params = defaultdict(list)
 
    _update_with_GET(params, GET)
 

	
 
    # global option
kallithea/i18n/de/LC_MESSAGES/kallithea.po
Show inline comments
 
# German translations for Kallithea.
 
# Copyright (C) 2014 RhodeCode GmbH, and others.
 
# This file is distributed under the same license as the Kallithea project.
 
# Translators:
 
# stephanj <info@stephan-jauernick.de>, 2013
 
msgid ""
 
msgstr ""
 
"Project-Id-Version:  Kallithea\n"
 
"Report-Msgid-Bugs-To: translations@kallithea-scm.org\n"
 
"POT-Creation-Date: 2014-07-02 19:08-0400\n"
 
"PO-Revision-Date: 2014-02-13 14:34+0000\n"
 
"Last-Translator: marcinkuzminski <marcin@python-blog.com>\n"
 
"Language-Team: German "
 
"(http://www.transifex.com/projects/p/Kallithea/language/de/)\n"
 
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
 
"MIME-Version: 1.0\n"
 
"Content-Type: text/plain; charset=utf-8\n"
 
"Content-Transfer-Encoding: 8bit\n"
 
"Generated-By: Babel 0.9.6\n"
 

	
 
#: kallithea/controllers/changelog.py:90 kallithea/controllers/compare.py:90
 
#: kallithea/controllers/pullrequests.py:265
 
msgid "There are no changesets yet"
 
msgstr ""
 

	
 
#: kallithea/controllers/changelog.py:186
 
msgid "All Branches"
 
msgstr "Alle Branches"
 

	
 
#: kallithea/controllers/changelog.py:189
 
msgid "(closed)"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:87
 
msgid "Show white space"
 
msgid "Show whitespace"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:94 kallithea/controllers/changeset.py:101
 
msgid "Ignore white space"
 
msgid "Ignore whitespace"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:167
 
#, python-format
 
msgid "increase diff context to %(num)s lines"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:209 kallithea/controllers/files.py:98
 
#: kallithea/controllers/files.py:121
 
msgid "Such revision does not exist for this repository"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:355
 
#: kallithea/controllers/pullrequests.py:482
 
#, python-format
 
msgid "Status change -> %s"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:386
 
msgid ""
 
"Changing status on a changeset associated with a closed pull request is "
 
"not allowed"
 
msgstr ""
 

	
 
#: kallithea/controllers/compare.py:194 kallithea/templates/base/root.html:65
 
msgid "Select changeset"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:72
 
msgid "Home page"
 
msgstr "Startseite"
 

	
 
#: kallithea/controllers/error.py:101
 
msgid "The request could not be understood by the server due to malformed syntax."
 
msgstr ""
 
"Die Anfrage konnte vom Server nicht ausgewertet werden weil sie einen "
 
"Ungültigen Syntax nutzt"
 

	
 
#: kallithea/controllers/error.py:104
 
msgid "Unauthorized access to resource"
 
msgstr "Unauthorisierter Zugang zur Ressource"
 

	
 
#: kallithea/controllers/error.py:106
 
msgid "You don't have permission to view this page"
 
msgstr "Du hast keine Rechte um diese Seite zu betrachten"
 

	
 
#: kallithea/controllers/error.py:108
 
msgid "The resource could not be found"
 
@@ -4988,97 +4988,97 @@ msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request.html:6
 
#, python-format
 
msgid ""
 
"%s opened a pull request for repository %s and wants you to review "
 
"changes."
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request.html:8
 
#: kallithea/templates/pullrequests/pullrequest.html:31
 
#: kallithea/templates/pullrequests/pullrequest_data.html:14
 
#: kallithea/templates/pullrequests/pullrequest_show.html:28
 
msgid "Title"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:6
 
#, python-format
 
msgid "%s commented on pull request \"%s\""
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:10
 
msgid "Pull request was closed with status"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:12
 
msgid "Pull request changed status"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/registration.html:6
 
msgid "View this user here"
 
msgstr ""
 

	
 
#: kallithea/templates/errors/error_document.html:47
 
#, python-format
 
msgid "You will be redirected to %s in %s seconds"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:15
 
#, python-format
 
msgid "%s File side-by-side diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:22
 
#: kallithea/templates/files/file_diff.html:11
 
msgid "File diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:58
 
msgid "ignore white space"
 
msgid "ignore whitespace"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:59
 
msgid "turn on edit mode"
 
msgstr ""
 

	
 
#: kallithea/templates/files/file_diff.html:4
 
#, python-format
 
msgid "%s File Diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files.html:4
 
#: kallithea/templates/files/files.html:84
 
#, python-format
 
msgid "%s Files"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:4
 
#, python-format
 
msgid "%s Files Add"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:25
 
msgid "Add new file"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:45
 
#: kallithea/templates/files/files_edit.html:43
 
#: kallithea/templates/files/files_ypjax.html:3
 
msgid "Location"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:47
 
msgid "Enter filename..."
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
#: kallithea/templates/files/files_add.html:53
 
msgid "or"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
msgid "Upload File"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:53
 
msgid "Create New File"
 
msgstr ""
kallithea/i18n/en/LC_MESSAGES/kallithea.po
Show inline comments
 
# English translations for Kallithea.
 
# Copyright (C) 2010 ORGANIZATION
 
# This file is distributed under the same license as the Kallithea project.
 
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
 
#
 
msgid ""
 
msgstr ""
 
"Project-Id-Version: Kallithea 0.1\n"
 
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 
"POT-Creation-Date: 2014-07-02 19:08-0400\n"
 
"PO-Revision-Date: 2011-02-25 19:13+0100\n"
 
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 
"Language-Team: en <LL@li.org>\n"
 
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
 
"MIME-Version: 1.0\n"
 
"Content-Type: text/plain; charset=utf-8\n"
 
"Content-Transfer-Encoding: 8bit\n"
 
"Generated-By: Babel 0.9.6\n"
 

	
 
#: kallithea/controllers/changelog.py:90 kallithea/controllers/compare.py:90
 
#: kallithea/controllers/pullrequests.py:265
 
msgid "There are no changesets yet"
 
msgstr ""
 

	
 
#: kallithea/controllers/changelog.py:186
 
msgid "All Branches"
 
msgstr ""
 

	
 
#: kallithea/controllers/changelog.py:189
 
msgid "(closed)"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:87
 
msgid "Show white space"
 
msgid "Show whitespace"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:94 kallithea/controllers/changeset.py:101
 
msgid "Ignore white space"
 
msgid "Ignore whitespace"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:167
 
#, python-format
 
msgid "increase diff context to %(num)s lines"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:209 kallithea/controllers/files.py:98
 
#: kallithea/controllers/files.py:121
 
msgid "Such revision does not exist for this repository"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:355
 
#: kallithea/controllers/pullrequests.py:482
 
#, python-format
 
msgid "Status change -> %s"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:386
 
msgid ""
 
"Changing status on a changeset associated with a closed pull request is "
 
"not allowed"
 
msgstr ""
 

	
 
#: kallithea/controllers/compare.py:194 kallithea/templates/base/root.html:65
 
#, fuzzy
 
msgid "Select changeset"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:72
 
msgid "Home page"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:101
 
msgid "The request could not be understood by the server due to malformed syntax."
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:104
 
msgid "Unauthorized access to resource"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:106
 
msgid "You don't have permission to view this page"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:108
 
msgid "The resource could not be found"
 
msgstr ""
 
@@ -4971,97 +4971,97 @@ msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request.html:6
 
#, python-format
 
msgid ""
 
"%s opened a pull request for repository %s and wants you to review "
 
"changes."
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request.html:8
 
#: kallithea/templates/pullrequests/pullrequest.html:31
 
#: kallithea/templates/pullrequests/pullrequest_data.html:14
 
#: kallithea/templates/pullrequests/pullrequest_show.html:28
 
msgid "Title"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:6
 
#, python-format
 
msgid "%s commented on pull request \"%s\""
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:10
 
msgid "Pull request was closed with status"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:12
 
msgid "Pull request changed status"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/registration.html:6
 
msgid "View this user here"
 
msgstr ""
 

	
 
#: kallithea/templates/errors/error_document.html:47
 
#, python-format
 
msgid "You will be redirected to %s in %s seconds"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:15
 
#, python-format
 
msgid "%s File side-by-side diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:22
 
#: kallithea/templates/files/file_diff.html:11
 
msgid "File diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:58
 
msgid "ignore white space"
 
msgid "ignore whitespace"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:59
 
msgid "turn on edit mode"
 
msgstr ""
 

	
 
#: kallithea/templates/files/file_diff.html:4
 
#, fuzzy, python-format
 
msgid "%s File Diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files.html:4
 
#: kallithea/templates/files/files.html:84
 
#, fuzzy, python-format
 
msgid "%s Files"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:4
 
#, fuzzy, python-format
 
msgid "%s Files Add"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:25
 
msgid "Add new file"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:45
 
#: kallithea/templates/files/files_edit.html:43
 
#: kallithea/templates/files/files_ypjax.html:3
 
msgid "Location"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:47
 
msgid "Enter filename..."
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
#: kallithea/templates/files/files_add.html:53
 
msgid "or"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
msgid "Upload File"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:53
 
msgid "Create New File"
 
msgstr ""
kallithea/i18n/fr/LC_MESSAGES/kallithea.po
Show inline comments
 
# French translations for Kallithea.
 
# Copyright (C) 2014 RhodeCode GmbH, and others.
 
# This file is distributed under the same license as the Kallithea project.
 
# Translators:
 
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011
 
msgid ""
 
msgstr ""
 
"Project-Id-Version:  Kallithea\n"
 
"Report-Msgid-Bugs-To: translations@kallithea-scm.org\n"
 
"POT-Creation-Date: 2014-07-02 19:08-0400\n"
 
"PO-Revision-Date: 2014-02-13 14:34+0000\n"
 
"Last-Translator: marcinkuzminski <marcin@python-blog.com>\n"
 
"Language-Team: French "
 
"(http://www.transifex.com/projects/p/Kallithea/language/fr/)\n"
 
"Plural-Forms: nplurals=2; plural=(n > 1)\n"
 
"MIME-Version: 1.0\n"
 
"Content-Type: text/plain; charset=utf-8\n"
 
"Content-Transfer-Encoding: 8bit\n"
 
"Generated-By: Babel 0.9.6\n"
 

	
 
#: kallithea/controllers/changelog.py:90 kallithea/controllers/compare.py:90
 
#: kallithea/controllers/pullrequests.py:265
 
msgid "There are no changesets yet"
 
msgstr "Il n’y a aucun changement pour le moment"
 

	
 
#: kallithea/controllers/changelog.py:186
 
msgid "All Branches"
 
msgstr "Toutes les branches"
 

	
 
#: kallithea/controllers/changelog.py:189
 
msgid "(closed)"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:87
 
msgid "Show white space"
 
msgid "Show whitespace"
 
msgstr "Afficher les espaces et tabulations"
 

	
 
#: kallithea/controllers/changeset.py:94 kallithea/controllers/changeset.py:101
 
msgid "Ignore white space"
 
msgid "Ignore whitespace"
 
msgstr "Ignorer les espaces et tabulations"
 

	
 
#: kallithea/controllers/changeset.py:167
 
#, python-format
 
msgid "increase diff context to %(num)s lines"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:209 kallithea/controllers/files.py:98
 
#: kallithea/controllers/files.py:121
 
msgid "Such revision does not exist for this repository"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:355
 
#: kallithea/controllers/pullrequests.py:482
 
#, python-format
 
msgid "Status change -> %s"
 
msgstr "Changement de statut -> %s"
 

	
 
#: kallithea/controllers/changeset.py:386
 
msgid ""
 
"Changing status on a changeset associated with a closed pull request is "
 
"not allowed"
 
msgstr ""
 

	
 
#: kallithea/controllers/compare.py:194 kallithea/templates/base/root.html:65
 
msgid "Select changeset"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:72
 
msgid "Home page"
 
msgstr "Accueil"
 

	
 
#: kallithea/controllers/error.py:101
 
msgid "The request could not be understood by the server due to malformed syntax."
 
msgstr ""
 
"Le serveur n’a pas pu interpréter la requête à cause d’une erreur de "
 
"syntaxe"
 

	
 
#: kallithea/controllers/error.py:104
 
msgid "Unauthorized access to resource"
 
msgstr "Accès interdit à cet ressource"
 

	
 
#: kallithea/controllers/error.py:106
 
msgid "You don't have permission to view this page"
 
msgstr "Vous n’avez pas la permission de voir cette page"
 

	
 
#: kallithea/controllers/error.py:108
 
msgid "The resource could not be found"
 
@@ -5004,97 +5004,97 @@ msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request.html:6
 
#, python-format
 
msgid ""
 
"%s opened a pull request for repository %s and wants you to review "
 
"changes."
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request.html:8
 
#: kallithea/templates/pullrequests/pullrequest.html:31
 
#: kallithea/templates/pullrequests/pullrequest_data.html:14
 
#: kallithea/templates/pullrequests/pullrequest_show.html:28
 
msgid "Title"
 
msgstr "Titre"
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:6
 
#, python-format
 
msgid "%s commented on pull request \"%s\""
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:10
 
msgid "Pull request was closed with status"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:12
 
msgid "Pull request changed status"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/registration.html:6
 
msgid "View this user here"
 
msgstr ""
 

	
 
#: kallithea/templates/errors/error_document.html:47
 
#, python-format
 
msgid "You will be redirected to %s in %s seconds"
 
msgstr "Vous serez redirigé vers %s dans %s secondes."
 

	
 
#: kallithea/templates/files/diff_2way.html:15
 
#, python-format
 
msgid "%s File side-by-side diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:22
 
#: kallithea/templates/files/file_diff.html:11
 
msgid "File diff"
 
msgstr "Diff de fichier"
 

	
 
#: kallithea/templates/files/diff_2way.html:58
 
msgid "ignore white space"
 
msgid "ignore whitespace"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:59
 
msgid "turn on edit mode"
 
msgstr ""
 

	
 
#: kallithea/templates/files/file_diff.html:4
 
#, python-format
 
msgid "%s File Diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files.html:4
 
#: kallithea/templates/files/files.html:84
 
#, python-format
 
msgid "%s Files"
 
msgstr "Fichiers de %s"
 

	
 
#: kallithea/templates/files/files_add.html:4
 
#, python-format
 
msgid "%s Files Add"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:25
 
msgid "Add new file"
 
msgstr "Ajouter un nouveau fichier"
 

	
 
#: kallithea/templates/files/files_add.html:45
 
#: kallithea/templates/files/files_edit.html:43
 
#: kallithea/templates/files/files_ypjax.html:3
 
msgid "Location"
 
msgstr "Emplacement"
 

	
 
#: kallithea/templates/files/files_add.html:47
 
msgid "Enter filename..."
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
#: kallithea/templates/files/files_add.html:53
 
msgid "or"
 
msgstr "ou"
 

	
 
#: kallithea/templates/files/files_add.html:49
 
msgid "Upload File"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:53
 
msgid "Create New File"
 
msgstr ""
kallithea/i18n/ja/LC_MESSAGES/kallithea.po
Show inline comments
 
# Japanese translations for Kallithea.
 
# Copyright (C) 2014 RhodeCode GmbH, and others.
 
# This file is distributed under the same license as the Kallithea project.
 
# Translators:
 
# しろう, 2013
 
# shirou - しろう, 2013
 
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011
 
# こいんとす <tkondou@gmail.com>, 2013
 
# Takumi IINO <trot.thunder@gmail.com>, 2013
 
# whosaysni <whosaysni@gmail.com>, 2014
 
msgid ""
 
msgstr ""
 
"Project-Id-Version:  Kallithea\n"
 
"Report-Msgid-Bugs-To: translations@kallithea-scm.org\n"
 
"POT-Creation-Date: 2014-07-02 19:08-0400\n"
 
"PO-Revision-Date: 2014-02-13 14:34+0000\n"
 
"Last-Translator: marcinkuzminski <marcin@python-blog.com>\n"
 
"Language-Team: Japanese "
 
"(http://www.transifex.com/projects/p/Kallithea/language/ja/)\n"
 
"Plural-Forms: nplurals=1; plural=0\n"
 
"MIME-Version: 1.0\n"
 
"Content-Type: text/plain; charset=utf-8\n"
 
"Content-Transfer-Encoding: 8bit\n"
 
"Generated-By: Babel 0.9.6\n"
 

	
 
#: kallithea/controllers/changelog.py:90 kallithea/controllers/compare.py:90
 
#: kallithea/controllers/pullrequests.py:265
 
msgid "There are no changesets yet"
 
msgstr "まだチェンジセットがありません"
 

	
 
#: kallithea/controllers/changelog.py:186
 
msgid "All Branches"
 
msgstr "すべてのブランチ"
 

	
 
#: kallithea/controllers/changelog.py:189
 
msgid "(closed)"
 
msgstr "(閉鎖済み)"
 

	
 
#: kallithea/controllers/changeset.py:87
 
msgid "Show white space"
 
msgid "Show whitespace"
 
msgstr "空白を表示"
 

	
 
#: kallithea/controllers/changeset.py:94 kallithea/controllers/changeset.py:101
 
msgid "Ignore white space"
 
msgid "Ignore whitespace"
 
msgstr "空白を無視"
 

	
 
#: kallithea/controllers/changeset.py:167
 
#, python-format
 
msgid "increase diff context to %(num)s lines"
 
msgstr "diff コンテキストを %(num)s 行増やす"
 

	
 
#: kallithea/controllers/changeset.py:209 kallithea/controllers/files.py:98
 
#: kallithea/controllers/files.py:121
 
msgid "Such revision does not exist for this repository"
 
msgstr "お探しのリビジョンはこのリポジトリにはありません"
 

	
 
#: kallithea/controllers/changeset.py:355
 
#: kallithea/controllers/pullrequests.py:482
 
#, python-format
 
msgid "Status change -> %s"
 
msgstr "ステータス変更 -> %s"
 

	
 
#: kallithea/controllers/changeset.py:386
 
msgid ""
 
"Changing status on a changeset associated with a closed pull request is "
 
"not allowed"
 
msgstr "クローズしたプルリクエストに関連するチェンジセットのステータスを変更することは許可されていません"
 

	
 
#: kallithea/controllers/compare.py:194 kallithea/templates/base/root.html:65
 
msgid "Select changeset"
 
msgstr "リビジョンを選択"
 

	
 
#: kallithea/controllers/error.py:72
 
msgid "Home page"
 
msgstr "ホームページ"
 

	
 
#: kallithea/controllers/error.py:101
 
msgid "The request could not be understood by the server due to malformed syntax."
 
msgstr "形式が間違っているため、サーバーはリクエストを処理できませんでした"
 

	
 
#: kallithea/controllers/error.py:104
 
msgid "Unauthorized access to resource"
 
msgstr "リソースにアクセスする権限がありません"
 

	
 
#: kallithea/controllers/error.py:106
 
msgid "You don't have permission to view this page"
 
msgstr "このページを閲覧する権限がありません"
 

	
 
#: kallithea/controllers/error.py:108
 
msgid "The resource could not be found"
 
msgstr "リソースが見つかりません"
 

	
 
@@ -4985,97 +4985,97 @@ msgstr "新しいパスワードを生成しない場合はこのメールを無視してください。"
 

	
 
#: kallithea/templates/email_templates/pull_request.html:6
 
#, python-format
 
msgid ""
 
"%s opened a pull request for repository %s and wants you to review "
 
"changes."
 
msgstr "ユーザ %s がリポジトリ %s で新しいプルリクエストを作成しました。変更をレビューしてください。"
 

	
 
#: kallithea/templates/email_templates/pull_request.html:8
 
#: kallithea/templates/pullrequests/pullrequest.html:31
 
#: kallithea/templates/pullrequests/pullrequest_data.html:14
 
#: kallithea/templates/pullrequests/pullrequest_show.html:28
 
msgid "Title"
 
msgstr "タイトル"
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:6
 
#, python-format
 
msgid "%s commented on pull request \"%s\""
 
msgstr "%s がプルリクエスト\"%s\" にコメントしました"
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:10
 
msgid "Pull request was closed with status"
 
msgstr "プルリクエストを以下のステータスで閉じました:"
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:12
 
msgid "Pull request changed status"
 
msgstr "プルリクエストを以下のステータスに変更しました:"
 

	
 
#: kallithea/templates/email_templates/registration.html:6
 
msgid "View this user here"
 
msgstr "このユーザを閲覧する"
 

	
 
#: kallithea/templates/errors/error_document.html:47
 
#, python-format
 
msgid "You will be redirected to %s in %s seconds"
 
msgstr "%s へ %s 秒後にリダイレクトします"
 

	
 
#: kallithea/templates/files/diff_2way.html:15
 
#, python-format
 
msgid "%s File side-by-side diff"
 
msgstr "%s ファイルの差分を並べて表示"
 

	
 
#: kallithea/templates/files/diff_2way.html:22
 
#: kallithea/templates/files/file_diff.html:11
 
msgid "File diff"
 
msgstr "ファイル差分"
 

	
 
#: kallithea/templates/files/diff_2way.html:58
 
msgid "ignore white space"
 
msgid "ignore whitespace"
 
msgstr "空白を無視"
 

	
 
#: kallithea/templates/files/diff_2way.html:59
 
msgid "turn on edit mode"
 
msgstr "編集モード"
 

	
 
#: kallithea/templates/files/file_diff.html:4
 
#, python-format
 
msgid "%s File Diff"
 
msgstr "%s ファイル差分"
 

	
 
#: kallithea/templates/files/files.html:4
 
#: kallithea/templates/files/files.html:84
 
#, python-format
 
msgid "%s Files"
 
msgstr "%s ファイル"
 

	
 
#: kallithea/templates/files/files_add.html:4
 
#, python-format
 
msgid "%s Files Add"
 
msgstr "%s ファイルを追加"
 

	
 
#: kallithea/templates/files/files_add.html:25
 
msgid "Add new file"
 
msgstr "新しいファイルを追加"
 

	
 
#: kallithea/templates/files/files_add.html:45
 
#: kallithea/templates/files/files_edit.html:43
 
#: kallithea/templates/files/files_ypjax.html:3
 
msgid "Location"
 
msgstr "場所"
 

	
 
#: kallithea/templates/files/files_add.html:47
 
msgid "Enter filename..."
 
msgstr "ファイル名..."
 

	
 
#: kallithea/templates/files/files_add.html:49
 
#: kallithea/templates/files/files_add.html:53
 
msgid "or"
 
msgstr "または"
 

	
 
#: kallithea/templates/files/files_add.html:49
 
msgid "Upload File"
 
msgstr "アップロードファイル"
 

	
 
#: kallithea/templates/files/files_add.html:53
 
msgid "Create New File"
 
msgstr "新しいファイルを作成"
kallithea/i18n/kallithea.pot
Show inline comments
 
# Translations template for Kallithea.
 
# Copyright (C) 2014 Various authors, licensing as GPLv3
 
# This file is distributed under the same license as the Kallithea project.
 
# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
 
##, fuzzy
 
msgid ""
 
msgstr ""
 
"Project-Id-Version: Kallithea 2.2.5\n"
 
"Report-Msgid-Bugs-To: marcin@maq.io\n"
 
"POT-Creation-Date: 2014-07-02 19:08-0400\n"
 
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 
"Language-Team: LANGUAGE <LL@li.org>\n"
 
"MIME-Version: 1.0\n"
 
"Content-Type: text/plain; charset=utf-8\n"
 
"Content-Transfer-Encoding: 8bit\n"
 
"Generated-By: Babel 0.9.6\n"
 

	
 
#: kallithea/controllers/changelog.py:90 kallithea/controllers/compare.py:90
 
#: kallithea/controllers/pullrequests.py:265
 
msgid "There are no changesets yet"
 
msgstr ""
 

	
 
#: kallithea/controllers/changelog.py:186
 
msgid "All Branches"
 
msgstr ""
 

	
 
#: kallithea/controllers/changelog.py:189
 
msgid "(closed)"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:87
 
msgid "Show white space"
 
msgid "Show whitespace"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:94 kallithea/controllers/changeset.py:101
 
msgid "Ignore white space"
 
msgid "Ignore whitespace"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:167
 
#, python-format
 
msgid "increase diff context to %(num)s lines"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:209 kallithea/controllers/files.py:98
 
#: kallithea/controllers/files.py:121
 
msgid "Such revision does not exist for this repository"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:355
 
#: kallithea/controllers/pullrequests.py:482
 
#, python-format
 
msgid "Status change -> %s"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:386
 
msgid "Changing status on a changeset associated with a closed pull request is not allowed"
 
msgstr ""
 

	
 
#: kallithea/controllers/compare.py:194 kallithea/templates/base/root.html:65
 
msgid "Select changeset"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:72
 
msgid "Home page"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:101
 
msgid "The request could not be understood by the server due to malformed syntax."
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:104
 
msgid "Unauthorized access to resource"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:106
 
msgid "You don't have permission to view this page"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:108
 
msgid "The resource could not be found"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:110
 
msgid "The server encountered an unexpected condition which prevented it from fulfilling the request."
 
@@ -4849,97 +4849,97 @@ msgstr ""
 
msgid "Please ignore this email if you did not request a new password ."
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request.html:6
 
#, python-format
 
msgid "%s opened a pull request for repository %s and wants you to review changes."
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request.html:8
 
#: kallithea/templates/pullrequests/pullrequest.html:31
 
#: kallithea/templates/pullrequests/pullrequest_data.html:14
 
#: kallithea/templates/pullrequests/pullrequest_show.html:28
 
msgid "Title"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:6
 
#, python-format
 
msgid "%s commented on pull request \"%s\""
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:10
 
msgid "Pull request was closed with status"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:12
 
msgid "Pull request changed status"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/registration.html:6
 
msgid "View this user here"
 
msgstr ""
 

	
 
#: kallithea/templates/errors/error_document.html:47
 
#, python-format
 
msgid "You will be redirected to %s in %s seconds"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:15
 
#, python-format
 
msgid "%s File side-by-side diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:22
 
#: kallithea/templates/files/file_diff.html:11
 
msgid "File diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:58
 
msgid "ignore white space"
 
msgid "ignore whitespace"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:59
 
msgid "turn on edit mode"
 
msgstr ""
 

	
 
#: kallithea/templates/files/file_diff.html:4
 
#, python-format
 
msgid "%s File Diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files.html:4
 
#: kallithea/templates/files/files.html:84
 
#, python-format
 
msgid "%s Files"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:4
 
#, python-format
 
msgid "%s Files Add"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:25
 
msgid "Add new file"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:45
 
#: kallithea/templates/files/files_edit.html:43
 
#: kallithea/templates/files/files_ypjax.html:3
 
msgid "Location"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:47
 
msgid "Enter filename..."
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
#: kallithea/templates/files/files_add.html:53
 
msgid "or"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
msgid "Upload File"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:53
 
msgid "Create New File"
 
msgstr ""
kallithea/i18n/pl/LC_MESSAGES/kallithea.po
Show inline comments
 
# Polish translations for Kallithea.
 
# Copyright (C) 2014 RhodeCode GmbH, and others.
 
# This file is distributed under the same license as the Kallithea project.
 
# Translators:
 
# Nemcio <areczek01@gmail.com>, 2013
 
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010
 
# marcinkuzminski <marcin@python-blog.com>, 2013
 
# Nemcio <bogdan114@g.pl>, 2012
 
# Nemcio <areczek01@gmail.com>, 2012-2013
 
msgid ""
 
msgstr ""
 
"Project-Id-Version:  Kallithea\n"
 
"Report-Msgid-Bugs-To: translations@kallithea-scm.org\n"
 
"POT-Creation-Date: 2014-07-02 19:08-0400\n"
 
"PO-Revision-Date: 2014-02-13 14:34+0000\n"
 
"Last-Translator: marcinkuzminski <marcin@python-blog.com>\n"
 
"Language-Team: Polish "
 
"(http://www.transifex.com/projects/p/Kallithea/language/pl/)\n"
 
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && "
 
"(n%100<10 || n%100>=20) ? 1 : 2)\n"
 
"MIME-Version: 1.0\n"
 
"Content-Type: text/plain; charset=utf-8\n"
 
"Content-Transfer-Encoding: 8bit\n"
 
"Generated-By: Babel 0.9.6\n"
 

	
 
#: kallithea/controllers/changelog.py:90 kallithea/controllers/compare.py:90
 
#: kallithea/controllers/pullrequests.py:265
 
msgid "There are no changesets yet"
 
msgstr "Brak zestawienia zmian"
 

	
 
#: kallithea/controllers/changelog.py:186
 
msgid "All Branches"
 
msgstr "Wszystkie gałęzie"
 

	
 
#: kallithea/controllers/changelog.py:189
 
msgid "(closed)"
 
msgstr "(zamknięty)"
 

	
 
#: kallithea/controllers/changeset.py:87
 
msgid "Show white space"
 
msgid "Show whitespace"
 
msgstr "pokazuj spacje"
 

	
 
#: kallithea/controllers/changeset.py:94 kallithea/controllers/changeset.py:101
 
msgid "Ignore white space"
 
msgid "Ignore whitespace"
 
msgstr "Ignoruj pokazywanie spacji"
 

	
 
#: kallithea/controllers/changeset.py:167
 
#, python-format
 
msgid "increase diff context to %(num)s lines"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:209 kallithea/controllers/files.py:98
 
#: kallithea/controllers/files.py:121
 
msgid "Such revision does not exist for this repository"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:355
 
#: kallithea/controllers/pullrequests.py:482
 
#, python-format
 
msgid "Status change -> %s"
 
msgstr "Zmiana statusu -> %s"
 

	
 
#: kallithea/controllers/changeset.py:386
 
msgid ""
 
"Changing status on a changeset associated with a closed pull request is "
 
"not allowed"
 
msgstr ""
 
"Zmiana statusu na grupy zmian powiązania łączy zamkniętego wniosku jest "
 
"niedozwolona"
 

	
 
#: kallithea/controllers/compare.py:194 kallithea/templates/base/root.html:65
 
msgid "Select changeset"
 
msgstr "Wybrane zmiany"
 

	
 
#: kallithea/controllers/error.py:72
 
msgid "Home page"
 
msgstr "Strona główna"
 

	
 
#: kallithea/controllers/error.py:101
 
msgid "The request could not be understood by the server due to malformed syntax."
 
msgstr ""
 
"Wniosek nie może być rozumiany przez serwer z powodu zniekształconej "
 
"składni."
 

	
 
#: kallithea/controllers/error.py:104
 
msgid "Unauthorized access to resource"
 
msgstr "Nieautoryzowany dostęp do zasobów"
 

	
 
#: kallithea/controllers/error.py:106
 
msgid "You don't have permission to view this page"
 
msgstr "Nie masz uprawnień do przeglądania tej strony"
 

	
 
@@ -5044,97 +5044,97 @@ msgstr "Proszę zignorować tą wiadomość, jeśli nie poproś o nowe hasło."
 
#, python-format
 
msgid ""
 
"%s opened a pull request for repository %s and wants you to review "
 
"changes."
 
msgstr ""
 
"%s zgłosił wniosek połączenia w repozytorium %s i chce żeby sprawdzić "
 
"zmiany."
 

	
 
#: kallithea/templates/email_templates/pull_request.html:8
 
#: kallithea/templates/pullrequests/pullrequest.html:31
 
#: kallithea/templates/pullrequests/pullrequest_data.html:14
 
#: kallithea/templates/pullrequests/pullrequest_show.html:28
 
msgid "Title"
 
msgstr "Tytuł"
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:6
 
#, python-format
 
msgid "%s commented on pull request \"%s\""
 
msgstr "%s skomentował nowe połączenie gałęzi \"%s\""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:10
 
msgid "Pull request was closed with status"
 
msgstr "Wniosek połączenia został zamknięty ze statusem"
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:12
 
msgid "Pull request changed status"
 
msgstr "Wniosek połączenia zmienił status"
 

	
 
#: kallithea/templates/email_templates/registration.html:6
 
msgid "View this user here"
 
msgstr "Zobacz tego użytkownika tutaj"
 

	
 
#: kallithea/templates/errors/error_document.html:47
 
#, python-format
 
msgid "You will be redirected to %s in %s seconds"
 
msgstr "Zostaniesz przekierowany do %s za %s sekund"
 

	
 
#: kallithea/templates/files/diff_2way.html:15
 
#, python-format
 
msgid "%s File side-by-side diff"
 
msgstr "Pliki z listą zmian i różnic: %s"
 

	
 
#: kallithea/templates/files/diff_2way.html:22
 
#: kallithea/templates/files/file_diff.html:11
 
msgid "File diff"
 
msgstr "Pliki różnic"
 

	
 
#: kallithea/templates/files/diff_2way.html:58
 
msgid "ignore white space"
 
msgid "ignore whitespace"
 
msgstr "ignoruj spacje"
 

	
 
#: kallithea/templates/files/diff_2way.html:59
 
msgid "turn on edit mode"
 
msgstr "włączyć tryb edycji"
 

	
 
#: kallithea/templates/files/file_diff.html:4
 
#, python-format
 
msgid "%s File Diff"
 
msgstr "%s Pliki różnic"
 

	
 
#: kallithea/templates/files/files.html:4
 
#: kallithea/templates/files/files.html:84
 
#, python-format
 
msgid "%s Files"
 
msgstr "Pliki %s"
 

	
 
#: kallithea/templates/files/files_add.html:4
 
#, python-format
 
msgid "%s Files Add"
 
msgstr "Pliki %s"
 

	
 
#: kallithea/templates/files/files_add.html:25
 
msgid "Add new file"
 
msgstr "Dodaj nowy plik"
 

	
 
#: kallithea/templates/files/files_add.html:45
 
#: kallithea/templates/files/files_edit.html:43
 
#: kallithea/templates/files/files_ypjax.html:3
 
msgid "Location"
 
msgstr "Położenie"
 

	
 
#: kallithea/templates/files/files_add.html:47
 
msgid "Enter filename..."
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
#: kallithea/templates/files/files_add.html:53
 
msgid "or"
 
msgstr "lub"
 

	
 
#: kallithea/templates/files/files_add.html:49
 
msgid "Upload File"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:53
 
msgid "Create New File"
 
msgstr ""
kallithea/i18n/pt_BR/LC_MESSAGES/kallithea.po
Show inline comments
 
# Portuguese (Brazil) translations for Kallithea.
 
# Copyright (C) 2014 RhodeCode GmbH, and others.
 
# This file is distributed under the same license as the Kallithea project.
 
# Translators:
 
# Augusto Herrmann <augusto.herrmann@gmail.com>, 2012
 
# gnustavo <gustavo@gnustavo.com>, 2013
 
msgid ""
 
msgstr ""
 
"Project-Id-Version:  Kallithea\n"
 
"Report-Msgid-Bugs-To: translations@kallithea-scm.org\n"
 
"POT-Creation-Date: 2014-07-02 19:08-0400\n"
 
"PO-Revision-Date: 2014-02-13 14:34+0000\n"
 
"Last-Translator: marcinkuzminski <marcin@python-blog.com>\n"
 
"Language-Team: Portuguese (Brazil) "
 
"(http://www.transifex.com/projects/p/Kallithea/language/pt_BR/)\n"
 
"Plural-Forms: nplurals=2; plural=(n > 1)\n"
 
"MIME-Version: 1.0\n"
 
"Content-Type: text/plain; charset=utf-8\n"
 
"Content-Transfer-Encoding: 8bit\n"
 
"Generated-By: Babel 0.9.6\n"
 

	
 
#: kallithea/controllers/changelog.py:90 kallithea/controllers/compare.py:90
 
#: kallithea/controllers/pullrequests.py:265
 
msgid "There are no changesets yet"
 
msgstr "Não há nenhum changeset ainda"
 

	
 
#: kallithea/controllers/changelog.py:186
 
msgid "All Branches"
 
msgstr "Todos os Ramos"
 

	
 
#: kallithea/controllers/changelog.py:189
 
msgid "(closed)"
 
msgstr "(fechado)"
 

	
 
#: kallithea/controllers/changeset.py:87
 
msgid "Show white space"
 
msgid "Show whitespace"
 
msgstr "Mostrar espaços em branco"
 

	
 
#: kallithea/controllers/changeset.py:94 kallithea/controllers/changeset.py:101
 
msgid "Ignore white space"
 
msgid "Ignore whitespace"
 
msgstr "Ignorar espaços em branco"
 

	
 
#: kallithea/controllers/changeset.py:167
 
#, python-format
 
msgid "increase diff context to %(num)s lines"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:209 kallithea/controllers/files.py:98
 
#: kallithea/controllers/files.py:121
 
msgid "Such revision does not exist for this repository"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:355
 
#: kallithea/controllers/pullrequests.py:482
 
#, python-format
 
msgid "Status change -> %s"
 
msgstr "Mudança de estado -> %s"
 

	
 
#: kallithea/controllers/changeset.py:386
 
msgid ""
 
"Changing status on a changeset associated with a closed pull request is "
 
"not allowed"
 
msgstr "Mudar o estado de um changeset associado a um pull request não é permitido"
 

	
 
#: kallithea/controllers/compare.py:194 kallithea/templates/base/root.html:65
 
msgid "Select changeset"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:72
 
msgid "Home page"
 
msgstr "Página inicial"
 

	
 
#: kallithea/controllers/error.py:101
 
msgid "The request could not be understood by the server due to malformed syntax."
 
msgstr ""
 
"A requisição não pôde ser compreendida pelo servidor devido à sintaxe mal"
 
" formada."
 

	
 
#: kallithea/controllers/error.py:104
 
msgid "Unauthorized access to resource"
 
msgstr "Acesso não autorizado ao recurso"
 

	
 
#: kallithea/controllers/error.py:106
 
msgid "You don't have permission to view this page"
 
msgstr "Você não tem permissão para ver esta página"
 

	
 
#: kallithea/controllers/error.py:108
 
msgid "The resource could not be found"
 
@@ -5029,97 +5029,97 @@ msgstr "Por favor, ignore este email se você não requisitou uma nova senha."
 

	
 
#: kallithea/templates/email_templates/pull_request.html:6
 
#, python-format
 
msgid ""
 
"%s opened a pull request for repository %s and wants you to review "
 
"changes."
 
msgstr "%s abriu um pull request para o repositório %s e espera sua revisão."
 

	
 
#: kallithea/templates/email_templates/pull_request.html:8
 
#: kallithea/templates/pullrequests/pullrequest.html:31
 
#: kallithea/templates/pullrequests/pullrequest_data.html:14
 
#: kallithea/templates/pullrequests/pullrequest_show.html:28
 
msgid "Title"
 
msgstr "Título"
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:6
 
#, python-format
 
msgid "%s commented on pull request \"%s\""
 
msgstr "%s comentou no pull request \"%s\""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:10
 
msgid "Pull request was closed with status"
 
msgstr "O pull request foi fechado com o estado"
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:12
 
msgid "Pull request changed status"
 
msgstr "O pull request mudou de estado"
 

	
 
#: kallithea/templates/email_templates/registration.html:6
 
msgid "View this user here"
 
msgstr "Veja este usuário aqui"
 

	
 
#: kallithea/templates/errors/error_document.html:47
 
#, python-format
 
msgid "You will be redirected to %s in %s seconds"
 
msgstr "Você será redirecionado para %s em %s segundos"
 

	
 
#: kallithea/templates/files/diff_2way.html:15
 
#, python-format
 
msgid "%s File side-by-side diff"
 
msgstr "Arquivo %s diff lado-a-lado"
 

	
 
#: kallithea/templates/files/diff_2way.html:22
 
#: kallithea/templates/files/file_diff.html:11
 
msgid "File diff"
 
msgstr "Diff do arquivo"
 

	
 
#: kallithea/templates/files/diff_2way.html:58
 
msgid "ignore white space"
 
msgid "ignore whitespace"
 
msgstr "ignorar espaços em branco"
 

	
 
#: kallithea/templates/files/diff_2way.html:59
 
msgid "turn on edit mode"
 
msgstr "habilitar modo de edição"
 

	
 
#: kallithea/templates/files/file_diff.html:4
 
#, python-format
 
msgid "%s File Diff"
 
msgstr "%s Diff de Arquivo"
 

	
 
#: kallithea/templates/files/files.html:4
 
#: kallithea/templates/files/files.html:84
 
#, python-format
 
msgid "%s Files"
 
msgstr "%s Arquivos"
 

	
 
#: kallithea/templates/files/files_add.html:4
 
#, python-format
 
msgid "%s Files Add"
 
msgstr "%s Adicionar Arquivos"
 

	
 
#: kallithea/templates/files/files_add.html:25
 
msgid "Add new file"
 
msgstr "Adicionar novo arquivo"
 

	
 
#: kallithea/templates/files/files_add.html:45
 
#: kallithea/templates/files/files_edit.html:43
 
#: kallithea/templates/files/files_ypjax.html:3
 
msgid "Location"
 
msgstr "Local"
 

	
 
#: kallithea/templates/files/files_add.html:47
 
msgid "Enter filename..."
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
#: kallithea/templates/files/files_add.html:53
 
msgid "or"
 
msgstr "ou"
 

	
 
#: kallithea/templates/files/files_add.html:49
 
msgid "Upload File"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:53
 
msgid "Create New File"
 
msgstr ""
kallithea/i18n/ru/LC_MESSAGES/kallithea.po
Show inline comments
 
# Russian translations for Kallithea.
 
# Copyright (C) 2014 RhodeCode GmbH, and others.
 
# This file is distributed under the same license as the Kallithea project.
 
# Translators:
 
# ArcheR <aleclitvinov1980@gmail.com>, 2013
 
# mokeev1995 <mokeev_andre@mail.ru>, 2013
 
# Andrey Mivrenik <myvrenik@gmail.com>, 2013
 
# invision70 <invision70@gmail.com>, 2014
 
# ivlevdenis <ivlevdenis.ru@gmail.com>, 2013
 
# Mikhail Zholobov <legal90@gmail.com>, 2013
 
# Ruslan Bekenev <furyinbox@gmail.com>, 2013
 
# SkryabinD <skryabind@gmail.com>, 2014
 
# softforwinxp <softforwinxp@gmail.com>, 2013
 
# zhmylove <zhmylove@narod.ru>, 2013
 
msgid ""
 
msgstr ""
 
"Project-Id-Version:  Kallithea\n"
 
"Report-Msgid-Bugs-To: translations@kallithea-scm.org\n"
 
"POT-Creation-Date: 2014-07-02 19:08-0400\n"
 
"PO-Revision-Date: 2014-02-13 14:34+0000\n"
 
"Last-Translator: marcinkuzminski <marcin@python-blog.com>\n"
 
"Language-Team: Russian "
 
"(http://www.transifex.com/projects/p/Kallithea/language/ru/)\n"
 
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
 
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
 
"MIME-Version: 1.0\n"
 
"Content-Type: text/plain; charset=utf-8\n"
 
"Content-Transfer-Encoding: 8bit\n"
 
"Generated-By: Babel 0.9.6\n"
 

	
 
#: kallithea/controllers/changelog.py:90 kallithea/controllers/compare.py:90
 
#: kallithea/controllers/pullrequests.py:265
 
msgid "There are no changesets yet"
 
msgstr "Ещё не было изменений"
 

	
 
#: kallithea/controllers/changelog.py:186
 
msgid "All Branches"
 
msgstr "Все ветки"
 

	
 
#: kallithea/controllers/changelog.py:189
 
msgid "(closed)"
 
msgstr "(закрыто)"
 

	
 
#: kallithea/controllers/changeset.py:87
 
msgid "Show white space"
 
msgid "Show whitespace"
 
msgstr "Отображать пробелы"
 

	
 
#: kallithea/controllers/changeset.py:94 kallithea/controllers/changeset.py:101
 
msgid "Ignore white space"
 
msgid "Ignore whitespace"
 
msgstr "Игнорировать пробелы"
 

	
 
#: kallithea/controllers/changeset.py:167
 
#, python-format
 
msgid "increase diff context to %(num)s lines"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:209 kallithea/controllers/files.py:98
 
#: kallithea/controllers/files.py:121
 
msgid "Such revision does not exist for this repository"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:355
 
#: kallithea/controllers/pullrequests.py:482
 
#, python-format
 
msgid "Status change -> %s"
 
msgstr "Изменение статуса -> %s"
 

	
 
#: kallithea/controllers/changeset.py:386
 
msgid ""
 
"Changing status on a changeset associated with a closed pull request is "
 
"not allowed"
 
msgstr ""
 
"Нельзя редактировать статус изменений, связанных  с закрытыми pull-"
 
"request'ами."
 

	
 
#: kallithea/controllers/compare.py:194 kallithea/templates/base/root.html:65
 
msgid "Select changeset"
 
msgstr "Выбрать набор изменений"
 

	
 
#: kallithea/controllers/error.py:72
 
msgid "Home page"
 
msgstr "Домашняя страница"
 

	
 
#: kallithea/controllers/error.py:101
 
msgid "The request could not be understood by the server due to malformed syntax."
 
msgstr "Запрос не распознан сервером из-за неправильного синтаксиса."
 

	
 
#: kallithea/controllers/error.py:104
 
msgid "Unauthorized access to resource"
 
msgstr "Несанкционированный доступ к ресурсу"
 

	
 
#: kallithea/controllers/error.py:106
 
msgid "You don't have permission to view this page"
 
msgstr "У вас нет прав для просмотра этой страницы"
 

	
 
#: kallithea/controllers/error.py:108
 
msgid "The resource could not be found"
 
@@ -5057,97 +5057,97 @@ msgstr ""
 
#, python-format
 
msgid ""
 
"%s opened a pull request for repository %s and wants you to review "
 
"changes."
 
msgstr ""
 
"%s открыл pull-request для репозитория %s и просит вас просмотреть "
 
"изменения"
 

	
 
#: kallithea/templates/email_templates/pull_request.html:8
 
#: kallithea/templates/pullrequests/pullrequest.html:31
 
#: kallithea/templates/pullrequests/pullrequest_data.html:14
 
#: kallithea/templates/pullrequests/pullrequest_show.html:28
 
msgid "Title"
 
msgstr "Заголовок"
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:6
 
#, python-format
 
msgid "%s commented on pull request \"%s\""
 
msgstr "%s оставил комментарий к pull-request'у \"%s\""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:10
 
msgid "Pull request was closed with status"
 
msgstr "Pull-request был закрыт со статусом"
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:12
 
msgid "Pull request changed status"
 
msgstr "Статус pull-request'а был изменен"
 

	
 
#: kallithea/templates/email_templates/registration.html:6
 
msgid "View this user here"
 
msgstr "Подробнее о пользователе"
 

	
 
#: kallithea/templates/errors/error_document.html:47
 
#, python-format
 
msgid "You will be redirected to %s in %s seconds"
 
msgstr "Вы будете посланы на %s через %s секунд"
 

	
 
#: kallithea/templates/files/diff_2way.html:15
 
#, python-format
 
msgid "%s File side-by-side diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:22
 
#: kallithea/templates/files/file_diff.html:11
 
msgid "File diff"
 
msgstr "Сравнение файлов "
 

	
 
#: kallithea/templates/files/diff_2way.html:58
 
msgid "ignore white space"
 
msgid "ignore whitespace"
 
msgstr "игнорировать пробелы"
 

	
 
#: kallithea/templates/files/diff_2way.html:59
 
msgid "turn on edit mode"
 
msgstr "включить режим редактирования"
 

	
 
#: kallithea/templates/files/file_diff.html:4
 
#, python-format
 
msgid "%s File Diff"
 
msgstr "Сравнение файла %s"
 

	
 
#: kallithea/templates/files/files.html:4
 
#: kallithea/templates/files/files.html:84
 
#, python-format
 
msgid "%s Files"
 
msgstr "%s Файлы"
 

	
 
#: kallithea/templates/files/files_add.html:4
 
#, python-format
 
msgid "%s Files Add"
 
msgstr "%s Файлов добавлено"
 

	
 
#: kallithea/templates/files/files_add.html:25
 
msgid "Add new file"
 
msgstr "Добавить файл"
 

	
 
#: kallithea/templates/files/files_add.html:45
 
#: kallithea/templates/files/files_edit.html:43
 
#: kallithea/templates/files/files_ypjax.html:3
 
msgid "Location"
 
msgstr "Расположение"
 

	
 
#: kallithea/templates/files/files_add.html:47
 
msgid "Enter filename..."
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
#: kallithea/templates/files/files_add.html:53
 
msgid "or"
 
msgstr "или"
 

	
 
#: kallithea/templates/files/files_add.html:49
 
msgid "Upload File"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:53
 
msgid "Create New File"
 
msgstr ""
kallithea/i18n/zh_CN/LC_MESSAGES/kallithea.po
Show inline comments
 
# Chinese (China) translations for Kallithea.
 
# Copyright (C) 2014 RhodeCode GmbH, and others.
 
# This file is distributed under the same license as the Kallithea project.
 
# Translators:
 
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011
 
# mikespook <mikespook@gmail.com>, 2012
 
# xpol <xpolife@gmail.com>, 2012
 
msgid ""
 
msgstr ""
 
"Project-Id-Version:  Kallithea\n"
 
"Report-Msgid-Bugs-To: translations@kallithea-scm.org\n"
 
"POT-Creation-Date: 2014-07-02 19:08-0400\n"
 
"PO-Revision-Date: 2014-02-13 14:34+0000\n"
 
"Last-Translator: marcinkuzminski <marcin@python-blog.com>\n"
 
"Language-Team: Chinese (China) "
 
"(http://www.transifex.com/projects/p/Kallithea/language/zh_CN/)\n"
 
"Plural-Forms: nplurals=1; plural=0\n"
 
"MIME-Version: 1.0\n"
 
"Content-Type: text/plain; charset=utf-8\n"
 
"Content-Transfer-Encoding: 8bit\n"
 
"Generated-By: Babel 0.9.6\n"
 

	
 
#: kallithea/controllers/changelog.py:90 kallithea/controllers/compare.py:90
 
#: kallithea/controllers/pullrequests.py:265
 
msgid "There are no changesets yet"
 
msgstr "还没有修订集"
 

	
 
#: kallithea/controllers/changelog.py:186
 
msgid "All Branches"
 
msgstr "所有分支"
 

	
 
#: kallithea/controllers/changelog.py:189
 
msgid "(closed)"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:87
 
msgid "Show white space"
 
msgid "Show whitespace"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:94 kallithea/controllers/changeset.py:101
 
msgid "Ignore white space"
 
msgid "Ignore whitespace"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:167
 
#, python-format
 
msgid "increase diff context to %(num)s lines"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:209 kallithea/controllers/files.py:98
 
#: kallithea/controllers/files.py:121
 
msgid "Such revision does not exist for this repository"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:355
 
#: kallithea/controllers/pullrequests.py:482
 
#, python-format
 
msgid "Status change -> %s"
 
msgstr "状态修改为%s"
 

	
 
#: kallithea/controllers/changeset.py:386
 
msgid ""
 
"Changing status on a changeset associated with a closed pull request is "
 
"not allowed"
 
msgstr ""
 

	
 
#: kallithea/controllers/compare.py:194 kallithea/templates/base/root.html:65
 
msgid "Select changeset"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:72
 
msgid "Home page"
 
msgstr "主页"
 

	
 
#: kallithea/controllers/error.py:101
 
msgid "The request could not be understood by the server due to malformed syntax."
 
msgstr "由于错误的语法,服务器无法对请求进行响应。"
 

	
 
#: kallithea/controllers/error.py:104
 
msgid "Unauthorized access to resource"
 
msgstr "未授权的资源访问"
 

	
 
#: kallithea/controllers/error.py:106
 
msgid "You don't have permission to view this page"
 
msgstr "无权访问该页面"
 

	
 
#: kallithea/controllers/error.py:108
 
msgid "The resource could not be found"
 
msgstr "资源未找到"
 

	
 
@@ -4946,97 +4946,97 @@ msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request.html:6
 
#, python-format
 
msgid ""
 
"%s opened a pull request for repository %s and wants you to review "
 
"changes."
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request.html:8
 
#: kallithea/templates/pullrequests/pullrequest.html:31
 
#: kallithea/templates/pullrequests/pullrequest_data.html:14
 
#: kallithea/templates/pullrequests/pullrequest_show.html:28
 
msgid "Title"
 
msgstr "标题"
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:6
 
#, python-format
 
msgid "%s commented on pull request \"%s\""
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:10
 
msgid "Pull request was closed with status"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:12
 
msgid "Pull request changed status"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/registration.html:6
 
msgid "View this user here"
 
msgstr "查看用户"
 

	
 
#: kallithea/templates/errors/error_document.html:47
 
#, python-format
 
msgid "You will be redirected to %s in %s seconds"
 
msgstr "重定向到%s,于%s秒后"
 

	
 
#: kallithea/templates/files/diff_2way.html:15
 
#, python-format
 
msgid "%s File side-by-side diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:22
 
#: kallithea/templates/files/file_diff.html:11
 
msgid "File diff"
 
msgstr "文件差异"
 

	
 
#: kallithea/templates/files/diff_2way.html:58
 
msgid "ignore white space"
 
msgid "ignore whitespace"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:59
 
msgid "turn on edit mode"
 
msgstr ""
 

	
 
#: kallithea/templates/files/file_diff.html:4
 
#, python-format
 
msgid "%s File Diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files.html:4
 
#: kallithea/templates/files/files.html:84
 
#, python-format
 
msgid "%s Files"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:4
 
#, python-format
 
msgid "%s Files Add"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:25
 
msgid "Add new file"
 
msgstr "新建文件"
 

	
 
#: kallithea/templates/files/files_add.html:45
 
#: kallithea/templates/files/files_edit.html:43
 
#: kallithea/templates/files/files_ypjax.html:3
 
msgid "Location"
 
msgstr "位置"
 

	
 
#: kallithea/templates/files/files_add.html:47
 
msgid "Enter filename..."
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
#: kallithea/templates/files/files_add.html:53
 
msgid "or"
 
msgstr "或者"
 

	
 
#: kallithea/templates/files/files_add.html:49
 
msgid "Upload File"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:53
 
msgid "Create New File"
 
msgstr ""
kallithea/i18n/zh_TW/LC_MESSAGES/kallithea.po
Show inline comments
 
# Chinese (Taiwan) translations for Kallithea.
 
# Copyright (C) 2014 RhodeCode GmbH, and others.
 
# This file is distributed under the same license as the Kallithea project.
 
# Translators:
 
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011
 
msgid ""
 
msgstr ""
 
"Project-Id-Version:  Kallithea\n"
 
"Report-Msgid-Bugs-To: translations@kallithea-scm.org\n"
 
"POT-Creation-Date: 2014-07-02 19:08-0400\n"
 
"PO-Revision-Date: 2014-02-13 14:34+0000\n"
 
"Last-Translator: marcinkuzminski <marcin@python-blog.com>\n"
 
"Language-Team: Chinese (Taiwan) "
 
"(http://www.transifex.com/projects/p/Kallithea/language/zh_TW/)\n"
 
"Plural-Forms: nplurals=1; plural=0\n"
 
"MIME-Version: 1.0\n"
 
"Content-Type: text/plain; charset=utf-8\n"
 
"Content-Transfer-Encoding: 8bit\n"
 
"Generated-By: Babel 0.9.6\n"
 

	
 
#: kallithea/controllers/changelog.py:90 kallithea/controllers/compare.py:90
 
#: kallithea/controllers/pullrequests.py:265
 
msgid "There are no changesets yet"
 
msgstr ""
 

	
 
#: kallithea/controllers/changelog.py:186
 
msgid "All Branches"
 
msgstr ""
 

	
 
#: kallithea/controllers/changelog.py:189
 
msgid "(closed)"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:87
 
msgid "Show white space"
 
msgid "Show whitespace"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:94 kallithea/controllers/changeset.py:101
 
msgid "Ignore white space"
 
msgid "Ignore whitespace"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:167
 
#, python-format
 
msgid "increase diff context to %(num)s lines"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:209 kallithea/controllers/files.py:98
 
#: kallithea/controllers/files.py:121
 
msgid "Such revision does not exist for this repository"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:355
 
#: kallithea/controllers/pullrequests.py:482
 
#, python-format
 
msgid "Status change -> %s"
 
msgstr ""
 

	
 
#: kallithea/controllers/changeset.py:386
 
msgid ""
 
"Changing status on a changeset associated with a closed pull request is "
 
"not allowed"
 
msgstr ""
 

	
 
#: kallithea/controllers/compare.py:194 kallithea/templates/base/root.html:65
 
msgid "Select changeset"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:72
 
msgid "Home page"
 
msgstr "首頁"
 

	
 
#: kallithea/controllers/error.py:101
 
msgid "The request could not be understood by the server due to malformed syntax."
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:104
 
msgid "Unauthorized access to resource"
 
msgstr ""
 

	
 
#: kallithea/controllers/error.py:106
 
msgid "You don't have permission to view this page"
 
msgstr "您沒有權限瀏覽這個頁面"
 

	
 
#: kallithea/controllers/error.py:108
 
msgid "The resource could not be found"
 
msgstr "找不到這個資源"
 

	
 
@@ -4944,97 +4944,97 @@ msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request.html:6
 
#, python-format
 
msgid ""
 
"%s opened a pull request for repository %s and wants you to review "
 
"changes."
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request.html:8
 
#: kallithea/templates/pullrequests/pullrequest.html:31
 
#: kallithea/templates/pullrequests/pullrequest_data.html:14
 
#: kallithea/templates/pullrequests/pullrequest_show.html:28
 
msgid "Title"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:6
 
#, python-format
 
msgid "%s commented on pull request \"%s\""
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:10
 
msgid "Pull request was closed with status"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/pull_request_comment.html:12
 
msgid "Pull request changed status"
 
msgstr ""
 

	
 
#: kallithea/templates/email_templates/registration.html:6
 
msgid "View this user here"
 
msgstr ""
 

	
 
#: kallithea/templates/errors/error_document.html:47
 
#, python-format
 
msgid "You will be redirected to %s in %s seconds"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:15
 
#, python-format
 
msgid "%s File side-by-side diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:22
 
#: kallithea/templates/files/file_diff.html:11
 
msgid "File diff"
 
msgstr "檔案差異"
 

	
 
#: kallithea/templates/files/diff_2way.html:58
 
msgid "ignore white space"
 
msgid "ignore whitespace"
 
msgstr ""
 

	
 
#: kallithea/templates/files/diff_2way.html:59
 
msgid "turn on edit mode"
 
msgstr ""
 

	
 
#: kallithea/templates/files/file_diff.html:4
 
#, python-format
 
msgid "%s File Diff"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files.html:4
 
#: kallithea/templates/files/files.html:84
 
#, python-format
 
msgid "%s Files"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:4
 
#, python-format
 
msgid "%s Files Add"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:25
 
msgid "Add new file"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:45
 
#: kallithea/templates/files/files_edit.html:43
 
#: kallithea/templates/files/files_ypjax.html:3
 
msgid "Location"
 
msgstr "位置"
 

	
 
#: kallithea/templates/files/files_add.html:47
 
msgid "Enter filename..."
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
#: kallithea/templates/files/files_add.html:53
 
msgid "or"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:49
 
msgid "Upload File"
 
msgstr ""
 

	
 
#: kallithea/templates/files/files_add.html:53
 
msgid "Create New File"
 
msgstr ""
kallithea/templates/files/diff_2way.html
Show inline comments
 
@@ -10,98 +10,98 @@
 
<link rel="stylesheet" type="text/css" href="${h.url('/css/codemirror.css')}"/>
 
<link rel="stylesheet" type="text/css" href="${h.url('/css/mergely.css')}"/>
 
</%def>
 

	
 
<%def name="title()">
 
    ${_('%s File side-by-side diff') % c.repo_name}
 
    %if c.site_name:
 
        &middot; ${c.site_name}
 
    %endif
 
</%def>
 

	
 
<%def name="breadcrumbs_links()">
 
    ${_('File diff')} ${h.show_id(c.changeset_1)} &rarr; ${h.show_id(c.changeset_2)}
 
</%def>
 

	
 
<%def name="page_nav()">
 
    ${self.menu('repositories')}
 
</%def>
 

	
 
<%def name="main()">
 
${self.repo_context_bar('changelog')}
 
<div class="box">
 
    <!-- box / title -->
 
    <div class="title">
 
        ${self.breadcrumbs()}
 
    </div>
 

	
 
    <div class="diff-container" style="overflow-x: hidden">
 
        <div class="diffblock comm" style="margin:3px; padding:1px">
 
            <div class="code-header">
 
                <div class="changeset_header">
 
                    <div class="changeset_file">
 
                        ${h.link_to(h.safe_unicode(c.node1.path),h.url('files_home',repo_name=c.repo_name,
 
                        revision=c.cs2.raw_id,f_path=h.safe_unicode(c.node1.path)))}
 
                    </div>
 
                    <div class="diff-actions">
 
                      <a href="${h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(c.node1.path),diff2=c.cs2.raw_id,diff1=c.cs1.raw_id,diff='diff',fulldiff=1)}" class="tooltip" title="${h.tooltip(_('Show full diff for this file'))}">
 
                          <img class="icon" src="${h.url('/images/icons/page_white_go.png')}"/>
 
                      </a>
 
                      <a href="${h.url('files_diff_2way_home',repo_name=c.repo_name,f_path=h.safe_unicode(c.node1.path),diff2=c.cs2.raw_id,diff1=c.cs1.raw_id,diff='diff',fulldiff=1)}" class="tooltip" title="${h.tooltip(_('Show full side-by-side diff for this file'))}">
 
                          <img class="icon" src="${h.url('/images/icons/application_double.png')}"/>
 
                      </a>
 
                      <a href="${h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(c.node1.path),diff2=c.cs2.raw_id,diff1=c.cs1.raw_id,diff='raw')}" class="tooltip" title="${h.tooltip(_('Raw diff'))}">
 
                          <img class="icon" src="${h.url('/images/icons/page_white.png')}"/>
 
                      </a>
 
                      <a href="${h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(c.node1.path),diff2=c.cs2.raw_id,diff1=c.cs1.raw_id,diff='download')}" class="tooltip" title="${h.tooltip(_('Download diff'))}">
 
                          <img class="icon" src="${h.url('/images/icons/page_save.png')}"/>
 
                      </a>
 
                      ${h.checkbox('ignorews', label=_('ignore white space'))}
 
                      ${h.checkbox('edit_mode', label=_('turn on edit mode'))}
 
                      ${h.checkbox('ignorews', label=_('Ignore whitespace'))}
 
                      ${h.checkbox('edit_mode', label=_('Edit'))}
 
                    </div>
 
                </div>
 
            </div>
 
            <div id="compare"></div>
 
        </div>
 
    </div>
 

	
 
<script>
 
var orig1_url = '${h.url('files_raw_home',repo_name=c.repo_name,f_path=h.safe_unicode(c.node1.path),revision=c.cs1.raw_id)}';
 
var orig2_url = '${h.url('files_raw_home',repo_name=c.repo_name,f_path=h.safe_unicode(c.node2.path),revision=c.cs2.raw_id)}';
 

	
 
$(document).ready(function () {
 
    $('#compare').mergely({
 
        width: 'auto',
 
        height: '600',
 
        fgcolor: {a:'#ddffdd',c:'#cccccc',d:'#ffdddd'},
 
        bgcolor: '#fff',
 
        viewport: true,
 
        cmsettings: {mode: 'text/plain', readOnly: true, lineWrapping: false, lineNumbers: true},
 
        lhs: function(setValue) {
 
            if("${c.node1.is_binary}" == "True"){
 
                setValue('Binary file')
 
            }
 
            else{
 
                $.ajax(orig1_url, {dataType: 'text', success: setValue});
 
            }
 

	
 
        },
 
        rhs: function(setValue) {
 
            if("${c.node2.is_binary}" == "True"){
 
                setValue('Binary file')
 
            }
 
            else{
 
                $.ajax(orig2_url, {dataType: 'text', success: setValue});
 
            }
 
        },
 
    });
 
    $('#ignorews').change(function(e){
 
        var val = e.currentTarget.checked;
 
        $('#compare').mergely('options', {ignorews: val});
 
        $('#compare').mergely('update');
 
    })
 
    $('#edit_mode').change(function(e){
 
        var val = !e.currentTarget.checked;
 
        $('#compare').mergely('cm', 'lhs').setOption('readOnly', val);
 
        $('#compare').mergely('cm', 'rhs').setOption('readOnly', val);
 
        $('#compare').mergely('update');
 
    })
0 comments (0 inline, 0 general)