Move common templates to apps/main/templates/main/*

This commit is contained in:
Roberto Rosario
2014-08-26 02:44:49 -04:00
parent 7376263ffa
commit b42e9badf6
119 changed files with 1114 additions and 1053 deletions

0
mayan/apps/__init__.py Normal file
View File

View File

@@ -60,7 +60,7 @@ def acl_list_for(request, obj, extra_context=None):
if extra_context:
context.update(extra_context)
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -91,7 +91,7 @@ def acl_detail_for(request, actor, obj):
# TODO : get all globally assigned permission, new function get_permissions_for_holder (roles aware)
subtemplates_list = [
{
'name': u'generic_list_subtemplate.html',
'name': u'main/generic_list_subtemplate.html',
'context': {
'title': _(u'permissions available to: %(actor)s for %(obj)s' % {
'actor': actor,
@@ -129,7 +129,7 @@ def acl_detail_for(request, actor, obj):
}
return render_to_response(
'generic_detail.html',
'main/generic_detail.html',
context,
context_instance=RequestContext(request)
)
@@ -224,7 +224,7 @@ def acl_grant(request):
if navigation_object_count == 1:
context['object'] = navigation_object.source_object
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -317,7 +317,7 @@ def acl_revoke(request):
if navigation_object_count == 1:
context['object'] = navigation_object.source_object
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -363,7 +363,7 @@ def acl_new_holder_for(request, obj, extra_context=None, navigation_object=None)
if extra_context:
context.update(extra_context)
return render_to_response('generic_form.html', context,
return render_to_response('main/generic_form.html', context,
context_instance=RequestContext(request))
@@ -389,7 +389,7 @@ def acl_setup_valid_classes(request):
'hide_object': True,
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -413,7 +413,7 @@ def acl_class_acl_list(request, access_object_class_gid):
'object': access_object_class,
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -429,7 +429,7 @@ def acl_class_acl_detail(request, access_object_class_gid, holder_object_gid):
# TODO : get all globally assigned permission, new function get_permissions_for_holder (roles aware)
subtemplates_list = [
{
'name': u'generic_list_subtemplate.html',
'name': u'main/generic_list_subtemplate.html',
'context': {
'title': _(u'permissions available to: %(actor)s for class %(class)s' % {
'actor': actor,
@@ -450,7 +450,7 @@ def acl_class_acl_detail(request, access_object_class_gid, holder_object_gid):
},
]
return render_to_response('generic_detail.html', {
return render_to_response('main/generic_detail.html', {
'object': access_object_class,
'subtemplates_list': subtemplates_list,
'multi_select_as_buttons': True,
@@ -486,7 +486,7 @@ def acl_class_new_holder_for(request, access_object_class_gid):
'submit_icon_famfam': 'tick'
}
return render_to_response('generic_form.html', context,
return render_to_response('main/generic_form.html', context,
context_instance=RequestContext(request))
@@ -565,7 +565,7 @@ def acl_class_multiple_grant(request):
if navigation_object_count == 1:
context['object'] = navigation_object
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -644,5 +644,5 @@ def acl_class_multiple_revoke(request):
if navigation_object_count == 1:
context['object'] = navigation_object
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))

View File

@@ -37,7 +37,7 @@ def bootstrap_setup_list(request):
],
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -55,7 +55,7 @@ def bootstrap_setup_create(request):
else:
form = BootstrapSetupForm()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'create bootstrap'),
'form': form,
},
@@ -83,7 +83,7 @@ def bootstrap_setup_edit(request, bootstrap_setup_pk):
else:
form = BootstrapSetupForm_edit(instance=bootstrap)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'edit bootstrap setup: %s') % bootstrap,
'form': form,
'object': bootstrap,
@@ -126,7 +126,7 @@ def bootstrap_setup_delete(request, bootstrap_setup_pk):
'form_icon': 'lightning_delete.png',
}
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -145,7 +145,7 @@ def bootstrap_setup_view(request, bootstrap_setup_pk):
'object_name': _(u'bootstrap setup'),
}
return render_to_response('generic_detail.html', context,
return render_to_response('main/generic_detail.html', context,
context_instance=RequestContext(request))
@@ -180,7 +180,7 @@ def bootstrap_setup_execute(request, bootstrap_setup_pk):
context['title'] = _(u'Are you sure you wish to execute the database bootstrap setup named: %s?') % bootstrap_setup
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -203,7 +203,7 @@ def bootstrap_setup_dump(request):
else:
form = BootstrapSetupForm_dump()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'dump current configuration into a bootstrap setup'),
'form': form,
},
@@ -248,7 +248,7 @@ def bootstrap_setup_import_from_file(request):
else:
form = BootstrapFileImportForm()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'Import bootstrap setup from file'),
'form_icon': 'folder.png',
'form': form,
@@ -276,7 +276,7 @@ def bootstrap_setup_import_from_url(request):
else:
form = BootstrapURLImportForm()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'Import bootstrap setup from URL'),
'form_icon': 'folder.png',
'form': form,
@@ -311,7 +311,7 @@ def erase_database_view(request):
context['title'] = _(u'Are you sure you wish to erase the entire database and document storage?')
context['message'] = _(u'All documents, sources, metadata, metadata types, set, tags, indexes and logs will be lost irreversibly!')
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -339,5 +339,5 @@ def bootstrap_setup_repository_sync(request):
'form_icon': 'world.png',
}
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))

View File

@@ -56,7 +56,7 @@ def checkout_info(request, document_pk):
paragraphs.append(_(u'Check out expiration: %s') % checkout_info.expiration_datetime)
paragraphs.append(_(u'New versions allowed: %s') % (_(u'yes') if not checkout_info.block_new_version else _(u'no')))
return render_to_response('generic_template.html', {
return render_to_response('main/generic_template.html', {
'paragraphs': paragraphs,
'object': document,
'title': _(u'Check out details for document: %s') % document
@@ -89,7 +89,7 @@ def checkout_document(request, document_pk):
else:
form = DocumentCheckoutForm(initial={'document': document})
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'form': form,
'object': document,
'title': _(u'Check out document: %s') % document
@@ -142,5 +142,5 @@ def checkin_document(request, document_pk):
else:
context['title'] = _(u'Are you sure you wish to check in document: %s?') % document
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))

View File

@@ -321,70 +321,70 @@ msgstr "انشاء"
msgid "Assign %(title)s %(object)s"
msgstr "تعيين %(title)s %(object)s"
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "تأكيد"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "تأكيد حذف"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "أيقونة النموذج"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr "هل أنت متأكد أنك تريد حذف %(object_name)s: %(object)s ؟"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "هل أنت متأكد أنك تريد حذف %(object)s ؟"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "نعم"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "لا"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr "مطلوب"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "حفظ"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "ارسال"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "إلغاء"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, fuzzy, python-format
msgid "List of %(title)s"
msgstr "قائمة ل: %(stripped_title)s"
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -394,16 +394,16 @@ msgstr ""
"%(page_number)s of %(total_pages)s)"
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr "قائمة ل: %(title)s (%(total)s)"
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "معرف"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, fuzzy, python-format
msgid "There are no %(title)s"
msgstr "لا توجد أي %(stripped_title)s"

View File

@@ -314,70 +314,70 @@ msgstr "Създаване"
msgid "Assign %(title)s %(object)s"
msgstr ""
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Потвърждаване"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Потвърдете изтриване"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr ""
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Да"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "Не"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "Запазване"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Подаване"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "Отказ"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, python-format
msgid "List of %(title)s"
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -385,16 +385,16 @@ msgid ""
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr ""
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "Идентификатор"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr ""

View File

@@ -322,70 +322,70 @@ msgstr "Kreirati"
msgid "Assign %(title)s %(object)s"
msgstr "Dodijeliti %(title)s %(object)s"
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Potvrditi"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Potvrditi brisanje"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "napraviti ikonu"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr "Jeste li sigurni da želite izbrisati %(object_name)s: %(object)s?"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "Jeste li sigurni da želite izbrisati: %(object)s?"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Da"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "Ne"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr "potrebno"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "Sačuvati"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Podnijeti"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "Otkazati"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, fuzzy, python-format
msgid "List of %(title)s"
msgstr "Lista %(stripped_title)s"
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -395,16 +395,16 @@ msgstr ""
"%(page_number)s od %(total_pages)s)"
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr "Lista %(title)s (%(total)s)"
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "Identifikator"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, fuzzy, python-format
msgid "There are no %(title)s"
msgstr "Ne postoje %(stripped_title)s"

View File

@@ -312,70 +312,70 @@ msgstr ""
msgid "Assign %(title)s %(object)s"
msgstr ""
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr ""
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr ""
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr ""
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr ""
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr ""
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr ""
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr ""
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, python-format
msgid "List of %(title)s"
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -383,16 +383,16 @@ msgid ""
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr ""
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr ""
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr ""

View File

@@ -328,70 +328,70 @@ msgstr "Erstellen"
msgid "Assign %(title)s %(object)s"
msgstr "%(title)s %(object)s zuordnen"
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Bestätigen"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Löschen bestätigen"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "Formularsymbol"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr "Sind Sie sicher, dass Sie %(object_name)s %(object)s löschen möchten?"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "Soll %(object)s wirklich gelöscht werden?"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Ja"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "Nein"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr "Erforderlich"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "Speichern"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Senden"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "Abbrechen"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, python-format
msgid "List of %(title)s"
msgstr "%(title)s"
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -401,16 +401,16 @@ msgstr ""
"%(total_pages)s)"
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr "%(title)s (%(total)s)"
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "Bezeichner"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr "There are no %(title)s"

View File

@@ -321,70 +321,70 @@ msgstr "Create"
msgid "Assign %(title)s %(object)s"
msgstr "Assign %(title)s %(object)s"
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Confirm"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Confirm delete"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "form icon"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr "Are you sure you wish to delete %(object_name)s: %(object)s?"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "Are you sure you wish to delete: %(object)s?"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Yes"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "No"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr "required"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "Save"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Submit"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "Cancel"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, fuzzy, python-format
msgid "List of %(title)s"
msgstr "List of %(stripped_title)s"
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -394,16 +394,16 @@ msgstr ""
"%(page_number)s of %(total_pages)s)"
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr "List of %(title)s (%(total)s)"
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "Identifier"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, fuzzy, python-format
msgid "There are no %(title)s"
msgstr "There are no %(stripped_title)s"

View File

@@ -327,70 +327,70 @@ msgstr "Crear"
msgid "Assign %(title)s %(object)s"
msgstr "Asignar %(title)s %(object)s"
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Confirmar"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Confirmar eliminación"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "icono del formulario"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr "¿Está seguro que desea eliminar %(object_name)s: %(object)s?"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "¿Está seguro que desea eliminar: %(object)s?"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Sí"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "No"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr "requerido"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "Guardar"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Enviar"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "Cancelar"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, python-format
msgid "List of %(title)s"
msgstr "Lista de %(title)s"
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -400,16 +400,16 @@ msgstr ""
"%(page_number)s de %(total_pages)s)"
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr "Lista de %(title)s (%(total)s)"
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "Identificador"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr "No existen %(title)s"

View File

@@ -314,70 +314,70 @@ msgstr ""
msgid "Assign %(title)s %(object)s"
msgstr ""
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr ""
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr ""
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr ""
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr ""
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr ""
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr ""
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr ""
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, python-format
msgid "List of %(title)s"
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -385,16 +385,16 @@ msgid ""
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr ""
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr ""
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr ""

View File

@@ -325,72 +325,72 @@ msgstr "Créer"
msgid "Assign %(title)s %(object)s"
msgstr "Attribuer %(title)s à %(object)s"
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Confirmer"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Confirmer la suppression"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "icône du formulaire"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr ""
"Etes-vous certain de vouloir supprimer l'élément %(object_name)s : "
"%(object)s ?"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "Etes-vous certain de vouloir supprimer l'élément: %(object)s ?"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Oui"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "Non"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr "requis"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "Sauvegarder"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Envoyer"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "Annuler"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, python-format
msgid "List of %(title)s"
msgstr "Liste des %(title)s"
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -400,16 +400,16 @@ msgstr ""
"%(page_number)s de %(total_pages)s)"
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr "Liste des %(title)s (%(total)s )"
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "Identifiant"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr "Il n'y a pas de %(title)s"

View File

@@ -313,70 +313,70 @@ msgstr ""
msgid "Assign %(title)s %(object)s"
msgstr ""
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr ""
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr ""
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr ""
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr ""
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr ""
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr ""
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr ""
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, python-format
msgid "List of %(title)s"
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -384,16 +384,16 @@ msgid ""
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr ""
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr ""
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr ""

View File

@@ -312,70 +312,70 @@ msgstr ""
msgid "Assign %(title)s %(object)s"
msgstr ""
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr ""
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr ""
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr ""
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr ""
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr ""
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr ""
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr ""
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, python-format
msgid "List of %(title)s"
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -383,16 +383,16 @@ msgid ""
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr ""
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr ""
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr ""

View File

@@ -312,70 +312,70 @@ msgstr ""
msgid "Assign %(title)s %(object)s"
msgstr ""
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr ""
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr ""
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr ""
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr ""
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr ""
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr ""
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr ""
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, python-format
msgid "List of %(title)s"
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -383,16 +383,16 @@ msgid ""
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr ""
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr ""
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr ""

View File

@@ -326,70 +326,70 @@ msgstr "Crea"
msgid "Assign %(title)s %(object)s"
msgstr "Assigna %(title)s %(object)s"
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Conferma"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Conferma la cancellazione"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "icona del modulo"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr "Sei sicuro di voler cancellare %(object_name)s: %(object)s?"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "Sei sicuro di volr cancellare: %(object)s?"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Si"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "No"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr "richiesto"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "Salva"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Conferma"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "Annullare"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, fuzzy, python-format
msgid "List of %(title)s"
msgstr "Lista di %(stripped_title)s"
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -399,16 +399,16 @@ msgstr ""
"%(page_number)s of %(total_pages)s)"
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr "Lista di %(title)s (%(total)s)"
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "Identificatore"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, fuzzy, python-format
msgid "There are no %(title)s"
msgstr "Non ci sono %(stripped_title)s"

View File

@@ -312,70 +312,70 @@ msgstr ""
msgid "Assign %(title)s %(object)s"
msgstr ""
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr ""
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr ""
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr ""
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr ""
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr ""
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr ""
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr ""
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, python-format
msgid "List of %(title)s"
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -383,16 +383,16 @@ msgid ""
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr ""
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr ""
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr ""

View File

@@ -321,70 +321,70 @@ msgstr "Utwórz"
msgid "Assign %(title)s %(object)s"
msgstr "Przypisz %(title)s %(object)s"
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Potwierdź"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Potwierdź usunięcie"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "form icon"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr "Czy na pewno chcesz usunąć %(object_name)s : %(object)s ?"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "Czy na pewno chcesz usunąć: %(object)s?"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Tak"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "Nie"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr "wymagane"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "Zapisz"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Wyślij"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "Anuluj"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, fuzzy, python-format
msgid "List of %(title)s"
msgstr "Wykaz %(stripped_title)s"
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -394,16 +394,16 @@ msgstr ""
"%(total_pages)s)"
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr "Wykaz %(title)s (%(total)s)"
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "Identyfikator"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, fuzzy, python-format
msgid "There are no %(title)s"
msgstr "Brak %(stripped_title)s"

View File

@@ -321,70 +321,70 @@ msgstr "Criar"
msgid "Assign %(title)s %(object)s"
msgstr "Atribuir %(title)s %(object)s "
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Confirmar"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Confirmar exclusão"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "ícone de formulário"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr "Tem certeza de que deseja excluir %(object_name)s: %(object)s ?"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "Tem a certeza de que deseja excluir: %(object)s ?"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Sim"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "Não"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr "exigido"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "Salvar"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Submeter"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "Cancelar"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, fuzzy, python-format
msgid "List of %(title)s"
msgstr "Lista de %(stripped_title)s "
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -394,16 +394,16 @@ msgstr ""
"%(page_number)s de %(total_pages)s)"
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr "Lista de %(title)s (%(total)s)"
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "Identificador"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, fuzzy, python-format
msgid "There are no %(title)s"
msgstr "Não há %(stripped_title)s "

View File

@@ -320,70 +320,70 @@ msgstr "Criar"
msgid "Assign %(title)s %(object)s"
msgstr "Atribuir %(title)s %(object)s "
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Confirmar"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Confirmar exclusão"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "ícone de formulário"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr "Tem certeza de que deseja excluir %(object_name)s: %(object)s ?"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "Tem certeza de que deseja excluir: %(object)s ?"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Sim"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "Não"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr "exigido"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "Salvar"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Submeter"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "Cancelar"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, fuzzy, python-format
msgid "List of %(title)s"
msgstr "Lista de %(stripped_title)s "
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -393,16 +393,16 @@ msgstr ""
"of %(total_pages)s)"
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr "Lista de %(title)s (%(total)s)"
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "Identificador"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, fuzzy, python-format
msgid "There are no %(title)s"
msgstr "Não há %(stripped_title)s "

View File

@@ -325,70 +325,70 @@ msgstr "Creati"
msgid "Assign %(title)s %(object)s"
msgstr "Atribuirea %(title)s %(object)s "
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Confirmă"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Confirmă stergerea"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "icon formular"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr "Sunteți sigur că doriți să ștergeți %(object_name)s: %(object)s ?"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "Sunteți sigur că doriți să ștergeți: %(object)s?"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Da"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "Nu"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr "necesar"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "salvează"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Trimiteţi"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "Anulează"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, fuzzy, python-format
msgid "List of %(title)s"
msgstr "Lista de %(stripped_title)s"
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -398,16 +398,16 @@ msgstr ""
"din %(total_pages)s)"
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr "Listă de %(title)s (%(total)s)"
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "ID"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, fuzzy, python-format
msgid "There are no %(title)s"
msgstr "Nu sunt %(stripped_title)s"

View File

@@ -324,70 +324,70 @@ msgstr "Создать"
msgid "Assign %(title)s %(object)s"
msgstr "Назначить %(title)s%(object)s"
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Подтверждать"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Подтвердить удаление"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "значок формы"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr "Вы действительно хотите удалить %(object_name)s: %(object)s?"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "Вы действительно хотите удалить: %(object)s?"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Да"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "Нет"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr "требуется"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "Сохранить"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Выполнить"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "Отменить"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, fuzzy, python-format
msgid "List of %(title)s"
msgstr "Список \"%(stripped_title)s\""
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -397,16 +397,16 @@ msgstr ""
"%(total_pages)s)"
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr "Список %(title)s (%(total)s)"
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr "Идентификатор"
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, fuzzy, python-format
msgid "There are no %(title)s"
msgstr "Нет %(stripped_title)s"

View File

@@ -313,70 +313,70 @@ msgstr ""
msgid "Assign %(title)s %(object)s"
msgstr ""
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr ""
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr ""
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr ""
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr ""
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr ""
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr ""
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr ""
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, python-format
msgid "List of %(title)s"
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -384,16 +384,16 @@ msgid ""
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr ""
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr ""
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr ""

View File

@@ -316,70 +316,70 @@ msgstr "Oluştur"
msgid "Assign %(title)s %(object)s"
msgstr ""
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Onayla"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr ""
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr ""
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr ""
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr "Evet"
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr "Hayır"
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr "Kaydet"
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr "Gönder"
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr "İptal"
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, fuzzy, python-format
msgid "List of %(title)s"
msgstr "%(stripped_title)s listesi"
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -387,16 +387,16 @@ msgid ""
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr ""
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr ""
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr ""

View File

@@ -315,70 +315,70 @@ msgstr "Tạo"
msgid "Assign %(title)s %(object)s"
msgstr "Gán %(title)s %(object)s"
#: templates/generic_confirm.html:5 templates/generic_confirm.html.py:19
#: templates/main/generic_confirm.html:5 templates/main/generic_confirm.html.py:19
msgid "Confirm"
msgstr "Xác nhận"
#: templates/generic_confirm.html:17
#: templates/main/generic_confirm.html:17
msgid "Confirm delete"
msgstr "Xác nhận xóa"
#: templates/generic_confirm.html:33
#: templates/main/generic_confirm.html:33
msgid "form icon"
msgstr "biểu tượng form"
#: templates/generic_confirm.html:41
#: templates/main/generic_confirm.html:41
#, python-format
msgid "Are you sure you wish to delete %(object_name)s: %(object)s?"
msgstr "Bạn chắc chắn muốn xóa %(object_name)s: %(object)s?"
#: templates/generic_confirm.html:43
#: templates/main/generic_confirm.html:43
#, python-format
msgid "Are you sure you wish to delete: %(object)s?"
msgstr "Bạn chắc chắn muốn xóa: %(object)s?"
#: templates/generic_confirm.html:51
#: templates/main/generic_confirm.html:51
msgid "Yes"
msgstr ""
#: templates/generic_confirm.html:55
#: templates/main/generic_confirm.html:55
msgid "No"
msgstr ""
#: templates/generic_form_instance.html:40
#: templates/generic_form_subtemplate.html:59
#: templates/main/generic_form_instance.html:40
#: templates/main/generic_form_subtemplate.html:59
msgid "required"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Save"
msgstr ""
#: templates/generic_form_subtemplate.html:83
#: templates/generic_form_subtemplate.html:85
#: templates/main/generic_form_subtemplate.html:83
#: templates/main/generic_form_subtemplate.html:85
#: templates/generic_list_horizontal_subtemplate.html:50
#: templates/generic_list_horizontal_subtemplate.html:88
#: templates/generic_list_subtemplate.html:53
#: templates/generic_list_subtemplate.html:173
#: templates/main/generic_list_subtemplate.html:53
#: templates/main/generic_list_subtemplate.html:173
msgid "Submit"
msgstr ""
#: templates/generic_form_subtemplate.html:90
#: templates/main/generic_form_subtemplate.html:90
msgid "Cancel"
msgstr ""
#: templates/generic_list.html:8 templates/generic_list_horizontal.html:8
#: templates/main/generic_list.html:8 templates/main/generic_list_horizontal.html:8
#, python-format
msgid "List of %(title)s"
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:24
#: templates/generic_list_subtemplate.html:25
#: templates/main/generic_list_subtemplate.html:25
#, python-format
msgid ""
"List of %(title)s (%(start)s - %(end)s out of %(total)s) (Page "
@@ -386,16 +386,16 @@ msgid ""
msgstr ""
#: templates/generic_list_horizontal_subtemplate.html:26
#: templates/generic_list_subtemplate.html:27
#: templates/main/generic_list_subtemplate.html:27
#, python-format
msgid "List of %(title)s (%(total)s)"
msgstr ""
#: templates/generic_list_subtemplate.html:73
#: templates/main/generic_list_subtemplate.html:73
msgid "Identifier"
msgstr ""
#: templates/generic_list_subtemplate.html:147
#: templates/main/generic_list_subtemplate.html:147
#, python-format
msgid "There are no %(title)s"
msgstr ""

View File

@@ -4,7 +4,7 @@ from django.views.generic import RedirectView, TemplateView
urlpatterns = patterns('common.views',
url(r'^about/$', TemplateView.as_view(template_name='about.html'), name='about_view'),
url(r'^about/$', TemplateView.as_view(template_name='main/about.html'), name='about_view'),
url(r'^license/$', 'license_view', (), name='license_view'),
url(r'^password/change/done/$', 'password_change_done', (), name='password_change_done'),
url(r'^object/multiple/action/$', 'multi_object_action_view', (), name='multi_object_action_view'),
@@ -19,10 +19,10 @@ urlpatterns = patterns('common.views',
urlpatterns += patterns('',
url(r'^logout/$', 'django.contrib.auth.views.logout', {'next_page': '/'}, name='logout_view'),
url(r'^password/reset/$', 'django.contrib.auth.views.password_reset', {'email_template_name': 'password_reset_email.html', 'template_name': 'password_reset_form.html', 'post_reset_redirect': '/password/reset/done'}, name='password_reset_view'),
url(r'^password/reset/confirm/(?P<uidb36>[0-9A-Za-z]+)-(?P<token>.+)/$', 'django.contrib.auth.views.password_reset_confirm', {'template_name': 'password_reset_confirm.html', 'post_reset_redirect': '/password/reset/complete/'}, name='password_reset_confirm_view'),
url(r'^password/reset/complete/$', 'django.contrib.auth.views.password_reset_complete', {'template_name': 'password_reset_complete.html'}, name='password_reset_complete_view'),
url(r'^password/reset/done/$', 'django.contrib.auth.views.password_reset_done', {'template_name': 'password_reset_done.html'}, name='password_reset_done_view'),
url(r'^password/reset/$', 'django.contrib.auth.views.password_reset', {'email_template_name': 'main/password_reset_email.html', 'template_name': 'main/password_reset_form.html', 'post_reset_redirect': '/password/reset/done'}, name='password_reset_view'),
url(r'^password/reset/confirm/(?P<uidb36>[0-9A-Za-z]+)-(?P<token>.+)/$', 'django.contrib.auth.views.password_reset_confirm', {'template_name': 'main/password_reset_confirm.html', 'post_reset_redirect': '/password/reset/complete/'}, name='password_reset_confirm_view'),
url(r'^password/reset/complete/$', 'django.contrib.auth.views.password_reset_complete', {'template_name': 'main/password_reset_complete.html'}, name='password_reset_complete_view'),
url(r'^password/reset/done/$', 'django.contrib.auth.views.password_reset_done', {'template_name': 'main/password_reset_done.html'}, name='password_reset_done_view'),
(r'^favicon\.ico$', RedirectView.as_view(url='%s%s' % (settings.STATIC_URL, 'images/favicon.ico'))),
)

View File

@@ -131,7 +131,7 @@ def assign_remove(request, left_list, right_list, add_method, remove_method, lef
context = {
'subtemplates_list': [
{
'name': 'generic_form_subtemplate.html',
'name': 'main/generic_form_subtemplate.html',
'grid': 6,
'context': {
'form': unselected_list,
@@ -141,7 +141,7 @@ def assign_remove(request, left_list, right_list, add_method, remove_method, lef
}
},
{
'name': 'generic_form_subtemplate.html',
'name': 'main/generic_form_subtemplate.html',
'grid': 6,
'grid_clear': True,
'context': {
@@ -157,7 +157,7 @@ def assign_remove(request, left_list, right_list, add_method, remove_method, lef
if extra_context:
context.update(extra_context)
return render_to_response('generic_form.html', context,
return render_to_response('main/generic_form.html', context,
context_instance=RequestContext(request))
@@ -168,7 +168,7 @@ def current_user_details(request):
form = UserForm_view(instance=request.user)
return render_to_response(
'generic_form.html', {
'main/generic_form.html', {
'form': form,
'title': _(u'current user details'),
'read_only': True,
@@ -196,7 +196,7 @@ def current_user_edit(request):
form = UserForm(instance=request.user)
return render_to_response(
'generic_form.html', {
'main/generic_form.html', {
'form': form,
'next': next,
'title': _(u'edit current user details'),
@@ -209,7 +209,7 @@ def login_view(request):
Control how the use is to be authenticated, options are 'email' and
'username'
"""
kwargs = {'template_name': 'login.html'}
kwargs = {'template_name': 'main/login.html'}
if LOGIN_METHOD == 'email':
kwargs['authentication_form'] = EmailAuthenticationForm
@@ -228,7 +228,7 @@ def license_view(request):
"""
form = LicenseForm()
return render_to_response(
'generic_detail.html', {
'main/generic_detail.html', {
'form': form,
'title': _(u'License'),
},
@@ -244,7 +244,7 @@ def password_change_view(request):
return password_change(
request,
extra_context=context,
template_name='password_change_form.html',
template_name='main/password_change_form.html',
post_change_redirect=reverse('password_change_done'),
)
@@ -294,7 +294,7 @@ class MayanViewMixin(object):
class SingleObjectEditView(MayanPermissionCheckMixin, MayanViewMixin, UpdateView):
template_name = 'generic_form.html'
template_name = 'main/generic_form.html'
def form_invalid(self, form):
result = super(SingleObjectEditView, self).form_invalid(form)
@@ -318,7 +318,7 @@ class SingleObjectEditView(MayanPermissionCheckMixin, MayanViewMixin, UpdateView
class SingleObjectCreateView(MayanPermissionCheckMixin, MayanViewMixin, CreateView):
template_name = 'generic_form.html'
template_name = 'main/generic_form.html'
def form_invalid(self, form):
result = super(SingleObjectCreateView, self).form_invalid(form)
@@ -341,7 +341,7 @@ class SingleObjectCreateView(MayanPermissionCheckMixin, MayanViewMixin, CreateVi
class SingleObjectDeleteView(MayanPermissionCheckMixin, MayanViewMixin, DeleteView):
template_name = 'generic_confirm.html'
template_name = 'main/generic_confirm.html'
def get_context_data(self, **kwargs):
context = super(SingleObjectDeleteView, self).get_context_data(**kwargs)
@@ -369,4 +369,4 @@ class SingleObjectDeleteView(MayanPermissionCheckMixin, MayanViewMixin, DeleteVi
class SingleObjectListView(MayanPermissionCheckMixin, MayanViewMixin, ListView):
# TODO: filter object_list by permission
template_name = 'generic_list.html'
template_name = 'main/generic_list.html'

View File

@@ -30,7 +30,7 @@ def formats_list(request):
'backend': GRAPHICS_BACKEND,
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
else:
raise PermissionDenied

View File

@@ -47,7 +47,7 @@ def key_receive(request, key_id):
)
return HttpResponseRedirect(previous)
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'title': _(u'Import key'),
'message': _(u'Are you sure you wish to import key id: %s?') % key_id,
'form_icon': 'key_add.png',
@@ -68,7 +68,7 @@ def key_list(request, secret=True):
object_list = Key.get_all(gpg)
title = _(u'public keys')
return render_to_response('generic_list.html', {
return render_to_response('main/generic_list.html', {
'object_list': object_list,
'title': title,
'hide_object': True,
@@ -104,7 +104,7 @@ def key_delete(request, fingerprint, key_type):
messages.error(request, exception)
return HttpResponseRedirect(previous)
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'title': _(u'Delete key'),
'delete_view': True,
'message': _(u'Are you sure you wish to delete key: %s? If you try to delete a public key that is part of a public/private pair the private key will be deleted as well.') % key,
@@ -123,7 +123,7 @@ def key_query(request):
form = KeySearchForm(initial={'term': term})
subtemplates_list.append(
{
'name': 'generic_form_subtemplate.html',
'name': 'main/generic_form_subtemplate.html',
'context': {
'title': _(u'Query key server'),
'form': form,
@@ -136,7 +136,7 @@ def key_query(request):
results = gpg.query(term)
subtemplates_list.append(
{
'name': 'generic_list_subtemplate.html',
'name': 'main/generic_list_subtemplate.html',
'context': {
'title': _(u'results'),
'object_list': results,
@@ -184,6 +184,6 @@ def key_query(request):
}
)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'subtemplates_list': subtemplates_list,
}, context_instance=RequestContext(request))

View File

@@ -63,7 +63,7 @@ def comment_delete(request, comment_id=None, comment_id_list=None):
elif len(comments) > 1:
context['title'] = _(u'Are you sure you wish to delete the comments: %s?') % ', '.join([unicode(d) for d in comments])
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -100,7 +100,7 @@ def comment_add(request, document_id):
else:
form = CommentForm()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'form': form,
'title': _(u'Add comment to document: %s') % document,
'next': next,
@@ -119,7 +119,7 @@ def comments_for_document(request, document_id):
except PermissionDenied:
AccessEntry.objects.check_access(PERMISSION_COMMENT_VIEW, request.user, document)
return render_to_response('generic_list.html', {
return render_to_response('main/generic_list.html', {
'object': document,
'access_object': document,
'title': _(u'comments: %s') % document,

View File

@@ -14,7 +14,7 @@ def get_document_indexing_subtemplate(document):
object_list.append(get_breadcrumbs(index_instance, single_link=True, include_count=True))
return {
'name': 'generic_list_subtemplate.html',
'name': 'main/generic_list_subtemplate.html',
'context': {
'title': _(u'document indexes'),
'object_list': object_list,

View File

@@ -56,7 +56,7 @@ def index_setup_list(request):
context['object_list'] = queryset
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -73,7 +73,7 @@ def index_setup_create(request):
else:
form = IndexForm()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'create index'),
'form': form,
}, context_instance=RequestContext(request))
@@ -96,7 +96,7 @@ def index_setup_edit(request, index_pk):
else:
form = IndexForm(instance=index)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'edit index: %s') % index,
'form': form,
'index': index,
@@ -139,7 +139,7 @@ def index_setup_delete(request, index_pk):
'form_icon': u'tab_delete.png',
}
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -168,7 +168,7 @@ def index_setup_view(request, index_pk):
],
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -215,7 +215,7 @@ def template_node_create(request, parent_pk):
else:
form = IndexTemplateNodeForm(initial={'index': parent_node.index, 'parent': parent_node})
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'create child node'),
'form': form,
'index': parent_node.index,
@@ -241,7 +241,7 @@ def template_node_edit(request, node_pk):
else:
form = IndexTemplateNodeForm(instance=node)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'edit index template node: %s') % node,
'form': form,
'index': node.index,
@@ -292,7 +292,7 @@ def template_node_delete(request, node_pk):
],
}
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -319,7 +319,7 @@ def index_list(request):
context['object_list'] = queryset
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -351,7 +351,7 @@ def index_instance_node_view(request, index_instance_node_pk):
}
)
return render_to_response('generic_list.html', {
return render_to_response('main/generic_list.html', {
'object_list': index_instance_list,
'extra_columns_preffixed': [
{
@@ -381,7 +381,7 @@ def rebuild_index_instances(request):
next = request.POST.get('next', request.GET.get('next', request.META.get('HTTP_REFERER', None)))
if request.method != 'POST':
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'previous': previous,
'next': next,
'title': _(u'Are you sure you wish to rebuild all indexes?'),
@@ -420,7 +420,7 @@ def document_index_list(request, document_id):
for index_instance in queryset:
object_list.append(get_breadcrumbs(index_instance, single_link=True, include_count=True))
return render_to_response('generic_list.html', {
return render_to_response('main/generic_list.html', {
'title': _(u'indexes containing: %s') % document,
'object_list': object_list,
'hide_link': True,

View File

@@ -72,7 +72,7 @@ def document_verify(request, document_pk):
]
)
return render_to_response('generic_template.html', {
return render_to_response('main/generic_template.html', {
'title': _(u'signature properties for: %s') % document,
'object': document,
'document': document,
@@ -107,7 +107,7 @@ def document_signature_upload(request, document_pk):
else:
form = DetachedSignatureForm()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'Upload detached signature for: %s') % document,
'form_icon': 'key_delete.png',
'next': next,
@@ -164,7 +164,7 @@ def document_signature_delete(request, document_pk):
messages.error(request, _(u'Error while deleting the detached signature; %s') % exception)
return HttpResponseRedirect(previous)
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'title': _(u'Are you sure you wish to delete the detached signature from document: %s?') % document,
'form_icon': 'pencil_delete.png',
'next': next,

View File

@@ -79,7 +79,7 @@ def document_list(request, object_list=None, title=None, extra_context=None):
if extra_context:
context.update(extra_context)
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -117,7 +117,7 @@ def document_view(request, document_id, advanced=False):
subtemplates_list.append(
{
'name': 'generic_form_subtemplate.html',
'name': 'main/generic_form_subtemplate.html',
'context': {
'form': document_properties_form,
'object': document,
@@ -129,7 +129,7 @@ def document_view(request, document_id, advanced=False):
preview_form = DocumentPreviewForm(document=document)
subtemplates_list.append(
{
'name': 'generic_form_subtemplate.html',
'name': 'main/generic_form_subtemplate.html',
'context': {
'form': preview_form,
'object': document,
@@ -141,7 +141,7 @@ def document_view(request, document_id, advanced=False):
subtemplates_list.append(
{
'name': 'generic_form_subtemplate.html',
'name': 'main/generic_form_subtemplate.html',
'context': {
'title': _(u'document data'),
'form': content_form,
@@ -150,7 +150,7 @@ def document_view(request, document_id, advanced=False):
}
)
return render_to_response('generic_detail.html', {
return render_to_response('main/generic_detail.html', {
'object': document,
'document': document,
'subtemplates_list': subtemplates_list,
@@ -204,7 +204,7 @@ def document_delete(request, document_id=None, document_id_list=None):
elif len(documents) > 1:
context['title'] = _(u'Are you sure you wish to delete the documents: %s?') % ', '.join([unicode(d) for d in documents])
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -247,7 +247,7 @@ def document_edit(request, document_id):
form = DocumentForm_edit(instance=document, initial={
'description': document.description})
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'form': form,
'object': document,
}, context_instance=RequestContext(request))
@@ -295,7 +295,7 @@ def document_download(request, document_id=None, document_id_list=None, document
subtemplates_list = []
subtemplates_list.append(
{
'name': 'generic_list_subtemplate.html',
'name': 'main/generic_list_subtemplate.html',
'context': {
'title': _(u'documents to be downloaded'),
'object_list': document_versions,
@@ -373,7 +373,7 @@ def document_download(request, document_id=None, document_id_list=None, document
context['object'] = document_versions[0].document
return render_to_response(
'generic_form.html',
'main/generic_form.html',
context,
context_instance=RequestContext(request)
)
@@ -404,7 +404,7 @@ def _find_duplicate_list(request, source_document_list=Document.objects.all(), i
previous = request.POST.get('previous', request.GET.get('previous', request.META.get('HTTP_REFERER', None)))
if confirmation and request.method != 'POST':
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'previous': previous,
'title': _(u'Are you sure you wish to find all duplicates?'),
'message': _(u'On large databases this operation may take some time to execute.'),
@@ -462,7 +462,7 @@ def document_update_page_count(request):
})
return HttpResponseRedirect(previous)
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'previous': previous,
'title': _(u'Are you sure you wish to update the page count for the office documents (%d)?') % qs.count(),
'message': _(u'On large databases this operation may take some time to execute.'),
@@ -517,7 +517,7 @@ def document_clear_transformations(request, document_id=None, document_id_list=N
elif len(documents) > 1:
context['title'] = _(u'Are you sure you wish to clear all the page transformations for documents: %s?') % ', '.join([unicode(d) for d in documents])
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -531,7 +531,7 @@ def document_missing_list(request):
previous = request.POST.get('previous', request.GET.get('previous', request.META.get('HTTP_REFERER', None)))
if request.method != 'POST':
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'previous': previous,
'message': _(u'On large databases this operation may take some time to execute.'),
}, context_instance=RequestContext(request))
@@ -541,7 +541,7 @@ def document_missing_list(request):
if not storage_backend.exists(document.file):
missing_id_list.append(document.pk)
return render_to_response('generic_list.html', {
return render_to_response('main/generic_list.html', {
'object_list': Document.objects.in_bulk(missing_id_list).values(),
'title': _(u'missing documents'),
}, context_instance=RequestContext(request))
@@ -571,7 +571,7 @@ def document_page_view(request, document_page_id):
else:
rotation_text = u''
return render_to_response('generic_detail.html', {
return render_to_response('main/generic_detail.html', {
'page': document_page,
'access_object': document_page.document,
'navigation_object_name': 'page',
@@ -596,7 +596,7 @@ def document_page_text(request, document_page_id):
document_page_form = DocumentPageForm_text(instance=document_page)
return render_to_response('generic_detail.html', {
return render_to_response('main/generic_detail.html', {
'page': document_page,
'navigation_object_name': 'page',
'web_theme_hide_menus': True,
@@ -625,7 +625,7 @@ def document_page_edit(request, document_page_id):
else:
form = DocumentPageForm_edit(instance=document_page)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'form': form,
'page': document_page,
'navigation_object_name': 'page',
@@ -806,7 +806,7 @@ def document_print(request, document_id):
else:
form = PrintForm()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'form': form,
'object': document,
'title': _(u'print: %s') % document,
@@ -866,7 +866,7 @@ def document_type_list(request):
'list_object_variable_name': 'document_type',
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -888,7 +888,7 @@ def document_type_edit(request, document_type_id):
else:
form = DocumentTypeForm(instance=document_type)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'edit document type: %s') % document_type,
'form': form,
'object_name': _(u'document type'),
@@ -934,7 +934,7 @@ def document_type_delete(request, document_type_id):
'form_icon': u'layout_delete.png',
}
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -954,7 +954,7 @@ def document_type_create(request):
else:
form = DocumentTypeForm()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'create document type'),
'form': form,
},
@@ -981,7 +981,7 @@ def document_type_filename_list(request, document_type_id):
]
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -1005,7 +1005,7 @@ def document_type_filename_edit(request, document_type_filename_id):
else:
form = DocumentTypeFilenameForm(instance=document_type_filename)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'edit filename "%(filename)s" from document type "%(document_type)s"') % {
'document_type': document_type_filename.document_type, 'filename': document_type_filename
},
@@ -1057,7 +1057,7 @@ def document_type_filename_delete(request, document_type_filename_id):
'form_icon': u'database_delete.png',
}
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -1084,7 +1084,7 @@ def document_type_filename_create(request, document_type_id):
else:
form = DocumentTypeFilenameForm_create()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'create filename for document type: %s') % document_type,
'form': form,
'document_type': document_type,
@@ -1109,7 +1109,7 @@ def document_clear_image_cache(request):
return HttpResponseRedirect(previous)
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'previous': previous,
'title': _(u'Are you sure you wish to clear the document image cache?'),
'form_icon': u'camera_delete.png',
@@ -1160,7 +1160,7 @@ def document_version_list(request, document_pk):
]
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -1183,7 +1183,7 @@ def document_version_revert(request, document_version_pk):
return HttpResponseRedirect(previous)
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'previous': previous,
'object': document_version.document,
'title': _(u'Are you sure you wish to revert to this version?'),
@@ -1219,7 +1219,7 @@ def document_page_transformation_list(request, document_page_id):
'hide_object': True,
}
return render_to_response(
'generic_list.html', context, context_instance=RequestContext(request)
'main/generic_list.html', context, context_instance=RequestContext(request)
)
@@ -1241,7 +1241,7 @@ def document_page_transformation_create(request, document_page_id):
else:
form = DocumentPageTransformationForm(initial={'document_page': document_page})
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'form': form,
'page': document_page,
'navigation_object_name': 'page',
@@ -1269,7 +1269,7 @@ def document_page_transformation_edit(request, document_page_transformation_id):
else:
form = DocumentPageTransformationForm(instance=document_page_transformation)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'form': form,
'transformation': document_page_transformation,
'page': document_page_transformation.document_page,
@@ -1300,7 +1300,7 @@ def document_page_transformation_delete(request, document_page_transformation_id
messages.success(request, _(u'Document page transformation deleted successfully.'))
return HttpResponseRedirect(redirect_view)
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'delete_view': True,
'page': document_page_transformation.document_page,
'transformation': document_page_transformation,

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "main/base.html" %}
{% load i18n %}
{% block title %} :: {% trans "Search results" %}{% endblock %}
@@ -7,10 +7,10 @@
{% include "search_results_subtemplate.html" %}
{% endif %}
{% if query_string %}
{% include "generic_list_subtemplate.html" %}
{% include "main/generic_list_subtemplate.html" %}
{% endif %}
{% if not form and not query_string %}
{% include "generic_list_subtemplate.html" %}
{% include "main/generic_list_subtemplate.html" %}
{% endif %}
{% endblock %}

View File

@@ -1,5 +1,5 @@
{% with "get" as submit_method %}
{% with form_title as title %}
{% include "generic_form_subtemplate.html" %}
{% include "main/generic_form_subtemplate.html" %}
{% endwith %}
{% endwith %}

View File

@@ -23,7 +23,7 @@ def search_form(context):
return context
@register.inclusion_tag('generic_subtemplate.html', takes_context=True)
@register.inclusion_tag('main/generic_subtemplate.html', takes_context=True)
def recent_searches_template(context):
recent_searches = RecentSearch.objects.filter(user=context['user'])
context.update({

View File

@@ -72,7 +72,7 @@ def results(request, extra_context=None):
def search(request, advanced=False):
if advanced:
form = AdvancedSearchForm(data=request.GET, search_model=document_search)
return render_to_response('generic_form.html',
return render_to_response('main/generic_form.html',
{
'form': form,
'title': _(u'advanced search'),

View File

@@ -8,7 +8,7 @@ from folders.forms import AddDocumentForm
register = Library()
@register.inclusion_tag('generic_form_subtemplate.html', takes_context=True)
@register.inclusion_tag('main/generic_form_subtemplate.html', takes_context=True)
def get_add_document_to_folder_form(context):
context.update({
'form': AddDocumentForm(user=context['request'].user),

View File

@@ -51,7 +51,7 @@ def folder_list(request, queryset=None, extra_context=None):
context['object_list'] = queryset
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -71,7 +71,7 @@ def folder_create(request):
else:
form = FolderForm()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'create folder'),
'form': form,
},
@@ -99,7 +99,7 @@ def folder_edit(request, folder_id):
else:
form = FolderForm(instance=folder)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'edit folder: %s') % folder,
'form': form,
'object': folder,
@@ -141,7 +141,7 @@ def folder_delete(request, folder_id):
'form_icon': u'folder_delete.png',
}
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -216,7 +216,7 @@ def folder_add_document(request, document_id=None, document_id_list=None):
elif len(documents) > 1:
context['title'] = _(u'Add documents: %s to folder.') % ', '.join([unicode(d) for d in documents])
return render_to_response('generic_form.html', context,
return render_to_response('main/generic_form.html', context,
context_instance=RequestContext(request))
@@ -288,7 +288,7 @@ def folder_document_remove(request, folder_id, document_id=None, document_id_lis
context['title'] = _(u'Are you sure you wish to remove the documents: %(documents)s from the folder "%(folder)s"?') % {
'documents': ', '.join([unicode(d) for d in folder_documents]), 'folder': folder}
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))

View File

@@ -47,7 +47,7 @@ def history_list(request, object_list=None, title=None, extra_context=None):
if extra_context:
context.update(extra_context)
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -70,7 +70,7 @@ def history_for_object(request, app_label, module_name, object_id):
'hide_object': True,
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -90,7 +90,7 @@ def history_view(request, object_id):
{'label': _(u'Additional details'), 'field': lambda x: x.get_processed_details() or _(u'None')},
])
return render_to_response('generic_detail.html', {
return render_to_response('main/generic_detail.html', {
'title': _(u'details for: %s') % history.get_processed_summary(),
'form': form,
}, context_instance=RequestContext(request))

View File

@@ -16,7 +16,7 @@ def namespace_list(request):
Installation().get_properties()
return render_to_response('generic_list.html', {
return render_to_response('main/generic_list.html', {
'object_list': PropertyNamespace.get_all(),
'title': _(u'Installation property namespaces'),
'hide_object': True,
@@ -32,7 +32,7 @@ def namespace_details(request, namespace_id):
object_list = namespace.get_properties()
title = _(u'Installation namespace details for: %s') % namespace.label
return render_to_response('generic_list.html', {
return render_to_response('main/generic_list.html', {
'object_list': object_list,
'hide_object': True,
'title': title,

View File

@@ -91,7 +91,7 @@ def smart_link_instances_for_document(request, document_id):
if smart_link_instances:
subtemplates_list = [{
'name': 'generic_form_subtemplate.html',
'name': 'main/generic_form_subtemplate.html',
'context': {
'title': _(u'smart links (%s)') % len(smart_link_instances.keys()),
'form': SmartLinkInstanceForm(
@@ -105,13 +105,13 @@ def smart_link_instances_for_document(request, document_id):
else:
# If there are not group display a placeholder messages saying so
subtemplates_list = [{
'name': 'generic_subtemplate.html',
'name': 'main/generic_subtemplate.html',
'context': {
'content': _(u'There no defined smart links for the current document.'),
}
}]
return render_to_response('generic_detail.html', {
return render_to_response('main/generic_detail.html', {
'object': document,
'document': document,
'subtemplates_list': subtemplates_list,
@@ -126,7 +126,7 @@ def smart_link_list(request):
except PermissionDenied:
qs = AccessEntry.objects.filter_objects_by_access(PERMISSION_SMART_LINK_VIEW, request.user, qs)
return render_to_response('generic_list.html', {
return render_to_response('main/generic_list.html', {
'title': _(u'smart links'),
'object_list': qs,
'extra_columns': [
@@ -152,7 +152,7 @@ def smart_link_create(request):
else:
form = SmartLinkForm()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'form': form,
'title': _(u'Create new smart link')
}, context_instance=RequestContext(request))
@@ -175,7 +175,7 @@ def smart_link_edit(request, smart_link_pk):
else:
form = SmartLinkForm(instance=smart_link)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'object': smart_link,
'form': form,
'title': _(u'Edit smart link: %s') % smart_link
@@ -204,7 +204,7 @@ def smart_link_delete(request, smart_link_pk):
})
return HttpResponseRedirect(next)
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'delete_view': True,
'object': smart_link,
'title': _(u'Are you sure you wish to delete smart link: %s?') % smart_link,
@@ -222,7 +222,7 @@ def smart_link_condition_list(request, smart_link_pk):
except PermissionDenied:
AccessEntry.objects.check_accesses([PERMISSION_SMART_LINK_CREATE, PERMISSION_SMART_LINK_EDIT], request.user, smart_link)
return render_to_response('generic_list.html', {
return render_to_response('main/generic_list.html', {
'title': _(u'conditions for smart link: %s') % smart_link,
'object_list': smart_link.smartlinkcondition_set.all(),
'extra_columns': [
@@ -253,7 +253,7 @@ def smart_link_condition_create(request, smart_link_pk):
else:
form = SmartLinkConditionForm(initial={'smart_link': smart_link})
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'form': form,
'title': _(u'Add new conditions to smart link: "%s"') % smart_link,
'object': smart_link,
@@ -282,7 +282,7 @@ def smart_link_condition_edit(request, smart_link_condition_pk):
else:
form = SmartLinkConditionForm(instance=smart_link_condition)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'form': form,
'title': _(u'Edit smart link condition'),
'next': next,
@@ -319,7 +319,7 @@ def smart_link_condition_delete(request, smart_link_condition_pk):
})
return HttpResponseRedirect(next)
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'delete_view': True,
'condition': smart_link_condition,
'object': smart_link_condition.smart_link,

View File

@@ -71,62 +71,62 @@ msgstr "الاصدار"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "مستخدم"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "مجهول"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "تفاصيل المستخدم"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "دخول"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "خروج"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "القائمة الثانوية"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr "إجراءات ل %(name)s: %(navigation_object)s"
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr "إجراءات ل %(navigation_object)s"
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "الإجراءات المتاحة"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr "الإجراءات ذات الصلة"
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "الإجراءات الأخرى المتاحة"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr "إجراءات ل %(object_name)s: %(navigation_object)s"
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr "الإجراءات"

View File

@@ -73,62 +73,62 @@ msgstr "Версия"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Потребител"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Анонимен"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "Данни за потребител"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Вход"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Изход"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Вторично меню"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr ""
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Възможни действия"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr ""
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Други възможни действия"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr ""

View File

@@ -73,62 +73,62 @@ msgstr "Verzija"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Korisnik"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anonimni"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "Detalji o korisniku"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Login"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Logout"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Pomoćni meni"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr "Akcije za %(name)s: %(navigation_object)s"
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr "Akcije za: %(navigation_object)s"
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Omogućene akcije"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr "Vezane akcije"
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Ostale omogućene akcije"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr "Akcije za %(object_name)s: %(navigation_object)s"
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr "Akcije"

View File

@@ -71,62 +71,62 @@ msgstr "Version"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Bruger"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anonym"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "Bruger detaljer"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Log ind"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Log ud"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Sekundær menu"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr "Handlinger for %(name)s : %(navigation_object)s "
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr "Handlinger for: %(navigation_object)s "
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Mulige valg"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr "Relaterede handlinger"
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Andre mulige valg"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr "Handlinger for %(object_name)s : %(navigation_object)s "
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr "Handlinger"

View File

@@ -79,62 +79,62 @@ msgstr "Version"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr "Copyright &copy; 2011 Roberto Rosario."
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Benutzer"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anonym"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "Benutzerdetails"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Login"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Logout"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Untermenü"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr "Aktionen für %(name)s: %(navigation_object)s"
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr "Aktionen für: %(navigation_object)s"
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Verfügbare Aktionen"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr "Verwandte Aktionen"
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Andere verfügbare Aktionen"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr "Aktionen für %(object_name)s: %(navigation_object)s"
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr "Aktionen"

View File

@@ -71,62 +71,62 @@ msgstr "Version"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "User"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anonymous"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "User details"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Login"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Logout"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Secondary menu"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr "Actions for %(name)s: %(navigation_object)s"
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr "Actions for: %(navigation_object)s"
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Available actions"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr "Related actions"
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Other available actions"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr "Actions for %(object_name)s: %(navigation_object)s"
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr "Actions"

View File

@@ -74,62 +74,62 @@ msgstr "Versión"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr "Copyright &copy; 2011 Roberto Rosario."
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Usuario"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anónimo"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "Detalles de usuario"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Iniciar sesión"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Desconectarse"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Menú secundario"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr "Acciones para %(name)s: %(navigation_object)s "
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr "Acciones para: %(navigation_object)s "
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Acciones disponibles"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr "Acciones relacionadas"
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Otras acciones disponibles"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr "Acciones para %(object_name)s: %(navigation_object)s "
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr "Acciones"

View File

@@ -70,62 +70,62 @@ msgstr "نسخه"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr ""
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "کاربر"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "ناشناس"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr ""
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr ""
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "خروج"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr ""
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr ""
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr ""
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr ""
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr ""
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr ""

View File

@@ -75,62 +75,62 @@ msgstr "Version"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr "Copyright &copy; 2011 Roberto Rosario."
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Utilisateur"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anonyme"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "Profil Utilisateur"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "S'identifier"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Se déconnecter"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Menu secondaire"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr "Actions pour %(name)s:%(navigation_object)s"
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr "Actions pour: %(navigation_object)s"
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Actions disponibles"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr "Actions relatives"
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Autres actions disponibles"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr "Actions pour %(object_name)s:%(navigation_object)s"
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr "Actions"

View File

@@ -70,62 +70,62 @@ msgstr ""
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr ""
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr ""
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr ""
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr ""
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr ""
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr ""
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr ""
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr ""
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr ""
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr ""
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr ""
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr ""

View File

@@ -72,62 +72,62 @@ msgstr "Verzió"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(Hibakeresés)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Felhasználó"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "névtelen felhasználó"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "A felhasználó adatai"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Bejelentkezés"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Kijelentkezés"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Másodlagos menü"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr "Műveletek ezzel %(name)s: %(navigation_object)s"
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr "Műveletek ezen: %(navigation_object)s"
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Rendelkezésre álló műveletek"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr "Kapcsolódó műveletek"
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "További rendelkezésre álló műveletek"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr "Műveletek ezzel %(object_name)s: %(navigation_object)s"
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr "Műveletek"

View File

@@ -69,62 +69,62 @@ msgstr ""
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr ""
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr ""
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr ""
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr ""
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr ""
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr ""
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr ""
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr ""
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr ""
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr ""
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr ""
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr ""

View File

@@ -74,62 +74,62 @@ msgstr "Versione"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Utente"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anonimo"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "Dettagli utente"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Login"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Logout"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Menu secondario"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr ""
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Azioni disponibili"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr ""
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Altre azioni disponibili"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr ""

View File

@@ -72,62 +72,62 @@ msgstr "Versie"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Gebruiker"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anoniem"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "Gegevens over vim Gebruiker"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Aanmelden"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Afmelden"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Onderliggend menu"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr "Acties voor %(name)s: %(navigation_object)s"
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr "Acties for: %(navigation_object)s"
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Beschikbare acties"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr "Gerelateerde acties"
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Overige beschikbare acties"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr "Acties voor %(object_name)s: %(navigation_object)s"
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr "Acties"

View File

@@ -72,62 +72,62 @@ msgstr "Wersja"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Użytkownik"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anonimowy"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "Dane użytkownika"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Login"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Wyloguj"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Dodatkowe menu"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr ""
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr ""
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr ""
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr ""
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr ""

View File

@@ -74,62 +74,62 @@ msgstr "Versão"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Utilizador"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anónimo"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "Detalhes do utilizador"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Login"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Sair"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Menu secundário"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr ""
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Ações disponíveis"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr ""
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Outras ações disponíveis"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr ""

View File

@@ -73,62 +73,62 @@ msgstr "Versão"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Usuário"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anônimo"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "Detalhes do usuário"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Login"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Sair"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Menu secundário"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr ""
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Ações disponíveis"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr ""
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Outras ações disponíveis"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr ""

View File

@@ -73,62 +73,62 @@ msgstr "Versiune"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "utilizator"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "anonim"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "detalii utilizator"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "logare"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "deconectare"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "meniu secundar"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr "Acţiuni pentru %(name)s: %(navigation_object)s"
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr "Acţiuni pentru: %(navigation_object)s"
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "acţiuni disponibile"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr "acţiuni conexe"
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "alte acţuni disponibile"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr "Acţiuni pentru %(object_name)s: %(navigation_object)s"
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr "Acţiuni"

View File

@@ -73,62 +73,62 @@ msgstr "Версия"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Пользователь"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Анонимно"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "сведения о пользователе"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Войти"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Выход"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr "Вторичное меню"
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr "Действия для %(name)s: %(navigation_object)s"
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr "Действия для %(navigation_object)s"
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Доступные действия"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr "Соответствующие действия"
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Другие возможные действия"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr "Действия для %(object_name)s: %(navigation_object)s"
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr "Действия"

View File

@@ -70,62 +70,62 @@ msgstr ""
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr ""
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr ""
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr ""
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr ""
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr ""
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr ""
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr ""
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr ""
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr ""
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr ""
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr ""
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr ""

View File

@@ -70,62 +70,62 @@ msgstr "Sürüm"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr ""
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr ""
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anonim"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr ""
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Giriş"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Çıkış"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr ""
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr ""
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr ""
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr ""
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr ""
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr ""

View File

@@ -70,62 +70,62 @@ msgstr "Phiên bản"
msgid "Copyright &copy; 2011 Roberto Rosario."
msgstr ""
#: templates/base.html:31
#: templates/main/base.html:31
msgid "(DEBUG)"
msgstr "(DEBUG)"
#: templates/base.html:262
#: templates/main/base.html:262
msgid "User"
msgstr "Người dùng"
#: templates/base.html:264
#: templates/main/base.html:264
msgid "Anonymous"
msgstr "Anonymous"
#: templates/base.html:267
#: templates/main/base.html:267
msgid "User details"
msgstr "Chi tiết người dùng"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Login"
msgstr "Đăng nhập"
#: templates/base.html:284
#: templates/main/base.html:284
msgid "Logout"
msgstr "Đăng xuất"
#: templates/base.html:364
#: templates/main/base.html:364
msgid "Secondary menu"
msgstr ""
#: templates/base.html:380
#: templates/main/base.html:380
#, python-format
msgid "Actions for %(name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:382 templates/base.html.py:425
#: templates/main/base.html:382 templates/main/base.html.py:425
#, python-format
msgid "Actions for: %(navigation_object)s"
msgstr ""
#: templates/base.html:385
#: templates/main/base.html:385
msgid "Available actions"
msgstr "Các thao tác khả dụng"
#: templates/base.html:397 templates/base.html.py:440
#: templates/main/base.html:397 templates/main/base.html.py:440
msgid "Related actions"
msgstr "Các thao tác liên quan"
#: templates/base.html:408 templates/base.html.py:453
#: templates/main/base.html:408 templates/main/base.html.py:453
msgid "Other available actions"
msgstr "Các thao tác khác"
#: templates/base.html:423
#: templates/main/base.html:423
#, python-format
msgid "Actions for %(object_name)s: %(navigation_object)s"
msgstr ""
#: templates/base.html:428
#: templates/main/base.html:428
msgid "Actions"
msgstr "Các thao tác"

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% load i18n %}

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% load i18n %}

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% load i18n %}
@@ -11,7 +11,7 @@
<div class="content tc">
<h3>{% project_name %} ({% trans 'Version' %} {% app_version 'mayan' %})</h3>
</div>
{% include 'project_description.html' %}
{% include 'main/project_description.html' %}
{% endblock %}
{% block footer %}

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% block title %} :: {{ title|capfirst }}{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% load i18n %}

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% load i18n %}

View File

@@ -1,10 +1,10 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% load i18n %}
{% load subtemplates_tags %}
{% block title %} :: {% with 'true' as read_only %}{% include 'calculate_form_title.html' %}{% endwith %}{% endblock %}
{% block title %} :: {% with 'true' as read_only %}{% include 'main/calculate_form_title.html' %}{% endwith %}{% endblock %}
{% block sidebar %}
{% for subtemplate in sidebar_subtemplates %}
@@ -17,7 +17,7 @@
{% with 'true' as side_bar %}
{% if subtemplate.form %}
{% render_subtemplate subtemplate.name subtemplate.context as rendered_subtemplate %}
{% with "true" as read_only %}
{% with 'true' as read_only %}
<div class="generic_subform">
{{ rendered_subtemplate }}
</div>
@@ -49,7 +49,7 @@
{% with 'true' as read_only %}
<div class="">
<div class="generic_subform">
{% include 'generic_form_subtemplate.html' %}
{% include 'main/generic_form_subtemplate.html' %}
</div>
</div>
{% if grid_clear or not grid %}

View File

@@ -14,7 +14,7 @@
{% if form %}
{% with 'true' as read_only %}
<div class="generic_subform">
{% include 'generic_form_subtemplate.html' %}
{% include 'main/generic_form_subtemplate.html' %}
</div>
{% endwith %}
{% endif %}

View File

@@ -1,8 +1,8 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% load subtemplates_tags %}
{% block title %} :: {% include 'calculate_form_title.html' %}{% endblock %}
{% block title %} :: {% include 'main/calculate_form_title.html' %}{% endblock %}
{% block sidebar %}
{% for subtemplate in sidebar_subtemplates_list %}
@@ -23,7 +23,7 @@
{% block content %}
{% if form %}
<div class="generic_subform">
{% include "generic_form_subtemplate.html" %}
{% include "main/generic_form_subtemplate.html" %}
</div>
{% endif %}

View File

@@ -8,7 +8,7 @@
<h2 class="title">
{% endif %}
{% include 'calculate_form_title.html' %}
{% include 'main/calculate_form_title.html' %}
{% if side_bar %}
</h3>
@@ -64,7 +64,7 @@
{% endif %}
{% for form in formset.forms %}
{% include 'generic_form_instance.html' %}
{% include 'main/generic_form_instance.html' %}
{% endfor %}
{% if form_display_mode_table %}
</tbody>
@@ -72,7 +72,7 @@
{% endif %}
{% endwith %}
{% else %}
{% include 'generic_form_instance.html' %}
{% include 'main/generic_form_instance.html' %}
{% endif %}
{% if not read_only %}
<div class="group navform wat-cf">

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% load i18n %}
@@ -23,6 +23,6 @@
{% endblock %}
{% block content %}
{% include 'generic_list_subtemplate.html' %}
{% include 'main/generic_list_subtemplate.html' %}
{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% load i18n %}
@@ -23,6 +23,6 @@
{% endblock %}
{% block content %}
{% include 'generic_list_horizontal_subtemplate.html' %}
{% include 'main/generic_list_horizontal_subtemplate.html' %}
{% endblock %}

View File

@@ -1,7 +1,7 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% block title %} :: {{ title|capfirst }}{% endblock %}
{% block content %}
{% include 'generic_subtemplate.html' %}
{% include 'main/generic_subtemplate.html' %}
{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% load i18n %}
@@ -16,12 +16,12 @@
{% with wizard.form as form %}
{% with 'true' as form_display_mode_table %}
{% include 'generic_form_subtemplate.html' %}
{% include 'main/generic_form_subtemplate.html' %}
{% endwith %}
{% endwith %}
{% else %}
{% with wizard.form as form %}
{% include 'generic_form_subtemplate.html' %}
{% include 'main/generic_form_subtemplate.html' %}
{% endwith %}
{% endif %}
{% endwith %}

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% load i18n %}

View File

@@ -1,4 +1,4 @@
{% extends 'web_theme_base.html' %}
{% extends 'main/base.html' %}
{% load i18n %}
@@ -55,7 +55,7 @@
<div class="content login">
<form action="." method="post" class="form login">{% csrf_token %}
<div class="group wat-cf">
{% include 'generic_form_instance.html' %}
{% include 'main/generic_form_instance.html' %}
<input type="hidden" name="next" value="{{ next|escape }}" />
<div class="group navform wat-cf">
<button class="button" type="submit">
@@ -68,7 +68,7 @@
</div>
{% get_web_theme_setting "VERBOSE_LOGIN" as verbose_login %}
{% if verbose_login %}
{% include 'verbose_login.html' %}
{% include 'main/verbose_login.html' %}
{% endif %}
{% endblock %}
{% endif %}

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% load i18n %}

View File

@@ -1,4 +1,4 @@
{% extends 'generic_form.html' %}
{% extends 'main/generic_form.html' %}
{% load i18n %}

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% block title %} :: {{ title|capfirst }}{% endblock %}
@@ -6,7 +6,7 @@
{% for block in blocks %}
{% with block.title as title %}
{% with block.paragraphs as paragraphs %}
{% include 'generic_subtemplate.html' %}
{% include 'main/generic_subtemplate.html' %}
{% endwith %}
{% endwith %}
{% endfor %}

View File

@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'main/base.html' %}
{% block title %} :: {{ title|capfirst }}{% endblock %}

View File

@@ -6,5 +6,5 @@
<p>{% trans 'Copyright &copy; 2011 Roberto Rosario.' %}</p>
{% include 'project_description.html' %}
{% include 'main/project_description.html' %}

View File

@@ -17,7 +17,7 @@ def home(request):
if DISABLE_HOME_VIEW:
return HttpResponseRedirect(reverse('document_list_recent'))
else:
return render_to_response('home.html', {},
return render_to_response('main/home.html', {},
context_instance=RequestContext(request))
@@ -36,14 +36,14 @@ def maintenance_menu(request):
except PermissionDenied:
pass
return render_to_response('tools.html', {
return render_to_response('main/tools.html', {
'blocks': user_tools,
'title': _(u'maintenance menu')
}, context_instance=RequestContext(request))
def diagnostics_view(request):
return render_to_response('diagnostics.html', {
return render_to_response('main/diagnostics.html', {
'blocks': diagnostics,
'title': _(u'Diagnostics')
}, context_instance=RequestContext(request))

View File

@@ -107,7 +107,7 @@ def metadata_edit(request, document_id=None, document_id_list=None):
elif len(documents) > 1:
context['title'] = _(u'Edit metadata for documents: %s') % ', '.join([unicode(d) for d in documents])
return render_to_response('generic_form.html', context,
return render_to_response('main/generic_form.html', context,
context_instance=RequestContext(request))
@@ -174,7 +174,7 @@ def metadata_add(request, document_id=None, document_id_list=None):
elif len(documents) > 1:
context['title'] = _(u'Add metadata type to documents: %s') % ', '.join([unicode(d) for d in documents])
return render_to_response('generic_form.html', context,
return render_to_response('main/generic_form.html', context,
context_instance=RequestContext(request))
@@ -255,7 +255,7 @@ def metadata_remove(request, document_id=None, document_id_list=None):
elif len(documents) > 1:
context['title'] = _(u'Remove metadata types from documents: %s') % ', '.join([unicode(d) for d in documents])
return render_to_response('generic_form.html', context,
return render_to_response('main/generic_form.html', context,
context_instance=RequestContext(request))
@@ -271,7 +271,7 @@ def metadata_view(request, document_id):
except PermissionDenied:
AccessEntry.objects.check_access(PERMISSION_METADATA_DOCUMENT_VIEW, request.user, document)
return render_to_response('generic_list.html', {
return render_to_response('main/generic_list.html', {
'title': _(u'metadata for: %s') % document,
'object_list': document.metadata.all(),
'extra_columns': [{'name': _(u'value'), 'attribute': 'value'}],
@@ -296,7 +296,7 @@ def setup_metadata_type_list(request):
]
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -318,7 +318,7 @@ def setup_metadata_type_edit(request, metadatatype_id):
else:
form = MetadataTypeForm(instance=metadata_type)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'edit metadata type: %s') % metadata_type,
'form': form,
'object': metadata_type,
@@ -338,7 +338,7 @@ def setup_metadata_type_create(request):
else:
form = MetadataTypeForm()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'create metadata type'),
'form': form,
}, context_instance=RequestContext(request))
@@ -374,7 +374,7 @@ def setup_metadata_type_delete(request, metadatatype_id):
'form_icon': u'xhtml_delete.png',
}
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -393,7 +393,7 @@ def setup_metadata_set_list(request):
]
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -415,7 +415,7 @@ def setup_metadata_set_edit(request, metadata_set_id):
else:
form = MetadataSetForm(instance=metadata_set)
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'edit metadata set: %s') % metadata_set,
'form': form,
'object': metadata_set,
@@ -478,7 +478,7 @@ def setup_metadata_set_create(request):
else:
form = MetadataSetForm()
return render_to_response('generic_form.html', {
return render_to_response('main/generic_form.html', {
'title': _(u'create metadata set'),
'form': form,
}, context_instance=RequestContext(request))
@@ -514,7 +514,7 @@ def setup_metadata_set_delete(request, metadata_set_id):
'form_icon': u'application_form_delete.png',
}
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))

View File

@@ -266,7 +266,7 @@ def get_multi_item_links(parser, token):
return GetNavigationLinks(menu_name=menu_name, links_dict=multi_object_navigation, var_name=var_name)
@register.inclusion_tag('generic_form_instance.html', takes_context=True)
@register.inclusion_tag('main/generic_form_instance.html', takes_context=True)
def get_multi_item_links_form(context):
new_context = copy.copy(context)
new_context.update({

View File

@@ -48,7 +48,7 @@ def queue_document_list(request, queue_name='default'):
'multi_select_as_buttons': True,
'sidebar_subtemplates_list': [
{
'name': 'generic_subtemplate.html',
'name': 'main/generic_subtemplate.html',
'context': {
'side_bar': True,
'title': _(u'document queue properties'),
@@ -58,7 +58,7 @@ def queue_document_list(request, queue_name='default'):
]
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -104,7 +104,7 @@ def queue_document_delete(request, queue_document_id=None, queue_document_id_lis
elif len(queue_documents) > 1:
context['title'] = _(u'Are you sure you wish to delete queue documents: %s?') % ', '.join([unicode(d) for d in queue_documents])
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -198,7 +198,7 @@ def re_queue_document(request, queue_document_id=None, queue_document_id_list=No
elif len(queue_documents) > 1:
context['title'] = _(u'Are you sure you wish to re-queue documents: %s?') % ', '.join([unicode(d) for d in queue_documents])
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -223,7 +223,7 @@ def document_queue_disable(request, document_queue_id):
messages.success(request, _(u'Document queue: %s, stopped successfully.') % document_queue)
return HttpResponseRedirect(next)
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'queue': document_queue,
'navigation_object_name': 'queue',
'title': _(u'Are you sure you wish to disable document queue: %s') % document_queue,
@@ -250,7 +250,7 @@ def document_queue_enable(request, document_queue_id):
messages.success(request, _(u'Document queue: %s, activated successfully.') % document_queue)
return HttpResponseRedirect(next)
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'queue': document_queue,
'navigation_object_name': 'queue',
'title': _(u'Are you sure you wish to activate document queue: %s') % document_queue,
@@ -267,7 +267,7 @@ def all_document_ocr_cleanup(request):
next = request.POST.get('next', request.GET.get('next', request.META.get('HTTP_REFERER', None)))
if request.method != 'POST':
return render_to_response('generic_confirm.html', {
return render_to_response('main/generic_confirm.html', {
'previous': previous,
'next': next,
'title': _(u'Are you sure you wish to clean up all the pages content?'),

View File

@@ -60,7 +60,7 @@ def role_list(request):
'hide_link': True,
}
return render_to_response('generic_list.html', context,
return render_to_response('main/generic_list.html', context,
context_instance=RequestContext(request))
@@ -72,7 +72,7 @@ def role_permissions(request, role_id):
subtemplates_list = [
{
'name': u'generic_list_subtemplate.html',
'name': u'main/generic_list_subtemplate.html',
'context': {
'title': _(u'permissions'),
'object_list': Permission.objects.all(),
@@ -90,7 +90,7 @@ def role_permissions(request, role_id):
},
]
return render_to_response('generic_detail.html', {
return render_to_response('main/generic_detail.html', {
'form': form,
'object': role,
'object_name': _(u'role'),
@@ -163,7 +163,7 @@ def permission_grant(request):
if len(grouped_items) == 1:
context['object'] = grouped_items[0][0]
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))
@@ -225,7 +225,7 @@ def permission_revoke(request):
if len(grouped_items) == 1:
context['object'] = grouped_items[0][0]
return render_to_response('generic_confirm.html', context,
return render_to_response('main/generic_confirm.html', context,
context_instance=RequestContext(request))

Some files were not shown because too many files have changed in this diff Show More