diff --git a/apps/feedback/__init__.py b/apps/feedback/__init__.py deleted file mode 100644 index 8e6c005ae4..0000000000 --- a/apps/feedback/__init__.py +++ /dev/null @@ -1,11 +0,0 @@ -from __future__ import absolute_import - -from django.utils.translation import ugettext_lazy as _ - -from navigation.api import register_links -from common import about_view, license_view - -form_view = {'text': _('Feedback'), 'view': 'form_view', 'famfam': 'telephone'} - -register_links(['form_view'], [about_view, license_view], menu_name='secondary_menu') -register_links(['form_view', 'about_view', 'license_view'], [form_view], menu_name='secondary_menu') diff --git a/apps/feedback/api.py b/apps/feedback/api.py deleted file mode 100644 index 083cd0e79e..0000000000 --- a/apps/feedback/api.py +++ /dev/null @@ -1,12 +0,0 @@ -import requests - -from django.utils.simplejson import dumps - -FORM_SUBMIT_URL = 'https://docs.google.com/spreadsheet/formResponse' -FORM_KEY = 'dGZrYkw3SDl5OENMTG15emp1UFFEUWc6MQ' -FORM_RECEIVER_FIELD = 'entry.0.single' -TIMEOUT = 10 - - -def submit_form(form): - requests.post(FORM_SUBMIT_URL, data={'formkey': FORM_KEY, FORM_RECEIVER_FIELD: dumps(form.cleaned_data)}, timeout=TIMEOUT) diff --git a/apps/feedback/forms.py b/apps/feedback/forms.py deleted file mode 100644 index e7cfcd196c..0000000000 --- a/apps/feedback/forms.py +++ /dev/null @@ -1,92 +0,0 @@ -from __future__ import absolute_import - -import logging - -from django import forms -from django.utils.translation import ugettext_lazy as _ - -logger = logging.getLogger(__name__) - - -class FeedbackForm(forms.Form): - attract = forms.CharField( - widget=forms.widgets.Textarea( - attrs={'rows': 2}, - ), - label=_(u'What features of Mayan EDMS attracted you to start using it or consider using it?'), - required=False - ) - - future = forms.CharField( - widget=forms.widgets.Textarea( - attrs={'rows': 2}, - ), - label=_(u'What features would you like to see implemented in Mayan EDMS?'), - required=False - ) - - deploy = forms.CharField( - widget=forms.widgets.Textarea( - attrs={'rows': 2}, - ), - label=_(u'Could you tell us a bit about how you are deploying or plan to deploy Mayan EDMS (OS, webserver, cloud/local, hardware specs)?'), - required=False - ) - - hardest = forms.CharField( - widget=forms.widgets.Textarea( - attrs={'rows': 2}, - ), - label=_(u'What features of Mayan EDMS did you find hardest to understand or implement?'), - required=False - ) - - support = forms.BooleanField( - label=_(u'Would you be interested in purchasing paid support for Mayan EDMS?'), - required=False - ) - - sell_support = forms.BooleanField( - label=_(u'Are currently providing or planning to provide paid support for Mayan EDMS?'), - required=False - ) - - hosted = forms.BooleanField( - label=_(u'Would you be interested in a cloud hosted solution for Mayan EDMS?'), - required=False - ) - - turn_key = forms.BooleanField( - label=_(u'Would you be interested in a turn-key solution for Mayan EDMS that included a physical server appliance?'), - required=False - ) - - name = forms.CharField( - label=_(u'Your name:'), - required=False - ) - - email = forms.CharField( - label=_(u'Your email:'), - required=False - ) - - company = forms.CharField( - label=_(u'Company name:'), - required=False - ) - - website = forms.CharField( - label=_(u'Company website:'), - required=False - ) - - use_info = forms.BooleanField( - label=_(u'May we display your company name & logo in our website as a user of Mayan EDMS with a link back to your website?'), - required=False - ) - - mailing_list = forms.BooleanField( - label=_(u'May we keep your contact information to keep you up to date with developments or oferings related to Mayan EDMS?'), - required=False - ) diff --git a/apps/feedback/locale/en/LC_MESSAGES/django.po b/apps/feedback/locale/en/LC_MESSAGES/django.po deleted file mode 100644 index c06fa17bd4..0000000000 --- a/apps/feedback/locale/en/LC_MESSAGES/django.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-12 15:20-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: __init__.py:9 -msgid "Feedback" -msgstr "" - -#: forms.py:16 -msgid "" -"What features of Mayan EDMS attracted you to start using it or consider " -"using it?" -msgstr "" - -#: forms.py:24 -msgid "What features would you like to see implemented in Mayan EDMS?" -msgstr "" - -#: forms.py:32 -msgid "" -"Could you tell us a bit about how you are deploying or plan to deploy Mayan " -"EDMS (OS, webserver, cloud/local, hardware specs)?" -msgstr "" - -#: forms.py:40 -msgid "" -"What features of Mayan EDMS did you find hardest to understand or implement?" -msgstr "" - -#: forms.py:45 -msgid "Would you be interested in purchasing paid support for Mayan EDMS?" -msgstr "" - -#: forms.py:50 -msgid "" -"Are currently providing or planning to provide paid support for Mayan EDMS?" -msgstr "" - -#: forms.py:55 -msgid "Would you be interested in a cloud hosted solution for Mayan EDMS?" -msgstr "" - -#: forms.py:60 -msgid "" -"Would you be interested in a turn-key solution for Mayan EDMS that included " -"a physical server appliance?" -msgstr "" - -#: forms.py:65 -msgid "Your name:" -msgstr "" - -#: forms.py:70 -msgid "Your email:" -msgstr "" - -#: forms.py:75 -msgid "Company name:" -msgstr "" - -#: forms.py:80 -msgid "Company website:" -msgstr "" - -#: forms.py:85 -msgid "" -"May we display your company name & logo in our website as a user of Mayan " -"EDMS with a link back to your website?" -msgstr "" - -#: forms.py:90 -msgid "" -"May we keep your contact information to keep you up to date with " -"developments or oferings related to Mayan EDMS?" -msgstr "" - -#: views.py:20 -msgid "Thank you for submiting your feedback." -msgstr "" - -#: views.py:23 -#, python-format -msgid "Error submiting form; %s." -msgstr "" - -#: views.py:28 -msgid "feedback form" -msgstr "" diff --git a/apps/feedback/locale/es/LC_MESSAGES/django.mo b/apps/feedback/locale/es/LC_MESSAGES/django.mo deleted file mode 100644 index b4c2448189..0000000000 Binary files a/apps/feedback/locale/es/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/feedback/locale/es/LC_MESSAGES/django.po b/apps/feedback/locale/es/LC_MESSAGES/django.po deleted file mode 100644 index bac7b96e9a..0000000000 --- a/apps/feedback/locale/es/LC_MESSAGES/django.po +++ /dev/null @@ -1,122 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Roberto Rosario , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-12 15:20-0400\n" -"PO-Revision-Date: 2012-02-02 18:28+0000\n" -"Last-Translator: Roberto Rosario \n" -"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/" -"mayan-edms/team/es/)\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: __init__.py:9 -msgid "Feedback" -msgstr "Comentarios" - -#: forms.py:16 -msgid "" -"What features of Mayan EDMS attracted you to start using it or consider " -"using it?" -msgstr "" -"¿Qué características de Mayan EDMS le atrajo a empezar a usarlo o considerar " -"usarlo?" - -#: forms.py:24 -msgid "What features would you like to see implemented in Mayan EDMS?" -msgstr "¿Qué características le gustaría ver implementadas en Mayan EDMS?" - -#: forms.py:32 -msgid "" -"Could you tell us a bit about how you are deploying or plan to deploy Mayan " -"EDMS (OS, webserver, cloud/local, hardware specs)?" -msgstr "" -"¿Podría hablarnos un poco acerca de cómo se está implementando o planea " -"implementar Mayan EDMS (sistema operativo, servidor web, nube / locales, " -"hardware)?" - -#: forms.py:40 -msgid "" -"What features of Mayan EDMS did you find hardest to understand or implement?" -msgstr "" -"¿Qué características de Mayan EDMS se le hizo más difícil de encontrar, " -"comprender o implementar?" - -#: forms.py:45 -msgid "Would you be interested in purchasing paid support for Mayan EDMS?" -msgstr "" -"¿Estaría usted interesado en la compra de apoyo técnico pagado para Mayan " -"EDMS?" - -#: forms.py:50 -msgid "" -"Are currently providing or planning to provide paid support for Mayan EDMS?" -msgstr "¿Esta actualmente o planifica proveer apoyo pagado para Mayan EDMS?" - -#: forms.py:55 -msgid "Would you be interested in a cloud hosted solution for Mayan EDMS?" -msgstr "" -"¿Estaría usted interesado en una solución pagada alojada en la nube de Mayan " -"EDMS?" - -#: forms.py:60 -msgid "" -"Would you be interested in a turn-key solution for Mayan EDMS that included " -"a physical server appliance?" -msgstr "" -"¿Estaría usted interesado en una solución completa para Mayan EDMS que " -"incluye un dispositivo de servidor físico?" - -#: forms.py:65 -msgid "Your name:" -msgstr "Su nombre:" - -#: forms.py:70 -msgid "Your email:" -msgstr "Su correo electrónico:" - -#: forms.py:75 -msgid "Company name:" -msgstr "Nombre de la empresa:" - -#: forms.py:80 -msgid "Company website:" -msgstr "Web de la compañía:" - -#: forms.py:85 -msgid "" -"May we display your company name & logo in our website as a user of Mayan " -"EDMS with a link back to your website?" -msgstr "" -"¿Podemos usar el nombre de su empresa y logotipo en nuestra página web como " -"usuario de Mayan EDMS con un enlace a su sitio web?" - -#: forms.py:90 -msgid "" -"May we keep your contact information to keep you up to date with " -"developments or oferings related to Mayan EDMS?" -msgstr "" -"¿Podemos mantener su información de contacto para mantenerle al día con los " -"ultimos desarollos u ofertas relacionados con Mayan EDMS?" - -#: views.py:20 -msgid "Thank you for submiting your feedback." -msgstr "Gracias por remitir sus comentarios." - -#: views.py:23 -#, python-format -msgid "Error submiting form; %s." -msgstr "Error remitiendo el formulario; %s." - -#: views.py:28 -msgid "feedback form" -msgstr "formulario de comentarios" diff --git a/apps/feedback/locale/it/LC_MESSAGES/django.mo b/apps/feedback/locale/it/LC_MESSAGES/django.mo deleted file mode 100644 index 79cce4965d..0000000000 Binary files a/apps/feedback/locale/it/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/feedback/locale/it/LC_MESSAGES/django.po b/apps/feedback/locale/it/LC_MESSAGES/django.po deleted file mode 100644 index d49175a6fa..0000000000 --- a/apps/feedback/locale/it/LC_MESSAGES/django.po +++ /dev/null @@ -1,104 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Roberto Rosario , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: http://github.com/rosarior/mayan/issues\n" -"POT-Creation-Date: 2012-02-12 15:20-0400\n" -"PO-Revision-Date: 2012-02-21 00:51+0000\n" -"Last-Translator: Roberto Rosario \n" -"Language-Team: Italian (http://www.transifex.net/projects/p/mayan-edms/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: __init__.py:9 -msgid "Feedback" -msgstr "Commenti" - -#: forms.py:16 -msgid "" -"What features of Mayan EDMS attracted you to start using it or consider " -"using it?" -msgstr "Quali caratteristiche di Mayan EDMS ti ha attratto per iniziare ad usarlo o considerare l'utilizzo di esso?" - -#: forms.py:24 -msgid "What features would you like to see implemented in Mayan EDMS?" -msgstr "Quali caratteristiche vorreste vedere implementata in Mayan EDMS?" - -#: forms.py:32 -msgid "" -"Could you tell us a bit about how you are deploying or plan to deploy Mayan " -"EDMS (OS, webserver, cloud/local, hardware specs)?" -msgstr "Puoi dirci un po 'su come si distribuisce o si prevede di distribuire Mayan EDMS (webserver, nuvola / locali, specifiche hardware)?" - -#: forms.py:40 -msgid "" -"What features of Mayan EDMS did you find hardest to understand or implement?" -msgstr "Quali caratteristiche di Mayan EDMS ha trovato più difficile da comprendere o implementare?" - -#: forms.py:45 -msgid "Would you be interested in purchasing paid support for Mayan EDMS?" -msgstr "Sareste interessati ad acquistare il supporto a pagamento per Mayan EDMS?" - -#: forms.py:50 -msgid "" -"Are currently providing or planning to provide paid support for Mayan EDMS?" -msgstr "Stanno fornendo o progettando di fornire supporto a pagamento per Mayan EDMS?" - -#: forms.py:55 -msgid "Would you be interested in a cloud hosted solution for Mayan EDMS?" -msgstr "Sareste interessati ad una soluzione nuvola automatica per Mayan EDMS?" - -#: forms.py:60 -msgid "" -"Would you be interested in a turn-key solution for Mayan EDMS that included " -"a physical server appliance?" -msgstr "Saresti interessato ad una soluzione automatica per Mayan EDMS che hanno incluso un apparecchio fisico server?" - -#: forms.py:65 -msgid "Your name:" -msgstr "Il tuo nome:" - -#: forms.py:70 -msgid "Your email:" -msgstr "Il tuo indirizzo email:" - -#: forms.py:75 -msgid "Company name:" -msgstr "Ragione Sociale:" - -#: forms.py:80 -msgid "Company website:" -msgstr "Sito internet della Società:" - -#: forms.py:85 -msgid "" -"May we display your company name & logo in our website as a user of Mayan " -"EDMS with a link back to your website?" -msgstr "Possiamo visualizzare il nome della società e il logo del nostro sito come utente di Mayan EDMS con un link al tuo sito web?" - -#: forms.py:90 -msgid "" -"May we keep your contact information to keep you up to date with " -"developments or oferings related to Mayan EDMS?" -msgstr "Possiamo mantenere le informazioni di contatto per tenervi aggiornati sugli sviluppi o oferings relativi al Mayan EDMS?" - -#: views.py:20 -msgid "Thank you for submiting your feedback." -msgstr "Grazie per l'invio i vostri commenti." - -#: views.py:23 -#, python-format -msgid "Error submiting form; %s." -msgstr "Errore l'invio di forma; %s." - -#: views.py:28 -msgid "feedback form" -msgstr "forma di commenti" diff --git a/apps/feedback/locale/pl/LC_MESSAGES/django.mo b/apps/feedback/locale/pl/LC_MESSAGES/django.mo deleted file mode 100644 index 282d506bf2..0000000000 Binary files a/apps/feedback/locale/pl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/feedback/locale/pl/LC_MESSAGES/django.po b/apps/feedback/locale/pl/LC_MESSAGES/django.po deleted file mode 100644 index c75a5f625a..0000000000 --- a/apps/feedback/locale/pl/LC_MESSAGES/django.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: http://github.com/rosarior/mayan/issues\n" -"POT-Creation-Date: 2012-02-12 15:20-0400\n" -"PO-Revision-Date: 2012-02-02 18:21+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.net/projects/p/mayan-edms/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: __init__.py:9 -msgid "Feedback" -msgstr "" - -#: forms.py:16 -msgid "" -"What features of Mayan EDMS attracted you to start using it or consider " -"using it?" -msgstr "" - -#: forms.py:24 -msgid "What features would you like to see implemented in Mayan EDMS?" -msgstr "" - -#: forms.py:32 -msgid "" -"Could you tell us a bit about how you are deploying or plan to deploy Mayan " -"EDMS (OS, webserver, cloud/local, hardware specs)?" -msgstr "" - -#: forms.py:40 -msgid "" -"What features of Mayan EDMS did you find hardest to understand or implement?" -msgstr "" - -#: forms.py:45 -msgid "Would you be interested in purchasing paid support for Mayan EDMS?" -msgstr "" - -#: forms.py:50 -msgid "" -"Are currently providing or planning to provide paid support for Mayan EDMS?" -msgstr "" - -#: forms.py:55 -msgid "Would you be interested in a cloud hosted solution for Mayan EDMS?" -msgstr "" - -#: forms.py:60 -msgid "" -"Would you be interested in a turn-key solution for Mayan EDMS that included " -"a physical server appliance?" -msgstr "" - -#: forms.py:65 -msgid "Your name:" -msgstr "" - -#: forms.py:70 -msgid "Your email:" -msgstr "" - -#: forms.py:75 -msgid "Company name:" -msgstr "" - -#: forms.py:80 -msgid "Company website:" -msgstr "" - -#: forms.py:85 -msgid "" -"May we display your company name & logo in our website as a user of Mayan " -"EDMS with a link back to your website?" -msgstr "" - -#: forms.py:90 -msgid "" -"May we keep your contact information to keep you up to date with " -"developments or oferings related to Mayan EDMS?" -msgstr "" - -#: views.py:20 -msgid "Thank you for submiting your feedback." -msgstr "" - -#: views.py:23 -#, python-format -msgid "Error submiting form; %s." -msgstr "" - -#: views.py:28 -msgid "feedback form" -msgstr "" diff --git a/apps/feedback/locale/pt/LC_MESSAGES/django.mo b/apps/feedback/locale/pt/LC_MESSAGES/django.mo deleted file mode 100644 index 675ae005c7..0000000000 Binary files a/apps/feedback/locale/pt/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/feedback/locale/pt/LC_MESSAGES/django.po b/apps/feedback/locale/pt/LC_MESSAGES/django.po deleted file mode 100644 index a3f95ad543..0000000000 --- a/apps/feedback/locale/pt/LC_MESSAGES/django.po +++ /dev/null @@ -1,104 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-12 15:20-0400\n" -"PO-Revision-Date: 2012-02-02 18:21+0000\n" -"Last-Translator: Roberto Rosario \n" -"Language-Team: Portuguese (http://www.transifex.net/projects/p/mayan-edms/" -"team/pt/)\n" -"Language: pt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: __init__.py:9 -msgid "Feedback" -msgstr "" - -#: forms.py:16 -msgid "" -"What features of Mayan EDMS attracted you to start using it or consider " -"using it?" -msgstr "" - -#: forms.py:24 -msgid "What features would you like to see implemented in Mayan EDMS?" -msgstr "" - -#: forms.py:32 -msgid "" -"Could you tell us a bit about how you are deploying or plan to deploy Mayan " -"EDMS (OS, webserver, cloud/local, hardware specs)?" -msgstr "" - -#: forms.py:40 -msgid "" -"What features of Mayan EDMS did you find hardest to understand or implement?" -msgstr "" - -#: forms.py:45 -msgid "Would you be interested in purchasing paid support for Mayan EDMS?" -msgstr "" - -#: forms.py:50 -msgid "" -"Are currently providing or planning to provide paid support for Mayan EDMS?" -msgstr "" - -#: forms.py:55 -msgid "Would you be interested in a cloud hosted solution for Mayan EDMS?" -msgstr "" - -#: forms.py:60 -msgid "" -"Would you be interested in a turn-key solution for Mayan EDMS that included " -"a physical server appliance?" -msgstr "" - -#: forms.py:65 -msgid "Your name:" -msgstr "" - -#: forms.py:70 -msgid "Your email:" -msgstr "" - -#: forms.py:75 -msgid "Company name:" -msgstr "" - -#: forms.py:80 -msgid "Company website:" -msgstr "" - -#: forms.py:85 -msgid "" -"May we display your company name & logo in our website as a user of Mayan " -"EDMS with a link back to your website?" -msgstr "" - -#: forms.py:90 -msgid "" -"May we keep your contact information to keep you up to date with " -"developments or oferings related to Mayan EDMS?" -msgstr "" - -#: views.py:20 -msgid "Thank you for submiting your feedback." -msgstr "" - -#: views.py:23 -#, python-format -msgid "Error submiting form; %s." -msgstr "" - -#: views.py:28 -msgid "feedback form" -msgstr "" diff --git a/apps/feedback/locale/ru/LC_MESSAGES/django.mo b/apps/feedback/locale/ru/LC_MESSAGES/django.mo deleted file mode 100644 index de875a435f..0000000000 Binary files a/apps/feedback/locale/ru/LC_MESSAGES/django.mo and /dev/null differ diff --git a/apps/feedback/locale/ru/LC_MESSAGES/django.po b/apps/feedback/locale/ru/LC_MESSAGES/django.po deleted file mode 100644 index 10eaac9dfa..0000000000 --- a/apps/feedback/locale/ru/LC_MESSAGES/django.po +++ /dev/null @@ -1,104 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Sergey Glita , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: http://github.com/rosarior/mayan/issues\n" -"POT-Creation-Date: 2012-02-12 15:20-0400\n" -"PO-Revision-Date: 2012-02-27 04:51+0000\n" -"Last-Translator: Sergey Glita \n" -"Language-Team: Russian (http://www.transifex.net/projects/p/mayan-edms/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: __init__.py:9 -msgid "Feedback" -msgstr "Обратная связь" - -#: forms.py:16 -msgid "" -"What features of Mayan EDMS attracted you to start using it or consider " -"using it?" -msgstr "Какие особенности Mayan EDMS побудили вас использовать её или рассмотривать вопрос об использовании её в документообороте?" - -#: forms.py:24 -msgid "What features would you like to see implemented in Mayan EDMS?" -msgstr "Какие особенности Вы хотели бы видеть реализованными в Mayan EDMS ?" - -#: forms.py:32 -msgid "" -"Could you tell us a bit about how you are deploying or plan to deploy Mayan " -"EDMS (OS, webserver, cloud/local, hardware specs)?" -msgstr "Не могли бы Вы рассказать нам немного о том, как вы устанавливаете или планируете развернуть Mayan EDMS (ОС, сервер, облако/локально, спецификации оборудования)?" - -#: forms.py:40 -msgid "" -"What features of Mayan EDMS did you find hardest to understand or implement?" -msgstr "Какие особенности Mayan EDMS вы нашли трудным для понимания и реализации?" - -#: forms.py:45 -msgid "Would you be interested in purchasing paid support for Mayan EDMS?" -msgstr "Вы были бы заинтересованы в приобретении платной поддержки Mayan EDMS?" - -#: forms.py:50 -msgid "" -"Are currently providing or planning to provide paid support for Mayan EDMS?" -msgstr "В настоящее время вы осуществляете или планируете предоставлять платную поддержку Mayan EDMS ?" - -#: forms.py:55 -msgid "Would you be interested in a cloud hosted solution for Mayan EDMS?" -msgstr "Вы были бы заинтересованы реализации \"облачного\" решения для Mayan EDMS ?" - -#: forms.py:60 -msgid "" -"Would you be interested in a turn-key solution for Mayan EDMS that included " -"a physical server appliance?" -msgstr "Вы были бы заинтересованы в решении \"под ключ\" для Mayan EDMS, которое включало бы и \"железо\"?" - -#: forms.py:65 -msgid "Your name:" -msgstr "Ваше имя:" - -#: forms.py:70 -msgid "Your email:" -msgstr "Ваш адрес электронной почты:" - -#: forms.py:75 -msgid "Company name:" -msgstr "Название компании:" - -#: forms.py:80 -msgid "Company website:" -msgstr "Сайт компании:" - -#: forms.py:85 -msgid "" -"May we display your company name & logo in our website as a user of Mayan " -"EDMS with a link back to your website?" -msgstr "Можем ли мы показывать название компании и логотип на нашем сайте в качестве пользователя Mayan EDMS со ссылкой на ваш сайт?" - -#: forms.py:90 -msgid "" -"May we keep your contact information to keep you up to date with " -"developments or oferings related to Mayan EDMS?" -msgstr "Можем ли мы сохранить вашу контактную информацию, чтобы держать вас в курсе новостей разработки или других событий, связанных с Mayan EDMS?" - -#: views.py:20 -msgid "Thank you for submiting your feedback." -msgstr "Спасибо вам за отзыв." - -#: views.py:23 -#, python-format -msgid "Error submiting form; %s." -msgstr "Ошибка при отправке формы; %s." - -#: views.py:28 -msgid "feedback form" -msgstr "форма обратной связи" diff --git a/apps/feedback/models.py b/apps/feedback/models.py deleted file mode 100644 index 71a8362390..0000000000 --- a/apps/feedback/models.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.db import models - -# Create your models here. diff --git a/apps/feedback/urls.py b/apps/feedback/urls.py deleted file mode 100644 index 53380a2d92..0000000000 --- a/apps/feedback/urls.py +++ /dev/null @@ -1,5 +0,0 @@ -from django.conf.urls.defaults import patterns, url - -urlpatterns = patterns('feedback.views', - url(r'^form/$', 'form_view', (), 'form_view'), -) diff --git a/apps/feedback/views.py b/apps/feedback/views.py deleted file mode 100644 index a4cf1ebca3..0000000000 --- a/apps/feedback/views.py +++ /dev/null @@ -1,30 +0,0 @@ -from __future__ import absolute_import - -from django.utils.translation import ugettext_lazy as _ -from django.http import HttpResponseRedirect -from django.shortcuts import render_to_response -from django.template import RequestContext -from django.contrib import messages - -from .forms import FeedbackForm -from .api import submit_form - - -def form_view(request): - if request.method == 'POST': - form = FeedbackForm(request.POST) - if form.is_valid(): - try: - submit_form(form) - messages.success(request, _(u'Thank you for submiting your feedback.')) - return HttpResponseRedirect('/') - except Exception, e: - messages.error(request, _(u'Error submiting form; %s.') % e) - else: - form = FeedbackForm() - - return render_to_response('generic_form.html', { - 'title': _(u'feedback form'), - 'form': form, - }, - context_instance=RequestContext(request)) diff --git a/settings.py b/settings.py index 16d29aad98..3257e013f6 100644 --- a/settings.py +++ b/settings.py @@ -157,7 +157,7 @@ INSTALLED_APPS = ( 'mimetype', 'scheduler', 'job_processor', - 'feedback', + 'installation', # Mayan EDMS 'storage', 'folders', @@ -175,7 +175,6 @@ INSTALLED_APPS = ( 'rest_api', 'document_signatures', 'checkouts', - 'installation', # Has to be last so the other apps can register it's signals 'signaler', diff --git a/urls.py b/urls.py index acb5126eda..79bc1fab54 100644 --- a/urls.py +++ b/urls.py @@ -31,7 +31,6 @@ urlpatterns = patterns('', (r'^api/', include('rest_api.urls')), (r'^gpg/', include('django_gpg.urls')), (r'^documents/signatures/', include('document_signatures.urls')), - (r'^feedback/', include('feedback.urls')), (r'^checkouts/', include('checkouts.urls')), (r'^installation/', include('installation.urls')), (r'^scheduler/', include('scheduler.urls')),