Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' into more_config_opts
Browse files Browse the repository at this point in the history
  • Loading branch information
thenor57 authored Jan 11, 2017
2 parents 1cc003c + aaa3fe7 commit 8e06683
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 1 deletion.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
Babel is required to display localized texts.
""",
license = 'BSD',
install_requires = ['Trac >= 1.0'],

packages = find_packages(exclude=['*.tests*']),
package_data = {
Expand Down
5 changes: 5 additions & 0 deletions tracsubtickets/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import pkg_resources

min_trac_version = '1.0'

pkg_resources.require('Trac >= %s' % min_trac_version)
Binary file not shown.
59 changes: 59 additions & 0 deletions tracsubtickets/locale/ru/LC_MESSAGES/tracsubtickets.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Translation of tracsubtickets.po to Russian
# Copyright (C) 2016
# This file is distributed under the same license as the
# TracSubTicketsPlugin project.
# Andrey Rodionov <roand@inbox.ru>, 2016.
#
msgid ""
msgstr ""
"Project-Id-Version: TracSubTicketsPlugin 0.1.x\n"
"Report-Msgid-Bugs-To: roand@inbox.ru\n"
"POT-Creation-Date: 2016-02-20 01:38+0200\n"
"PO-Revision-Date: 2016-02-20 01:38+0200\n"
"Last-Translator: Andrey Rodionov <roand@inbox.ru>\n"
"Language-Team: Russian ru_RU <trac-dev@googlegroups.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 1.0dev-r482\n"

#: tracsubtickets/api.py:179
msgid "A ticket cannot be a parent to itself"
msgstr "Карточка не может быть родителем самой себе"

#: tracsubtickets/api.py:185
#, python-format
msgid "Ticket #%s does not exist"
msgstr "Карточка #%s не существует"

#: tracsubtickets/api.py:196
#, python-format
msgid "Circularity error: %s"
msgstr "Ошибка закольцовывания: %s"

#: tracsubtickets/api.py:205 tracsubtickets/web_ui.py:129
#, python-format
msgid "Parent ticket #%s is closed"
msgstr "Карточка родитель #%s закрыта"

#: tracsubtickets/api.py:216
msgid "Not a valid list of ticket IDs"
msgstr "Недопустимый список идентификаторов карточек"

#: tracsubtickets/web_ui.py:123
#, python-format
msgid "Child ticket #%s has not been closed yet"
msgstr "Подкарточка #%s не закрыта"

#: tracsubtickets/web_ui.py:141
msgid "add"
msgstr "добавить"

#: tracsubtickets/web_ui.py:143
msgid "Create new child ticket"
msgstr "Создать новую подкарточку"

#: tracsubtickets/web_ui.py:147
msgid "Subtickets "
msgstr "Подкарточки "

0 comments on commit 8e06683

Please sign in to comment.