diff --git a/mayan/apps/common/templates/login.html b/mayan/apps/common/templates/login.html
index 395d54832f..629d728fd9 100644
--- a/mayan/apps/common/templates/login.html
+++ b/mayan/apps/common/templates/login.html
@@ -1,15 +1,82 @@
-{% extends 'web_theme_login.html' %}
+{% extends 'web_theme_base.html' %}
{% load i18n %}
+{% load autoadmin_tags %}
{% load project_tags %}
+{% load theme_tags %}
+
+{% block web_theme_head %}
+ {% if user.is_authenticated %}
+ {% get_login_redirect_url %}
+
+ {% endif %}
+{% endblock %}
{% block html_title %}{% project_name %} :: {% trans 'Login' %}{% endblock %}
+ {% if user.is_authenticated %}
+ {% block web_theme_content %}
+ {% get_login_redirect_url %}
+
+
{% trans 'You are already logged in' %}
+
+
+ {% trans 'Redirecting you to the website entry point in 5 seconds.' %}
+
+
+ {% blocktrans %}Or click
here if redirection doesn't work.{% endblocktrans %}
+
+
+
+ {% endblock %}
+ {% else %}
+ {% block content_plain %}
+ {% auto_admin_properties %}
+ {% if auto_admin_properties.account %}
+
+
{% project_name %}
+
+
{% trans 'Login' %}
+
+
+ {% get_web_theme_setting "VERBOSE_LOGIN" as verbose_login %}
+ {% if verbose_login %}
+ {% include 'verbose_login.html' %}
+ {% endif %}
+ {% endblock %}
+ {% endif %}
+
{% block web_theme_stylesheets %}
{% endblock web_theme_stylesheets %}
-{% block project_name %}{% project_name %}{% endblock %}
+{% block project_name %}{% endblock %}
diff --git a/mayan/apps/main/conf/settings.py b/mayan/apps/main/conf/settings.py
index 7a82555ea0..d9f2f80dc1 100644
--- a/mayan/apps/main/conf/settings.py
+++ b/mayan/apps/main/conf/settings.py
@@ -1,7 +1,7 @@
"""Configuration options for the main app"""
from django.utils.translation import ugettext_lazy as _
-from smart_settings.api import register_setting
+from smart_settings.api import register_setting, register_settings
register_setting(
namespace=u'main',
@@ -27,3 +27,13 @@ register_setting(
global_name=u'MAIN_DISABLE_ICONS',
default=False,
)
+
+register_settings(
+ namespace=u'main',
+ module=u'main.conf.settings',
+ settings=[
+ {'name': u'THEME', 'global_name': u'MAIN_THEME', 'default': u'activo', 'description': _(u'CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and warehouse.')},
+ {'name': u'ENABLE_SCROLL_JS', 'global_name': u'MAIN_ENABLE_SCROLL_JS', 'default': True, 'hidden': True},
+ {'name': u'VERBOSE_LOGIN', 'global_name': u'MAIN_VERBOSE_LOGIN', 'default': True, 'description': _(u'Display extra information in the login screen.')},
+ ]
+)
diff --git a/mayan/apps/web_theme/static/packages/animate-custom.css b/mayan/apps/main/static/packages/animate-custom.css
similarity index 100%
rename from mayan/apps/web_theme/static/packages/animate-custom.css
rename to mayan/apps/main/static/packages/animate-custom.css
diff --git a/mayan/apps/web_theme/static/packages/jquery-2.1.1.min.js b/mayan/apps/main/static/packages/jquery-2.1.1.min.js
similarity index 100%
rename from mayan/apps/web_theme/static/packages/jquery-2.1.1.min.js
rename to mayan/apps/main/static/packages/jquery-2.1.1.min.js
diff --git a/mayan/apps/web_theme/static/web_theme_media/LICENSE b/mayan/apps/main/static/web_theme_media/LICENSE
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/LICENSE
rename to mayan/apps/main/static/web_theme_media/LICENSE
diff --git a/mayan/apps/web_theme/static/web_theme_media/README.md b/mayan/apps/main/static/web_theme_media/README.md
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/README.md
rename to mayan/apps/main/static/web_theme_media/README.md
diff --git a/mayan/apps/web_theme/static/web_theme_media/Rakefile b/mayan/apps/main/static/web_theme_media/Rakefile
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/Rakefile
rename to mayan/apps/main/static/web_theme_media/Rakefile
diff --git a/mayan/apps/web_theme/static/web_theme_media/VERSION b/mayan/apps/main/static/web_theme_media/VERSION
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/VERSION
rename to mayan/apps/main/static/web_theme_media/VERSION
diff --git a/mayan/apps/web_theme/static/web_theme_media/config/locales/de_de.yml b/mayan/apps/main/static/web_theme_media/config/locales/de_de.yml
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/config/locales/de_de.yml
rename to mayan/apps/main/static/web_theme_media/config/locales/de_de.yml
diff --git a/mayan/apps/web_theme/static/web_theme_media/config/locales/pt_br.yml b/mayan/apps/main/static/web_theme_media/config/locales/pt_br.yml
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/config/locales/pt_br.yml
rename to mayan/apps/main/static/web_theme_media/config/locales/pt_br.yml
diff --git a/mayan/apps/web_theme/static/web_theme_media/features/step_definitions/layout_steps.rb b/mayan/apps/main/static/web_theme_media/features/step_definitions/layout_steps.rb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/features/step_definitions/layout_steps.rb
rename to mayan/apps/main/static/web_theme_media/features/step_definitions/layout_steps.rb
diff --git a/mayan/apps/web_theme/static/web_theme_media/features/step_definitions/themed_steps.rb b/mayan/apps/main/static/web_theme_media/features/step_definitions/themed_steps.rb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/features/step_definitions/themed_steps.rb
rename to mayan/apps/main/static/web_theme_media/features/step_definitions/themed_steps.rb
diff --git a/mayan/apps/web_theme/static/web_theme_media/features/support/env.rb b/mayan/apps/main/static/web_theme_media/features/support/env.rb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/features/support/env.rb
rename to mayan/apps/main/static/web_theme_media/features/support/env.rb
diff --git a/mayan/apps/web_theme/static/web_theme_media/features/theme_generator.feature b/mayan/apps/main/static/web_theme_media/features/theme_generator.feature
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/features/theme_generator.feature
rename to mayan/apps/main/static/web_theme_media/features/theme_generator.feature
diff --git a/mayan/apps/web_theme/static/web_theme_media/features/themed_generator.feature b/mayan/apps/main/static/web_theme_media/features/themed_generator.feature
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/features/themed_generator.feature
rename to mayan/apps/main/static/web_theme_media/features/themed_generator.feature
diff --git a/mayan/apps/web_theme/static/web_theme_media/images/avatar.png b/mayan/apps/main/static/web_theme_media/images/avatar.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/images/avatar.png
rename to mayan/apps/main/static/web_theme_media/images/avatar.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/images/icons/application_edit.png b/mayan/apps/main/static/web_theme_media/images/icons/application_edit.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/images/icons/application_edit.png
rename to mayan/apps/main/static/web_theme_media/images/icons/application_edit.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/images/icons/cross.png b/mayan/apps/main/static/web_theme_media/images/icons/cross.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/images/icons/cross.png
rename to mayan/apps/main/static/web_theme_media/images/icons/cross.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/images/icons/key.png b/mayan/apps/main/static/web_theme_media/images/icons/key.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/images/icons/key.png
rename to mayan/apps/main/static/web_theme_media/images/icons/key.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/images/icons/tick.png b/mayan/apps/main/static/web_theme_media/images/icons/tick.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/images/icons/tick.png
rename to mayan/apps/main/static/web_theme_media/images/icons/tick.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/index.html b/mayan/apps/main/static/web_theme_media/index.html
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/index.html
rename to mayan/apps/main/static/web_theme_media/index.html
diff --git a/mayan/apps/web_theme/static/web_theme_media/javascripts/jquery-1.3.min.js b/mayan/apps/main/static/web_theme_media/javascripts/jquery-1.3.min.js
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/javascripts/jquery-1.3.min.js
rename to mayan/apps/main/static/web_theme_media/javascripts/jquery-1.3.min.js
diff --git a/mayan/apps/web_theme/static/web_theme_media/javascripts/jquery-1.5.2.min.js b/mayan/apps/main/static/web_theme_media/javascripts/jquery-1.5.2.min.js
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/javascripts/jquery-1.5.2.min.js
rename to mayan/apps/main/static/web_theme_media/javascripts/jquery-1.5.2.min.js
diff --git a/mayan/apps/web_theme/static/web_theme_media/javascripts/jquery-1.7.min.js b/mayan/apps/main/static/web_theme_media/javascripts/jquery-1.7.min.js
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/javascripts/jquery-1.7.min.js
rename to mayan/apps/main/static/web_theme_media/javascripts/jquery-1.7.min.js
diff --git a/mayan/apps/web_theme/static/web_theme_media/javascripts/jquery.localscroll.js b/mayan/apps/main/static/web_theme_media/javascripts/jquery.localscroll.js
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/javascripts/jquery.localscroll.js
rename to mayan/apps/main/static/web_theme_media/javascripts/jquery.localscroll.js
diff --git a/mayan/apps/web_theme/static/web_theme_media/javascripts/jquery.scrollTo.js b/mayan/apps/main/static/web_theme_media/javascripts/jquery.scrollTo.js
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/javascripts/jquery.scrollTo.js
rename to mayan/apps/main/static/web_theme_media/javascripts/jquery.scrollTo.js
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/theme/templates/layout_admin.html.erb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/theme/templates/layout_admin.html.erb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/theme/templates/layout_admin.html.erb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/theme/templates/layout_admin.html.erb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/theme/templates/layout_sign.html.erb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/theme/templates/layout_sign.html.erb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/theme/templates/layout_sign.html.erb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/theme/templates/layout_sign.html.erb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/theme/theme_generator.rb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/theme/theme_generator.rb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/theme/theme_generator.rb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/theme/theme_generator.rb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_edit.html.erb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_edit.html.erb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_edit.html.erb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_edit.html.erb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_form.html.erb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_form.html.erb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_form.html.erb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_form.html.erb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_new.html.erb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_new.html.erb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_new.html.erb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_new.html.erb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_show.html.erb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_show.html.erb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_show.html.erb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_show.html.erb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_sidebar.html.erb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_sidebar.html.erb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_sidebar.html.erb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_sidebar.html.erb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_signin.html.erb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_signin.html.erb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_signin.html.erb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_signin.html.erb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_signup.html.erb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_signup.html.erb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_signup.html.erb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_signup.html.erb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_tables.html.erb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_tables.html.erb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_tables.html.erb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_tables.html.erb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_text.html.erb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_text.html.erb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_text.html.erb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/templates/view_text.html.erb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/themed_generator.rb b/mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/themed_generator.rb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/generators/web_app_theme/themed/themed_generator.rb
rename to mayan/apps/main/static/web_theme_media/lib/generators/web_app_theme/themed/themed_generator.rb
diff --git a/mayan/apps/web_theme/static/web_theme_media/lib/web_app_theme.rb b/mayan/apps/main/static/web_theme_media/lib/web_app_theme.rb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/lib/web_app_theme.rb
rename to mayan/apps/main/static/web_theme_media/lib/web_app_theme.rb
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/base.css b/mayan/apps/main/static/web_theme_media/stylesheets/base.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/base.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/base.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/override.css b/mayan/apps/main/static/web_theme_media/stylesheets/override.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/override.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/override.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/activo/images/arrow.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/activo/images/arrow.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/activo/images/arrow.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/activo/images/arrow.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/activo/images/boxbar-background.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/activo/images/boxbar-background.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/activo/images/boxbar-background.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/activo/images/boxbar-background.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/activo/images/button-background-active.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/activo/images/button-background-active.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/activo/images/button-background-active.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/activo/images/button-background-active.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/activo/images/button-background.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/activo/images/button-background.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/activo/images/button-background.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/activo/images/button-background.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/activo/images/menubar-background.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/activo/images/menubar-background.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/activo/images/menubar-background.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/activo/images/menubar-background.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/activo/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/activo/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/activo/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/activo/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/amro/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/amro/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/amro/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/amro/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/bec-green/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/bec-green/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/bec-green/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/bec-green/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/bec/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/bec/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/bec/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/bec/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/blue/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/blue/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/blue/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/blue/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.eot b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.eot
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.eot
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.eot
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.svg b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.svg
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.svg
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.svg
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.ttf b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.ttf
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.ttf
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.ttf
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.woff b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.woff
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.woff
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museo700-regular-webfont.woff
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.eot b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.eot
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.eot
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.eot
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.svg b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.svg
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.svg
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.svg
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.ttf b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.ttf
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.ttf
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.ttf
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.woff b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.woff
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.woff
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500-webfont.woff
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.eot b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.eot
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.eot
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.eot
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.svg b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.svg
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.svg
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.svg
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.ttf b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.ttf
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.ttf
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.ttf
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.woff b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.woff
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.woff
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/fonts/museosans_500_italic-webfont.woff
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/arrow.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/arrow.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/arrow.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/arrow.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/bgd.jpg b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/bgd.jpg
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/bgd.jpg
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/bgd.jpg
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/boxbar-background.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/boxbar-background.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/boxbar-background.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/boxbar-background.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/button-background-active.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/button-background-active.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/button-background-active.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/button-background-active.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/button-background.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/button-background.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/button-background.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/button-background.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/menubar-background.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/menubar-background.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/menubar-background.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/menubar-background.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/messages/error.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/messages/error.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/messages/error.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/messages/error.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/messages/notice.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/messages/notice.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/messages/notice.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/messages/notice.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/messages/warning.png b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/messages/warning.png
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/images/messages/warning.png
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/images/messages/warning.png
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/default/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/default/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/default/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/djime-cerulean/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/djime-cerulean/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/djime-cerulean/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/djime-cerulean/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/drastic-dark/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/drastic-dark/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/drastic-dark/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/drastic-dark/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/kathleene/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/kathleene/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/kathleene/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/kathleene/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/olive/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/olive/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/olive/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/olive/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/orange/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/orange/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/orange/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/orange/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/red/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/red/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/red/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/red/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/reidb-greenish/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/reidb-greenish/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/reidb-greenish/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/reidb-greenish/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/warehouse/style.css b/mayan/apps/main/static/web_theme_media/stylesheets/themes/warehouse/style.css
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/stylesheets/themes/warehouse/style.css
rename to mayan/apps/main/static/web_theme_media/stylesheets/themes/warehouse/style.css
diff --git a/mayan/apps/web_theme/static/web_theme_media/test/spec_helper.rb b/mayan/apps/main/static/web_theme_media/test/spec_helper.rb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/test/spec_helper.rb
rename to mayan/apps/main/static/web_theme_media/test/spec_helper.rb
diff --git a/mayan/apps/web_theme/static/web_theme_media/test/themed_generator_spec.rb b/mayan/apps/main/static/web_theme_media/test/themed_generator_spec.rb
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/test/themed_generator_spec.rb
rename to mayan/apps/main/static/web_theme_media/test/themed_generator_spec.rb
diff --git a/mayan/apps/web_theme/static/web_theme_media/web-app-theme.gemspec b/mayan/apps/main/static/web_theme_media/web-app-theme.gemspec
similarity index 100%
rename from mayan/apps/web_theme/static/web_theme_media/web-app-theme.gemspec
rename to mayan/apps/main/static/web_theme_media/web-app-theme.gemspec
diff --git a/mayan/apps/main/templates/base.html b/mayan/apps/main/templates/base.html
index ff9c7055b0..7f91c4ff4b 100644
--- a/mayan/apps/main/templates/base.html
+++ b/mayan/apps/main/templates/base.html
@@ -1,476 +1,576 @@
-{% extends 'web_theme_base.html' %}
-
{% load i18n %}
-
-{% load project_tags %}
-{% load navigation_tags %}
-{% load settings %}
-{% load search_tags %}
{% load static %}
+
+{% load compress %}
+
{% load main_settings_tags %}
-{% load variable_tags %}
+{% load navigation_tags %}
+{% load project_tags %}
{% load registration_tags %}
+{% load search_tags %}
+{% load settings %}
+{% load theme_tags %}
+{% load variable_tags %}
-{% block web_theme_head %}
- {% if new_window_url %}
-
-
- {% endif %}
+{% get_theme as web_theme %}
+
+
+
+
+
+
{% project_name %}{{ request.new_window_url }}{% block title %}{% endblock %}
- {% if html_redirect %}
-
- {% endif %}
-{% endblock %}
-
-{% block html_title %}{% project_name %}{{ request.new_window_url }}{% block title %}{% endblock %}{% endblock %}
-
-{% block web_theme_project_name %}{% project_name %}{% if debug %} {% trans "(DEBUG)" %}{% endif %} - {% registered_name %}{% endblock %}
-
-{% block web_theme_stylesheets %}
-
-
-
-
-
- {% block stylesheets %}{% endblock %}
-{% endblock %}
-
-{% block web_theme_javascript %}
-
-
-
-
-
-
- {% block javascript %}{% endblock %}
-{% endblock %}
-
-{% block web_theme_user_navigation %}
-
{% trans 'User' %}:
- {% if not user.is_authenticated %}
- {% trans 'Anonymous' %}
- {% else %}
- {{ user.get_full_name|default:user }}
-
+ {% if new_window_url %}
+
+
{% endif %}
-
- {% get_setting "MIDDLEWARE_CLASSES" as middleware_classes %}
- {% if 'django.middleware.locale.LocaleMiddleware' in middleware_classes %}
-
-
-
- {% endif %}
- {% get_setting "LOGIN_URL" as login_url %}
-
{% if not user.is_authenticated %}{% trans 'Login' %}{% else %}{% trans 'Logout' %}{% endif %}
-{% endblock %}
+ {% if html_redirect %}
+
+ {% endif %}
-{% block web_theme_main_navigation %}
- {% get_top_menu_links %}
- {% for link in menu_links %}
- {% with 'true' as as_li %}
- {% with 'true' as hide_active_anchor %}
- {% with 'active' as li_class_active %}
- {% with 'first' as li_class_first %}
- {% include 'generic_subnavigation.html' %}
- {% endwith %}
- {% endwith %}
- {% endwith %}
- {% endwith %}
- {% endfor %}
-{% endblock %}
+ {% compress css %}
+
+
+
+
+
+
+
+
+
+ {% block stylesheets %}{% endblock %}
+
+ {% endcompress %}
+
+
+
+ {% if web_theme_view_type == 'plain' %}
+
+ {% block content_plain %}{% endblock %}
+
+ {% else %}
+ {% if not web_theme_hide_menus %}
+
{% endif %}
- {% endfor %}
- {% else %}
- {% get_object_navigation_links "form_header" as form_navigation_links %}
- {% if form_navigation_links %}
-
-
- {% with form_navigation_links as object_navigation_links %}
- {% with 'true' as as_li %}
- {% with 'true' as hide_active_anchor %}
- {% with 'active' as li_class_active %}
- {% with 'first' as li_class_first %}
- {% include 'generic_navigation.html' %}
- {% endwith %}
- {% endwith %}
- {% endwith %}
- {% endwith %}
- {% endwith %}
-
-
- {% endif %}
- {% endif %}
-{% endblock %}
-
-{% block web_theme_sidebar %}
- {% get_main_setting "SIDE_BAR_SEARCH" as side_bar_search %}
- {% if side_bar_search and not web_theme_hide_menus %}
- {% with 'true' as side_bar %}
- {% with 'true' as form_hide_required_text %}
- {% with '' as read_only %}
- {% with '' as object %}
- {% search_form %}
- {% endwith %}
- {% endwith %}
- {% endwith %}
- {% endwith %}
- {% endif %}
-
- {% get_object_navigation_links "secondary_menu" as object_navigation_links %}
- {% if object_navigation_links %}
-
-
{% trans "Secondary menu" %}
-
- {% with 'true' as as_li %}
- {% include 'generic_navigation.html' %}
- {% endwith %}
-
-
- {% endif %}
- {% if navigation_object_list %}
- {% for navigation_object_dict in navigation_object_list %}
- {% copy_variable navigation_object_dict.object as "navigation_object_name" %}
- {% get_object_navigation_links as object_navigation_links %}
- {% if object_navigation_links %}
-
- {% if navigation_object %}
- {% if navigation_object_dict.name %}
-
{% blocktrans with navigation_object_dict.name as name %}Actions for {{ name }}: {{ navigation_object }}{% endblocktrans %}
- {% else %}
-
{% blocktrans %}Actions for: {{ navigation_object }}{% endblocktrans %}
+
+
+ {% if messages %}
+
+
+ {% for message in messages %}
+
+ {% endfor %}
+
+
{% endif %}
- {% else %}
-
{% trans 'Available actions' %}
- {% endif %}
-
- {% with 'true' as as_li %}
- {% include 'generic_navigation.html' %}
- {% endwith %}
-
-
+
+ {% block messages %}{% endblock %}
+
+
+ {% if navigation_object_list %}
+ {% for navigation_object_dict in navigation_object_list %}
+ {% copy_variable navigation_object_dict.object as "navigation_object_name" %}
+ {% get_object_navigation_links "form_header" as form_navigation_links %}
+ {% if form_navigation_links %}
+
+
+ {% with form_navigation_links as object_navigation_links %}
+ {% with 'true' as as_li %}
+ {% with 'true' as hide_active_anchor %}
+ {% with 'active' as li_class_active %}
+ {% with 'first' as li_class_first %}
+ {% include 'generic_navigation.html' %}
+ {% endwith %}
+ {% endwith %}
+ {% endwith %}
+ {% endwith %}
+ {% endwith %}
+
+
+ {% endif %}
+ {% endfor %}
+ {% else %}
+ {% get_object_navigation_links "form_header" as form_navigation_links %}
+ {% if form_navigation_links %}
+
+
+ {% with form_navigation_links as object_navigation_links %}
+ {% with 'true' as as_li %}
+ {% with 'true' as hide_active_anchor %}
+ {% with 'active' as li_class_active %}
+ {% with 'first' as li_class_first %}
+ {% include 'generic_navigation.html' %}
+ {% endwith %}
+ {% endwith %}
+ {% endwith %}
+ {% endwith %}
+ {% endwith %}
+
+
+ {% endif %}
+ {% endif %}
+ {% block content %}{% endblock %}
+
+ {% block footer %}{% endblock %}
+
+
+
{% endif %}
- {% get_object_navigation_links "related" as object_navigation_links %}
- {% if object_navigation_links %}
-
-
{% trans "Related actions" %}
-
- {% with 'true' as as_li %}
- {% include 'generic_navigation.html' %}
- {% endwith %}
-
-
- {% endif %}
- {% get_object_navigation_links "sidebar" as object_navigation_links %}
- {% if object_navigation_links %}
-
-
{% trans 'Other available actions' %}
-
- {% with 'true' as as_li %}
- {% include 'generic_navigation.html' %}
- {% endwith %}
-
-
- {% endif %}
- {% endfor %}
- {% else %}
- {% get_object_navigation_links as object_navigation_links %}
- {% if object_navigation_links %}
-
- {% if navigation_object %}
- {% if object_name %}
-
{% blocktrans %}Actions for {{ object_name }}: {{ navigation_object }}{% endblocktrans %}
- {% else %}
- {% blocktrans %}Actions for: {{ navigation_object }}{% endblocktrans %}
- {% endif %}
- {% else %}
- {% trans 'Actions' %}
+
+
+ {% compress js %}
+
+
+ {% if enable_scroll_js %}
+
+
+ {% endif %}
+
+
+
+
+
+
+
+ {% block javascript %}{% endblock %}
+
+
+ {% endcompress %}
+
+
+
diff --git a/mayan/apps/web_theme/templates/pagination/pagination.html b/mayan/apps/main/templates/pagination/pagination.html
similarity index 100%
rename from mayan/apps/web_theme/templates/pagination/pagination.html
rename to mayan/apps/main/templates/pagination/pagination.html
diff --git a/mayan/apps/web_theme/templatetags/styling.py b/mayan/apps/main/templatetags/styling.py
similarity index 100%
rename from mayan/apps/web_theme/templatetags/styling.py
rename to mayan/apps/main/templatetags/styling.py
diff --git a/mayan/apps/web_theme/templatetags/theme_tags.py b/mayan/apps/main/templatetags/theme_tags.py
similarity index 100%
rename from mayan/apps/web_theme/templatetags/theme_tags.py
rename to mayan/apps/main/templatetags/theme_tags.py
diff --git a/mayan/apps/web_theme/__init__.py b/mayan/apps/web_theme/__init__.py
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/mayan/apps/web_theme/conf/__init__.py b/mayan/apps/web_theme/conf/__init__.py
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/mayan/apps/web_theme/conf/settings.py b/mayan/apps/web_theme/conf/settings.py
deleted file mode 100644
index 405b2814fc..0000000000
--- a/mayan/apps/web_theme/conf/settings.py
+++ /dev/null
@@ -1,14 +0,0 @@
-"""Configuration options for the web_theme app"""
-from django.utils.translation import ugettext_lazy as _
-
-from smart_settings.api import register_settings
-
-register_settings(
- namespace=u'web_theme',
- module=u'web_theme.conf.settings',
- settings=[
- {'name': u'THEME', 'global_name': u'WEB_THEME_THEME', 'default': u'activo', 'description': _(u'CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and warehouse.')},
- {'name': u'ENABLE_SCROLL_JS', 'global_name': u'WEB_THEME_ENABLE_SCROLL_JS', 'default': True, 'hidden': True},
- {'name': u'VERBOSE_LOGIN', 'global_name': u'WEB_THEME_VERBOSE_LOGIN', 'default': True, 'description': _(u'Display extra information in the login screen.')},
- ]
-)
diff --git a/mayan/apps/web_theme/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/ar/LC_MESSAGES/django.mo
deleted file mode 100644
index 0ffccb4b12..0000000000
Binary files a/mayan/apps/web_theme/locale/ar/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/ar/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/ar/LC_MESSAGES/django.po
deleted file mode 100644
index f45d87523e..0000000000
--- a/mayan/apps/web_theme/locale/ar/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:
-# Mohammed ALDOUB
, 2013
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2013-01-26 08:25+0000\n"
-"Last-Translator: Mohammed ALDOUB \n"
-"Language-Team: Arabic (http://www.transifex.com/projects/p/mayan-edms/"
-"language/ar/)\n"
-"Language: ar\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
-"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Display extra information in the login screen."
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "dismiss all notifications"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "close all"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "dismiss this notification"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "close"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Login"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "You are already logged in"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Redirecting you to the website entry point in 5 seconds."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"Or click here if redirection doesn't "
-"work."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr "First time login"
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr "Login using the following credentials:"
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr "Username: %(account)s"
-
-#: templates/web_theme_login.html:43
-#, fuzzy, python-format
-msgid "Email: %(email)s"
-msgstr "Username: %(account)s"
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr "Password: %(password)s"
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Previous"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Next"
diff --git a/mayan/apps/web_theme/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/bg/LC_MESSAGES/django.mo
deleted file mode 100644
index 0bf281680a..0000000000
Binary files a/mayan/apps/web_theme/locale/bg/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/bg/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/bg/LC_MESSAGES/django.po
deleted file mode 100644
index 6eabb22ba8..0000000000
--- a/mayan/apps/web_theme/locale/bg/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,120 +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:
-# Pavlin Koldamov , 2012
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: Bulgarian (http://www.transifex.com/projects/p/mayan-edms/"
-"language/bg/)\n"
-"Language: bg\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"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-"CSS тема за прилагане, опции: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish и "
-"warehouse."
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Показване на допълнителна информация в прозореца за вход."
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "отказване на всички промени"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "затваряне на всичко"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "отказ от това съобщение"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "затваряне"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Вход"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "Вече сте влезли"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Прехвърляме Ви към началото на уебсайта, 5 секунди."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"Или натиснете тук ако прехвърлянето "
-"не сработи."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr "Логване за първи път"
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-"Вие приключихте инсталирането на Mayan EDMS, поздравления!"
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr "Логване, използвайки следните параметри:"
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr "Потребителско име: %(account)s"
-
-#: templates/web_theme_login.html:43
-#, fuzzy, python-format
-msgid "Email: %(email)s"
-msgstr "Потребителско име: %(account)s"
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr "Парола: %(password)s"
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-"Моля променете паролата, за да повишите нивото на сигурност и да "
-"деактивирате това съобщение."
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Предна"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Следваща"
diff --git a/mayan/apps/web_theme/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/bs_BA/LC_MESSAGES/django.mo
deleted file mode 100644
index 783d234383..0000000000
Binary files a/mayan/apps/web_theme/locale/bs_BA/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/bs_BA/LC_MESSAGES/django.po
deleted file mode 100644
index e3ed877c4f..0000000000
--- a/mayan/apps/web_theme/locale/bs_BA/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,121 +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:
-# www.ping.ba , 2013
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2013-06-24 15:49+0000\n"
-"Last-Translator: www.ping.ba \n"
-"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/"
-"projects/p/mayan-edms/language/bs_BA/)\n"
-"Language: bs_BA\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-"CSS tema za primjenu, opcije su : amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish i "
-"warehouse."
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Prikaži dodatne informacije na login ekranu."
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "ne prikazuj više ove notifikacije"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "zatvori sve"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "ne prikazuj više ovu notifikaciju"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "zatvori"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Login"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "Već ste prijavljeni/logirani"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Preusmjeravamo vas na website entry point za 5 sekundi."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"Ili birajte here ako redirekcja ne "
-"radi."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr "Prijava - prvi put"
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-"Upravo ste završili instalaciju Mayan EDMS, čestitamo!"
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr "Prijava korištenjem sljedećih podataka:"
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr "Korisnik: %(account)s"
-
-#: templates/web_theme_login.html:43
-#, fuzzy, python-format
-msgid "Email: %(email)s"
-msgstr "Korisnik: %(account)s"
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr "Pasvord: %(password)s"
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-"Ne zaboravite promijeniti pasvord da pojačate sigurnost i onemogućite dalje "
-"prikazivanje ove poruke."
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Prethodni"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Sljedeći"
diff --git a/mayan/apps/web_theme/locale/da/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/da/LC_MESSAGES/django.mo
deleted file mode 100644
index d87f6f4ee9..0000000000
Binary files a/mayan/apps/web_theme/locale/da/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/da/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/da/LC_MESSAGES/django.po
deleted file mode 100644
index 7b8b7cc260..0000000000
--- a/mayan/apps/web_theme/locale/da/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,111 +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: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: Danish (http://www.transifex.com/projects/p/mayan-edms/"
-"language/da/)\n"
-"Language: da\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"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr ""
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr ""
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr ""
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr ""
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr ""
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr ""
-
-#: templates/web_theme_login.html:43
-#, python-format
-msgid "Email: %(email)s"
-msgstr ""
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr ""
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr ""
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr ""
diff --git a/mayan/apps/web_theme/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/de_DE/LC_MESSAGES/django.mo
deleted file mode 100644
index ae60e70d2b..0000000000
Binary files a/mayan/apps/web_theme/locale/de_DE/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/de_DE/LC_MESSAGES/django.po
deleted file mode 100644
index eac015938c..0000000000
--- a/mayan/apps/web_theme/locale/de_DE/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,123 +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:
-# Mathias Behrle , 2014
-# Stefan Lodders , 2012
-# tetjarediske , 2012
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2014-03-12 16:12+0000\n"
-"Last-Translator: Mathias Behrle \n"
-"Language-Team: German (Germany) (http://www.transifex.com/projects/p/mayan-"
-"edms/language/de_DE/)\n"
-"Language: de_DE\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"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-"Anzuwendendes CSS Thema, Optionen sind: amro, bec, bec-green, blue, default, "
-"djime-cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish "
-"und warehouse."
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Erweiterte Informationen auf dem Login-Bildschirm anzeigen."
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "Alle Benachrichtigungen bestätigen"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "Alle schließen"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "Diese Benachrichtigung bestätigen"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "Schließen"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Login"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "Sind sind bereits angemeldet"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Umleitung zur Startseite in 5 Sekunden."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"Oder hier klicken , wenn die "
-"Umleitung nicht funktioniert."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr "Erster Login"
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-"Sie haben soeben die Installation des Mayan EDMS beendet. "
-"Herzlichen Glückwunsch!"
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr "Einloggen mit folgenden Zugangsdaten:"
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr "Benutzername: %(account)s"
-
-#: templates/web_theme_login.html:43
-#, fuzzy, python-format
-msgid "Email: %(email)s"
-msgstr "Benutzername: %(account)s"
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr "Passwort: %(password)s"
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-"Ändern Sie das Passwort, um die Sicherheit zu erhöhen und diese Nachricht "
-"abzuschalten."
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Zurück"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Weiter"
diff --git a/mayan/apps/web_theme/locale/en/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/en/LC_MESSAGES/django.mo
deleted file mode 100644
index c930a0fb47..0000000000
Binary files a/mayan/apps/web_theme/locale/en/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/en/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/en/LC_MESSAGES/django.po
deleted file mode 100644
index ba87f86cd6..0000000000
--- a/mayan/apps/web_theme/locale/en/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,120 +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: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/"
-"language/en/)\n"
-"Language: en\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"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Display extra information in the login screen."
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "dismiss all notifications"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "close all"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "dismiss this notification"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "close"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Login"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "You are already logged in"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Redirecting you to the website entry point in 5 seconds."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"Or click here if redirection doesn't "
-"work."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr "First time login"
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr "Login using the following credentials:"
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr "Username: %(account)s"
-
-#: templates/web_theme_login.html:43
-#, fuzzy, python-format
-msgid "Email: %(email)s"
-msgstr "Username: %(account)s"
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr "Password: %(password)s"
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Previous"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Next"
diff --git a/mayan/apps/web_theme/locale/es/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/es/LC_MESSAGES/django.mo
deleted file mode 100644
index 5e5af385af..0000000000
Binary files a/mayan/apps/web_theme/locale/es/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/es/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/es/LC_MESSAGES/django.po
deleted file mode 100644
index efb3bcc8af..0000000000
--- a/mayan/apps/web_theme/locale/es/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,121 +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: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: Spanish (http://www.transifex.com/projects/p/mayan-edms/"
-"language/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"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-"Tema CSS para aplicar, las opciones son: amro, bec, bec-green, blue, "
-"default, djime-cerulean, drastic-dark, kathleene, olive, orange, red, reidb-"
-"greenish y warehouse."
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Mostrar información adicional en la pantalla de inicio de sesión."
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "cerrar todas las notificaciones"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "cerrar todos"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "cerrar esta notificación"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "cerrar"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Iniciar sesión"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "Usted ya ha entrado"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Se va a redirigir al punto de entrada al sitio web en 5 segundos."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"O haga clic aquí si la redirección no "
-"funciona."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr "Primer inicio de sesión"
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-"¡Felicitaciones! Usted acaba de terminar de instalar Mayan EDMS"
-"strong>."
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr "Inicie sesión con las siguientes credenciales:"
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr "Nombre de usuario: %(account)s"
-
-#: templates/web_theme_login.html:43
-#, fuzzy, python-format
-msgid "Email: %(email)s"
-msgstr "Nombre de usuario: %(account)s"
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr "Contraseña: %(password)s"
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-"Asegúrese de cambiar la contraseña para aumentar la seguridad y para "
-"deshabilitar este mensaje."
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Anterior"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Siguiente"
diff --git a/mayan/apps/web_theme/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/fa/LC_MESSAGES/django.mo
deleted file mode 100644
index 6bac2b6522..0000000000
Binary files a/mayan/apps/web_theme/locale/fa/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/fa/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/fa/LC_MESSAGES/django.po
deleted file mode 100644
index a9df9a1fbf..0000000000
--- a/mayan/apps/web_theme/locale/fa/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,111 +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: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2013-06-16 18:57+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: Persian (http://www.transifex.com/projects/p/mayan-edms/"
-"language/fa/)\n"
-"Language: fa\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr ""
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr ""
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr ""
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr ""
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr ""
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr ""
-
-#: templates/web_theme_login.html:43
-#, python-format
-msgid "Email: %(email)s"
-msgstr ""
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr ""
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr ""
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr ""
diff --git a/mayan/apps/web_theme/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/fr/LC_MESSAGES/django.mo
deleted file mode 100644
index e43afc77b4..0000000000
Binary files a/mayan/apps/web_theme/locale/fr/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/fr/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/fr/LC_MESSAGES/django.po
deleted file mode 100644
index c48155ddae..0000000000
--- a/mayan/apps/web_theme/locale/fr/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:
-# PatrickHetu , 2012
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: French (http://www.transifex.com/projects/p/mayan-edms/"
-"language/fr/)\n"
-"Language: fr\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"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-"Thème CSS à appliquer, les options sont les suivantes: amro, bec, bec-vert, "
-"bleu, défaut, Djime-céruléen, drastique-foncé, kathleene, d'olive, orange, "
-"rouge, reidb-verdâtre et entrepôt."
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Afficher des informations supplémentaires à l'écran de connexion."
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "Fermer toutes les notifications"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "Fermez toutes les notifications"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "Fermer cette notification"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "Fermer"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Connexion"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "Vous êtes déjà connecté"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Vous allez être redirigé l'accueil du site Web dans 5 secondes."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"Ou cliquez ici si la redirection ne "
-"fonctionne pas."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr "Première connexion"
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-"Vous venez de compléter l'installation de EDMS mayas, "
-"félicitations!"
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-"Connectez-vous en utilisant les informations d'identification suivantes:"
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr "Nom d'utilisateur: %(account)s"
-
-#: templates/web_theme_login.html:43
-#, fuzzy, python-format
-msgid "Email: %(email)s"
-msgstr "Nom d'utilisateur: %(account)s"
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr "Mot de passe: %(password)s"
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-"Soyez certain de changer votre mot de passe pour accroître la sécurité et "
-"pour ne plus avoir ce message."
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Précédent"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Suivant"
diff --git a/mayan/apps/web_theme/locale/hr_HR/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/hr_HR/LC_MESSAGES/django.mo
deleted file mode 100644
index 934a17d52e..0000000000
Binary files a/mayan/apps/web_theme/locale/hr_HR/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/hr_HR/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/hr_HR/LC_MESSAGES/django.po
deleted file mode 100644
index 9420113871..0000000000
--- a/mayan/apps/web_theme/locale/hr_HR/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,112 +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: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/mayan-"
-"edms/language/hr_HR/)\n"
-"Language: hr_HR\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr ""
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr ""
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr ""
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr ""
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr ""
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr ""
-
-#: templates/web_theme_login.html:43
-#, python-format
-msgid "Email: %(email)s"
-msgstr ""
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr ""
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr ""
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr ""
diff --git a/mayan/apps/web_theme/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/hu/LC_MESSAGES/django.mo
deleted file mode 100644
index 8d01b6cfd4..0000000000
Binary files a/mayan/apps/web_theme/locale/hu/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/hu/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/hu/LC_MESSAGES/django.po
deleted file mode 100644
index 2fe8c259e5..0000000000
--- a/mayan/apps/web_theme/locale/hu/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,111 +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: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: Hungarian (http://www.transifex.com/projects/p/mayan-edms/"
-"language/hu/)\n"
-"Language: hu\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"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr ""
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr ""
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr ""
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr ""
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr ""
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr ""
-
-#: templates/web_theme_login.html:43
-#, python-format
-msgid "Email: %(email)s"
-msgstr ""
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr ""
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr ""
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr ""
diff --git a/mayan/apps/web_theme/locale/id/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/id/LC_MESSAGES/django.mo
deleted file mode 100644
index c87384d68b..0000000000
Binary files a/mayan/apps/web_theme/locale/id/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/id/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/id/LC_MESSAGES/django.po
deleted file mode 100644
index 51f9c35a5f..0000000000
--- a/mayan/apps/web_theme/locale/id/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,111 +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: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2011-11-03 21:42+0000\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: Indonesian (http://www.transifex.com/projects/p/mayan-edms/"
-"language/id/)\n"
-"Language: id\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr ""
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr ""
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr ""
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr ""
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr ""
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr ""
-
-#: templates/web_theme_login.html:43
-#, python-format
-msgid "Email: %(email)s"
-msgstr ""
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr ""
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr ""
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr ""
diff --git a/mayan/apps/web_theme/locale/it/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/it/LC_MESSAGES/django.mo
deleted file mode 100644
index 3077aaef07..0000000000
Binary files a/mayan/apps/web_theme/locale/it/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/it/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/it/LC_MESSAGES/django.po
deleted file mode 100644
index aa00d163e4..0000000000
--- a/mayan/apps/web_theme/locale/it/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,118 +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:
-# Carlo Zanatto <>, 2012
-# Pierpaolo Baldan , 2011
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: Italian (http://www.transifex.com/projects/p/mayan-edms/"
-"language/it/)\n"
-"Language: it\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"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-"Tema CSS da applicare, le opzioni sono: ABN AMRO, bec, bec-verde, blu, di "
-"default, djime-ceruleo, drastica-scuro, kathleene, oliva, arancio, rosso, "
-"reidb-verdastro e magazzino."
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Mostra informazioni extra al login"
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "Smetti tutte le notifiche"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "chiudi tutto"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "respingere questa notifica"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "chiudi"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Login"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "Sei già loggato"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Reindirizzamento al tuo punto di ingresso al sito in 5 secondi."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"Oppure click qui if per essere "
-"rimandato al tuo sito nel caso non funzioni."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr ""
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr ""
-
-#: templates/web_theme_login.html:43
-#, python-format
-msgid "Email: %(email)s"
-msgstr ""
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr ""
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Precedente"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Successivo"
diff --git a/mayan/apps/web_theme/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/nl_NL/LC_MESSAGES/django.mo
deleted file mode 100644
index 877cc2dd6a..0000000000
Binary files a/mayan/apps/web_theme/locale/nl_NL/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/nl_NL/LC_MESSAGES/django.po
deleted file mode 100644
index 69914433b3..0000000000
--- a/mayan/apps/web_theme/locale/nl_NL/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,111 +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: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/"
-"mayan-edms/language/nl_NL/)\n"
-"Language: nl_NL\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"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr ""
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr ""
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr ""
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr ""
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr ""
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr ""
-
-#: templates/web_theme_login.html:43
-#, python-format
-msgid "Email: %(email)s"
-msgstr ""
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr ""
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr ""
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr ""
diff --git a/mayan/apps/web_theme/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/pl/LC_MESSAGES/django.mo
deleted file mode 100644
index 69f8ab33a5..0000000000
Binary files a/mayan/apps/web_theme/locale/pl/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/pl/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/pl/LC_MESSAGES/django.po
deleted file mode 100644
index f8a9754e0c..0000000000
--- a/mayan/apps/web_theme/locale/pl/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,113 +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:
-# mic , 2012
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: Polish (http://www.transifex.com/projects/p/mayan-edms/"
-"language/pl/)\n"
-"Language: pl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr ""
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr ""
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "Użytkownik jest już zalogowany"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr ""
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr ""
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr ""
-
-#: templates/web_theme_login.html:43
-#, python-format
-msgid "Email: %(email)s"
-msgstr ""
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr ""
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Poprzedni"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Następny"
diff --git a/mayan/apps/web_theme/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/pt/LC_MESSAGES/django.mo
deleted file mode 100644
index cc84cae91e..0000000000
Binary files a/mayan/apps/web_theme/locale/pt/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/pt/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/pt/LC_MESSAGES/django.po
deleted file mode 100644
index f068758514..0000000000
--- a/mayan/apps/web_theme/locale/pt/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,118 +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:
-# emersonsoares , 2011
-# Vítor Figueiró , 2012
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: Portuguese (http://www.transifex.com/projects/p/mayan-edms/"
-"language/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"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-"Tema CSS a ser aplicado, as opções são: amro, bec, bec-green, blue, default, "
-"djime-cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish "
-"and warehouse."
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Exibir informações extras no ecrã de login."
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "descartar todas as notificações"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "fechar todos"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "descartar esta notificação"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "fechar"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Login"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "Já se encontra autenticado"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Redirecionando-o para o ponto de entrada do site em 5 segundos."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"Ou clique aqui se o redirecionamento "
-"não funcionar."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr ""
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr ""
-
-#: templates/web_theme_login.html:43
-#, python-format
-msgid "Email: %(email)s"
-msgstr ""
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr ""
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Anterior"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Próximo"
diff --git a/mayan/apps/web_theme/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/pt_BR/LC_MESSAGES/django.mo
deleted file mode 100644
index 0b706c8971..0000000000
Binary files a/mayan/apps/web_theme/locale/pt_BR/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/pt_BR/LC_MESSAGES/django.po
deleted file mode 100644
index 0944e756b4..0000000000
--- a/mayan/apps/web_theme/locale/pt_BR/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,117 +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:
-# emersonsoares , 2011
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/"
-"mayan-edms/language/pt_BR/)\n"
-"Language: pt_BR\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"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-"Tema CSS a ser aplicado, as opções são: amro, bec, bec-green, blue, default, "
-"djime-cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish "
-"and warehouse."
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Exibir informações extras na tela de login."
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "rejeitar todas as notificações"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "fechar todos"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "descartar essa notificação"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "fechar"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Login"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "Você já está logado"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Redirecionando você para o ponto de entrada do site em 5 segundos."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"Ou clique aqui se o redirecionamento "
-"não funcionar."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr ""
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr ""
-
-#: templates/web_theme_login.html:43
-#, python-format
-msgid "Email: %(email)s"
-msgstr ""
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr ""
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Anterior"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Próximo"
diff --git a/mayan/apps/web_theme/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/ro_RO/LC_MESSAGES/django.mo
deleted file mode 100644
index 6ef6d8a45f..0000000000
Binary files a/mayan/apps/web_theme/locale/ro_RO/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/ro_RO/LC_MESSAGES/django.po
deleted file mode 100644
index 888748a6bf..0000000000
--- a/mayan/apps/web_theme/locale/ro_RO/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,121 +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:
-# Badea Gabriel , 2013
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2013-02-10 14:23+0000\n"
-"Last-Translator: Badea Gabriel \n"
-"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/mayan-"
-"edms/language/ro_RO/)\n"
-"Language: ro_RO\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
-"2:1));\n"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-"Tema CSS pentru a aplica, opțiunile sunt: amro, bec, bec-green, blue, "
-"default, djime-cerulean, drastic-dark, kathleene, olive, orange, red, reidb-"
-"greenish and warehouse."
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Afișarea informațiilor suplimentare, în ecranul de autentificare."
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "respingerea tuturor notificărilor"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "închide toate"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "respinge această notificare"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "închide"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Login"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "Sunteți deja autentificat"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Redirecționare către punctul de intrare în site în 5 secunde."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"Sau faceți clic aici dacă "
-"redirecționarea nu funcționează."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr "Prima autentificare"
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-"Tocmai ați terminat de instalat Mayan EDMS, felicitări!"
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr "Intrare utilizând acreditările următoarele:"
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr "Utilizator: %(account)s"
-
-#: templates/web_theme_login.html:43
-#, fuzzy, python-format
-msgid "Email: %(email)s"
-msgstr "Utilizator: %(account)s"
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr "Parola: %(password)s"
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-"Asigurați-vă că pentru a schimba parola pentru a spori securitatea și pentru "
-"a dezactiva acest mesaj."
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Precedent"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Următor"
diff --git a/mayan/apps/web_theme/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/ru/LC_MESSAGES/django.mo
deleted file mode 100644
index ece4ef41e6..0000000000
Binary files a/mayan/apps/web_theme/locale/ru/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/ru/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/ru/LC_MESSAGES/django.po
deleted file mode 100644
index c199e4fa6a..0000000000
--- a/mayan/apps/web_theme/locale/ru/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,120 +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-2013
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2013-05-14 06:41+0000\n"
-"Last-Translator: Sergey Glita \n"
-"Language-Team: Russian (http://www.transifex.com/projects/p/mayan-edms/"
-"language/ru/)\n"
-"Language: ru\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-"Темы CSS на выбор: amro, bec, bec-green, blue, default, djime-cerulean, "
-"drastic-dark, kathleene, olive, orange, red, reidb-greenish and warehouse."
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Показать дополнительную информацию в при входе."
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "убрать все уведомления"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "закрыть все"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "убрать это уведомление"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "закрыть"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Войти"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "Вы уже вошли в систему"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Перенаправит вас на вход веб-сайта через 5 секунд."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"Или нажмите здесь , если "
-"перенаправление не работает."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr "Первое время входа в систему"
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-"Вы только что закончили установку Mayan EDMS, поздравляем!"
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr "Войти, используя следующие учетные данные:"
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr "Имя пользователя: %(account)s"
-
-#: templates/web_theme_login.html:43
-#, fuzzy, python-format
-msgid "Email: %(email)s"
-msgstr "Имя пользователя: %(account)s"
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr "Пароль: %(password)s"
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-"Обязательно измените пароль для повышения безопасности и отключения этого "
-"сообщения."
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Предыдущий"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Следующий"
diff --git a/mayan/apps/web_theme/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/sl_SI/LC_MESSAGES/django.mo
deleted file mode 100644
index 7c6a2e77ca..0000000000
Binary files a/mayan/apps/web_theme/locale/sl_SI/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/sl_SI/LC_MESSAGES/django.po
deleted file mode 100644
index 7ca85d1be5..0000000000
--- a/mayan/apps/web_theme/locale/sl_SI/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,112 +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: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2012-12-12 06:07+0000\n"
-"Last-Translator: Roberto Rosario\n"
-"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/"
-"mayan-edms/language/sl_SI/)\n"
-"Language: sl_SI\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
-"%100==4 ? 2 : 3);\n"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr ""
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr ""
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr ""
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr ""
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr ""
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr ""
-
-#: templates/web_theme_login.html:43
-#, python-format
-msgid "Email: %(email)s"
-msgstr ""
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr ""
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr ""
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr ""
diff --git a/mayan/apps/web_theme/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/tr_TR/LC_MESSAGES/django.mo
deleted file mode 100644
index b3fcf43418..0000000000
Binary files a/mayan/apps/web_theme/locale/tr_TR/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/tr_TR/LC_MESSAGES/django.po
deleted file mode 100644
index c2fa5357d3..0000000000
--- a/mayan/apps/web_theme/locale/tr_TR/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,112 +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:
-# Caner Başaran , 2013
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2013-06-10 10:55+0000\n"
-"Last-Translator: Caner Başaran \n"
-"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/mayan-"
-"edms/language/tr_TR/)\n"
-"Language: tr_TR\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr ""
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "tümünü kapat"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr ""
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "kapat"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Giriş"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr ""
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr ""
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr "İlk defa giriş"
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr ""
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr "Kullanıcı adı: %(account)s"
-
-#: templates/web_theme_login.html:43
-#, fuzzy, python-format
-msgid "Email: %(email)s"
-msgstr "Kullanıcı adı: %(account)s"
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr "Parola: %(password)s"
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Geri"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "İleri"
diff --git a/mayan/apps/web_theme/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/web_theme/locale/vi_VN/LC_MESSAGES/django.mo
deleted file mode 100644
index 7db227b86b..0000000000
Binary files a/mayan/apps/web_theme/locale/vi_VN/LC_MESSAGES/django.mo and /dev/null differ
diff --git a/mayan/apps/web_theme/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/web_theme/locale/vi_VN/LC_MESSAGES/django.po
deleted file mode 100644
index 402d0f4f86..0000000000
--- a/mayan/apps/web_theme/locale/vi_VN/LC_MESSAGES/django.po
+++ /dev/null
@@ -1,118 +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:
-# Trung Phan Minh , 2013
-msgid ""
-msgstr ""
-"Project-Id-Version: Mayan EDMS\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-07-31 19:55-0400\n"
-"PO-Revision-Date: 2013-01-25 00:39+0000\n"
-"Last-Translator: Trung Phan Minh \n"
-"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/projects/p/"
-"mayan-edms/language/vi_VN/)\n"
-"Language: vi_VN\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#: conf/settings.py:10
-msgid ""
-"CSS theme to apply, options are: amro, bec, bec-green, blue, default, djime-"
-"cerulean, drastic-dark, kathleene, olive, orange, red, reidb-greenish and "
-"warehouse."
-msgstr ""
-
-#: conf/settings.py:12
-msgid "Display extra information in the login screen."
-msgstr "Hiển thị thông tin bổ sung trong màn hình đăng nhập"
-
-#: templates/web_theme_base.html:75
-msgid "dismiss all notifications"
-msgstr "bỏ tất cả các thông báo"
-
-#: templates/web_theme_base.html:75
-msgid "close all"
-msgstr "đóng tất cả"
-
-#: templates/web_theme_base.html:76
-msgid "dismiss this notification"
-msgstr "bỏ thông báo này"
-
-#: templates/web_theme_base.html:76
-msgid "close"
-msgstr "đóng"
-
-#: templates/web_theme_login.html:15 templates/web_theme_login.html.py:53
-#: templates/web_theme_login.html:61
-msgid "Login"
-msgstr "Đăng nhập"
-
-#: templates/web_theme_login.html:21
-msgid "You are already logged in"
-msgstr "Bạn đã được đăng nhập"
-
-#: templates/web_theme_login.html:24
-msgid "Redirecting you to the website entry point in 5 seconds."
-msgstr "Đang chuyển hướng đến website trong vòng 5 giây."
-
-#: templates/web_theme_login.html:27
-#, python-format
-msgid ""
-"Or click here if redirection doesn't "
-"work."
-msgstr ""
-"Hoặc click vào đây nếu chuyển hướng "
-"không làm việc."
-
-#: templates/web_theme_login.html:38
-msgid "First time login"
-msgstr "Đăng nhập lần đầu"
-
-#: templates/web_theme_login.html:40
-msgid ""
-"You have just finished installing Mayan EDMS, "
-"congratulations!"
-msgstr ""
-"Bạn đã cài đặt xong Hệ thống quản lý tài liệu điện tử Mayan EDMS"
-"strong>. Xin chúc mừng bạn!"
-
-#: templates/web_theme_login.html:41
-msgid "Login using the following credentials:"
-msgstr "Đăng nhập dùng các thông tin sau:"
-
-#: templates/web_theme_login.html:42
-#, python-format
-msgid "Username: %(account)s"
-msgstr "Người dùng: %(account)s"
-
-#: templates/web_theme_login.html:43
-#, fuzzy, python-format
-msgid "Email: %(email)s"
-msgstr "Người dùng: %(account)s"
-
-#: templates/web_theme_login.html:44
-#, python-format
-msgid "Password: %(password)s"
-msgstr "Mật khẩu: %(password)s"
-
-#: templates/web_theme_login.html:45
-msgid ""
-"Be sure to change the password to increase security and to disable this "
-"message."
-msgstr ""
-"Bạn nên thay đổi mật khẩu để tăng tính bảo mật và để không nhìn thấy lời "
-"nhắc này nữa."
-
-#: templates/pagination/pagination.html:6
-#: templates/pagination/pagination.html:8
-msgid "Previous"
-msgstr "Trước"
-
-#: templates/pagination/pagination.html:26
-#: templates/pagination/pagination.html:28
-msgid "Next"
-msgstr "Tiếp theo"
diff --git a/mayan/apps/web_theme/models.py b/mayan/apps/web_theme/models.py
deleted file mode 100644
index 71a8362390..0000000000
--- a/mayan/apps/web_theme/models.py
+++ /dev/null
@@ -1,3 +0,0 @@
-from django.db import models
-
-# Create your models here.
diff --git a/mayan/apps/web_theme/templates/web_theme_base.html b/mayan/apps/web_theme/templates/web_theme_base.html
deleted file mode 100644
index d7545803b3..0000000000
--- a/mayan/apps/web_theme/templates/web_theme_base.html
+++ /dev/null
@@ -1,142 +0,0 @@
-{% load i18n %}
-{% load static %}
-
-{% load compress %}
-
-{% load theme_tags %}
-
-{% get_theme as web_theme %}
-
-
-
-
-
- {% block html_title %}{% endblock %}
-
- {% block web_theme_head %}{% endblock %}
-
- {% compress css %}
-
-
-
-
- {% block web_theme_stylesheets %}{% endblock %}
- {% endcompress %}
-
-
-
- {% if web_theme_view_type == 'plain' %}
-
- {% block content_plain %}{% endblock %}
-
- {% else %}
- {% if not web_theme_hide_menus %}
-
- {% endif %}
-
-
- {% if messages %}
-
-
- {% for message in messages %}
-
- {% endfor %}
-
-
- {% endif %}
- {% block web_theme_messages %}{% endblock %}
-
- {#{% if not web_theme_hide_menus %}#}
- {% block web_theme_secondary_navigation %}{% endblock %}
- {#{% endif %}#}
- {% block web_theme_content %}{% endblock %}
-
- {% block web_theme_footer %}{% endblock %}
-
-
-
- {% endif %}
-
-
- {% compress js %}
-
-
- {% if enable_scroll_js %}
-
-
- {% endif %}
-
- {% block web_theme_javascript %}{% endblock %}
-
-
- {% endcompress %}
-
-
-
diff --git a/mayan/apps/web_theme/templates/web_theme_login.html b/mayan/apps/web_theme/templates/web_theme_login.html
deleted file mode 100644
index da8a5575da..0000000000
--- a/mayan/apps/web_theme/templates/web_theme_login.html
+++ /dev/null
@@ -1,73 +0,0 @@
-{% extends 'web_theme_base.html' %}
-
-{% load i18n %}
-
-{% load theme_tags %}
-{% load autoadmin_tags %}
-
-{% block web_theme_head %}
- {% if user.is_authenticated %}
- {% get_login_redirect_url %}
-
- {% endif %}
-{% endblock %}
-
-{% block html_title %}{% trans 'Login' %}{% endblock %}
-
- {% if user.is_authenticated %}
- {% block web_theme_content %}
- {% get_login_redirect_url %}
-
-
{% trans 'You are already logged in' %}
-
-
- {% trans 'Redirecting you to the website entry point in 5 seconds.' %}
-
-
- {% blocktrans %}Or click
here if redirection doesn't work.{% endblocktrans %}
-
-
-
- {% endblock %}
- {% else %}
- {% block content_plain %}
- {% auto_admin_properties %}
- {% if auto_admin_properties.account %}
-
-
-
{% trans "First time login" %}
-
-
{% trans 'You have just finished installing Mayan EDMS, congratulations!' %}
-
{% trans 'Login using the following credentials:' %}
-
{% blocktrans with auto_admin_properties.account as account %}Username: {{ account }}{% endblocktrans %}
-
{% blocktrans with auto_admin_properties.account.email as email %}Email: {{ email }}{% endblocktrans %}
-
{% blocktrans with auto_admin_properties.password as password %}Password: {{ password }}{% endblocktrans %}
-
{% trans 'Be sure to change the password to increase security and to disable this message.' %}
-
-
-
- {% endif %}
-
-
{% block project_name %}{% endblock %}
-
-
{% trans 'Login' %}
-
-
- {% get_web_theme_setting "VERBOSE_LOGIN" as verbose_login %}
- {% if verbose_login %}
- {% include 'verbose_login.html' %}
- {% endif %}
- {% endblock %}
- {% endif %}
diff --git a/mayan/apps/web_theme/templatetags/__init__.py b/mayan/apps/web_theme/templatetags/__init__.py
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/mayan/apps/web_theme/views.py b/mayan/apps/web_theme/views.py
deleted file mode 100644
index 60f00ef0ef..0000000000
--- a/mayan/apps/web_theme/views.py
+++ /dev/null
@@ -1 +0,0 @@
-# Create your views here.
diff --git a/mayan/settings/base.py b/mayan/settings/base.py
index 470302e689..105cb754d5 100644
--- a/mayan/settings/base.py
+++ b/mayan/settings/base.py
@@ -61,7 +61,6 @@ INSTALLED_APPS = (
'smart_settings',
'navigation',
'lock_manager',
- 'web_theme',
# pagination needs to go after web_theme so that the pagination template
# if found
'pagination',