Add document states translation files and add document states app to the language configuration files

This commit is contained in:
Roberto Rosario
2015-01-17 03:03:22 -04:00
parent d2978374a4
commit b74267662f
30 changed files with 6469 additions and 1 deletions

View File

@@ -55,6 +55,12 @@ source_lang = en
source_file = mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po
type = PO
[mayan-edms.apps-document_states]
file_filter = mayan/apps/document_states/locale/<lang>/LC_MESSAGES/django.po
source_lang = en
source_file = mayan/apps/document_states/locale/en/LC_MESSAGES/django.po
type = PO
[mayan-edms.apps-dynamic_search]
file_filter = mayan/apps/dynamic_search/locale/<lang>/LC_MESSAGES/django.po
source_lang = en

View File

@@ -6,7 +6,7 @@ import optparse
import sh
APP_LIST = ('acls', 'checkouts', 'common', 'converter', 'django_gpg', 'documents',
'document_comments', 'document_indexing', 'document_signatures', 'dynamic_search',
'document_comments', 'document_indexing', 'document_signatures', 'document_states', 'dynamic_search',
'events', 'folders', 'installation', 'linking', 'mailer', 'main', 'metadata', 'navigation',
'ocr', 'permissions', 'project_setup', 'project_tools', 'registration',
'smart_settings', 'sources', 'statistics', 'tags', 'user_management')

View File

@@ -0,0 +1,232 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,230 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,230 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,230 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,230 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,230 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,232 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
"2);\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,230 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,232 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,230 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,232 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\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"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,230 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,230 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,230 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""

View File

@@ -0,0 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-17 02:55-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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: __init__.py:38
msgid "Initial state"
msgstr ""
#: __init__.py:39 __init__.py:61
msgid "None"
msgstr ""
#: __init__.py:45
msgid "Is initial state?"
msgstr ""
#: __init__.py:52 views.py:85
msgid "Current state"
msgstr ""
#: __init__.py:56 views.py:86
msgid "Last transition"
msgstr ""
#: __init__.py:60 __init__.py:78
msgid "Date and time"
msgstr ""
#: __init__.py:67 models.py:65
msgid "Origin state"
msgstr ""
#: __init__.py:71 models.py:66
msgid "Destination state"
msgstr ""
#: __init__.py:82 forms.py:41 links.py:24 models.py:127
msgid "Transition"
msgstr ""
#: links.py:5 links.py:22 models.py:37 views.py:172
msgid "Workflows"
msgstr ""
#: links.py:6
msgid "Create"
msgstr ""
#: links.py:7 links.py:12 links.py:17
msgid "Delete"
msgstr ""
#: links.py:8 links.py:13 links.py:18
msgid "Edit"
msgstr ""
#: links.py:10 permissions.py:7
msgid "States"
msgstr ""
#: links.py:11
msgid "Create state"
msgstr ""
#: links.py:15
msgid "Transitions"
msgstr ""
#: links.py:16
msgid "Create transition"
msgstr ""
#: links.py:20 models.py:16
msgid "Document types"
msgstr ""
#: links.py:23
msgid "Detail"
msgstr ""
#: models.py:15 models.py:43 models.py:63
msgid "Label"
msgstr ""
#: models.py:36 models.py:42 models.py:62 models.py:79
msgid "Workflow"
msgstr ""
#: models.py:44
msgid "Initial"
msgstr ""
#: models.py:56
msgid "Workflow state"
msgstr ""
#: models.py:57
msgid "Workflow states"
msgstr ""
#: models.py:73
msgid "Workflow transition"
msgstr ""
#: models.py:74
msgid "Workflow transitions"
msgstr ""
#: models.py:80
msgid "Document"
msgstr ""
#: models.py:119 models.py:125
msgid "Workflow instance"
msgstr ""
#: models.py:120
msgid "Workflow instances"
msgstr ""
#: models.py:126
msgid "Datetime"
msgstr ""
#: models.py:133
msgid "Workflow instance log entry"
msgstr ""
#: models.py:134
msgid "Workflow instance log entries"
msgstr ""
#: permissions.py:8
msgid "Create workflows"
msgstr ""
#: permissions.py:9
msgid "Delete workflows"
msgstr ""
#: permissions.py:10
msgid "Edit workflows"
msgstr ""
#: permissions.py:11
msgid "View workflows"
msgstr ""
#: permissions.py:13
msgid "View document workflows"
msgstr ""
#: permissions.py:14
msgid "Transition document workflows"
msgstr ""
#: views.py:58
#, python-format
msgid "Workflows of document: %s"
msgstr ""
#: views.py:94
msgid "Index"
msgstr ""
#: views.py:95
msgid "Node"
msgstr ""
#: views.py:97
#, python-format
msgid "Detail of workflow: %(workflow)s - %(document)s"
msgstr ""
#: views.py:111
msgid "Log entries"
msgstr ""
#: views.py:157
#, python-format
msgid "Do transition for workflow: %s"
msgstr ""
#: views.py:158
msgid "Submit"
msgstr ""
#: views.py:222
#, python-format
msgid "States of workflow: %s"
msgstr ""
#: views.py:245
#, python-format
msgid "Create states for workflow: %s"
msgstr ""
#: views.py:339
#, python-format
msgid "Transitions of workflow: %s"
msgstr ""
#: views.py:362
#, python-format
msgid "Create transitions for workflow: %s"
msgstr ""
#: views.py:387
msgid "Unable to save transition; integrity error."
msgstr ""
#: views.py:463
#, python-format
msgid "Document types assigned the workflow: %s"
msgstr ""