diff --git a/mayan/apps/__init__.py b/mayan/apps/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/mayan/apps/acls/views.py b/mayan/apps/acls/views.py index d3dedbc0fd..f0ec32fce8 100644 --- a/mayan/apps/acls/views.py +++ b/mayan/apps/acls/views.py @@ -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)) diff --git a/mayan/apps/bootstrap/views.py b/mayan/apps/bootstrap/views.py index 694d067b2b..ae6a4ade64 100644 --- a/mayan/apps/bootstrap/views.py +++ b/mayan/apps/bootstrap/views.py @@ -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)) diff --git a/mayan/apps/checkouts/views.py b/mayan/apps/checkouts/views.py index 1e611e122c..5d85230b3c 100644 --- a/mayan/apps/checkouts/views.py +++ b/mayan/apps/checkouts/views.py @@ -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)) diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po index 8b039beb13..8104e94f97 100644 --- a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po @@ -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" diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po index fcc8c5bbd2..0264a1154e 100644 --- a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po @@ -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 "" diff --git a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po index 9568d2059c..7ebae90d85 100644 --- a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po @@ -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" diff --git a/mayan/apps/common/locale/da/LC_MESSAGES/django.po b/mayan/apps/common/locale/da/LC_MESSAGES/django.po index b2dbe72e86..afb202c435 100644 --- a/mayan/apps/common/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/da/LC_MESSAGES/django.po @@ -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 "" diff --git a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po index 4e12a30da7..56d8808342 100644 --- a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po @@ -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" diff --git a/mayan/apps/common/locale/en/LC_MESSAGES/django.po b/mayan/apps/common/locale/en/LC_MESSAGES/django.po index 3b3bc84ebc..3418e4dfd2 100644 --- a/mayan/apps/common/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/en/LC_MESSAGES/django.po @@ -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" diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.po b/mayan/apps/common/locale/es/LC_MESSAGES/django.po index f7f7e85abc..4ef15cb79d 100644 --- a/mayan/apps/common/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/es/LC_MESSAGES/django.po @@ -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" diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po index ff4f5d1ca6..86f80c2adf 100644 --- a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po @@ -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 "" diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po index e03d873217..f9d69b1246 100644 --- a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po @@ -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" diff --git a/mayan/apps/common/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/common/locale/hr_HR/LC_MESSAGES/django.po index 7b416bd0ee..5b2d4657bf 100644 --- a/mayan/apps/common/locale/hr_HR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/hr_HR/LC_MESSAGES/django.po @@ -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 "" diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po index 3625c370bd..7d7fdb5a7c 100644 --- a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po @@ -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 "" diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.po b/mayan/apps/common/locale/id/LC_MESSAGES/django.po index 296907d26e..55e814f8a1 100644 --- a/mayan/apps/common/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/id/LC_MESSAGES/django.po @@ -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 "" diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.po b/mayan/apps/common/locale/it/LC_MESSAGES/django.po index 27d8d1c9a7..edfbb5dc1a 100644 --- a/mayan/apps/common/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/it/LC_MESSAGES/django.po @@ -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" diff --git a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po index 57663793a7..4e14c4e796 100644 --- a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po @@ -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 "" diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po index 8ffef612e8..43789ebbbf 100644 --- a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po @@ -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" diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po index de2f192951..7194e8dc43 100644 --- a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po @@ -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 " diff --git a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po index 82b28fbf8d..aefb163036 100644 --- a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po @@ -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 " diff --git a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po index b2c251c778..04cd3a4416 100644 --- a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po @@ -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" diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po index 9ba63e77e6..41131b5f26 100644 --- a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po @@ -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" diff --git a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po index 4d732baba6..757637328c 100644 --- a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po @@ -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 "" diff --git a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po index ce2e08ae6c..c7b80e376d 100644 --- a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po @@ -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 "" diff --git a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po index 274711b7fb..bc170a3fab 100644 --- a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po @@ -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 "" diff --git a/mayan/apps/common/urls.py b/mayan/apps/common/urls.py index 46c7163d81..d2a9d407d6 100644 --- a/mayan/apps/common/urls.py +++ b/mayan/apps/common/urls.py @@ -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[0-9A-Za-z]+)-(?P.+)/$', '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[0-9A-Za-z]+)-(?P.+)/$', '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'))), ) diff --git a/mayan/apps/common/views.py b/mayan/apps/common/views.py index 707bdd687e..cf587c526d 100644 --- a/mayan/apps/common/views.py +++ b/mayan/apps/common/views.py @@ -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' diff --git a/mayan/apps/converter/views.py b/mayan/apps/converter/views.py index 18c7873d77..b00826c7b5 100644 --- a/mayan/apps/converter/views.py +++ b/mayan/apps/converter/views.py @@ -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 diff --git a/mayan/apps/django_gpg/views.py b/mayan/apps/django_gpg/views.py index 441775b749..30cb6466d2 100644 --- a/mayan/apps/django_gpg/views.py +++ b/mayan/apps/django_gpg/views.py @@ -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)) diff --git a/mayan/apps/document_comments/views.py b/mayan/apps/document_comments/views.py index 0bb525e28d..4323f706e0 100644 --- a/mayan/apps/document_comments/views.py +++ b/mayan/apps/document_comments/views.py @@ -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, diff --git a/mayan/apps/document_indexing/utils.py b/mayan/apps/document_indexing/utils.py index 24f32d7f12..cf9af08c22 100644 --- a/mayan/apps/document_indexing/utils.py +++ b/mayan/apps/document_indexing/utils.py @@ -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, diff --git a/mayan/apps/document_indexing/views.py b/mayan/apps/document_indexing/views.py index ffc3cb2c84..c987f105e0 100644 --- a/mayan/apps/document_indexing/views.py +++ b/mayan/apps/document_indexing/views.py @@ -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, diff --git a/mayan/apps/document_signatures/views.py b/mayan/apps/document_signatures/views.py index 14d1a550aa..bd6449d0f1 100644 --- a/mayan/apps/document_signatures/views.py +++ b/mayan/apps/document_signatures/views.py @@ -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, diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index ba735e6aab..ad93868198 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -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, diff --git a/mayan/apps/dynamic_search/templates/search_results.html b/mayan/apps/dynamic_search/templates/search_results.html index 79ded014eb..5fb664fffa 100644 --- a/mayan/apps/dynamic_search/templates/search_results.html +++ b/mayan/apps/dynamic_search/templates/search_results.html @@ -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 %} diff --git a/mayan/apps/dynamic_search/templates/search_results_subtemplate.html b/mayan/apps/dynamic_search/templates/search_results_subtemplate.html index bb8d612210..8d525a3c2d 100644 --- a/mayan/apps/dynamic_search/templates/search_results_subtemplate.html +++ b/mayan/apps/dynamic_search/templates/search_results_subtemplate.html @@ -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 %} diff --git a/mayan/apps/dynamic_search/templatetags/search_tags.py b/mayan/apps/dynamic_search/templatetags/search_tags.py index aa20e22149..8a19e63ae6 100644 --- a/mayan/apps/dynamic_search/templatetags/search_tags.py +++ b/mayan/apps/dynamic_search/templatetags/search_tags.py @@ -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({ diff --git a/mayan/apps/dynamic_search/views.py b/mayan/apps/dynamic_search/views.py index 341a694c3c..e2e78d2a3a 100644 --- a/mayan/apps/dynamic_search/views.py +++ b/mayan/apps/dynamic_search/views.py @@ -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'), diff --git a/mayan/apps/folders/templatetags/folder_tags.py b/mayan/apps/folders/templatetags/folder_tags.py index ea97f9a403..e03a9b417f 100644 --- a/mayan/apps/folders/templatetags/folder_tags.py +++ b/mayan/apps/folders/templatetags/folder_tags.py @@ -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), diff --git a/mayan/apps/folders/views.py b/mayan/apps/folders/views.py index 2d75221141..3cf9e1ee8b 100644 --- a/mayan/apps/folders/views.py +++ b/mayan/apps/folders/views.py @@ -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)) diff --git a/mayan/apps/history/views.py b/mayan/apps/history/views.py index a0786435bb..2e000b086d 100644 --- a/mayan/apps/history/views.py +++ b/mayan/apps/history/views.py @@ -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)) diff --git a/mayan/apps/installation/views.py b/mayan/apps/installation/views.py index ca44712d4d..ea45ba1074 100644 --- a/mayan/apps/installation/views.py +++ b/mayan/apps/installation/views.py @@ -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, diff --git a/mayan/apps/linking/views.py b/mayan/apps/linking/views.py index 73540fc3ab..6b77ee722f 100644 --- a/mayan/apps/linking/views.py +++ b/mayan/apps/linking/views.py @@ -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, diff --git a/mayan/apps/main/locale/ar/LC_MESSAGES/django.po b/mayan/apps/main/locale/ar/LC_MESSAGES/django.po index e42fa14ec5..6a57cee44d 100644 --- a/mayan/apps/main/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/ar/LC_MESSAGES/django.po @@ -71,62 +71,62 @@ msgstr "الاصدار" msgid "Copyright © 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 "الإجراءات" diff --git a/mayan/apps/main/locale/bg/LC_MESSAGES/django.po b/mayan/apps/main/locale/bg/LC_MESSAGES/django.po index 17860ab327..b3a2f954e2 100644 --- a/mayan/apps/main/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/bg/LC_MESSAGES/django.po @@ -73,62 +73,62 @@ msgstr "Версия" msgid "Copyright © 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 "" diff --git a/mayan/apps/main/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/main/locale/bs_BA/LC_MESSAGES/django.po index b76b137642..aa8aa96630 100644 --- a/mayan/apps/main/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/bs_BA/LC_MESSAGES/django.po @@ -73,62 +73,62 @@ msgstr "Verzija" msgid "Copyright © 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" diff --git a/mayan/apps/main/locale/da/LC_MESSAGES/django.po b/mayan/apps/main/locale/da/LC_MESSAGES/django.po index 29aa70a98e..8d29b794a4 100644 --- a/mayan/apps/main/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/da/LC_MESSAGES/django.po @@ -71,62 +71,62 @@ msgstr "Version" msgid "Copyright © 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" diff --git a/mayan/apps/main/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/main/locale/de_DE/LC_MESSAGES/django.po index 74a25b1cad..ffe8bf395f 100644 --- a/mayan/apps/main/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/de_DE/LC_MESSAGES/django.po @@ -79,62 +79,62 @@ msgstr "Version" msgid "Copyright © 2011 Roberto Rosario." msgstr "Copyright © 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" diff --git a/mayan/apps/main/locale/en/LC_MESSAGES/django.po b/mayan/apps/main/locale/en/LC_MESSAGES/django.po index 07c19c4420..757e3091c8 100644 --- a/mayan/apps/main/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/en/LC_MESSAGES/django.po @@ -71,62 +71,62 @@ msgstr "Version" msgid "Copyright © 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" diff --git a/mayan/apps/main/locale/es/LC_MESSAGES/django.po b/mayan/apps/main/locale/es/LC_MESSAGES/django.po index f6a6e7f77b..734474760a 100644 --- a/mayan/apps/main/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/es/LC_MESSAGES/django.po @@ -74,62 +74,62 @@ msgstr "Versión" msgid "Copyright © 2011 Roberto Rosario." msgstr "Copyright © 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" diff --git a/mayan/apps/main/locale/fa/LC_MESSAGES/django.po b/mayan/apps/main/locale/fa/LC_MESSAGES/django.po index 0302662cf8..e80ab73213 100644 --- a/mayan/apps/main/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/fa/LC_MESSAGES/django.po @@ -70,62 +70,62 @@ msgstr "نسخه" msgid "Copyright © 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 "" diff --git a/mayan/apps/main/locale/fr/LC_MESSAGES/django.po b/mayan/apps/main/locale/fr/LC_MESSAGES/django.po index 1a5196b2bb..9e124fc8c8 100644 --- a/mayan/apps/main/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/fr/LC_MESSAGES/django.po @@ -75,62 +75,62 @@ msgstr "Version" msgid "Copyright © 2011 Roberto Rosario." msgstr "Copyright © 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" diff --git a/mayan/apps/main/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/main/locale/hr_HR/LC_MESSAGES/django.po index b3822cdf23..ca8059b467 100644 --- a/mayan/apps/main/locale/hr_HR/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/hr_HR/LC_MESSAGES/django.po @@ -70,62 +70,62 @@ msgstr "" msgid "Copyright © 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 "" diff --git a/mayan/apps/main/locale/hu/LC_MESSAGES/django.po b/mayan/apps/main/locale/hu/LC_MESSAGES/django.po index b89017ed67..19f2eb1083 100644 --- a/mayan/apps/main/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/hu/LC_MESSAGES/django.po @@ -72,62 +72,62 @@ msgstr "Verzió" msgid "Copyright © 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" diff --git a/mayan/apps/main/locale/id/LC_MESSAGES/django.po b/mayan/apps/main/locale/id/LC_MESSAGES/django.po index fb5cb84b95..15366d3df5 100644 --- a/mayan/apps/main/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/id/LC_MESSAGES/django.po @@ -69,62 +69,62 @@ msgstr "" msgid "Copyright © 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 "" diff --git a/mayan/apps/main/locale/it/LC_MESSAGES/django.po b/mayan/apps/main/locale/it/LC_MESSAGES/django.po index 27ebc51cfa..ce08b23411 100644 --- a/mayan/apps/main/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/it/LC_MESSAGES/django.po @@ -74,62 +74,62 @@ msgstr "Versione" msgid "Copyright © 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 "" diff --git a/mayan/apps/main/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/main/locale/nl_NL/LC_MESSAGES/django.po index fd99d852e1..56d8dbaeac 100644 --- a/mayan/apps/main/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/nl_NL/LC_MESSAGES/django.po @@ -72,62 +72,62 @@ msgstr "Versie" msgid "Copyright © 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" diff --git a/mayan/apps/main/locale/pl/LC_MESSAGES/django.po b/mayan/apps/main/locale/pl/LC_MESSAGES/django.po index 0003751b5c..7f25dfa3d6 100644 --- a/mayan/apps/main/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/pl/LC_MESSAGES/django.po @@ -72,62 +72,62 @@ msgstr "Wersja" msgid "Copyright © 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 "" diff --git a/mayan/apps/main/locale/pt/LC_MESSAGES/django.po b/mayan/apps/main/locale/pt/LC_MESSAGES/django.po index 438cd3cdcd..af02583209 100644 --- a/mayan/apps/main/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/pt/LC_MESSAGES/django.po @@ -74,62 +74,62 @@ msgstr "Versão" msgid "Copyright © 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 "" diff --git a/mayan/apps/main/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/main/locale/pt_BR/LC_MESSAGES/django.po index feb0221543..113fb2c33e 100644 --- a/mayan/apps/main/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/pt_BR/LC_MESSAGES/django.po @@ -73,62 +73,62 @@ msgstr "Versão" msgid "Copyright © 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 "" diff --git a/mayan/apps/main/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/main/locale/ro_RO/LC_MESSAGES/django.po index 4f7f8e50a2..196cb8736a 100644 --- a/mayan/apps/main/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/ro_RO/LC_MESSAGES/django.po @@ -73,62 +73,62 @@ msgstr "Versiune" msgid "Copyright © 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" diff --git a/mayan/apps/main/locale/ru/LC_MESSAGES/django.po b/mayan/apps/main/locale/ru/LC_MESSAGES/django.po index cd53b9edcd..e85e8a6e17 100644 --- a/mayan/apps/main/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/ru/LC_MESSAGES/django.po @@ -73,62 +73,62 @@ msgstr "Версия" msgid "Copyright © 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 "Действия" diff --git a/mayan/apps/main/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/main/locale/sl_SI/LC_MESSAGES/django.po index 38ba7f99f8..b47d74ad15 100644 --- a/mayan/apps/main/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/sl_SI/LC_MESSAGES/django.po @@ -70,62 +70,62 @@ msgstr "" msgid "Copyright © 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 "" diff --git a/mayan/apps/main/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/main/locale/tr_TR/LC_MESSAGES/django.po index 30f464d7a1..4f3f98c308 100644 --- a/mayan/apps/main/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/tr_TR/LC_MESSAGES/django.po @@ -70,62 +70,62 @@ msgstr "Sürüm" msgid "Copyright © 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 "" diff --git a/mayan/apps/main/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/main/locale/vi_VN/LC_MESSAGES/django.po index d7069fec3f..072ea791cd 100644 --- a/mayan/apps/main/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/main/locale/vi_VN/LC_MESSAGES/django.po @@ -70,62 +70,62 @@ msgstr "Phiên bản" msgid "Copyright © 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" diff --git a/mayan/apps/common/templates/403.html b/mayan/apps/main/templates/main/403.html similarity index 93% rename from mayan/apps/common/templates/403.html rename to mayan/apps/main/templates/main/403.html index c32b705f74..152d67d8b3 100644 --- a/mayan/apps/common/templates/403.html +++ b/mayan/apps/main/templates/main/403.html @@ -1,4 +1,4 @@ -{% extends 'base.html' %} +{% extends 'main/base.html' %} {% load i18n %} diff --git a/mayan/apps/common/templates/404.html b/mayan/apps/main/templates/main/404.html similarity index 92% rename from mayan/apps/common/templates/404.html rename to mayan/apps/main/templates/main/404.html index 42d4f0c33e..ab427c7472 100644 --- a/mayan/apps/common/templates/404.html +++ b/mayan/apps/main/templates/main/404.html @@ -1,4 +1,4 @@ -{% extends 'base.html' %} +{% extends 'main/base.html' %} {% load i18n %} diff --git a/mayan/apps/common/templates/500.html b/mayan/apps/main/templates/main/500.html similarity index 100% rename from mayan/apps/common/templates/500.html rename to mayan/apps/main/templates/main/500.html diff --git a/mayan/apps/main/templates/about.html b/mayan/apps/main/templates/main/about.html similarity index 82% rename from mayan/apps/main/templates/about.html rename to mayan/apps/main/templates/main/about.html index 4968571ec0..e8ffd6d87d 100644 --- a/mayan/apps/main/templates/about.html +++ b/mayan/apps/main/templates/main/about.html @@ -1,4 +1,4 @@ -{% extends 'base.html' %} +{% extends 'main/base.html' %} {% load i18n %} @@ -11,7 +11,7 @@

{% project_name %} ({% trans 'Version' %} {% app_version 'mayan' %})

- {% include 'project_description.html' %} + {% include 'main/project_description.html' %} {% endblock %} {% block footer %} diff --git a/mayan/apps/main/templates/base.html b/mayan/apps/main/templates/main/base.html similarity index 100% rename from mayan/apps/main/templates/base.html rename to mayan/apps/main/templates/main/base.html diff --git a/mayan/apps/common/templates/calculate_form_title.html b/mayan/apps/main/templates/main/calculate_form_title.html similarity index 100% rename from mayan/apps/common/templates/calculate_form_title.html rename to mayan/apps/main/templates/main/calculate_form_title.html diff --git a/mayan/apps/main/templates/diagnostics.html b/mayan/apps/main/templates/main/diagnostics.html similarity index 95% rename from mayan/apps/main/templates/diagnostics.html rename to mayan/apps/main/templates/main/diagnostics.html index fea22e33cc..9c6ee810dc 100644 --- a/mayan/apps/main/templates/diagnostics.html +++ b/mayan/apps/main/templates/main/diagnostics.html @@ -1,4 +1,4 @@ -{% extends 'base.html' %} +{% extends 'main/base.html' %} {% block title %} :: {{ title|capfirst }}{% endblock %} diff --git a/mayan/apps/common/templates/generic_assign_remove.html b/mayan/apps/main/templates/main/generic_assign_remove.html similarity index 98% rename from mayan/apps/common/templates/generic_assign_remove.html rename to mayan/apps/main/templates/main/generic_assign_remove.html index d26a74347d..7d8ede337b 100644 --- a/mayan/apps/common/templates/generic_assign_remove.html +++ b/mayan/apps/main/templates/main/generic_assign_remove.html @@ -1,4 +1,4 @@ -{% extends 'base.html' %} +{% extends 'main/base.html' %} {% load i18n %} diff --git a/mayan/apps/common/templates/generic_confirm.html b/mayan/apps/main/templates/main/generic_confirm.html similarity index 98% rename from mayan/apps/common/templates/generic_confirm.html rename to mayan/apps/main/templates/main/generic_confirm.html index 4ed23a39f7..e6b663d040 100644 --- a/mayan/apps/common/templates/generic_confirm.html +++ b/mayan/apps/main/templates/main/generic_confirm.html @@ -1,4 +1,4 @@ -{% extends 'base.html' %} +{% extends 'main/base.html' %} {% load i18n %} diff --git a/mayan/apps/common/templates/generic_detail.html b/mayan/apps/main/templates/main/generic_detail.html similarity index 89% rename from mayan/apps/common/templates/generic_detail.html rename to mayan/apps/main/templates/main/generic_detail.html index 8b2f8c9b08..1ebaa988c9 100644 --- a/mayan/apps/common/templates/generic_detail.html +++ b/mayan/apps/main/templates/main/generic_detail.html @@ -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 %}
{{ rendered_subtemplate }}
@@ -49,7 +49,7 @@ {% with 'true' as read_only %}
- {% include 'generic_form_subtemplate.html' %} + {% include 'main/generic_form_subtemplate.html' %}
{% if grid_clear or not grid %} diff --git a/mayan/apps/common/templates/generic_detail_subtemplate.html b/mayan/apps/main/templates/main/generic_detail_subtemplate.html similarity index 88% rename from mayan/apps/common/templates/generic_detail_subtemplate.html rename to mayan/apps/main/templates/main/generic_detail_subtemplate.html index f95cb66f83..e4d71da5bc 100644 --- a/mayan/apps/common/templates/generic_detail_subtemplate.html +++ b/mayan/apps/main/templates/main/generic_detail_subtemplate.html @@ -14,7 +14,7 @@ {% if form %} {% with 'true' as read_only %}
- {% include 'generic_form_subtemplate.html' %} + {% include 'main/generic_form_subtemplate.html' %}
{% endwith %} {% endif %} diff --git a/mayan/apps/common/templates/generic_form.html b/mayan/apps/main/templates/main/generic_form.html similarity index 90% rename from mayan/apps/common/templates/generic_form.html rename to mayan/apps/main/templates/main/generic_form.html index faf745b14b..328735ea4e 100644 --- a/mayan/apps/common/templates/generic_form.html +++ b/mayan/apps/main/templates/main/generic_form.html @@ -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 %}
- {% include "generic_form_subtemplate.html" %} + {% include "main/generic_form_subtemplate.html" %}
{% endif %} diff --git a/mayan/apps/common/templates/generic_form_instance.html b/mayan/apps/main/templates/main/generic_form_instance.html similarity index 100% rename from mayan/apps/common/templates/generic_form_instance.html rename to mayan/apps/main/templates/main/generic_form_instance.html diff --git a/mayan/apps/common/templates/generic_form_subtemplate.html b/mayan/apps/main/templates/main/generic_form_subtemplate.html similarity index 95% rename from mayan/apps/common/templates/generic_form_subtemplate.html rename to mayan/apps/main/templates/main/generic_form_subtemplate.html index 59d5474afd..8e820ae98d 100644 --- a/mayan/apps/common/templates/generic_form_subtemplate.html +++ b/mayan/apps/main/templates/main/generic_form_subtemplate.html @@ -8,7 +8,7 @@

{% endif %} -{% include 'calculate_form_title.html' %} +{% include 'main/calculate_form_title.html' %} {% if side_bar %}

@@ -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 %} @@ -72,7 +72,7 @@ {% endif %} {% endwith %} {% else %} - {% include 'generic_form_instance.html' %} + {% include 'main/generic_form_instance.html' %} {% endif %} {% if not read_only %}