From fd147fc19893a44e5e97be165f290524c8bc1912 Mon Sep 17 00:00:00 2001 From: abhiprojectz Date: Tue, 18 May 2021 10:42:02 +0530 Subject: [PATCH] adds i18tag --- project/webapp/templates/account.html | 1 + project/webapp/templates/base/less_headers/account_less.html | 1 + project/webapp/templates/base/less_headers/feed_less.html | 1 + project/webapp/templates/base/less_headers/login_less.html | 1 + project/webapp/templates/base/less_headers/setup_less.html | 1 + project/webapp/templates/base/less_headers/thread_less.html | 1 + project/webapp/templates/base/links.html | 1 + project/webapp/templates/beta_blocker.html | 1 + project/webapp/templates/beta_register.html | 1 + project/webapp/templates/email/base_email_template.html | 1 + project/webapp/templates/feed.html | 1 + project/webapp/templates/general-message.html | 1 + project/webapp/templates/invite.html | 1 + project/webapp/templates/login.html | 1 + project/webapp/templates/partials/account/account_base.html | 2 +- .../webapp/templates/partials/account/account_settings.html | 1 + project/webapp/templates/partials/account/account_sidebar.html | 1 + project/webapp/templates/partials/account/tabs/followers.html | 1 + project/webapp/templates/partials/account/tabs/following.html | 1 + project/webapp/templates/partials/account/tabs/my_bills.html | 1 + project/webapp/templates/partials/account/tabs/my_civis.html | 1 + project/webapp/templates/partials/account/tabs/my_issues.html | 1 + .../webapp/templates/partials/account/utils/account_bill.html | 1 + .../webapp/templates/partials/account/utils/account_civi.html | 1 + .../webapp/templates/partials/account/utils/account_issue.html | 1 + .../templates/partials/account/utils/representative_card.html | 1 + project/webapp/templates/partials/account/utils/user_card.html | 1 + project/webapp/templates/partials/account/utils/user_chip.html | 1 + project/webapp/templates/partials/feed/categories.html | 1 + project/webapp/templates/partials/feed/feed_base.html | 1 + project/webapp/templates/partials/feed/feed_list.html | 1 + project/webapp/templates/partials/feed/new_thread.html | 1 + project/webapp/templates/partials/feed/thread_card.html | 1 + .../webapp/templates/partials/login/beta_register_base.html | 1 + project/webapp/templates/partials/login/entry_base.html | 1 + project/webapp/templates/partials/login/login_base.html | 1 + project/webapp/templates/partials/login/register_base.html | 1 + .../templates/partials/notifications/notification_base.html | 1 + .../templates/partials/notifications/notification_item.html | 1 + project/webapp/templates/partials/thread/edit_thread.html | 1 + project/webapp/templates/partials/thread/edit_wiki.html | 1 + project/webapp/templates/partials/thread/new_civi.html | 2 +- project/webapp/templates/partials/thread/new_response.html | 1 + project/webapp/templates/partials/thread/thread_base.html | 1 + project/webapp/templates/partials/thread/thread_body.html | 1 + project/webapp/templates/partials/thread/thread_nav.html | 1 + project/webapp/templates/partials/thread/thread_outline.html | 1 + project/webapp/templates/partials/thread/thread_responses.html | 1 + project/webapp/templates/partials/thread/thread_wiki.html | 1 + project/webapp/templates/partials/user-setup/step0.html | 1 + project/webapp/templates/partials/user-setup/step1.html | 1 + project/webapp/templates/partials/user-setup/step2.html | 1 + .../webapp/templates/partials/user-setup/user-setup-base.html | 1 + project/webapp/templates/partials/utils/civi.html | 1 + project/webapp/templates/partials/utils/global_nav.html | 1 + project/webapp/templates/partials/utils/profile_button.html | 1 + project/webapp/templates/partials/utils/response.html | 1 + project/webapp/templates/static_templates/about.html | 3 ++- project/webapp/templates/static_templates/how_it_works.html | 1 + project/webapp/templates/static_templates/landing.html | 1 + project/webapp/templates/static_templates/static_footer.html | 1 + project/webapp/templates/static_templates/static_nav.html | 1 + project/webapp/templates/static_templates/support_us.html | 1 + project/webapp/templates/thread.html | 1 + project/webapp/templates/user-setup.html | 1 + 65 files changed, 66 insertions(+), 3 deletions(-) diff --git a/project/webapp/templates/account.html b/project/webapp/templates/account.html index 7bf7c0f42..56299d474 100644 --- a/project/webapp/templates/account.html +++ b/project/webapp/templates/account.html @@ -1,3 +1,4 @@ +{% load i18n %} diff --git a/project/webapp/templates/base/less_headers/account_less.html b/project/webapp/templates/base/less_headers/account_less.html index 382c179c2..fed63ca0e 100644 --- a/project/webapp/templates/base/less_headers/account_less.html +++ b/project/webapp/templates/base/less_headers/account_less.html @@ -1,3 +1,4 @@ +{% load i18n %} {% load staticfiles %} diff --git a/project/webapp/templates/base/less_headers/feed_less.html b/project/webapp/templates/base/less_headers/feed_less.html index 8fa96bb1b..995768eee 100644 --- a/project/webapp/templates/base/less_headers/feed_less.html +++ b/project/webapp/templates/base/less_headers/feed_less.html @@ -1,3 +1,4 @@ +{% load i18n %} {% load staticfiles %} diff --git a/project/webapp/templates/base/less_headers/login_less.html b/project/webapp/templates/base/less_headers/login_less.html index 6cadaef8b..7450dfb79 100644 --- a/project/webapp/templates/base/less_headers/login_less.html +++ b/project/webapp/templates/base/less_headers/login_less.html @@ -1,3 +1,4 @@ +{% load i18n %} {% load staticfiles %} diff --git a/project/webapp/templates/base/less_headers/setup_less.html b/project/webapp/templates/base/less_headers/setup_less.html index eb84ee024..63eb2da2b 100644 --- a/project/webapp/templates/base/less_headers/setup_less.html +++ b/project/webapp/templates/base/less_headers/setup_less.html @@ -1,3 +1,4 @@ +{% load i18n %} {% load staticfiles %} diff --git a/project/webapp/templates/base/less_headers/thread_less.html b/project/webapp/templates/base/less_headers/thread_less.html index 0799573fc..2b6c12fb3 100644 --- a/project/webapp/templates/base/less_headers/thread_less.html +++ b/project/webapp/templates/base/less_headers/thread_less.html @@ -1,3 +1,4 @@ +{% load i18n %} {% load staticfiles %} diff --git a/project/webapp/templates/base/links.html b/project/webapp/templates/base/links.html index 873a79f1e..7e3f1b565 100644 --- a/project/webapp/templates/base/links.html +++ b/project/webapp/templates/base/links.html @@ -1,3 +1,4 @@ +{% load i18n %} {% load staticfiles %} {% csrf_token %} diff --git a/project/webapp/templates/beta_blocker.html b/project/webapp/templates/beta_blocker.html index 7cdb67937..5770e5016 100644 --- a/project/webapp/templates/beta_blocker.html +++ b/project/webapp/templates/beta_blocker.html @@ -1,4 +1,5 @@ +{% load i18n %} diff --git a/project/webapp/templates/beta_register.html b/project/webapp/templates/beta_register.html index bcc3f118f..15599a131 100644 --- a/project/webapp/templates/beta_register.html +++ b/project/webapp/templates/beta_register.html @@ -1,3 +1,4 @@ +{% load i18n %} diff --git a/project/webapp/templates/email/base_email_template.html b/project/webapp/templates/email/base_email_template.html index a0d30c9c4..9113036cd 100644 --- a/project/webapp/templates/email/base_email_template.html +++ b/project/webapp/templates/email/base_email_template.html @@ -1,3 +1,4 @@ +{% load i18n %} diff --git a/project/webapp/templates/feed.html b/project/webapp/templates/feed.html index a2361e7ef..a12b1e9b6 100644 --- a/project/webapp/templates/feed.html +++ b/project/webapp/templates/feed.html @@ -1,3 +1,4 @@ +{% load i18n %} diff --git a/project/webapp/templates/general-message.html b/project/webapp/templates/general-message.html index 2b0e18714..f8ae4cd1d 100644 --- a/project/webapp/templates/general-message.html +++ b/project/webapp/templates/general-message.html @@ -1,3 +1,4 @@ +{% load i18n %} diff --git a/project/webapp/templates/invite.html b/project/webapp/templates/invite.html index 0457facfe..2627a9dda 100644 --- a/project/webapp/templates/invite.html +++ b/project/webapp/templates/invite.html @@ -1,3 +1,4 @@ +{% load i18n %} diff --git a/project/webapp/templates/login.html b/project/webapp/templates/login.html index 1c2f9c975..55d081775 100644 --- a/project/webapp/templates/login.html +++ b/project/webapp/templates/login.html @@ -1,3 +1,4 @@ +{% load i18n %} diff --git a/project/webapp/templates/partials/account/account_base.html b/project/webapp/templates/partials/account/account_base.html index 0efb7ef7f..0d32afb04 100644 --- a/project/webapp/templates/partials/account/account_base.html +++ b/project/webapp/templates/partials/account/account_base.html @@ -1,4 +1,4 @@ - +{% load i18n %}
diff --git a/project/webapp/templates/partials/account/account_settings.html b/project/webapp/templates/partials/account/account_settings.html index 681250838..8efc47e68 100644 --- a/project/webapp/templates/partials/account/account_settings.html +++ b/project/webapp/templates/partials/account/account_settings.html @@ -1,4 +1,5 @@ +{% load i18n %}