diff --git a/corehq/apps/registration/forms.py b/corehq/apps/registration/forms.py
index 6ea8422c3dad..aeda27714c1e 100644
--- a/corehq/apps/registration/forms.py
+++ b/corehq/apps/registration/forms.py
@@ -24,7 +24,7 @@
from corehq.apps.programs.models import Program
from corehq.toggles import WEB_USER_INVITE_ADDITIONAL_FIELDS
from corehq.apps.users.forms import SelectUserLocationForm, BaseTableauUserForm
-from corehq.apps.users.models import CouchUser, WebUser
+from corehq.apps.users.models import CouchUser
class RegisterWebUserForm(forms.Form):
@@ -433,7 +433,7 @@ def clean_eula_confirmed(self):
return data
-class WebUserInvitationForm(BaseUserInvitationForm):
+class AcceptedWebUserInvitationForm(BaseUserInvitationForm):
"""
Form for a brand new user, before they've created a domain or done anything on CommCare HQ.
"""
@@ -492,7 +492,7 @@ class AdminInvitesUserForm(SelectUserLocationForm):
max_length=User._meta.get_field('email').max_length)
role = forms.ChoiceField(choices=(), label="Project Role")
- def __init__(self, data=None, excluded_emails=None, is_add_user=None,
+ def __init__(self, data=None, is_add_user=None,
role_choices=(), should_show_location=False, can_edit_tableau_config=False,
custom_data=None, invitation=None, *, domain, **kwargs):
self.custom_data = custom_data
@@ -522,7 +522,6 @@ def __init__(self, data=None, excluded_emails=None, is_add_user=None,
if invitation:
# not sure if this works - remove this comment after testing on staging
self.fields['program'].initial = invitation.program
- self.excluded_emails = [x.lower() for x in excluded_emails] if excluded_emails else []
if self.can_edit_tableau_config:
self._initialize_tableau_fields(data, domain, invitation)
@@ -562,6 +561,9 @@ def __init__(self, data=None, excluded_emails=None, is_add_user=None,
'primary_location',
)
)
+ else:
+ self.fields.pop('assigned_locations', None)
+ self.fields.pop('primary_location', None)
if self.can_edit_tableau_config:
fields.append(
crispy.Fieldset(
@@ -596,30 +598,17 @@ def __init__(self, data=None, excluded_emails=None, is_add_user=None,
),
)
- def _validate_profile(self, profile_id):
- valid_profile_ids = {choice[0] for choice in self.custom_data.form.fields[PROFILE_SLUG].widget.choices}
- if profile_id and profile_id not in valid_profile_ids:
- raise forms.ValidationError(
- _('Invalid profile selected. Please select a valid profile.'),
- )
-
def clean_email(self):
email = self.cleaned_data['email'].strip()
- if email.lower() in self.excluded_emails:
- raise forms.ValidationError(_("A user with this email address is already in "
- "this project or has a pending invitation."))
- web_user = WebUser.get_by_username(email)
- if web_user and not web_user.is_active:
- raise forms.ValidationError(_("A user with this email address is deactivated. "))
+
+ from corehq.apps.registration.validation import AdminInvitesUserFormValidator
+ error = AdminInvitesUserFormValidator.validate_email(self.domain, email)
+ if error:
+ raise forms.ValidationError(error)
return email
def clean(self):
cleaned_data = super(AdminInvitesUserForm, self).clean()
-
- if (('tableau_role' in cleaned_data or 'tableau_group_indices' in cleaned_data)
- and not self.can_edit_tableau_config):
- raise forms.ValidationError(_("You do not have permission to edit Tableau Configuraion."))
-
if 'tableau_group_indices' in cleaned_data:
cleaned_data['tableau_group_ids'] = [
self.tableau_form.allowed_tableau_groups[int(i)].id
@@ -638,10 +627,17 @@ def clean(self):
if prefixed_profile_key in custom_user_data:
profile_id = custom_user_data.pop(prefixed_profile_key)
- self._validate_profile(profile_id)
cleaned_data['profile'] = profile_id
cleaned_data['custom_user_data'] = get_prefixed(custom_user_data, self.custom_data.prefix)
+ from corehq.apps.registration.validation import AdminInvitesUserFormValidator
+ error = AdminInvitesUserFormValidator.validate_parameters(
+ self.domain,
+ self.request.couch_user,
+ cleaned_data.keys()
+ )
+ if error:
+ raise forms.ValidationError(error)
return cleaned_data
def _initialize_tableau_fields(self, data, domain, invitation=None):
diff --git a/corehq/apps/registration/tests/test_forms.py b/corehq/apps/registration/tests/test_forms.py
index 11c2e0025640..289475e92bf8 100644
--- a/corehq/apps/registration/tests/test_forms.py
+++ b/corehq/apps/registration/tests/test_forms.py
@@ -4,7 +4,7 @@
from testil import Regex
from ..forms import AdminInvitesUserForm
-from corehq.apps.users.models import WebUser
+from corehq.apps.users.models import WebUser, Invitation
patch_query = patch.object(
@@ -19,21 +19,50 @@
domain="test-domain",
)
+mock_existing_user = WebUser(
+ username="existinguser@test.com",
+ _id="existinguser123",
+ domain="test-domain",
+)
+
+mock_existing_pending_invitation = Invitation(
+ email="existinguser@test.com",
+ domain="test-domain",
+)
+
@patch_query
@patch("corehq.apps.users.models.WebUser.get_by_username", return_value=None)
-def test_minimal_valid_form(mock_web_user):
+@patch("corehq.apps.users.models.WebUser.by_domain")
+@patch("corehq.apps.users.models.Invitation.by_domain")
+def test_minimal_valid_form(mock_web_user, mock_by_domain, mock_invitation):
form = create_form()
-
assert form.is_valid(), form.errors
@patch_query
@patch("corehq.apps.users.models.WebUser.get_by_username", return_value=None)
-def test_form_is_invalid_when_invite_existing_email_with_case_mismatch(mock_web_user):
+@patch("corehq.apps.users.models.WebUser.by_domain")
+@patch("corehq.apps.users.models.Invitation.by_domain", return_value=[mock_existing_pending_invitation])
+def test_form_is_invalid_when_invite_existing_email_with_case_mismatch(
+ mock_web_user, mock_by_domain, mock_invitation
+):
form = create_form(
- {"email": "test@TEST.com"},
- excluded_emails=["TEST@test.com"],
+ {"email": "existinguser@TEST.com"},
+ )
+
+ msg = "this email address is already in this project"
+ assert not form.is_valid()
+ assert form.errors["email"] == [Regex(msg)], form.errors
+
+
+@patch_query
+@patch("corehq.apps.users.models.WebUser.get_by_username", return_value=None)
+@patch("corehq.apps.users.models.WebUser.by_domain", return_value=[mock_existing_user])
+@patch("corehq.apps.users.models.Invitation.by_domain")
+def test_form_is_invalid_when_existing_user_with_case_mismatch(mock_web_user, mock_by_domain, mock_invitation):
+ form = create_form(
+ {"email": "existinguser@TEST.com"},
)
msg = "this email address is already in this project"
@@ -43,7 +72,9 @@ def test_form_is_invalid_when_invite_existing_email_with_case_mismatch(mock_web_
@patch_query
@patch("corehq.apps.users.models.WebUser.get_by_username", return_value=mock_couch_user)
-def test_form_is_invalid_when_invite_deactivated_user(mock_web_user):
+@patch("corehq.apps.users.models.WebUser.by_domain")
+@patch("corehq.apps.users.models.Invitation.by_domain")
+def test_form_is_invalid_when_invite_deactivated_user(mock_web_user, mock_by_domain, mock_invitation):
mock_web_user.is_active = False
form = create_form(
{"email": "test@TEST.com"},
@@ -57,10 +88,10 @@ def test_form_is_invalid_when_invite_deactivated_user(mock_web_user):
def create_form(data=None, **kw):
form_defaults = {"email": "test@test.com", "role": "admin"}
request = RequestFactory().post("/", form_defaults | (data or {}))
+ request.couch_user = mock_couch_user
defaults = {
"domain": "test",
"request": request,
- "excluded_emails": [],
"role_choices": [("admin", "admin")],
}
return AdminInvitesUserForm(request.POST, **(defaults | kw))
diff --git a/corehq/apps/registration/validation.py b/corehq/apps/registration/validation.py
new file mode 100644
index 000000000000..9287c941cef9
--- /dev/null
+++ b/corehq/apps/registration/validation.py
@@ -0,0 +1,39 @@
+from django.utils.translation import gettext_lazy as _
+
+from corehq import privileges
+from corehq.apps.accounting.utils import domain_has_privilege
+from corehq.apps.users.models import WebUser, Invitation
+from corehq.toggles import TABLEAU_USER_SYNCING
+
+
+class AdminInvitesUserFormValidator():
+
+ @staticmethod
+ def validate_parameters(domain, upload_user, parameters):
+ if 'tableau_role' in parameters or 'tableau_group_indices' in parameters:
+ can_edit_tableau_config = (
+ upload_user.has_permission(domain, 'edit_user_tableau_config')
+ and TABLEAU_USER_SYNCING.enabled(domain)
+ )
+ if not can_edit_tableau_config:
+ return _("You do not have permission to edit Tableau Configuration.")
+
+ if 'profile' in parameters and not domain_has_privilege(domain, privileges.APP_USER_PROFILES):
+ return _("This domain does not have user profile privileges.")
+
+ if (('primary_location' in parameters or 'assigned_locations' in parameters)
+ and not domain_has_privilege(domain, privileges.LOCATIONS)):
+ return _("This domain does not have locations privileges.")
+
+ @staticmethod
+ def validate_email(domain, email):
+ current_users = [user.username.lower() for user in WebUser.by_domain(domain)]
+ pending_invites = [di.email.lower() for di in Invitation.by_domain(domain)]
+ current_users_and_pending_invites = current_users + pending_invites
+
+ if email.lower() in current_users_and_pending_invites:
+ return _("A user with this email address is already in "
+ "this project or has a pending invitation.")
+ web_user = WebUser.get_by_username(email)
+ if web_user and not web_user.is_active:
+ return _("A user with this email address is deactivated. ")
diff --git a/corehq/apps/user_importer/importer.py b/corehq/apps/user_importer/importer.py
index cb8e7a84d790..4974c5d96c64 100644
--- a/corehq/apps/user_importer/importer.py
+++ b/corehq/apps/user_importer/importer.py
@@ -4,7 +4,6 @@
import random
from collections import defaultdict
from datetime import datetime
-from typing import List
from corehq.util.soft_assert.api import soft_assert
from memoized import memoized
@@ -74,9 +73,10 @@
}
-def check_headers(user_specs, domain, is_web_upload=False):
+def check_headers(user_specs, domain, upload_couch_user, is_web_upload=False):
messages = []
headers = set(user_specs.fieldnames)
+ conditionally_allowed_headers = set()
# Backwards warnings
for (old_name, new_name) in old_headers.items():
@@ -88,15 +88,22 @@ def check_headers(user_specs, domain, is_web_upload=False):
headers.discard(old_name)
if DOMAIN_PERMISSIONS_MIRROR.enabled(domain):
- allowed_headers.add('domain')
+ conditionally_allowed_headers.add('domain')
if not is_web_upload and EnterpriseMobileWorkerSettings.is_domain_using_custom_deactivation(domain):
- allowed_headers.add('deactivate_after')
-
- if TABLEAU_USER_SYNCING.enabled(domain):
- allowed_headers.update({'tableau_role', 'tableau_groups'})
+ conditionally_allowed_headers.add('deactivate_after')
+ if TABLEAU_USER_SYNCING.enabled(domain) and upload_couch_user.has_permission(
+ domain,
+ get_permission_name(HqPermissions.edit_user_tableau_config)
+ ):
+ conditionally_allowed_headers.update({'tableau_role', 'tableau_groups'})
+ elif "tableau_role" in headers or "tableau_groups" in headers:
+ messages.append(_(
+ "Only users with 'Manage Tableau Configuration' edit permission in domains where Tableau "
+ "User Syncing is enabled can upload files with 'Tableau Role' and/or 'Tableau Groups' fields."
+ ))
- illegal_headers = headers - allowed_headers
+ illegal_headers = headers - allowed_headers - conditionally_allowed_headers
if is_web_upload:
missing_headers = web_required_headers - headers
@@ -876,8 +883,6 @@ def domain_info(self, domain):
def run(self):
ret = {"errors": [], "rows": []}
- column_headers = self.user_specs[0].keys() if self.user_specs else []
- check_field_edit_permissions(column_headers, self.upload_user, self.upload_domain)
for i, row in enumerate(self.user_specs):
if self.update_progress:
self.update_progress(i)
@@ -959,15 +964,7 @@ def location_cache(self):
@memoized
def profiles_by_name(self):
from corehq.apps.users.views.mobile.custom_data_fields import UserFieldsView
- definition = CustomDataFieldsDefinition.get(self.domain, UserFieldsView.field_type)
- if definition:
- profiles = definition.get_profiles()
- return {
- profile.name: profile
- for profile in profiles
- }
- else:
- return {}
+ return CustomDataFieldsDefinition.get_profiles_by_name(self.domain, UserFieldsView.field_type)
@property
@memoized
@@ -1027,18 +1024,6 @@ def create_or_update_web_users(upload_domain, user_specs, upload_user, upload_re
).run()
-def check_field_edit_permissions(field_names: List, upload_couch_user, domain: str):
- if "tableau_role" in field_names or "tableau_groups" in field_names:
- if not upload_couch_user.has_permission(
- domain,
- get_permission_name(HqPermissions.edit_user_tableau_config)
- ):
- raise UserUploadError(_(
- "Only users with 'Manage Tableau Configuration' edit permission can upload files with"
- "'Tableau Role and/or 'Tableau Groups' fields. Please remove those fields from your file."
- ))
-
-
def check_user_role(username, role):
if not role:
raise UserUploadError(_(
diff --git a/corehq/apps/user_importer/tests/test_importer.py b/corehq/apps/user_importer/tests/test_importer.py
index 4c6c2f5c35df..1e28054570b3 100644
--- a/corehq/apps/user_importer/tests/test_importer.py
+++ b/corehq/apps/user_importer/tests/test_importer.py
@@ -2146,38 +2146,6 @@ def test_tableau_users(self, mock_request):
TableauUser.Roles.UNLICENSED.value)
local_tableau_users.get(username='george@eliot.com')
- # Test user without permission to edit Tableau Configs
- self.uploading_user.is_superuser = False
- role_with_upload_permission = UserRole.create(
- self.domain, 'edit-web-users', permissions=HqPermissions(edit_web_users=True)
- )
- self.uploading_user.set_role(self.domain_name, role_with_upload_permission.get_qualified_id())
- self.uploading_user.save()
- with self.assertRaises(UserUploadError):
- import_users_and_groups(
- self.domain.name,
- [
- self._get_spec(
- username='edith@wharton.com',
- tableau_role=TableauUser.Roles.EXPLORER.value,
- tableau_groups="""group1,group2"""
- ),
- ],
- [],
- self.uploading_user.get_id,
- self.upload_record.pk,
- True
- )
-
- # Test user with permission to edit Tableau Configs
- role_with_upload_and_edit_tableau_permission = UserRole.create(
- self.domain, 'edit-tableau', permissions=HqPermissions(edit_web_users=True,
- edit_user_tableau_config=True)
- )
- self.uploading_user.set_role(self.domain_name,
- role_with_upload_and_edit_tableau_permission.get_qualified_id())
- self.uploading_user.save()
-
import_users_and_groups(
self.domain.name,
[
diff --git a/corehq/apps/user_importer/tests/test_validators.py b/corehq/apps/user_importer/tests/test_validators.py
index bfa01ae02a5c..8342cfb68e62 100644
--- a/corehq/apps/user_importer/tests/test_validators.py
+++ b/corehq/apps/user_importer/tests/test_validators.py
@@ -8,6 +8,7 @@
from corehq.apps.domain.shortcuts import create_domain
from corehq.apps.locations.tests.util import LocationHierarchyTestCase, restrict_user_by_location
+from corehq.apps.reports.models import TableauUser, TableauServer
from corehq.apps.user_importer.exceptions import UserUploadError
from corehq.apps.user_importer.importer import SiteCodeToLocationCache
from corehq.apps.user_importer.validation import (
@@ -27,6 +28,8 @@
LocationValidator,
_get_invitation_or_editable_user,
CustomDataValidator,
+ TableauRoleValidator,
+ TableauGroupsValidator,
)
from corehq.apps.users.dbaccessors import delete_all_users
from corehq.apps.users.models import CommCareUser, HqPermissions, Invitation, WebUser
@@ -352,6 +355,10 @@ def test_cant_edit_web_user(self):
validation_result = self.validator.validate_spec(user_spec)
assert validation_result == self.validator.error_message_user_access
+ user_spec = {'username': self.editable_user.username}
+ validation_result = self.validator.validate_spec(user_spec)
+ assert validation_result == self.validator.error_message_user_access
+
def test_cant_edit_commcare_user(self):
self.cc_user_validator = LocationValidator(self.domain, self.upload_user,
SiteCodeToLocationCache(self.domain), False)
@@ -363,6 +370,10 @@ def test_cant_edit_commcare_user(self):
validation_result = self.cc_user_validator.validate_spec(user_spec)
assert validation_result == self.validator.error_message_user_access
+ user_spec = {'user_id': self.editable_cc_user._id}
+ validation_result = self.cc_user_validator.validate_spec(user_spec)
+ assert validation_result == self.validator.error_message_user_access
+
def test_cant_edit_invitation(self):
self.invitation = Invitation.objects.create(
domain=self.domain,
@@ -377,6 +388,10 @@ def test_cant_edit_invitation(self):
validation_result = self.validator.validate_spec(user_spec)
assert validation_result == self.validator.error_message_user_access
+ user_spec = {'username': self.invitation.email}
+ validation_result = self.validator.validate_spec(user_spec)
+ assert validation_result == self.validator.error_message_user_access
+
def test_cant_add_location(self):
self.editable_user.reset_locations(self.domain, [self.locations['Cambridge'].location_id])
user_spec = {'username': self.editable_user.username,
@@ -395,6 +410,15 @@ def test_cant_remove_location(self):
assert validation_result == self.validator.error_message_location_access.format(
self.locations['Suffolk'].site_code)
+ def test_cant_remove_all_locations(self):
+ self.editable_user.reset_locations(self.domain, [self.locations['Suffolk'].location_id,
+ self.locations['Cambridge'].location_id])
+ user_spec = {'username': self.editable_user.username,
+ 'location_code': []}
+ validation_result = self.validator.validate_spec(user_spec)
+ assert validation_result == self.validator.error_message_location_access.format(
+ self.locations['Suffolk'].site_code)
+
@flag_enabled('USH_RESTORE_FILE_LOCATION_CASE_SYNC_RESTRICTION')
def test_location_not_has_users(self):
self.editable_user.reset_locations(self.domain, [self.locations['Middlesex'].location_id])
@@ -404,7 +428,11 @@ def test_location_not_has_users(self):
'location_code': [self.locations['Cambridge'].site_code,
self.locations['Middlesex'].site_code]}
validation_result = self.validator.validate_spec(user_spec)
- assert validation_result == self.validator.error_message_location_not_has_users.format(
+ error_message_location_not_has_users = (
+ "These locations cannot have users assigned because of their "
+ "organization level settings: {}."
+ )
+ assert validation_result == error_message_location_not_has_users.format(
self.locations['Cambridge'].site_code)
@classmethod
@@ -689,3 +717,62 @@ def test_get_invitation_or_editable_user(self):
spec = {}
self.assertEqual(None, _get_invitation_or_editable_user(spec, True, self.domain).editable_user)
self.assertEqual(None, _get_invitation_or_editable_user(spec, False, self.domain).editable_user)
+
+
+class TestTableauRoleValidator(TestCase):
+ domain = 'test-domain'
+
+ def test_valid_role(self):
+ validator = TableauRoleValidator(self.domain)
+ spec = {'tableau_role': TableauUser.Roles.EXPLORER.value}
+ self.assertIsNone(validator.validate_spec(spec))
+
+ def test_invalid_role(self):
+ validator = TableauRoleValidator(self.domain)
+ spec = {'tableau_role': 'invalid_role'}
+ expected_error = TableauRoleValidator._error_message.format(
+ 'invalid_role', ', '.join([e.value for e in TableauUser.Roles])
+ )
+ self.assertEqual(validator.validate_spec(spec), expected_error)
+
+ def test_no_role(self):
+ validator = TableauRoleValidator(self.domain)
+ spec = {}
+ self.assertIsNone(validator.validate_spec(spec))
+
+
+class TestTableauGroupsValidator(TestCase):
+ domain = 'test-domain'
+
+ @classmethod
+ def setUpClass(cls):
+ super().setUpClass()
+ cls.allowed_groups = ['group1', 'group2']
+ cls.tableau_server = TableauServer.objects.create(
+ domain=cls.domain,
+ allowed_tableau_groups=cls.allowed_groups
+ )
+ cls.all_specs = [{'tableau_groups': 'group1,group2'}]
+
+ def test_valid_groups(self):
+ validator = TableauGroupsValidator(self.domain, self.all_specs)
+ spec = {'tableau_groups': 'group1,group2'}
+ self.assertIsNone(validator.validate_spec(spec))
+
+ def test_invalid_groups(self):
+ validator = TableauGroupsValidator(self.domain, self.all_specs)
+ spec = {'tableau_groups': 'group1,invalid_group'}
+ expected_error = TableauGroupsValidator._error_message.format(
+ 'invalid_group', ', '.join(self.allowed_groups)
+ )
+ self.assertEqual(validator.validate_spec(spec), expected_error)
+
+ def test_no_groups(self):
+ validator = TableauGroupsValidator(self.domain, self.all_specs)
+ spec = {}
+ self.assertIsNone(validator.validate_spec(spec))
+
+ def test_empty_groups(self):
+ validator = TableauGroupsValidator(self.domain, self.all_specs)
+ spec = {'tableau_groups': ''}
+ self.assertIsNone(validator.validate_spec(spec))
diff --git a/corehq/apps/user_importer/validation.py b/corehq/apps/user_importer/validation.py
index 8b411c8b8ef1..0cb2c2bc1ac2 100644
--- a/corehq/apps/user_importer/validation.py
+++ b/corehq/apps/user_importer/validation.py
@@ -22,6 +22,7 @@
from corehq.apps.users.forms import get_mobile_worker_max_username_length
from corehq.apps.users.models import CouchUser, Invitation
from corehq.apps.users.util import normalize_username, raw_username
+from corehq.apps.users.validation import validate_assigned_locations_allow_users
from corehq.apps.users.views.mobile.custom_data_fields import UserFieldsView
from corehq.apps.users.views.utils import (
user_can_access_invite
@@ -147,15 +148,19 @@ def validate_spec(self, spec):
class TableauRoleValidator(ImportValidator):
_error_message = _("Invalid tableau role: '{}'. Please choose one of the following: {}")
+ valid_role_options = [e.value for e in TableauUser.Roles]
def __init__(self, domain):
super().__init__(domain)
- self.valid_role_options = [e.value for e in TableauUser.Roles]
def validate_spec(self, spec):
tableau_role = spec.get('tableau_role')
- if tableau_role is not None and tableau_role not in self.valid_role_options:
- return self._error_message.format(tableau_role, ', '.join(self.valid_role_options))
+ return self.validate_tableau_role(tableau_role)
+
+ @classmethod
+ def validate_tableau_role(cls, tableau_role):
+ if tableau_role is not None and tableau_role not in cls.valid_role_options:
+ return cls._error_message.format(tableau_role, ', '.join(cls.valid_role_options))
class TableauGroupsValidator(ImportValidator):
@@ -171,12 +176,16 @@ def validate_spec(self, spec):
tableau_groups = spec.get('tableau_groups') or []
if tableau_groups:
tableau_groups = tableau_groups.split(',')
+ return self.validate_tableau_groups(self.allowed_groups_for_domain, tableau_groups)
+
+ @classmethod
+ def validate_tableau_groups(cls, allowed_groups_for_domain, tableau_groups):
invalid_groups = []
for group in tableau_groups:
- if group not in self.allowed_groups_for_domain:
+ if group not in allowed_groups_for_domain:
invalid_groups.append(group)
if invalid_groups:
- return self._error_message.format(', '.join(invalid_groups), ', '.join(self.allowed_groups_for_domain))
+ return cls._error_message.format(', '.join(invalid_groups), ', '.join(allowed_groups_for_domain))
class DuplicateValidator(ImportValidator):
@@ -342,13 +351,16 @@ def validate_spec(self, spec):
if spec_profile_name and spec_profile_name not in self.all_user_profile_ids_by_name.keys():
return self.error_message_nonexisting_profile.format(spec_profile_name)
- user_result = _get_invitation_or_editable_user(spec, self.is_web_user_import, self.domain)
- original_profile_id = None
- if user_result.invitation:
- original_profile_id = user_result.invitation.profile.id if user_result.invitation.profile else None
- elif user_result.editable_user:
- original_profile_id = user_result.editable_user.get_user_data(self.domain).profile_id
+ profile_assignment_required_error = self._validate_profile_assignment_required(spec_profile_name)
+ if profile_assignment_required_error:
+ return profile_assignment_required_error
+
+ original_profile_id = self._get_original_profile_id(spec)
+ profile_access_error = self._validate_profile_access(original_profile_id, spec_profile_name)
+ if profile_access_error:
+ return profile_access_error
+ def _validate_profile_assignment_required(self, spec_profile_name):
profile_required_for_user_type_list = CustomDataFieldsDefinition.get_profile_required_for_user_type_list(
self.domain,
UserFieldsView.field_type
@@ -362,6 +374,15 @@ def validate_spec(self, spec):
[self.user_types[required_for] for required_for in profile_required_for_user_type_list]
))
+ def _get_original_profile_id(self, spec):
+ user_result = _get_invitation_or_editable_user(spec, self.is_web_user_import, self.domain)
+ if user_result.invitation:
+ return user_result.invitation.profile.id if user_result.invitation.profile else None
+ elif user_result.editable_user:
+ return user_result.editable_user.get_user_data(self.domain).profile_id
+ return None
+
+ def _validate_profile_access(self, original_profile_id, spec_profile_name):
spec_profile_id = self.all_user_profile_ids_by_name.get(spec_profile_name)
spec_profile_same_as_original = original_profile_id == spec_profile_id
if spec_profile_same_as_original:
@@ -370,8 +391,10 @@ def validate_spec(self, spec):
upload_user_accessible_profiles = (
UserFieldsView.get_user_accessible_profiles(self.domain, self.upload_user))
accessible_profile_ids = {p.id for p in upload_user_accessible_profiles}
+
if original_profile_id and original_profile_id not in accessible_profile_ids:
return self.error_message_original_user_profile_access
+
if spec_profile_id and spec_profile_id not in accessible_profile_ids:
return self.error_message_new_user_profile_access.format(spec_profile_name)
@@ -482,8 +505,6 @@ class LocationValidator(ImportValidator):
error_message_user_access = _("Based on your locations you do not have permission to edit this user or user "
"invitation")
error_message_location_access = _("You do not have permission to assign or remove these locations: {}")
- error_message_location_not_has_users = _("These locations cannot have users assigned because of their "
- "organization level settings: {}.")
def __init__(self, domain, upload_user, location_cache, is_web_user_import):
super().__init__(domain)
@@ -491,52 +512,61 @@ def __init__(self, domain, upload_user, location_cache, is_web_user_import):
self.location_cache = location_cache
self.is_web_user_import = is_web_user_import
- def _get_locs_being_assigned(self, spec):
+ def validate_spec(self, spec):
+ user_result = _get_invitation_or_editable_user(spec, self.is_web_user_import, self.domain)
+ user_access_error = self._validate_uploading_user_access_to_editable_user_or_invitation(user_result)
+ if user_access_error:
+ return user_access_error
+
+ if 'location_code' in spec:
+ locs_being_assigned = self._get_locs_ids_being_assigned(spec)
+ current_locs = self._get_current_locs(user_result)
+
+ user_location_access_error = self._validate_user_location_permission(current_locs, locs_being_assigned)
+ location_cannot_have_users_error = None
+ if toggles.USH_RESTORE_FILE_LOCATION_CASE_SYNC_RESTRICTION.enabled(self.domain):
+ location_cannot_have_users_error = self._validate_locations_allow_users(locs_being_assigned)
+ return user_location_access_error or location_cannot_have_users_error
+
+ def _get_locs_ids_being_assigned(self, spec):
from corehq.apps.user_importer.importer import find_location_id
location_codes = (spec['location_code'] if isinstance(spec['location_code'], list)
else [spec['location_code']])
locs_ids_being_assigned = find_location_id(location_codes, self.location_cache)
return locs_ids_being_assigned
- def _validate_uploading_user_access(self, spec):
- # 1. Get current locations for user or user invitation and ensure user can edit it
+ def _get_current_locs(self, user_result):
current_locs = []
- user_result = _get_invitation_or_editable_user(spec, self.is_web_user_import, self.domain)
+ if user_result.invitation:
+ current_locs = user_result.invitation.assigned_locations.all()
+ elif user_result.editable_user:
+ current_locs = user_result.editable_user.get_location_ids(self.domain)
+ return current_locs
+
+ def _validate_uploading_user_access_to_editable_user_or_invitation(self, user_result):
+ # Get current locations for editable user or user invitation and ensure uploading user
+ # can access those locations
if user_result.invitation:
if not user_can_access_invite(self.domain, self.upload_user, user_result.invitation):
return self.error_message_user_access.format(user_result.invitation.email)
- current_locs = user_result.invitation.assigned_locations.all()
elif user_result.editable_user:
if not user_can_access_other_user(self.domain, self.upload_user, user_result.editable_user):
return self.error_message_user_access.format(user_result.editable_user.username)
- current_locs = user_result.editable_user.get_location_ids(self.domain)
- # 2. Ensure the user is only adding the user to/removing from *new locations* that they have permission
- # to access.
- if 'location_code' in spec:
- locs_being_assigned = self._get_locs_being_assigned(spec)
- problem_location_ids = user_can_change_locations(self.domain, self.upload_user,
- current_locs, locs_being_assigned)
- if problem_location_ids:
- return self.error_message_location_access.format(
- ', '.join(SQLLocation.objects.filter(
- location_id__in=problem_location_ids).values_list('site_code', flat=True)))
-
- def _validate_location_has_users(self, spec):
- if 'location_code' not in spec:
+ def _validate_user_location_permission(self, current_locs, locs_ids_being_assigned):
+ # Ensure the uploading user is only adding the user to/removing from *new locations* that
+ # the uploading user has permission to access.
+ problem_location_ids = user_can_change_locations(self.domain, self.upload_user,
+ current_locs, locs_ids_being_assigned)
+ if problem_location_ids:
+ return self.error_message_location_access.format(
+ ', '.join(SQLLocation.objects.filter(
+ location_id__in=problem_location_ids).values_list('site_code', flat=True)))
+
+ def _validate_locations_allow_users(self, locs_ids_being_assigned):
+ if not locs_ids_being_assigned:
return
- locs_being_assigned = SQLLocation.objects.filter(location_id__in=self._get_locs_being_assigned(spec))
- problem_locations = locs_being_assigned.filter(location_type__has_users=False)
- if problem_locations:
- return self.error_message_location_not_has_users.format(
- ', '.join(problem_locations.values_list('site_code', flat=True)))
-
- def validate_spec(self, spec):
- user_access_error = self._validate_uploading_user_access(spec)
- location_cannot_have_users_error = None
- if toggles.USH_RESTORE_FILE_LOCATION_CASE_SYNC_RESTRICTION.enabled(self.domain):
- location_cannot_have_users_error = self._validate_location_has_users(spec)
- return user_access_error or location_cannot_have_users_error
+ return validate_assigned_locations_allow_users(self.domain, locs_ids_being_assigned)
class UserRetrievalResult(NamedTuple):
diff --git a/corehq/apps/users/forms.py b/corehq/apps/users/forms.py
index 89619fdb586c..dad316a36dd2 100644
--- a/corehq/apps/users/forms.py
+++ b/corehq/apps/users/forms.py
@@ -1110,18 +1110,12 @@ def __init__(self, domain: str, *args, **kwargs):
)
def clean_assigned_locations(self):
- from corehq.apps.locations.models import SQLLocation
- from corehq.apps.locations.util import get_locations_from_ids
-
+ from corehq.apps.users.validation import validate_assigned_locations_allow_users
location_ids = self.data.getlist('assigned_locations')
- try:
- locations = get_locations_from_ids(location_ids, self.domain)
- except SQLLocation.DoesNotExist:
- raise forms.ValidationError(_('One or more of the locations was not found.'))
- if locations.filter(location_type__has_users=False).exists():
- raise forms.ValidationError(
- _('One or more of the locations you specified cannot have users assigned.'))
- return [location.location_id for location in locations]
+ error = validate_assigned_locations_allow_users(self.domain, location_ids)
+ if error:
+ raise forms.ValidationError(error)
+ return location_ids
def _user_has_permission_to_access_locations(self, new_location_ids):
assigned_locations = SQLLocation.objects.filter(location_id__in=new_location_ids)
@@ -1131,25 +1125,18 @@ def _user_has_permission_to_access_locations(self, new_location_ids):
def clean(self):
self.cleaned_data = super(SelectUserLocationForm, self).clean()
- primary_location_id = self.cleaned_data['primary_location']
+ primary_location_id = self.cleaned_data.get('primary_location', '')
assigned_location_ids = self.cleaned_data.get('assigned_locations', [])
if not self._user_has_permission_to_access_locations(assigned_location_ids):
self.add_error(
'assigned_locations',
_("You do not have permissions to assign one of those locations.")
)
- if primary_location_id:
- if primary_location_id not in assigned_location_ids:
- self.add_error(
- 'primary_location',
- _("Primary location must be one of the user's locations")
- )
- if assigned_location_ids and not primary_location_id:
- self.add_error(
- 'primary_location',
- _("Primary location can't be empty if the user has any "
- "locations set")
- )
+ from corehq.apps.users.validation import validate_primary_location_assignment
+ error = validate_primary_location_assignment(primary_location_id, assigned_location_ids)
+ if error:
+ self.add_error('primary_location', error)
+
return self.cleaned_data
diff --git a/corehq/apps/users/tests/test_user_invitation.py b/corehq/apps/users/tests/test_user_invitation.py
index 4603ee62db52..89ebbfc9ae20 100644
--- a/corehq/apps/users/tests/test_user_invitation.py
+++ b/corehq/apps/users/tests/test_user_invitation.py
@@ -3,7 +3,7 @@
from unittest.mock import Mock, patch
from corehq.apps.users.models import Invitation, WebUser
-from corehq.apps.users.views.web import UserInvitationView, WebUserInvitationForm
+from corehq.apps.users.views.web import UserInvitationView, AcceptedWebUserInvitationForm
from django import forms
from django.contrib.auth.models import AnonymousUser
@@ -17,7 +17,7 @@ class InvitationTestException(Exception):
pass
-class StubbedWebUserInvitationForm(WebUserInvitationForm):
+class StubbedAcceptedWebUserInvitationForm(AcceptedWebUserInvitationForm):
def __init__(self, *args, **kwargs):
self.request_email = kwargs.pop('request_email', False)
@@ -76,7 +76,7 @@ def test_redirect_if_invite_is_already_accepted(self):
self.assertEqual("/accounts/login/", response.url)
def test_redirect_if_invite_email_does_not_match(self):
- form = StubbedWebUserInvitationForm(
+ form = StubbedAcceptedWebUserInvitationForm(
{
"email": "other_test@dimagi.com",
"full_name": "asdf",
@@ -95,7 +95,7 @@ def test_redirect_if_invite_email_does_not_match(self):
str(ve.exception),
"['You can only sign up with the email address your invitation was sent to.']")
- form = WebUserInvitationForm(
+ form = AcceptedWebUserInvitationForm(
{
"email": "other_test@dimagi.com",
"full_name": "asdf",
@@ -110,7 +110,7 @@ def test_redirect_if_invite_email_does_not_match(self):
print(form.errors)
self.assertTrue(form.is_valid())
- form = WebUserInvitationForm(
+ form = AcceptedWebUserInvitationForm(
{
"email": "test@dimagi.com",
"full_name": "asdf",
diff --git a/corehq/apps/users/tests/test_views.py b/corehq/apps/users/tests/test_views.py
index a43d945e7627..0ef718b55c6f 100644
--- a/corehq/apps/users/tests/test_views.py
+++ b/corehq/apps/users/tests/test_views.py
@@ -4,6 +4,7 @@
from io import BytesIO
from openpyxl import Workbook
from unittest.mock import patch, Mock
+import re
from django.http import Http404, HttpResponseRedirect
from django.test import TestCase, Client
@@ -541,6 +542,52 @@ def test_invalid_workbook_headers(self):
'success': False
})
+ @flag_enabled('TABLEAU_USER_SYNCING')
+ def test_tableau_role_and_groups_headers(self):
+ workbook = Workbook()
+ users_sheet = workbook.create_sheet(title='users')
+ users_sheet.append(['username', 'email', 'password', 'tableau_role', 'tableau_groups'])
+ users_sheet.append(['test_user', 'test@example.com', 'password', 'fakerole', 'fakegroup'])
+
+ file = BytesIO()
+ workbook.save(file)
+ file.seek(0)
+ file.name = 'users.xlsx'
+
+ # Test user with permission to edit Tableau Configs
+ self.user.is_superuser = False
+ role_with_upload_and_edit_tableau_permission = UserRole.create(
+ self.domain, 'edit-tableau', permissions=HqPermissions(edit_web_users=True,
+ edit_user_tableau_config=True)
+ )
+ self.user.set_role(self.domain_name,
+ role_with_upload_and_edit_tableau_permission.get_qualified_id())
+ self.user.save()
+
+ with patch('corehq.apps.users.views.mobile.users.BaseUploadUser.upload_users'):
+ response = self._make_post_request(file)
+ self.assertEqual(response.status_code, 200)
+ self.assertEqual(response.json(), {'success': True})
+
+ # Test user without permission to edit Tableau Configs
+ role_with_upload_permission = UserRole.create(
+ self.domain, 'edit-web-users', permissions=HqPermissions(edit_web_users=True)
+ )
+ self.user.set_role(self.domain_name, role_with_upload_permission.get_qualified_id())
+ self.user.save()
+
+ file.seek(0)
+ response = self._make_post_request(file)
+ self.assertEqual(response.status_code, 400)
+
+ expected_pattern = re.compile(
+ r"Only users with 'Manage Tableau Configuration' edit permission in domains "
+ r"where Tableau User Syncing is enabled can upload files with 'Tableau Role' "
+ r"and/or 'Tableau Groups' fields\.\nThe following are illegal column headers: "
+ r"(?:tableau_groups, tableau_role|tableau_role, tableau_groups)\.",
+ )
+ self.assertRegex(response.json()['message'], expected_pattern)
+
@patch('corehq.apps.users.views.mobile.users.BaseUploadUser.upload_users')
def test_user_upload_error(self, mock_upload_users):
mock_upload_users.side_effect = UserUploadError('User upload error')
@@ -582,6 +629,13 @@ def test_cant_upload_multiple_files(self):
class BaseUploadUserTest(TestCase):
+
+ mock_couch_user = WebUser(
+ username="testuser",
+ _id="user123",
+ domain="test-domain",
+ )
+
def setUp(self):
self.domain = 'test-domain'
self.factory = RequestFactory()
@@ -604,6 +658,7 @@ def test_post_success(self, mock_get_workbook, mock_process_workbook, mock_uploa
mock_reverse.return_value = '/success/'
request = self.factory.post('/', {'bulk_upload_file': Mock()})
+ request.couch_user = self.mock_couch_user
response = self.view.post(request)
mock_reverse.assert_called_once_with(
diff --git a/corehq/apps/users/validation.py b/corehq/apps/users/validation.py
index 4771e8c5ecbf..c498bea1fd0c 100644
--- a/corehq/apps/users/validation.py
+++ b/corehq/apps/users/validation.py
@@ -4,6 +4,8 @@
from corehq.apps.users.util import is_username_available
from corehq.apps.custom_data_fields.models import CustomDataFieldsDefinition
+from corehq.apps.locations.models import SQLLocation
+from corehq.apps.locations.util import get_locations_from_ids
from corehq.apps.users.views.mobile import BAD_MOBILE_USERNAME_REGEX
from corehq.apps.users.views.mobile.custom_data_fields import UserFieldsView
@@ -59,3 +61,24 @@ def validate_profile_required(profile_name, domain):
raise ValidationError(
_("A profile assignment is required for Mobile Workers.")
)
+
+
+def validate_assigned_locations_allow_users(domain, assigned_location_ids):
+ error_message_location_not_has_users = _("These locations cannot have users assigned because of their "
+ "organization level settings: {}.")
+ try:
+ locs_being_assigned = get_locations_from_ids(assigned_location_ids, domain)
+ except SQLLocation.DoesNotExist:
+ return _('One or more of the locations was not found.')
+ problem_locations = locs_being_assigned.filter(location_type__has_users=False)
+ if problem_locations:
+ return error_message_location_not_has_users.format(
+ ', '.join(problem_locations.values_list('site_code', flat=True)))
+
+
+def validate_primary_location_assignment(primary_location, assigned_locations):
+ if primary_location:
+ if primary_location not in assigned_locations:
+ return _("Primary location must be one of the user's locations")
+ if assigned_locations and not primary_location:
+ return _("Primary location can't be empty if the user has any locations set")
diff --git a/corehq/apps/users/views/__init__.py b/corehq/apps/users/views/__init__.py
index 697c0562102b..2f606ed24be7 100644
--- a/corehq/apps/users/views/__init__.py
+++ b/corehq/apps/users/views/__init__.py
@@ -1158,13 +1158,8 @@ def invite_web_user_form(self):
can_edit_tableau_config = (self.request.couch_user.has_permission(self.domain, 'edit_user_tableau_config')
and toggles.TABLEAU_USER_SYNCING.enabled(self.domain))
if self.request.method == 'POST':
- current_users = [user.username for user in WebUser.by_domain(self.domain)]
- pending_invites = [di.email for di in Invitation.by_domain(self.domain)]
- if invitation and invitation.email in pending_invites:
- pending_invites.remove(invitation.email)
return AdminInvitesUserForm(
self.request.POST,
- excluded_emails=current_users + pending_invites,
role_choices=role_choices,
domain=self.domain,
is_add_user=is_add_user,
@@ -1319,7 +1314,12 @@ def post(self, request, *args, **kwargs):
"""View's dispatch method automatically calls this"""
try:
workbook = get_workbook(request.FILES.get("bulk_upload_file"))
- user_specs, group_specs = self.process_workbook(workbook, self.domain, self.is_web_upload)
+ user_specs, group_specs = self.process_workbook(
+ workbook,
+ self.domain,
+ self.is_web_upload,
+ request.couch_user
+ )
task_ref = self.upload_users(
request, user_specs, group_specs, self.domain, self.is_web_upload)
return self._get_success_response(request, task_ref)
@@ -1333,7 +1333,7 @@ def post(self, request, *args, **kwargs):
return HttpResponseRedirect(reverse(self.urlname, args=[self.domain]))
@staticmethod
- def process_workbook(workbook, domain, is_web_upload):
+ def process_workbook(workbook, domain, is_web_upload, upload_user):
from corehq.apps.user_importer.importer import check_headers
try:
@@ -1344,7 +1344,7 @@ def process_workbook(workbook, domain, is_web_upload):
except WorksheetNotFound as e:
raise WorksheetNotFound("Workbook has no worksheets") from e
- check_headers(user_specs, domain, is_web_upload=is_web_upload)
+ check_headers(user_specs, domain, upload_couch_user=upload_user, is_web_upload=is_web_upload)
try:
group_specs = workbook.get_worksheet(title="groups")
diff --git a/corehq/apps/users/views/mobile/users.py b/corehq/apps/users/views/mobile/users.py
index 28e9603bfa3e..61de4a7e5606 100644
--- a/corehq/apps/users/views/mobile/users.py
+++ b/corehq/apps/users/views/mobile/users.py
@@ -1613,7 +1613,12 @@ def bulk_user_upload_api(request, domain):
if file is None:
raise UserUploadError(_('no file uploaded'))
workbook = get_workbook(file)
- user_specs, group_specs = BaseUploadUser.process_workbook(workbook, domain, is_web_upload=False)
+ user_specs, group_specs = BaseUploadUser.process_workbook(
+ workbook,
+ domain,
+ is_web_upload=False,
+ upload_user=request.couch_user
+ )
BaseUploadUser.upload_users(request, user_specs, group_specs, domain, is_web_upload=False)
return json_response({'success': True})
except (WorkbookJSONError, WorksheetNotFound, UserUploadError) as e:
diff --git a/corehq/apps/users/views/web.py b/corehq/apps/users/views/web.py
index 66b1ca7c6923..e6bae2248e12 100644
--- a/corehq/apps/users/views/web.py
+++ b/corehq/apps/users/views/web.py
@@ -32,7 +32,7 @@
from corehq.apps.domain.models import Domain
from corehq.apps.hqwebapp.views import BasePageView, logout
from corehq.apps.locations.permissions import location_restricted_response, location_safe
-from corehq.apps.registration.forms import WebUserInvitationForm
+from corehq.apps.registration.forms import AcceptedWebUserInvitationForm
from corehq.apps.registration.utils import activate_new_user_via_reg_form
from corehq.apps.users.audit.change_messages import UserChangeMessage
from corehq.apps.users.decorators import require_can_edit_web_users
@@ -156,7 +156,7 @@ def __call__(self, request, uuid, **kwargs):
idp = IdentityProvider.get_required_identity_provider(invitation.email)
if request.method == "POST":
- form = WebUserInvitationForm(
+ form = AcceptedWebUserInvitationForm(
request.POST,
is_sso=idp is not None,
allow_invite_email_only=allow_invite_email_only,
@@ -212,7 +212,7 @@ def __call__(self, request, uuid, **kwargs):
f"?next={accept_invitation_url}"
f"&username={invitation.email}"
)
- form = WebUserInvitationForm(
+ form = AcceptedWebUserInvitationForm(
initial={
'email': invitation.email,
},
diff --git a/corehq/ex-submodules/pillowtop/processors/form.py b/corehq/ex-submodules/pillowtop/processors/form.py
index 724c674fa518..a86b83f1fdfa 100644
--- a/corehq/ex-submodules/pillowtop/processors/form.py
+++ b/corehq/ex-submodules/pillowtop/processors/form.py
@@ -3,6 +3,7 @@
from django.conf import settings
from django.http import Http404
+from corehq import toggles
from dimagi.utils.parsing import string_to_utc_datetime
from corehq.apps.app_manager.dbaccessors import get_app
@@ -67,6 +68,9 @@ def process_change(self, change):
if user_id in WEIRD_USER_IDS:
return
+ if toggles.SKIP_UPDATING_USER_REPORTING_METADATA.enabled(domain):
+ return
+
try:
received_on = string_to_utc_datetime(doc.get('received_on'))
except ValueError:
diff --git a/corehq/messaging/scheduling/scheduling_partitioned/models.py b/corehq/messaging/scheduling/scheduling_partitioned/models.py
index 2f1375aba5ae..90508508d558 100644
--- a/corehq/messaging/scheduling/scheduling_partitioned/models.py
+++ b/corehq/messaging/scheduling/scheduling_partitioned/models.py
@@ -2,9 +2,11 @@
import pytz
import sys
import uuid
+
+from corehq import toggles
from corehq.apps.casegroups.models import CommCareCaseGroup
from corehq.apps.groups.models import Group
-from corehq.apps.locations.dbaccessors import get_all_users_by_location
+from corehq.apps.locations.dbaccessors import get_all_users_by_location, user_ids_at_locations
from corehq.apps.locations.models import SQLLocation
from corehq.apps.sms.models import MessagingEvent
from corehq.apps.users.cases import get_owner_id, get_wrapped_owner
@@ -24,6 +26,7 @@
from datetime import timedelta, date, datetime, time
from memoized import memoized
from dimagi.utils.couch import get_redis_lock
+from dimagi.utils.couch.database import iter_docs
from dimagi.utils.modules import to_function
from django.db import models
from django.conf import settings
@@ -191,7 +194,14 @@ def expand_group(group):
def expand_location_ids(domain, location_ids):
user_ids = set()
for location_id in location_ids:
- for user in get_all_users_by_location(domain, location_id):
+ if toggles.INCLUDE_ALL_LOCATIONS.enabled(domain):
+ user_ids_at_this_location = user_ids_at_locations([location_id])
+ users = (CouchUser.wrap_correctly(u)
+ for u in iter_docs(CouchUser.get_db(), user_ids_at_this_location))
+ else:
+ users = get_all_users_by_location(domain, location_id)
+
+ for user in users:
if user.is_active and user.get_id not in user_ids:
user_ids.add(user.get_id)
yield user
@@ -261,11 +271,8 @@ def _passes_user_data_filter(self, contact):
else:
user_data = contact.get_user_data(self.domain)
for key, value_or_property_name in self.memoized_schedule.user_data_filter.items():
- if key not in user_data:
- return False
-
allowed_values_set = {self._get_filter_value(v) for v in self.convert_to_set(value_or_property_name)}
- actual_values_set = self.convert_to_set(user_data[key])
+ actual_values_set = self.convert_to_set(user_data.get(key, ""))
if actual_values_set.isdisjoint(allowed_values_set):
return False
diff --git a/corehq/messaging/scheduling/tests/test_recipients.py b/corehq/messaging/scheduling/tests/test_recipients.py
index c20297d4fe8a..e4976875780d 100644
--- a/corehq/messaging/scheduling/tests/test_recipients.py
+++ b/corehq/messaging/scheduling/tests/test_recipients.py
@@ -80,14 +80,17 @@ def testIgnoreSpacesBracesReturnProperty(self):
class PassesUserDataFilterTest(TestCase):
domain = 'passes-user-data-filter-test'
+ mobile_user = None
@classmethod
def setUpClass(cls):
super(PassesUserDataFilterTest, cls).setUpClass()
cls.domain_obj = create_domain(cls.domain)
- user_data = {"wants_email": "yes", "color": "green"}
+ user_data = {"wants_email": "yes", "color": "green", "empty": ""}
cls.mobile_user = CommCareUser.create(cls.domain, 'mobile', 'abc', None, None, user_data=user_data)
+ create_case_2(cls.domain, case_type=USERCASE_TYPE, external_id=cls.mobile_user.user_id,
+ case_json=user_data, save=True)
@classmethod
def tearDownClass(cls):
@@ -122,9 +125,7 @@ def test_fails_with_user_data_filter_because_one_value_does_not_match(self):
._passes_user_data_filter(self.mobile_user))
def test_passes_with_user_case_filter(self):
- case = create_case_2(self.domain, case_type="thing", case_json={"case_color": "red"})
- create_case_2(self.domain, case_type=USERCASE_TYPE, external_id=self.mobile_user.user_id,
- case_json={"wants_email": "yes", "color": "red"}, save=True)
+ case = create_case_2(self.domain, case_type="thing", case_json={"case_color": "green"})
schedule = AlertSchedule()
schedule.use_user_case_for_filter = True
@@ -132,6 +133,20 @@ def test_passes_with_user_case_filter(self):
self.assertTrue(ScheduleInstance(case=case, domain=self.domain, schedule=schedule)
._passes_user_data_filter(self.mobile_user))
+ def test_empty_string_matches_unset_property(self):
+ schedule = AlertSchedule()
+ schedule.use_user_case_for_filter = False
+ schedule.user_data_filter = {"empty": [""], "unset": ["yes", ""]}
+ self.assertTrue(ScheduleInstance(schedule=schedule)
+ ._passes_user_data_filter(self.mobile_user))
+
+ def test_empty_string_matches_unset_property_user_case(self):
+ schedule = AlertSchedule()
+ schedule.use_user_case_for_filter = True
+ schedule.user_data_filter = {"empty": [""], "unset": ["yes", ""]}
+ self.assertTrue(ScheduleInstance(domain=self.domain, schedule=schedule)
+ ._passes_user_data_filter(self.mobile_user))
+
class SchedulingRecipientTest(TestCase):
domain = 'scheduling-recipient-test'
diff --git a/corehq/motech/repeaters/models.py b/corehq/motech/repeaters/models.py
index 4584219595b2..5b588d42d2b5 100644
--- a/corehq/motech/repeaters/models.py
+++ b/corehq/motech/repeaters/models.py
@@ -1194,6 +1194,9 @@ def fire(self, force_send=False, timing_context=None):
if force_send or not self.succeeded:
try:
self.repeater.fire_for_record(self, timing_context=timing_context)
+ except OSError as e:
+ self.handle_exception(str(e))
+ raise
except Exception as e:
self.handle_payload_error(str(e), traceback_str=traceback.format_exc())
raise
diff --git a/corehq/pillows/synclog.py b/corehq/pillows/synclog.py
index 4e5a994419dc..5366c90c8ea4 100644
--- a/corehq/pillows/synclog.py
+++ b/corehq/pillows/synclog.py
@@ -2,6 +2,7 @@
from django.db import DEFAULT_DB_ALIAS
from casexml.apps.phone.models import SyncLogSQL
+from corehq import toggles
from corehq.sql_db.util import handle_connection_failure
from dimagi.utils.parsing import string_to_utc_datetime
from pillowtop.checkpoints.manager import KafkaPillowCheckpoint
@@ -91,6 +92,9 @@ def process_change(self, change):
if not user_id or not domain:
return
+ if toggles.SKIP_UPDATING_USER_REPORTING_METADATA.enabled(domain):
+ return
+
try:
sync_date = string_to_utc_datetime(synclog.get('date'))
except (ValueError, AttributeError):
diff --git a/corehq/tabs/tabclasses.py b/corehq/tabs/tabclasses.py
index 5f9339c65b8b..67db72399e99 100644
--- a/corehq/tabs/tabclasses.py
+++ b/corehq/tabs/tabclasses.py
@@ -1816,16 +1816,25 @@ def sidebar_items(self):
enterprise_user_management_views = []
if has_privilege(self._request, privileges.PROJECT_ACCESS):
- enterprise_views.extend([
+ enterprise_views.append(
{
- 'title': _('Enterprise Dashboard'),
- 'url': reverse('enterprise_dashboard', args=[self.domain]),
- },
+ 'title': _('Platform Overview'),
+ 'url': reverse('platform_overview', args=[self.domain]),
+ }
+ )
+ if toggles.ENTERPRISE_DASHBOARD_IMPROVEMENTS.enabled_for_request(self._request):
+ enterprise_views.append(
+ {
+ 'title': _('Security Center'),
+ 'url': reverse('security_center', args=[self.domain]),
+ }
+ )
+ enterprise_views.append(
{
'title': _('Enterprise Settings'),
'url': reverse('enterprise_settings', args=[self.domain]),
- },
- ])
+ }
+ )
enterprise_views.append({
'title': _('Billing Statements'),
'url': reverse('enterprise_billing_statements',
diff --git a/corehq/toggles/__init__.py b/corehq/toggles/__init__.py
index 69e94007ac25..1c0468ebcb93 100644
--- a/corehq/toggles/__init__.py
+++ b/corehq/toggles/__init__.py
@@ -2105,9 +2105,11 @@ def _commtrackify(domain_name, toggle_is_enabled):
SKIP_UPDATING_USER_REPORTING_METADATA = StaticToggle(
'skip_updating_user_reporting_metadata',
- 'ICDS: Skip updates to user reporting metadata to avoid expected load on couch',
- TAG_CUSTOM,
+ 'Disable user reporting metadata updates',
+ TAG_INTERNAL,
[NAMESPACE_DOMAIN],
+ description="This is used as a temporary block in case of issues caused by the metadata updates. This"
+ "typically occurs if a large number of devices share the same user account.",
)
DOMAIN_PERMISSIONS_MIRROR = StaticToggle(
@@ -2977,3 +2979,11 @@ def domain_has_privilege_from_toggle(privilege_slug, domain):
tag=TAG_CUSTOM,
namespaces=[NAMESPACE_DOMAIN],
)
+
+INCLUDE_ALL_LOCATIONS = StaticToggle(
+ slug='include_all_locations',
+ label='USH: When sending conditional alerts that target locations expand them to users that are assigned to '
+ 'the location no matter if it is their primary location or not.',
+ tag=TAG_CUSTOM,
+ namespaces=[NAMESPACE_DOMAIN],
+)
diff --git a/corehq/util/workbook_json/const.py b/corehq/util/workbook_json/const.py
new file mode 100644
index 000000000000..7f401bebad52
--- /dev/null
+++ b/corehq/util/workbook_json/const.py
@@ -0,0 +1 @@
+MAX_WORKBOOK_ROWS = 1_000_000
diff --git a/corehq/util/workbook_json/excel.py b/corehq/util/workbook_json/excel.py
index 72a140138100..613c1d9e60c0 100644
--- a/corehq/util/workbook_json/excel.py
+++ b/corehq/util/workbook_json/excel.py
@@ -6,25 +6,16 @@
from django.core.files.uploadedfile import UploadedFile
from django.utils.translation import gettext as _
+from corehq.util.workbook_json.const import MAX_WORKBOOK_ROWS
-class InvalidExcelFileException(Exception):
- pass
-
-
-class JSONReaderError(Exception):
- pass
-
-
-class HeaderValueError(Exception):
- pass
-
-
-class StringTypeRequiredError(Exception):
- pass
-
-
-class WorkbookJSONError(Exception):
- pass
+from .exceptions import (
+ HeaderValueError,
+ InvalidExcelFileException,
+ JSONReaderError,
+ StringTypeRequiredError,
+ WorkbookJSONError,
+ WorkbookTooManyRows,
+)
class IteratorJSONReader(object):
@@ -145,9 +136,9 @@ def set_field_value(cls, obj, field, value):
obj[field] = value
-def get_workbook(file_or_filename):
+def get_workbook(file_or_filename, max_row_count=MAX_WORKBOOK_ROWS):
try:
- return WorkbookJSONReader(file_or_filename)
+ return WorkbookJSONReader(file_or_filename, max_row_count=max_row_count)
except (HeaderValueError, InvalidExcelFileException) as e:
raise WorkbookJSONError(_(
"Upload failed! "
@@ -203,6 +194,8 @@ def __init__(self, worksheet, title=None):
break
else:
width += 1
+
+ # ensure _max_row and _max_column properties are set
self.worksheet.calculate_dimension(force=True)
def iterator():
@@ -229,7 +222,7 @@ def _convert_float(value):
class WorkbookJSONReader(object):
- def __init__(self, file_or_filename):
+ def __init__(self, file_or_filename, max_row_count=MAX_WORKBOOK_ROWS):
check_types = (UploadedFile, io.RawIOBase, io.BufferedIOBase)
if isinstance(file_or_filename, check_types):
tmp = NamedTemporaryFile(mode='wb', suffix='.xlsx', delete=False)
@@ -246,12 +239,16 @@ def __init__(self, file_or_filename):
self.worksheets = []
try:
+ total_row_count = 0
for worksheet in self.wb.worksheets:
try:
ws = WorksheetJSONReader(worksheet, title=worksheet.title)
except IndexError:
raise JSONReaderError('This Excel file has unrecognised formatting. Please try downloading '
'the lookup table first, and then add data to it.')
+ total_row_count += worksheet.max_row
+ if total_row_count > max_row_count:
+ raise WorkbookTooManyRows(max_row_count, total_row_count)
self.worksheets_by_title[worksheet.title] = ws
self.worksheets.append(ws)
finally:
diff --git a/corehq/util/workbook_json/excel_importer.py b/corehq/util/workbook_json/excel_importer.py
index d54d1bc8b375..36a669bf3b48 100644
--- a/corehq/util/workbook_json/excel_importer.py
+++ b/corehq/util/workbook_json/excel_importer.py
@@ -6,9 +6,7 @@
from corehq.util.workbook_json.excel import WorkbookJSONReader
-
-class UnknownFileRefException(Exception):
- pass
+from .exceptions import UnknownFileRefException
class ExcelImporter(object):
diff --git a/corehq/util/workbook_json/exceptions.py b/corehq/util/workbook_json/exceptions.py
new file mode 100644
index 000000000000..a3fc529dd1b5
--- /dev/null
+++ b/corehq/util/workbook_json/exceptions.py
@@ -0,0 +1,31 @@
+class HeaderValueError(Exception):
+ pass
+
+
+class InvalidExcelFileException(Exception):
+ pass
+
+
+class JSONReaderError(Exception):
+ pass
+
+
+class StringTypeRequiredError(Exception):
+ pass
+
+
+class UnknownFileRefException(Exception):
+ pass
+
+
+class WorkbookJSONError(Exception):
+ pass
+
+
+class WorkbookTooManyRows(Exception):
+ """Workbook row count exceeds MAX_WORKBOOK_ROWS"""
+
+ def __init__(self, max_row_count, actual_row_count):
+ super().__init__()
+ self.max_row_count = max_row_count
+ self.actual_row_count = actual_row_count
diff --git a/custom/abt/reports/data_sources/late_pmt.json b/custom/abt/reports/data_sources/late_pmt.json
index dd54e33c9d5b..56b05c2c99df 100644
--- a/custom/abt/reports/data_sources/late_pmt.json
+++ b/custom/abt/reports/data_sources/late_pmt.json
@@ -15,6 +15,7 @@
"kenya-vca",
"pmievolve-ethiopia-1",
"pmievolve-ghana",
+ "pmievolve-kenya",
"pmievolve-madagascar",
"pmievolve-malawi",
"pmievolve-mozambique",
diff --git a/custom/abt/reports/data_sources/sms_case.json b/custom/abt/reports/data_sources/sms_case.json
index 0e0b04dce921..d3e615741b26 100644
--- a/custom/abt/reports/data_sources/sms_case.json
+++ b/custom/abt/reports/data_sources/sms_case.json
@@ -15,6 +15,7 @@
"kenya-vca",
"pmievolve-ethiopia-1",
"pmievolve-ghana",
+ "pmievolve-kenya",
"pmievolve-madagascar",
"pmievolve-malawi",
"pmievolve-mozambique",
diff --git a/custom/abt/reports/data_sources/supervisory_v2020.json b/custom/abt/reports/data_sources/supervisory_v2020.json
index 515751077f37..40d092844bcf 100644
--- a/custom/abt/reports/data_sources/supervisory_v2020.json
+++ b/custom/abt/reports/data_sources/supervisory_v2020.json
@@ -16,6 +16,7 @@
"kenya-vca",
"pmievolve-ethiopia-1",
"pmievolve-ghana",
+ "pmievolve-kenya",
"pmievolve-madagascar",
"pmievolve-malawi",
"pmievolve-mozambique",
diff --git a/custom/abt/reports/sms_indicator_report.json b/custom/abt/reports/sms_indicator_report.json
index 6884b29246d2..dd9cb5f18c04 100644
--- a/custom/abt/reports/sms_indicator_report.json
+++ b/custom/abt/reports/sms_indicator_report.json
@@ -16,6 +16,7 @@
"vectorlink-benin",
"pmievolve-ethiopia-1",
"pmievolve-ghana",
+ "pmievolve-kenya",
"pmievolve-madagascar",
"pmievolve-malawi",
"pmievolve-mozambique",
diff --git a/custom/abt/reports/spray_progress_country.json b/custom/abt/reports/spray_progress_country.json
index 49f6f05b0d57..749641c80a7b 100644
--- a/custom/abt/reports/spray_progress_country.json
+++ b/custom/abt/reports/spray_progress_country.json
@@ -15,6 +15,7 @@
"kenya-vca",
"pmievolve-ethiopia-1",
"pmievolve-ghana",
+ "pmievolve-kenya",
"pmievolve-madagascar",
"pmievolve-malawi",
"pmievolve-mozambique",
diff --git a/custom/abt/reports/spray_progress_level_1.json b/custom/abt/reports/spray_progress_level_1.json
index 0b0da25a9190..682ecad4d032 100644
--- a/custom/abt/reports/spray_progress_level_1.json
+++ b/custom/abt/reports/spray_progress_level_1.json
@@ -15,6 +15,7 @@
"kenya-vca",
"pmievolve-ethiopia-1",
"pmievolve-ghana",
+ "pmievolve-kenya",
"pmievolve-madagascar",
"pmievolve-malawi",
"pmievolve-mozambique",
diff --git a/custom/abt/reports/spray_progress_level_2.json b/custom/abt/reports/spray_progress_level_2.json
index 89c6d37ca6f5..4707d6bf13e0 100644
--- a/custom/abt/reports/spray_progress_level_2.json
+++ b/custom/abt/reports/spray_progress_level_2.json
@@ -15,6 +15,7 @@
"kenya-vca",
"pmievolve-ethiopia-1",
"pmievolve-ghana",
+ "pmievolve-kenya",
"pmievolve-madagascar",
"pmievolve-malawi",
"pmievolve-mozambique",
diff --git a/custom/abt/reports/spray_progress_level_3.json b/custom/abt/reports/spray_progress_level_3.json
index 8aa14373e706..fd64a27df43a 100644
--- a/custom/abt/reports/spray_progress_level_3.json
+++ b/custom/abt/reports/spray_progress_level_3.json
@@ -14,6 +14,7 @@
"kenya-vca",
"pmievolve-ethiopia-1",
"pmievolve-ghana",
+ "pmievolve-kenya",
"pmievolve-madagascar",
"pmievolve-malawi",
"pmievolve-mozambique",
diff --git a/custom/abt/reports/spray_progress_level_4.json b/custom/abt/reports/spray_progress_level_4.json
index 120c6b3e3215..d881362606c6 100644
--- a/custom/abt/reports/spray_progress_level_4.json
+++ b/custom/abt/reports/spray_progress_level_4.json
@@ -14,6 +14,7 @@
"kenya-vca",
"pmievolve-ethiopia-1",
"pmievolve-ghana",
+ "pmievolve-kenya",
"pmievolve-madagascar",
"pmievolve-malawi",
"pmievolve-mozambique",
diff --git a/custom/abt/reports/supervisory_report_v2020.json b/custom/abt/reports/supervisory_report_v2020.json
index 88d3a0337baf..dc0a8f5957ed 100644
--- a/custom/abt/reports/supervisory_report_v2020.json
+++ b/custom/abt/reports/supervisory_report_v2020.json
@@ -16,6 +16,7 @@
"kenya-vca",
"pmievolve-ethiopia-1",
"pmievolve-ghana",
+ "pmievolve-kenya",
"pmievolve-madagascar",
"pmievolve-malawi",
"pmievolve-mozambique",
diff --git a/locale/en/LC_MESSAGES/django.po b/locale/en/LC_MESSAGES/django.po
index bba9acaee8f5..5d151b0f2afe 100644
--- a/locale/en/LC_MESSAGES/django.po
+++ b/locale/en/LC_MESSAGES/django.po
@@ -23,7 +23,8 @@ msgstr ""
#: corehq/apps/accounting/filters.py
#: corehq/apps/app_manager/templates/app_manager/partials/bulk_upload_app_translations.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/geospatial/filters.py
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
@@ -287,8 +288,10 @@ msgstr ""
#: corehq/apps/builds/templates/builds/all.html
#: corehq/apps/builds/templates/builds/edit_menu.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/translations_coverage.html
msgid "Version"
msgstr ""
@@ -445,9 +448,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
#: corehq/apps/enterprise/enterprise.py corehq/apps/events/forms.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -489,7 +493,8 @@ msgid "Company / Organization"
msgstr ""
#: corehq/apps/accounting/forms.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
#: corehq/apps/reminders/forms.py corehq/apps/reports/standard/deployments.py
#: corehq/apps/reports/standard/sms.py
@@ -903,8 +908,10 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/accounting_admins.html
#: corehq/apps/data_interfaces/templates/data_interfaces/manage_case_groups.html
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/partials/manage_downstream_domains.html
#: corehq/apps/locations/templates/locations/location_types.html
@@ -959,11 +966,13 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
#: corehq/apps/enterprise/templates/enterprise/partials/date_range_modal.html
-#: corehq/apps/events/templates/edit_attendee.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/edit_attendee.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/dialogs/bulk_delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
@@ -1448,9 +1457,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_run_history.html
#: corehq/apps/data_interfaces/views.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/enterprise/enterprise.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/standard/cases/basic.py
@@ -2542,7 +2552,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/invoice.html
#: corehq/apps/app_execution/templates/app_execution/workflow_list.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/app_release_logs.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/hqadmin/reports.py corehq/apps/linked_domain/views.py
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/reports/standard/deployments.py
@@ -2772,7 +2783,8 @@ msgid "Add New Credit Card"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/new_stripe_card_template.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
msgid "Processing your request"
msgstr ""
@@ -2842,12 +2854,14 @@ msgid "Save"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Monthly"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Annually"
msgstr ""
@@ -2934,7 +2948,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/subscriptions_tab.html
#: corehq/apps/app_execution/templates/app_execution/components/title_bar.html
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_properties.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
#: corehq/apps/locations/templates/locations/manage/location_template.html
@@ -3155,8 +3170,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_lookup.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/partials/reference_table.html
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/registry/templates/registry/registry_edit.html
@@ -3542,7 +3559,8 @@ msgstr ""
#: corehq/apps/data_interfaces/forms.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/geospatial/templates/geospatial/gps_capture.html
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/scheduled_reports_table.html
@@ -3618,8 +3636,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_case_groups.html
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
@@ -3972,8 +3992,10 @@ msgstr ""
#: corehq/apps/app_manager/fields.py
#: corehq/apps/cloudcare/templates/cloudcare/config.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/linked_domain/const.py
#: corehq/apps/reports/filters/forms.py corehq/apps/reports/filters/select.py
#: corehq/apps/reports/standard/deployments.py
@@ -4276,7 +4298,6 @@ msgstr ""
#: corehq/apps/app_manager/helpers/validators.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case property"
msgstr ""
@@ -4870,7 +4891,8 @@ msgid "Enable Menu Display Setting Per-Module"
msgstr ""
#: corehq/apps/app_manager/static_strings.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/enterprise/templates/enterprise/partials/enterprise_permissions_table.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqadmin/forms.py
@@ -5086,7 +5108,8 @@ msgid "No Validation"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -5574,7 +5597,8 @@ msgid "XXX-High Density"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -6278,7 +6302,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/odk_install.html
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_tab_advanced.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/releases_deploy_modal.html
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/export/templates/export/partials/export_download_progress.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqmedia/templates/hqmedia/audio_translator.html
@@ -6320,11 +6345,15 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
#: corehq/apps/data_interfaces/templates/data_interfaces/interfaces/case_management.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/dialogs/process_deleted_questions.html
#: corehq/apps/export/templates/export/dialogs/process_deprecated_properties.html
#: corehq/apps/export/templates/export/partials/table.html
@@ -8072,8 +8101,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_workflow.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_detail.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_list/multi_select_continue_button.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/messaging/scheduling/templates/scheduling/partials/conditional_alert_continue.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/start.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/step1.html
@@ -9409,7 +9440,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/mobile_report_configs.html
#: corehq/apps/data_dictionary/templates/data_dictionary/base.html
#: corehq/apps/data_dictionary/views.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/download_data_files.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -9487,7 +9519,8 @@ msgid ""
msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/module_actions.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/apps/registration/templates/registration/partials/start_trial_modal.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/description.html
#: corehq/apps/reports/templates/reports/partials/bootstrap5/description.html
@@ -11488,7 +11521,6 @@ msgid "Case Type to Update/Create"
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case type"
msgstr ""
@@ -11531,8 +11563,10 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
#: corehq/apps/case_importer/templates/case_importer/excel_fields.html
#: corehq/apps/domain/templates/error.html
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/registration/forms.py corehq/apps/settings/forms.py
msgid "Back"
@@ -11696,19 +11730,21 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" row had an invalid\n"
-" \"\" cell and was not "
+" row had an "
+"invalid\n"
+" \"\" cell and was not "
"saved\n"
-" "
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" rows had invalid\n"
-" \"\" cells and were not "
-"saved\n"
-" "
+" rows had "
+"invalid\n"
+" \"\" cells and were "
+"not saved\n"
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
@@ -11851,7 +11887,7 @@ msgid "{param} must be a string"
msgstr ""
#: corehq/apps/case_search/models.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/locations/templates/locations/manage/location.html
#: corehq/apps/reports/filters/users.py corehq/apps/users/models.py
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -11923,7 +11959,8 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/form_entry/entry_geo.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/reports/filters/simple.py
#: corehq/apps/reports/standard/cases/filters.py
#: corehq/apps/sms/templates/sms/chat_contacts.html
@@ -11933,7 +11970,8 @@ msgstr ""
#: corehq/apps/case_search/templates/case_search/case_search.html
#: corehq/apps/custom_data_fields/edit_entity.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/users/templates/users/enterprise_users.html
msgid "Profile"
msgstr ""
@@ -12139,6 +12177,14 @@ msgid ""
"\"YYYY-mm-dd\""
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "{} is not a valid datetime"
+msgstr ""
+
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Invalid datetime value. Must be a number or a ISO 8601 string."
+msgstr ""
+
#: corehq/apps/case_search/xpath_functions/value_functions.py
#, python-brace-format
msgid ""
@@ -12157,6 +12203,10 @@ msgid ""
"add\" function"
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Cannot convert {} to a double"
+msgstr ""
+
#: corehq/apps/cloudcare/api.py
#, python-format
msgid "Not found application by name: %s"
@@ -14270,7 +14320,8 @@ msgid ""
msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/domain_links.html
#: corehq/apps/translations/forms.py
@@ -14691,7 +14742,8 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/events/forms.py corehq/apps/events/views.py
#: corehq/apps/geospatial/templates/geospatial/case_management.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/locations/forms.py
@@ -15701,7 +15753,8 @@ msgid ""
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/paused_plan_notice.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/paused_plan_notice.html
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -15709,7 +15762,8 @@ msgid "Subscribe to Plan"
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Renew Plan"
msgstr ""
@@ -15912,45 +15966,379 @@ msgstr ""
msgid "There has been a transfer of ownership of {domain}"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Transfer project ownership"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "SMS Keyword"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#, python-format
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "Action Type"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/edit_alert.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/edit_alert.html
+msgid "Edit Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
+msgid "Feature Previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "What are Feature Previews?"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" By clicking \"accept\" below you acknowledge that you accept "
-"full ownership of this project space (\"%(domain)s\").\n"
-" You agree to be bound by the terms of Dimagi's Terms of Service and "
-"Business Agreement.\n"
-" By accepting this agreement, your are acknowledging you have "
-"permission and authority to accept these terms. A Dimagi representative will "
-"notify you when the transfer is complete.\n"
+" Before we invest in making certain product features generally\n"
+" available, we release them as Feature Previews to learn the\n"
+" following two things from usage data and qualitative feedback.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Perceived Value:\n"
+" The biggest risk in product development is to\n"
+" build something that offers little value to our users. As "
+"such,\n"
+" we make Feature Previews generally available only if they "
+"have\n"
+" high perceived value.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-#: corehq/apps/registry/templates/registry/registry_list.html
-msgid "Accept"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" User Experience:\n"
+" Even if a feature has high perceived value,\n"
+" it is important that the user experience of the feature is\n"
+" optimized such that our users actually receive the value.\n"
+" As such, we make high value Feature Previews generally\n"
+" available after we optimize the user experience.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Decline"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Feature Previews are in active product development, therefore\n"
+" should not be used for business critical workflows. We encourage\n"
+" you to use Feature Previews and provide us feedback, however\n"
+" please note that Feature Previews:\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" Sorry this transfer request has expired.\n"
+" May not be optimized for performance\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not supported by the CommCare Support Team\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" May change at any time without notice\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/calendar_fixture.html
-msgid "Calendar Fixture Settings"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not subject to any warranties on current and future\n"
+" availability. Please refer to our\n"
+" terms to\n"
+" learn more.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Looking for something that used to be here?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" The feature flags Control Mapping in Case List"
+"strong>,\n"
+" Custom Calculations in Case List, "
+"Custom\n"
+" Single and Multiple Answer Questions, and Icons "
+"in\n"
+" Case List are now add-ons for individual apps. To turn\n"
+" them on, go to the application's settings and choose the\n"
+" Add-Ons tab.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Update previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Feature Name"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
+msgid "More information"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "SMS Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/userreports/views.py
+msgid "Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" View SMS prices for using Dimagi's connections in each country.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" You can choose a connection for your project under Messaging -> SMS "
+"Connectivity\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Calculating SMS Rate...\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Connection"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Incoming"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Outgoing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Your own Android Gateway"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" Pricing is per message sent or received. Fees are subject to change "
+"based on provider rates and exchange rates and are computed at the time the "
+"SMS is sent or received.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/location_fixture.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/location_fixture.html
+msgid "Location Fixture Settings"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "Add New Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Available Alerts"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "You can only have 3 alerts activated at any one time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
+msgid "Start Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "End Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Added By"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "De-activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "No alerts added yet for the project."
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Measure"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Sequence Number"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "App Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "CC Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+#: corehq/apps/users/templates/users/edit_commcare_user.html
+msgid "Created On"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Notes"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "No measures have been initiated for this application"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Use this form to get a cost estimation per 160 character SMS,\n"
+" given a connection, direction,\n"
+" and country code.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" The fee will be applied to the most specific criteria available.\n"
+" A fee for a specific country code (if available) will be used\n"
+" over the default of 'Any Country'.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Fees are subject to change based on updates to each carrier and are\n"
+" computed at the time the SMS is sent.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain.html
+msgid ""
+"\n"
+" Use this to transfer your project to another user.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+#, python-format
+msgid ""
+"\n"
+" You have a pending transfer with %(username)s\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid ""
+"\n"
+" Resend Transfer Request\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid "Cancel Transfer"
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16019,9 +16407,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update case search data immediately on web apps form "
+" Update case search data immediately on web apps form "
"submission.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16039,9 +16427,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update local case data immediately before entering a web "
+" Update local case data immediately before entering a web "
"apps form.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16070,302 +16458,6 @@ msgstr ""
msgid "Add case property"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "SMS Keyword"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "Action Type"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/edit_alert.html
-msgid "Edit Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
-msgid "Feature Previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "What are Feature Previews?"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Before we invest in making certain product features generally\n"
-" available, we release them as Feature Previews to learn the\n"
-" following two things from usage data and qualitative feedback.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Perceived Value:\n"
-" The biggest risk in product development is to\n"
-" build something that offers little value to our users. As "
-"such,\n"
-" we make Feature Previews generally available only if they "
-"have\n"
-" high perceived value.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" User Experience:\n"
-" Even if a feature has high perceived value,\n"
-" it is important that the user experience of the feature is\n"
-" optimized such that our users actually receive the value.\n"
-" As such, we make high value Feature Previews generally\n"
-" available after we optimize the user experience.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Feature Previews are in active product development, therefore\n"
-" should not be used for business critical workflows. We encourage\n"
-" you to use Feature Previews and provide us feedback, however\n"
-" please note that Feature Previews:\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May not be optimized for performance\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not supported by the CommCare Support Team\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May change at any time without notice\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not subject to any warranties on current and future\n"
-" availability. Please refer to our\n"
-" terms to\n"
-" learn more.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Looking for something that used to be here?\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" The feature flags Control Mapping in Case List"
-"strong>,\n"
-" Custom Calculations in Case List, "
-"Custom\n"
-" Single and Multiple Answer Questions, and Icons "
-"in\n"
-" Case List are now add-ons for individual apps. To turn\n"
-" them on, go to the application's settings and choose the\n"
-" Add-Ons tab.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Update previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Feature Name"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
-msgid "More information"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "SMS Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/userreports/views.py
-msgid "Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" View SMS prices for using Dimagi's connections in each country.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" You can choose a connection for your project under Messaging -> SMS "
-"Connectivity\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Calculating SMS Rate...\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Connection"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Incoming"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Outgoing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Your own Android Gateway"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" Pricing is per message sent or received. Fees are subject to change "
-"based on provider rates and exchange rates and are computed at the time the "
-"SMS is sent or received.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/location_fixture.html
-msgid "Location Fixture Settings"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "Add New Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Available Alerts"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "You can only have 3 alerts activated at any one time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
-msgid "Start Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "End Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Added By"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "De-activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "No alerts added yet for the project."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Measure"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Sequence Number"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "App Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "CC Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-#: corehq/apps/users/templates/users/edit_commcare_user.html
-msgid "Created On"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Notes"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "No measures have been initiated for this application"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Use this form to get a cost estimation per 160 character SMS,\n"
-" given a connection, direction,\n"
-" and country code.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" The fee will be applied to the most specific criteria available.\n"
-" A fee for a specific country code (if available) will be used\n"
-" over the default of 'Any Country'.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Fees are subject to change based on updates to each carrier and are\n"
-" computed at the time the SMS is sent.\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/domain/admin/sms_settings.html
msgid "Stock Actions"
msgstr ""
@@ -16378,75 +16470,103 @@ msgstr ""
msgid "Save Settings"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain.html
-msgid ""
-"\n"
-" Use this to transfer your project to another user.\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Transfer project ownership"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
#, python-format
msgid ""
"\n"
-" You have a pending transfer with %(username)s\n"
-" "
+" By clicking \"accept\" below you acknowledge that you accept "
+"full ownership of this project space (\"%(domain)s\").\n"
+" You agree to be bound by the terms of Dimagi's Terms of Service and "
+"Business Agreement.\n"
+" By accepting this agreement, your are acknowledging you have "
+"permission and authority to accept these terms. A Dimagi representative will "
+"notify you when the transfer is complete.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid ""
-"\n"
-" Resend Transfer Request\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+#: corehq/apps/registry/templates/registry/registry_list.html
+msgid "Accept"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid "Cancel Transfer"
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Decline"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid ""
+"\n"
+" Sorry this transfer request has expired.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Total Due:"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Wire"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Not Billing Admin, Can't Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/domain/views/accounting.py corehq/apps/enterprise/views.py
#: corehq/tabs/tabclasses.py
msgid "Billing Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Unpaid"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show Only Unpaid Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show All Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Payment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay the full balance: $"
@@ -16454,14 +16574,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay a portion of the balance:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Please enter an amount that's between $0.50 and $"
@@ -16487,20 +16611,25 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Wire Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Thank you for your payment!"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Thank you for your upcoming wire payment.\n"
@@ -16510,7 +16639,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_billing_info.html
#, python-format
msgid ""
"\n"
@@ -16520,7 +16650,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Clicking the 'Confirm Plan' button below will bring you to a "
@@ -16528,33 +16659,40 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Select different option"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Select different plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Confirm Pause"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Confirm Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Before you pause..."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Downgrading?"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" We'd love to make CommCare work better for you.\n"
@@ -16562,56 +16700,64 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you pausing your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you downgrading your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Do you think your project may start again?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Could you indicate which new tool you’re using?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you switching to a new tool?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please specify\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please let us know any other feedback you have\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16619,11 +16765,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
msgid "— which matches your current feature usage."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16631,7 +16779,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16641,31 +16790,36 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
msgid "Current Subscription"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/styleguide/examples/bootstrap5/select2_manual_form.py
msgid "Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Your Subscription is Paused\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid " Day Trial"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16675,7 +16829,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16686,7 +16841,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Note: This subscription will not be "
@@ -16694,22 +16850,28 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Got questions about your plan?"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Talk to Sales"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Change Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16717,7 +16879,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16725,104 +16888,129 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Started"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Ending"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Begins"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Subscription Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Plan Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "General Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Generate Prepayment Invoice"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Not Billing Admin, Can't Add Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Usage Summary"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Feature"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Use"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Included in Software Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Usage"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepayment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"One credit is equivalent to one USD. Credits are applied to monthly invoices"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Please enter an amount that's either $0 or greater than "
@@ -16830,11 +17018,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Total Credits"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Thank you! You will receive an invoice via email with instructions for "
@@ -16843,17 +17033,360 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid "Domain Temporarily Unavailable"
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid ""
"The page you requested is currently unavailable due to a\n"
" data migration. Please check back later."
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+#, python-format
+msgid ""
+"\n"
+" %(feature_name)s is only available to projects\n"
+" subscribed to %(plan_name)s plan or higher.\n"
+" To access this feature, you must subscribe to the\n"
+" %(plan_name)s plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid ""
+"\n"
+" You must be a Project Administrator to make Subscription changes.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Read more about our plans"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Change My Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load EVERYTHING"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load Property"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_subscription_management.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_subscription_management.html
+#, python-format
+msgid ""
+"\n"
+"
\n"
+" This page is visible to Dimagi employees only (you have an @dimagi.com "
+"email address). You can use this page\n"
+" to set up a subscription for this project space.\n"
+"\n"
+" Use this tool only for projects that are:\n"
+"
\n"
+"
an internal test project
\n"
+"
part of a contracted project
\n"
+"
a short term extended trial for biz dev
\n"
+"
\n"
+" \n"
+"\n"
+"
\n"
+" Your project is currently subscribed to %(plan_name)s.\n"
+"
\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Could not update!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Last Activity"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Activated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Deactivated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#, python-format
+msgid ""
+"\n"
+" You are renewing your %(p)s subscription.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
+#: corehq/apps/registration/forms.py
+#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
+#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
+#: corehq/apps/settings/forms.py
+#: corehq/apps/userreports/reports/builder/forms.py
+msgid "Next"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/settings/views.py
+msgid "My Projects"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "Accept All Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "My Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "90 day refund policy"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "monthly"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "discounted"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be downgrading to\n"
+" on\n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be pausing on \n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Current Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/views/accounting.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
+msgid "Select Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Pause Subscription\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" What happens after you pause?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will lose access to your project space, but you will be\n"
+" able to re-subscribe anytime in the future.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will no longer be billed.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription is currently paused.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Your subscription is currently paused because you have\n"
+" past-due invoices.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will not be allowed to un-pause your project until\n"
+" these invoices are paid.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be pausing on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be downgrading to\n"
+" on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You are currently on the FREE CommCare Community plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Dismiss"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Saved Credit Cards"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Add Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Credit Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Your request was successful!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Delete Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid ""
+"\n"
+" Actually remove "
+"strong> card\n"
+" ************"
+"strong>?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Remove Autopay"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Set as autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually. \n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16862,7 +17395,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16870,14 +17404,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
msgid ""
"\n"
" Accept Invitation\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16887,7 +17423,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
msgid ""
"\n"
" CommCare HQ is a data management tool used by over 500 organizations\n"
@@ -16897,7 +17433,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16907,6 +17444,16 @@ msgid ""
" "
msgstr ""
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
+msgid ""
+"\n"
+" CommCare HQ is a data management tool used by over 500 organizations\n"
+" to help frontline workers around the world.\n"
+" Learn "
+"more about CommCare. \n"
+" "
+msgstr ""
+
#: corehq/apps/domain/templates/domain/email/domain_invite.txt
#: corehq/apps/registration/templates/registration/email/mobile_worker_confirm_account.txt
msgid "Hey there,"
@@ -17162,93 +17709,23 @@ msgid ""
"org/.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-#, python-format
-msgid ""
-"\n"
-" %(feature_name)s is only available to projects\n"
-" subscribed to %(plan_name)s plan or higher.\n"
-" To access this feature, you must subscribe to the\n"
-" %(plan_name)s plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid ""
-"\n"
-" You must be a Project Administrator to make Subscription changes.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Read more about our plans"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Change My Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load EVERYTHING"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load Property"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_subscription_management.html
-#, python-format
-msgid ""
-"\n"
-"
\n"
-" This page is visible to Dimagi employees only (you have an @dimagi.com "
-"email address). You can use this page\n"
-" to set up a subscription for this project space.\n"
-"\n"
-" Use this tool only for projects that are:\n"
-"
\n"
-"
an internal test project
\n"
-"
part of a contracted project
\n"
-"
a short term extended trial for biz dev
\n"
-"
\n"
-" \n"
-"\n"
-"
\n"
-" Your project is currently subscribed to %(plan_name)s.\n"
-"
\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Could not update!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Last Activity"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Activated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Deactivated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "Use the Creative Commons website"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "to choose a Creative Commons license."
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Wire Payment Information"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid ""
"\n"
" Dimagi accepts wire payments via ACH and wire transfer. You "
@@ -17261,271 +17738,156 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Invoice Recipients"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Please agree to the Privacy Policy."
msgstr ""
-#: corehq/apps/domain/templates/domain/pro_bono/page_content.html
-msgid ""
-"Thank you for your submission. A representative will be in contact with you "
-"shortly."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#, python-format
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" You are renewing your %(p)s subscription.\n"
-" "
+" This license doesn't cover all your multimedia.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
-#: corehq/apps/registration/forms.py
-#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
-#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
-#: corehq/apps/settings/forms.py
-#: corehq/apps/userreports/reports/builder/forms.py
-msgid "Next"
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "More info..."
msgstr ""
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/settings/views.py
-msgid "My Projects"
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "Select a more restrictive license"
msgstr ""
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "Accept All Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "My Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Save close to 20%% when you pay annually.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "90 day refund policy"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "monthly"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "discounted"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be downgrading to\n"
-" on\n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be pausing on \n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Current Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/views/accounting.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
-msgid "Select Plan"
+" Since you've opted to publish your multimedia along with your "
+"app,\n"
+" you must select a license that is more restrictive than the "
+"multimedia in the app.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Pause Subscription\n"
+" To satisfy this condition, you can either decide not to publish "
+"the multimedia\n"
+" or select one of the following licenses:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap3/page_content.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap5/page_content.html
msgid ""
-"\n"
-" What happens after you pause?\n"
-" "
+"Thank you for your submission. A representative will be in contact with you "
+"shortly."
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will lose access to your project space, but you will be\n"
-" able to re-subscribe anytime in the future.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Error details"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will no longer be billed.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Log In"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription is currently paused.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/login.html
+msgid "Log In :: CommCare HQ"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
-msgid ""
-"\n"
-" Your subscription is currently paused because you have\n"
-" past-due invoices.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset Confirmation"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will not be allowed to un-pause your project until\n"
-" these invoices are paid.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
+#: corehq/apps/users/forms.py
+msgid "Reset Password"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription will be pausing on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+msgid "Reset Password Unsuccessful"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Your subscription will be downgrading to\n"
-" on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
+" The password reset link was invalid, possibly because\n"
+" it has already been used.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" You are currently on the FREE CommCare Community plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Dismiss"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Saved Credit Cards"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Add Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Credit Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Your request was successful!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Delete Card"
+" Please request a new password reset.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Actually remove "
-"strong> card\n"
-" ************"
-"strong>?\n"
+" Request Password Reset\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Remove Autopay"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Set as autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Error details"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Log In"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/login.html
-msgid "Log In :: CommCare HQ"
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"\n"
" No account? Sign up today, it's free!\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Learn more"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"about how CommCare HQ can be your mobile solution for your frontline "
"workforce."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
#, python-format
msgid "Request Access to %(hr_name)s"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Sign Up"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
msgid ""
"\n"
" We will email instructions to you for resetting your "
@@ -17533,15 +17895,6 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/users/forms.py
-msgid "Reset Password"
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/urls.py
msgid "Password Change Complete"
@@ -17554,7 +17907,8 @@ msgstr ""
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap3/base_navigation.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap5/base_navigation.html
msgid "Sign In"
@@ -17565,37 +17919,6 @@ msgstr ""
msgid "Password Reset Complete"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset Confirmation"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid "Reset Password Unsuccessful"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" The password reset link was invalid, possibly because\n"
-" it has already been used.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Please request a new password reset.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Request Password Reset\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
msgid "Password Reset Requested"
msgstr ""
@@ -17637,21 +17960,20 @@ msgstr ""
msgid "--The CommCare HQ Team"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_forms.html
msgid "Forgot your password?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid ""
"Backup tokens can be used when your primary and backup\n"
" phone numbers aren't available. The backup tokens below can be used\n"
@@ -17660,29 +17982,37 @@ msgid ""
" below will be valid."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Print these tokens and keep them somewhere safe."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "You don't have any backup codes yet."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Begin Using CommCare Now"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Back to Profile"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Generate Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We are calling your phone right now, please enter the\n"
@@ -17690,7 +18020,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We sent you a text message, please enter the tokens we\n"
@@ -17698,7 +18029,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the tokens generated by your token\n"
@@ -17706,50 +18038,61 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the token given to you by your domain administrator.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Looks like your CommCare session has expired."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please log in again to continue working."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below to continue."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "You will be transferred to your original destination after you sign in."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Or, alternatively, use one of your backup phones:"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Please contact your domain administrator if you need a backup token."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Use Backup Token"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid "Please set up Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" For security purposes, your CommCare administrator has required that "
@@ -17760,7 +18103,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" To access your account, please enable two-factor authentication "
@@ -17768,71 +18112,87 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/file_download.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/file_download.html
msgid "Go back"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Enable Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid "Add Backup Phone"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"Your backup phone number will be used if your primary method of registration "
"is not available. Please enter a valid phone number."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"We've sent a token to your phone number. Please enter the token you've "
"received."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Follow the steps in this wizard to enable two-factor authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Please select which authentication method you would like to use."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To start using a token generator, please use your smartphone to scan the QR "
"code below. For example, use Google Authenticator. Then, enter the token "
"generated by the app."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to receive the text messages on. This "
"number will be validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to be called on. This number will be "
"validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We are calling your phone right now, please enter the digits you hear."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We sent you a text message, please enter the tokens we sent."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"We've encountered an issue with the selected authentication method. Please "
"go back and verify that you entered your information correctly, try again, "
@@ -17840,44 +18200,52 @@ msgid ""
"contact the site administrator."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To identify and verify your YubiKey, please insert a token in the field "
"below. Your YubiKey will be linked to your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid ""
"Congratulations, you've successfully enabled two-factor\n"
" authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "To enable account recovery, generate backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Generate Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid "Remove Two-factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid ""
"You are about to remove two-factor authentication. This\n"
" compromises your account security, are you sure?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" Two-Factor Authentication is not managed here.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17887,32 +18255,38 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Phone Numbers"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If your primary method is not available, we are able to\n"
" send backup tokens to the phone numbers listed below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Unregister"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/sms/templates/sms/add_gateway.html
msgid "Add Phone Number"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If you don't have any device with you, you can access\n"
" your account using backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17925,27 +18299,32 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Show Codes"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/settings/views.py
msgid "Remove Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"We strongly discourage this, but if absolutely necessary "
"you can\n"
" remove two-factor authentication from your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Reset Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" This will remove your current two-factor authentication, and "
@@ -17956,7 +18335,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"Two-factor authentication is not enabled for your\n"
" account. Enable two-factor authentication for enhanced account\n"
@@ -18901,10 +19281,6 @@ msgstr ""
msgid "Enterprise Dashboard: {}"
msgstr ""
-#: corehq/apps/enterprise/templates/enterprise/enterprise_dashboard.html
-msgid "Email Report"
-msgstr ""
-
#: corehq/apps/enterprise/templates/enterprise/enterprise_permissions.html
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
msgid "Enterprise Permissions"
@@ -18965,8 +19341,31 @@ msgstr ""
msgid "No project spaces found."
msgstr ""
+#: corehq/apps/enterprise/templates/enterprise/partials/project_tile.html
+msgid "Email Report"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Platform Overview for {}"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
+msgid "Platform Overview"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
+#: corehq/apps/sso/forms.py
+msgid "Enterprise Console"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Security Center for {}"
+msgstr ""
+
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
-msgid "Enterprise Dashboard"
+msgid "Security Center"
msgstr ""
#: corehq/apps/enterprise/views.py corehq/apps/reports/views.py
@@ -18984,13 +19383,6 @@ msgstr ""
msgid "Enterprise Settings"
msgstr ""
-#: corehq/apps/enterprise/views.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
-#: corehq/apps/sso/forms.py
-msgid "Enterprise Console"
-msgstr ""
-
#: corehq/apps/enterprise/views.py
msgid "Enterprise permissions have been disabled."
msgstr ""
@@ -19114,11 +19506,11 @@ msgstr ""
msgid "Event in progress"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19128,15 +19520,15 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Update Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Delete Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19145,7 +19537,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19155,14 +19547,14 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid ""
"\n"
" This action cannot be undone.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" Known potential attendees who can be invited to participate in "
@@ -19171,42 +19563,42 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Create Potential Attendee"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Enable Mobile Worker Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "New Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "Pending..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "NEW"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "ERROR"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Loading potential attendees ..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid ""
"\n"
@@ -19218,21 +19610,21 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" You currently have no potential attendees.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" No matching potential attendees found.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid ""
"\n"
" Attendance tracking events can be used to track attendance of all "
@@ -19240,31 +19632,31 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Add new event"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "View Attendees"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "No Attendees Yet"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Date Attended"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Attendee Name"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Event has not yet started"
msgstr ""
-#: corehq/apps/events/templates/new_event.html
+#: corehq/apps/events/templates/events/new_event.html
msgid ""
"\n"
" There was a problem fetching the list of attendees and attendance "
@@ -22154,7 +22546,7 @@ msgid ""
msgstr ""
#: corehq/apps/geospatial/forms.py
-msgid "Case Grouping Parameters"
+msgid "Case Clustering Map Parameters"
msgstr ""
#: corehq/apps/geospatial/forms.py
@@ -22237,7 +22629,7 @@ msgid "Driving"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Management Map"
+msgid "Microplanning Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22257,7 +22649,7 @@ msgid "name"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Grouping"
+msgid "Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22284,11 +22676,11 @@ msgid "Link"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Lock Case Grouping for Me"
+msgid "Lock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Unlock Case Grouping for Me"
+msgid "Unlock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22296,7 +22688,7 @@ msgid "Export Groups"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Summary of Case Grouping"
+msgid "Summary of Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22566,6 +22958,35 @@ msgstr ""
msgid "You are about to delete this saved area"
msgstr ""
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain were not processed to be available in "
+"Microplanning reports\n"
+" because there were too many to be processed. New or updated cases "
+"will still be available\n"
+" for use for Microplanning. Please reach out to support if you need "
+"support with existing cases.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Oops! Something went wrong while processing existing cases to be "
+"available in Microplanning\n"
+" reports. Please reach out to support.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain are being processed to be available in\n"
+" Microplanning reports. Please be patient.\n"
+" "
+msgstr ""
+
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
msgid "Review Assignment Results"
msgstr ""
@@ -22908,7 +23329,7 @@ msgid ""
" For all active mobile workers in this group, and for "
"each phone number, this will\n"
" initiate an SMS verification workflow. When a user "
-"replies to the SMS< their phone\n"
+"replies to the SMS, their phone\n"
" number will be verified.
If the phone number "
"is already verified or\n"
" if the phone number is already in use by another "
@@ -24648,6 +25069,13 @@ msgstr ""
msgid "Server Error Encountered"
msgstr ""
+#: corehq/apps/hqwebapp/templates/hqwebapp/htmx/htmx_action_error.html
+#, python-format
+msgid ""
+"\n"
+" Encountered error \"%(htmx_error)s\" while performing action %(action)s.\n"
+msgstr ""
+
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/domain_list_dropdown.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/domain_list_dropdown.html
msgid "Change Project"
@@ -27622,11 +28050,6 @@ msgstr ""
msgid "Manage Notification"
msgstr ""
-#: corehq/apps/oauth_integrations/views/google.py
-msgid ""
-"Something went wrong when trying to sign you in to Google. Please try again."
-msgstr ""
-
#: corehq/apps/ota/utils.py corehq/apps/users/tasks.py
msgid ""
"Something went wrong in creating restore for the user. Please try again or "
@@ -34054,10 +34477,6 @@ msgstr ""
msgid "Update settings"
msgstr ""
-#: corehq/apps/sms/forms.py
-msgid "Type a username, group name or 'send to all'"
-msgstr ""
-
#: corehq/apps/sms/forms.py
msgid "0 characters (160 max)"
msgstr ""
@@ -34823,10 +35242,6 @@ msgstr ""
msgid "You can't send an empty message"
msgstr ""
-#: corehq/apps/sms/views.py
-msgid "Please remember to separate recipients with a comma."
-msgstr ""
-
#: corehq/apps/sms/views.py
msgid "The following groups don't exist: "
msgstr ""
@@ -40767,6 +41182,26 @@ msgstr ""
msgid "Please select at least one item."
msgstr ""
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: \"%(request_username)s\" will no longer be able to "
+"access or edit \"%(couch_username)s\"\n"
+" if they don't share a location.\n"
+" "
+msgstr ""
+
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: %(user_type)s \"%(couch_username)s\" must have at "
+"least one location assigned.\n"
+" They won't be able to log in otherwise.\n"
+" "
+msgstr ""
+
#: corehq/apps/users/templates/users/partials/manage_phone_numbers.html
msgid ""
"Phone numbers can only contain digits and we were unable to convert yours "
@@ -45408,7 +45843,7 @@ msgid "User Management"
msgstr ""
#: corehq/reports.py
-msgid "Case Mapping"
+msgid "Microplanning"
msgstr ""
#: corehq/tabs/tabclasses.py corehq/tabs/utils.py
@@ -45432,7 +45867,7 @@ msgid "Data Manipulation"
msgstr ""
#: corehq/tabs/tabclasses.py
-msgid "Configure Geospatial Settings"
+msgid "Configure Microplanning Settings"
msgstr ""
#: corehq/tabs/tabclasses.py
diff --git a/locale/en/LC_MESSAGES/djangojs.po b/locale/en/LC_MESSAGES/djangojs.po
index 89a2ac56f095..dbf10167536a 100644
--- a/locale/en/LC_MESSAGES/djangojs.po
+++ b/locale/en/LC_MESSAGES/djangojs.po
@@ -1166,7 +1166,7 @@ msgid "no formatting"
msgstr ""
#: corehq/apps/app_manager/static/app_manager/js/vellum/src/main-components.js
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Custom"
msgstr ""
@@ -3086,24 +3086,28 @@ msgstr ""
msgid "Sorry, it looks like the upload failed."
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Payment"
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Invoice Request"
msgstr ""
-#: corehq/apps/domain/static/domain/js/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/case_search.js
msgid "You have unchanged settings"
msgstr ""
-#: corehq/apps/domain/static/domain/js/current_subscription.js
-msgid "Buy Credits"
+#: corehq/apps/domain/static/domain/js/bootstrap3/info_basic.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/info_basic.js
+msgid "Select a Timezone..."
msgstr ""
-#: corehq/apps/domain/static/domain/js/info_basic.js
-msgid "Select a Timezone..."
+#: corehq/apps/domain/static/domain/js/current_subscription.js
+msgid "Buy Credits"
msgstr ""
#: corehq/apps/domain/static/domain/js/internal_settings.js
@@ -3149,42 +3153,42 @@ msgid ""
"the project space as a member in order to override your timezone."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
+msgid ""
+"Do not allow new users to sign up on commcarehq.org. This may take up to an "
+"hour to take effect. This will affect users with email addresses from "
+"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
+msgstr ""
+
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Last 30 Days"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
#: corehq/apps/hqwebapp/static/hqwebapp/js/tempus_dominus.js
msgid "Previous Month"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Spans <%- startDate %> to <%- endDate %> (UTC)"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error updating display total, please try again or report an issue if this "
"persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "??"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error sending email, please try again or report an issue if this persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
-msgid ""
-"Do not allow new users to sign up on commcarehq.org. This may take up to an "
-"hour to take effect. This will affect users with email addresses from "
-"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
-msgstr ""
-
#: corehq/apps/events/static/events/js/event_attendees.js
msgid "Disable Mobile Worker Attendees"
msgstr ""
@@ -3337,6 +3341,10 @@ msgstr ""
msgid "Sensitive Date"
msgstr ""
+#: corehq/apps/fixtures/static/fixtures/js/lookup-manage.js
+msgid "Can not create table with ID '<%= tag %>'. Table IDs should be unique."
+msgstr ""
+
#: corehq/apps/geospatial/static/geospatial/js/case_grouping_map.js
msgid "No group"
msgstr ""
@@ -4089,35 +4097,6 @@ msgstr ""
msgid "label-info-light"
msgstr ""
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords to copy"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Search keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/users/static/users/js/roles.js
-msgid "Linked Project Spaces"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Projects to copy to"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Search projects"
-msgstr ""
-
#: corehq/apps/reports/static/reports/js/bootstrap3/base.js
#: corehq/apps/reports/static/reports/js/bootstrap5/base.js
#: corehq/apps/userreports/static/userreports/js/configurable_report.js
@@ -4439,11 +4418,11 @@ msgstr ""
msgid "(filtered from _MAX_ total contacts)"
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "There was an error fetching the SMS rate."
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "Please Select a Country Code"
msgstr ""
@@ -4602,6 +4581,16 @@ msgstr ""
msgid "Linked projects"
msgstr ""
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Projects to copy to"
+msgstr ""
+
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Search projects"
+msgstr ""
+
#: corehq/apps/userreports/static/userreports/js/expression_evaluator.js
msgid "Unknown error"
msgstr ""
@@ -4905,6 +4894,10 @@ msgstr ""
msgid "Multi-Environment Release Management"
msgstr ""
+#: corehq/apps/users/static/users/js/roles.js
+msgid "Linked Project Spaces"
+msgstr ""
+
#: corehq/apps/users/static/users/js/roles.js
msgid "Allow role to configure linked project spaces"
msgstr ""
diff --git a/locale/es/LC_MESSAGES/django.po b/locale/es/LC_MESSAGES/django.po
index 11908d5ee604..a9005363a16f 100644
--- a/locale/es/LC_MESSAGES/django.po
+++ b/locale/es/LC_MESSAGES/django.po
@@ -32,7 +32,8 @@ msgstr "Tipo de cuenta"
#: corehq/apps/accounting/filters.py
#: corehq/apps/app_manager/templates/app_manager/partials/bulk_upload_app_translations.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/geospatial/filters.py
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
@@ -301,8 +302,10 @@ msgstr "Cuenta de Facturación"
#: corehq/apps/builds/templates/builds/all.html
#: corehq/apps/builds/templates/builds/edit_menu.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/translations_coverage.html
msgid "Version"
msgstr "Versión"
@@ -464,9 +467,10 @@ msgstr "Se requiere un nombre para este nuevo rol."
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
#: corehq/apps/enterprise/enterprise.py corehq/apps/events/forms.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -508,7 +512,8 @@ msgid "Company / Organization"
msgstr "Empresa/Organización"
#: corehq/apps/accounting/forms.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
#: corehq/apps/reminders/forms.py corehq/apps/reports/standard/deployments.py
#: corehq/apps/reports/standard/sms.py
@@ -999,8 +1004,10 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/accounting_admins.html
#: corehq/apps/data_interfaces/templates/data_interfaces/manage_case_groups.html
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/partials/manage_downstream_domains.html
#: corehq/apps/locations/templates/locations/location_types.html
@@ -1055,11 +1062,13 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
#: corehq/apps/enterprise/templates/enterprise/partials/date_range_modal.html
-#: corehq/apps/events/templates/edit_attendee.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/edit_attendee.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/dialogs/bulk_delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
@@ -1596,9 +1605,10 @@ msgstr "Número de Estado"
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_run_history.html
#: corehq/apps/data_interfaces/views.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/enterprise/enterprise.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/standard/cases/basic.py
@@ -2783,7 +2793,8 @@ msgstr "Razón"
#: corehq/apps/accounting/templates/accounting/invoice.html
#: corehq/apps/app_execution/templates/app_execution/workflow_list.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/app_release_logs.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/hqadmin/reports.py corehq/apps/linked_domain/views.py
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/reports/standard/deployments.py
@@ -3015,7 +3026,8 @@ msgid "Add New Credit Card"
msgstr "Agregar una Nueva Tarjeta de Crédito"
#: corehq/apps/accounting/templates/accounting/partials/new_stripe_card_template.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
msgid "Processing your request"
msgstr "Procesando su solicitud"
@@ -3085,12 +3097,14 @@ msgid "Save"
msgstr "Guardar"
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Monthly"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Annually"
msgstr ""
@@ -3177,7 +3191,8 @@ msgstr "Razón de \"No Facturar\""
#: corehq/apps/accounting/templates/accounting/partials/subscriptions_tab.html
#: corehq/apps/app_execution/templates/app_execution/components/title_bar.html
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_properties.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
#: corehq/apps/locations/templates/locations/manage/location_template.html
@@ -3400,8 +3415,10 @@ msgstr "Usuarios Agregados:"
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_lookup.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/partials/reference_table.html
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/registry/templates/registry/registry_edit.html
@@ -3787,7 +3804,8 @@ msgstr ""
#: corehq/apps/data_interfaces/forms.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/geospatial/templates/geospatial/gps_capture.html
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/scheduled_reports_table.html
@@ -3863,8 +3881,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_case_groups.html
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
@@ -4238,8 +4258,10 @@ msgstr "Fuente de Datos"
#: corehq/apps/app_manager/fields.py
#: corehq/apps/cloudcare/templates/cloudcare/config.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/linked_domain/const.py
#: corehq/apps/reports/filters/forms.py corehq/apps/reports/filters/select.py
#: corehq/apps/reports/standard/deployments.py
@@ -4557,7 +4579,6 @@ msgstr ""
#: corehq/apps/app_manager/helpers/validators.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case property"
msgstr "Propiedad del caso"
@@ -5187,7 +5208,8 @@ msgid "Enable Menu Display Setting Per-Module"
msgstr "Habilitar Configuración de Visualización de Menú por Módulo"
#: corehq/apps/app_manager/static_strings.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/enterprise/templates/enterprise/partials/enterprise_permissions_table.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqadmin/forms.py
@@ -5415,7 +5437,8 @@ msgid "No Validation"
msgstr "No Validación"
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -5972,7 +5995,8 @@ msgid "XXX-High Density"
msgstr "Densidad XXX-Alta"
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -6699,7 +6723,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/odk_install.html
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_tab_advanced.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/releases_deploy_modal.html
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/export/templates/export/partials/export_download_progress.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqmedia/templates/hqmedia/audio_translator.html
@@ -6741,11 +6766,15 @@ msgstr "Instale CommCare"
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
#: corehq/apps/data_interfaces/templates/data_interfaces/interfaces/case_management.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/dialogs/process_deleted_questions.html
#: corehq/apps/export/templates/export/dialogs/process_deprecated_properties.html
#: corehq/apps/export/templates/export/partials/table.html
@@ -8515,8 +8544,10 @@ msgstr "Actualizar"
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_workflow.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_detail.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_list/multi_select_continue_button.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/messaging/scheduling/templates/scheduling/partials/conditional_alert_continue.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/start.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/step1.html
@@ -9905,7 +9936,8 @@ msgstr "Reporte"
#: corehq/apps/app_manager/templates/app_manager/partials/modules/mobile_report_configs.html
#: corehq/apps/data_dictionary/templates/data_dictionary/base.html
#: corehq/apps/data_dictionary/views.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/download_data_files.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -9983,7 +10015,8 @@ msgid ""
msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/module_actions.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/apps/registration/templates/registration/partials/start_trial_modal.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/description.html
#: corehq/apps/reports/templates/reports/partials/bootstrap5/description.html
@@ -12086,7 +12119,6 @@ msgid "Case Type to Update/Create"
msgstr "Tipo de caso para Actualizar/Crear"
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case type"
msgstr "Tipo de caso"
@@ -12129,8 +12161,10 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
#: corehq/apps/case_importer/templates/case_importer/excel_fields.html
#: corehq/apps/domain/templates/error.html
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/registration/forms.py corehq/apps/settings/forms.py
msgid "Back"
@@ -12294,19 +12328,21 @@ msgstr "Ningún caso fue creado o actualizado durante esta importación."
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" row had an invalid\n"
-" \"\" cell and was not "
+" row had an "
+"invalid\n"
+" \"\" cell and was not "
"saved\n"
-" "
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" rows had invalid\n"
-" \"\" cells and were not "
-"saved\n"
-" "
+" rows had "
+"invalid\n"
+" \"\" cells and were "
+"not saved\n"
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
@@ -12451,7 +12487,7 @@ msgid "{param} must be a string"
msgstr ""
#: corehq/apps/case_search/models.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/locations/templates/locations/manage/location.html
#: corehq/apps/reports/filters/users.py corehq/apps/users/models.py
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -12523,7 +12559,8 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/form_entry/entry_geo.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/reports/filters/simple.py
#: corehq/apps/reports/standard/cases/filters.py
#: corehq/apps/sms/templates/sms/chat_contacts.html
@@ -12533,7 +12570,8 @@ msgstr "Búsqueda"
#: corehq/apps/case_search/templates/case_search/case_search.html
#: corehq/apps/custom_data_fields/edit_entity.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/users/templates/users/enterprise_users.html
msgid "Profile"
msgstr ""
@@ -12739,6 +12777,14 @@ msgid ""
"\"YYYY-mm-dd\""
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "{} is not a valid datetime"
+msgstr ""
+
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Invalid datetime value. Must be a number or a ISO 8601 string."
+msgstr ""
+
#: corehq/apps/case_search/xpath_functions/value_functions.py
#, python-brace-format
msgid ""
@@ -12757,6 +12803,10 @@ msgid ""
"add\" function"
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Cannot convert {} to a double"
+msgstr ""
+
#: corehq/apps/cloudcare/api.py
#, python-format
msgid "Not found application by name: %s"
@@ -14895,7 +14945,8 @@ msgid ""
msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/domain_links.html
#: corehq/apps/translations/forms.py
@@ -15316,7 +15367,8 @@ msgstr "Fecha propiedad de caso (avanzado)"
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/events/forms.py corehq/apps/events/views.py
#: corehq/apps/geospatial/templates/geospatial/case_management.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/locations/forms.py
@@ -16358,7 +16410,8 @@ msgstr ""
"Parece que este número de teléfono no es válido. ¿Olvidó el código de país?"
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/paused_plan_notice.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/paused_plan_notice.html
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -16366,7 +16419,8 @@ msgid "Subscribe to Plan"
msgstr "Suscríbase al Plan"
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Renew Plan"
msgstr "Renovar el Plan"
@@ -16594,46 +16648,380 @@ msgstr ""
msgid "There has been a transfer of ownership of {domain}"
msgstr "Ha habido una transferencia de derechos de propiedad del {domain}"
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Transfer project ownership"
-msgstr "Transferir derechos de propiedad"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "SMS Keyword"
+msgstr "Palabra clave SMS"
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#, python-format
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "Action Type"
+msgstr "Tipo de Acción"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/edit_alert.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/edit_alert.html
+msgid "Edit Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
+msgid "Feature Previews"
+msgstr "Vistas Previas de Función"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "What are Feature Previews?"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" By clicking \"accept\" below you acknowledge that you accept "
-"full ownership of this project space (\"%(domain)s\").\n"
-" You agree to be bound by the terms of Dimagi's Terms of Service and "
-"Business Agreement.\n"
-" By accepting this agreement, your are acknowledging you have "
-"permission and authority to accept these terms. A Dimagi representative will "
-"notify you when the transfer is complete.\n"
+" Before we invest in making certain product features generally\n"
+" available, we release them as Feature Previews to learn the\n"
+" following two things from usage data and qualitative feedback.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Perceived Value:\n"
+" The biggest risk in product development is to\n"
+" build something that offers little value to our users. As "
+"such,\n"
+" we make Feature Previews generally available only if they "
+"have\n"
+" high perceived value.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-#: corehq/apps/registry/templates/registry/registry_list.html
-msgid "Accept"
-msgstr "Aceptar"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" User Experience:\n"
+" Even if a feature has high perceived value,\n"
+" it is important that the user experience of the feature is\n"
+" optimized such that our users actually receive the value.\n"
+" As such, we make high value Feature Previews generally\n"
+" available after we optimize the user experience.\n"
+" "
+msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Decline"
-msgstr "Rechazar"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Feature Previews are in active product development, therefore\n"
+" should not be used for business critical workflows. We encourage\n"
+" you to use Feature Previews and provide us feedback, however\n"
+" please note that Feature Previews:\n"
+" "
+msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" Sorry this transfer request has expired.\n"
+" May not be optimized for performance\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not supported by the CommCare Support Team\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" May change at any time without notice\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not subject to any warranties on current and future\n"
+" availability. Please refer to our\n"
+" terms to\n"
+" learn more.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/calendar_fixture.html
-msgid "Calendar Fixture Settings"
-msgstr "Configuración de Fixture del Calendario"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Looking for something that used to be here?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" The feature flags Control Mapping in Case List"
+"strong>,\n"
+" Custom Calculations in Case List, "
+"Custom\n"
+" Single and Multiple Answer Questions, and Icons "
+"in\n"
+" Case List are now add-ons for individual apps. To turn\n"
+" them on, go to the application's settings and choose the\n"
+" Add-Ons tab.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Update previews"
+msgstr "Actualizar vistas previas"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Feature Name"
+msgstr "Nombre de la Función"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
+msgid "More information"
+msgstr "Más información"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "SMS Pricing"
+msgstr "Precios SMS"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/userreports/views.py
+msgid "Pricing"
+msgstr "Precios"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" View SMS prices for using Dimagi's connections in each country.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" You can choose a connection for your project under Messaging -> SMS "
+"Connectivity\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Calculating SMS Rate...\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Connection"
+msgstr "Conexión"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Incoming"
+msgstr "Entrantes"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Outgoing"
+msgstr "Salientes"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Your own Android Gateway"
+msgstr "Su propia Entrada Android"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" Pricing is per message sent or received. Fees are subject to change "
+"based on provider rates and exchange rates and are computed at the time the "
+"SMS is sent or received.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/location_fixture.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/location_fixture.html
+msgid "Location Fixture Settings"
+msgstr "Configuración de Fixture de Ubicación"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "Add New Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Available Alerts"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "You can only have 3 alerts activated at any one time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
+msgid "Start Time"
+msgstr "Tiempo de Inicio"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "End Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Added By"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "De-activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "No alerts added yet for the project."
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Measure"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Sequence Number"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "App Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "CC Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+#: corehq/apps/users/templates/users/edit_commcare_user.html
+msgid "Created On"
+msgstr "Creado En..."
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Notes"
+msgstr "Notas"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "No measures have been initiated for this application"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Use this form to get a cost estimation per 160 character SMS,\n"
+" given a connection, direction,\n"
+" and country code.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" The fee will be applied to the most specific criteria available.\n"
+" A fee for a specific country code (if available) will be used\n"
+" over the default of 'Any Country'.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Fees are subject to change based on updates to each carrier and are\n"
+" computed at the time the SMS is sent.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain.html
+msgid ""
+"\n"
+" Use this to transfer your project to another user.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+#, python-format
+msgid ""
+"\n"
+" You have a pending transfer with %(username)s\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid ""
+"\n"
+" Resend Transfer Request\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid "Cancel Transfer"
+msgstr "Cancelar Transferencia"
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid "Enable Case Search"
@@ -16701,9 +17089,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update case search data immediately on web apps form "
+" Update case search data immediately on web apps form "
"submission.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16719,12 +17107,21 @@ msgid "Sync Cases On Form Entry"
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
+#, fuzzy
+#| msgid ""
+#| "\n"
+#| " These filters are not displayed to report viewers and "
+#| "are always applied to the data.\n"
+#| " "
msgid ""
"\n"
-" Update local case data immediately before entering a web "
+" Update local case data immediately before entering a web "
"apps form.\n"
-" "
+" "
msgstr ""
+"\n"
+"Estos filtros no se muestran a los que ven el reporte y siempre son "
+"aplicados a los datos."
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
@@ -16752,302 +17149,6 @@ msgstr ""
msgid "Add case property"
msgstr "Agregar propiedad de caso"
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "SMS Keyword"
-msgstr "Palabra clave SMS"
-
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "Action Type"
-msgstr "Tipo de Acción"
-
-#: corehq/apps/domain/templates/domain/admin/edit_alert.html
-msgid "Edit Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
-msgid "Feature Previews"
-msgstr "Vistas Previas de Función"
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "What are Feature Previews?"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Before we invest in making certain product features generally\n"
-" available, we release them as Feature Previews to learn the\n"
-" following two things from usage data and qualitative feedback.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Perceived Value:\n"
-" The biggest risk in product development is to\n"
-" build something that offers little value to our users. As "
-"such,\n"
-" we make Feature Previews generally available only if they "
-"have\n"
-" high perceived value.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" User Experience:\n"
-" Even if a feature has high perceived value,\n"
-" it is important that the user experience of the feature is\n"
-" optimized such that our users actually receive the value.\n"
-" As such, we make high value Feature Previews generally\n"
-" available after we optimize the user experience.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Feature Previews are in active product development, therefore\n"
-" should not be used for business critical workflows. We encourage\n"
-" you to use Feature Previews and provide us feedback, however\n"
-" please note that Feature Previews:\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May not be optimized for performance\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not supported by the CommCare Support Team\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May change at any time without notice\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not subject to any warranties on current and future\n"
-" availability. Please refer to our\n"
-" terms to\n"
-" learn more.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Looking for something that used to be here?\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" The feature flags Control Mapping in Case List"
-"strong>,\n"
-" Custom Calculations in Case List, "
-"Custom\n"
-" Single and Multiple Answer Questions, and Icons "
-"in\n"
-" Case List are now add-ons for individual apps. To turn\n"
-" them on, go to the application's settings and choose the\n"
-" Add-Ons tab.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Update previews"
-msgstr "Actualizar vistas previas"
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Feature Name"
-msgstr "Nombre de la Función"
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
-msgid "More information"
-msgstr "Más información"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "SMS Pricing"
-msgstr "Precios SMS"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/userreports/views.py
-msgid "Pricing"
-msgstr "Precios"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" View SMS prices for using Dimagi's connections in each country.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" You can choose a connection for your project under Messaging -> SMS "
-"Connectivity\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Calculating SMS Rate...\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Connection"
-msgstr "Conexión"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Incoming"
-msgstr "Entrantes"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Outgoing"
-msgstr "Salientes"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Your own Android Gateway"
-msgstr "Su propia Entrada Android"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" Pricing is per message sent or received. Fees are subject to change "
-"based on provider rates and exchange rates and are computed at the time the "
-"SMS is sent or received.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/location_fixture.html
-msgid "Location Fixture Settings"
-msgstr "Configuración de Fixture de Ubicación"
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "Add New Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Available Alerts"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "You can only have 3 alerts activated at any one time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
-msgid "Start Time"
-msgstr "Tiempo de Inicio"
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "End Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Added By"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "De-activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "No alerts added yet for the project."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Measure"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Sequence Number"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "App Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "CC Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-#: corehq/apps/users/templates/users/edit_commcare_user.html
-msgid "Created On"
-msgstr "Creado En..."
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Notes"
-msgstr "Notas"
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "No measures have been initiated for this application"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Use this form to get a cost estimation per 160 character SMS,\n"
-" given a connection, direction,\n"
-" and country code.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" The fee will be applied to the most specific criteria available.\n"
-" A fee for a specific country code (if available) will be used\n"
-" over the default of 'Any Country'.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Fees are subject to change based on updates to each carrier and are\n"
-" computed at the time the SMS is sent.\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/domain/admin/sms_settings.html
msgid "Stock Actions"
msgstr "Almacenar Acciones"
@@ -17060,75 +17161,103 @@ msgstr "Nueva Acción"
msgid "Save Settings"
msgstr "Guardar Configuraciones"
-#: corehq/apps/domain/templates/domain/admin/transfer_domain.html
-msgid ""
-"\n"
-" Use this to transfer your project to another user.\n"
-" "
-msgstr ""
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Transfer project ownership"
+msgstr "Transferir derechos de propiedad"
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
#, python-format
msgid ""
"\n"
-" You have a pending transfer with %(username)s\n"
-" "
+" By clicking \"accept\" below you acknowledge that you accept "
+"full ownership of this project space (\"%(domain)s\").\n"
+" You agree to be bound by the terms of Dimagi's Terms of Service and "
+"Business Agreement.\n"
+" By accepting this agreement, your are acknowledging you have "
+"permission and authority to accept these terms. A Dimagi representative will "
+"notify you when the transfer is complete.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+#: corehq/apps/registry/templates/registry/registry_list.html
+msgid "Accept"
+msgstr "Aceptar"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Decline"
+msgstr "Rechazar"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
msgid ""
"\n"
-" Resend Transfer Request\n"
-" "
+" Sorry this transfer request has expired.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid "Cancel Transfer"
-msgstr "Cancelar Transferencia"
-
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Total Due:"
msgstr "Total a Pagar:"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Credit Card"
msgstr "Pagar con Tarjeta de Crédito"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Wire"
msgstr "Pagar por Transferencia"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Not Billing Admin, Can't Make Payment"
msgstr "No es un Administrador de Facturación, No Puede Hacer el Pago"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/domain/views/accounting.py corehq/apps/enterprise/views.py
#: corehq/tabs/tabclasses.py
msgid "Billing Statements"
msgstr "Estados de Cuenta"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Unpaid"
msgstr "Sin pagar"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show Only Unpaid Statements"
msgstr "Mostrar solo estados de cuenta sin pagar"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show All Statements"
msgstr "Mostrar todos los Estados de Cuenta"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Make Payment"
msgstr "Realizar Pago"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Payment Amount"
msgstr "Monto del Pago"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay the full balance: $"
@@ -17136,14 +17265,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay a portion of the balance:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Please enter an amount that's between $0.50 and $"
@@ -17169,20 +17302,25 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Wire Payment"
msgstr "Pago General por Transferencia"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Payment"
msgstr "Pago General"
-#: corehq/apps/domain/templates/domain/billing_statements.html
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Thank you for your payment!"
msgstr "¡Gracias por su pago!"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Thank you for your upcoming wire payment.\n"
@@ -17192,7 +17330,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_billing_info.html
#, python-format
msgid ""
"\n"
@@ -17202,7 +17341,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Clicking the 'Confirm Plan' button below will bring you to a "
@@ -17210,33 +17350,40 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Select different option"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Select different plan"
msgstr "Seleccione un plan diferente"
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Confirm Pause"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Confirm Plan"
msgstr "Confirmar Plan"
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Before you pause..."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Downgrading?"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" We'd love to make CommCare work better for you.\n"
@@ -17244,56 +17391,64 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you pausing your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you downgrading your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Do you think your project may start again?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Could you indicate which new tool you’re using?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you switching to a new tool?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please specify\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please let us know any other feedback you have\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -17301,11 +17456,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
msgid "— which matches your current feature usage."
msgstr "— lo cual coincide con su uso actual de funciones. "
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -17313,7 +17470,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -17323,31 +17481,36 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
msgid "Current Subscription"
msgstr "Suscripción Actual"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/styleguide/examples/bootstrap5/select2_manual_form.py
msgid "Plan"
msgstr "Plan"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Your Subscription is Paused\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid " Day Trial"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -17357,7 +17520,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -17368,7 +17532,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Note: This subscription will not be "
@@ -17376,22 +17541,28 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Got questions about your plan?"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Talk to Sales"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Change Plan"
msgstr "Cambiar Plan"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -17399,7 +17570,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -17407,106 +17579,131 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Started"
msgstr "Fecha de Inicio"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Ending"
msgstr "Fecha de Finalización"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Price"
msgstr "Precio Actual"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Begins"
msgstr "La Próxima Suscripción Inicia"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Plan"
msgstr "Próximo Plan de Suscripción"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Price"
msgstr "Próximo Precio de Suscripción"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Subscription Credit"
msgstr "Crédito de Suscripción"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Plan Credit"
msgstr "Crédito de Plan"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "General Credit"
msgstr "Crédito General"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Remaining"
msgstr "Créditos Restantes"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepay by Credit Card"
msgstr "Realizar Prepago por Tarjeta de Crédito"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Generate Prepayment Invoice"
msgstr "Generar Factura Prepago"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Not Billing Admin, Can't Add Credit"
msgstr "No es un Administrador de Facturación, No Puede Agregar Crédito"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credit"
msgstr "Crédito de Cuenta"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Usage Summary"
msgstr "Resumen de Uso"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Feature"
msgstr "Función"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Use"
msgstr "Uso Actual"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Remaining"
msgstr "Restante"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Available"
msgstr "Créditos Disponibles"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credits Available"
msgstr "Créditos de Cuenta Disponibles"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Included in Software Plan"
msgstr "Incluido en el Plan de Software"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Usage"
msgstr "Uso Actual"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepayment Amount"
msgstr "Monto Prepago"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"One credit is equivalent to one USD. Credits are applied to monthly invoices"
msgstr ""
"Un crédito equivale a un USD. Los créditos se aplican a las facturas "
"mensuales"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Please enter an amount that's either $0 or greater than "
@@ -17514,11 +17711,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Total Credits"
msgstr "Total de Créditos"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Thank you! You will receive an invoice via email with instructions for "
@@ -17527,17 +17726,360 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid "Domain Temporarily Unavailable"
msgstr "Dominio No Disponible Temporalmente"
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid ""
"The page you requested is currently unavailable due to a\n"
" data migration. Please check back later."
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+#, python-format
+msgid ""
+"\n"
+" %(feature_name)s is only available to projects\n"
+" subscribed to %(plan_name)s plan or higher.\n"
+" To access this feature, you must subscribe to the\n"
+" %(plan_name)s plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid ""
+"\n"
+" You must be a Project Administrator to make Subscription changes.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Read more about our plans"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Change My Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load EVERYTHING"
+msgstr "Cargar TODO"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load Property"
+msgstr "Cargar Propiedad"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_subscription_management.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_subscription_management.html
+#, python-format
+msgid ""
+"\n"
+"
\n"
+" This page is visible to Dimagi employees only (you have an @dimagi.com "
+"email address). You can use this page\n"
+" to set up a subscription for this project space.\n"
+"\n"
+" Use this tool only for projects that are:\n"
+"
\n"
+"
an internal test project
\n"
+"
part of a contracted project
\n"
+"
a short term extended trial for biz dev
\n"
+"
\n"
+" \n"
+"\n"
+"
\n"
+" Your project is currently subscribed to %(plan_name)s.\n"
+"
\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Could not update!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Last Activity"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Activated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Deactivated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#, python-format
+msgid ""
+"\n"
+" You are renewing your %(p)s subscription.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
+#: corehq/apps/registration/forms.py
+#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
+#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
+#: corehq/apps/settings/forms.py
+#: corehq/apps/userreports/reports/builder/forms.py
+msgid "Next"
+msgstr "Siguiente"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/settings/views.py
+msgid "My Projects"
+msgstr "Mis Proyectos"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "Accept All Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "My Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "90 day refund policy"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "monthly"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "discounted"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be downgrading to\n"
+" on\n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be pausing on \n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Current Plan"
+msgstr "Plan Actual"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/views/accounting.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
+msgid "Select Plan"
+msgstr "Seleccione el Plan"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Pause Subscription\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" What happens after you pause?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will lose access to your project space, but you will be\n"
+" able to re-subscribe anytime in the future.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will no longer be billed.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription is currently paused.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Your subscription is currently paused because you have\n"
+" past-due invoices.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will not be allowed to un-pause your project until\n"
+" these invoices are paid.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be pausing on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be downgrading to\n"
+" on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You are currently on the FREE CommCare Community plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Dismiss"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Saved Credit Cards"
+msgstr "Tarjetas de Crédito Guardadas"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Add Card"
+msgstr "Agregar Tarjeta"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Credit Card"
+msgstr "Tarjeta de Crédito"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Your request was successful!"
+msgstr "¡Su solicitud fue exitosa!"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Delete Card"
+msgstr "Eliminar Tarjeta"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid ""
+"\n"
+" Actually remove "
+"strong> card\n"
+" ************"
+"strong>?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Autopay card"
+msgstr "Tarjeta de pago automático"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Remove Autopay"
+msgstr "Eliminar Pago automático"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Set as autopay card"
+msgstr "Seleccionar como tarjeta para pago automático"
+
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually. \n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -17546,7 +18088,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -17554,14 +18097,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
msgid ""
"\n"
" Accept Invitation\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -17571,7 +18116,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
msgid ""
"\n"
" CommCare HQ is a data management tool used by over 500 organizations\n"
@@ -17581,7 +18126,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -17591,6 +18137,16 @@ msgid ""
" "
msgstr ""
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
+msgid ""
+"\n"
+" CommCare HQ is a data management tool used by over 500 organizations\n"
+" to help frontline workers around the world.\n"
+" Learn "
+"more about CommCare. \n"
+" "
+msgstr ""
+
#: corehq/apps/domain/templates/domain/email/domain_invite.txt
#: corehq/apps/registration/templates/registration/email/mobile_worker_confirm_account.txt
msgid "Hey there,"
@@ -17864,93 +18420,23 @@ msgid ""
"org/.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-#, python-format
-msgid ""
-"\n"
-" %(feature_name)s is only available to projects\n"
-" subscribed to %(plan_name)s plan or higher.\n"
-" To access this feature, you must subscribe to the\n"
-" %(plan_name)s plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid ""
-"\n"
-" You must be a Project Administrator to make Subscription changes.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Read more about our plans"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Change My Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load EVERYTHING"
-msgstr "Cargar TODO"
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load Property"
-msgstr "Cargar Propiedad"
-
-#: corehq/apps/domain/templates/domain/internal_subscription_management.html
-#, python-format
-msgid ""
-"\n"
-"
\n"
-" This page is visible to Dimagi employees only (you have an @dimagi.com "
-"email address). You can use this page\n"
-" to set up a subscription for this project space.\n"
-"\n"
-" Use this tool only for projects that are:\n"
-"
\n"
-"
an internal test project
\n"
-"
part of a contracted project
\n"
-"
a short term extended trial for biz dev
\n"
-"
\n"
-" \n"
-"\n"
-"
\n"
-" Your project is currently subscribed to %(plan_name)s.\n"
-"
\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Could not update!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Last Activity"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Activated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Deactivated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "Use the Creative Commons website"
msgstr "Utilizar el sitio web Creative Commons"
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "to choose a Creative Commons license."
msgstr "para elegir una licencia Creative Commons."
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Wire Payment Information"
msgstr "Información de Pago por Transferencia"
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid ""
"\n"
" Dimagi accepts wire payments via ACH and wire transfer. You "
@@ -17963,256 +18449,138 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Invoice Recipients"
msgstr "Destinatarios de la Factura"
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Please agree to the Privacy Policy."
msgstr "Por favor acepte la Política de Privacidad."
-#: corehq/apps/domain/templates/domain/pro_bono/page_content.html
-msgid ""
-"Thank you for your submission. A representative will be in contact with you "
-"shortly."
-msgstr "Gracias por su envío. Un representante lo contactará pronto."
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#, python-format
-msgid ""
-"\n"
-" You are renewing your %(p)s subscription.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
-#: corehq/apps/registration/forms.py
-#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
-#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
-#: corehq/apps/settings/forms.py
-#: corehq/apps/userreports/reports/builder/forms.py
-msgid "Next"
-msgstr "Siguiente"
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/settings/views.py
-msgid "My Projects"
-msgstr "Mis Proyectos"
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "Accept All Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "My Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Save close to 20%% when you pay annually.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "90 day refund policy"
+" This license doesn't cover all your multimedia.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "monthly"
-msgstr ""
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "More info..."
+msgstr "Más información..."
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "discounted"
-msgstr ""
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "Select a more restrictive license"
+msgstr "Seleccione una licencia más restrictiva"
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" This plan will be downgrading to\n"
-" on\n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be pausing on \n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Current Plan"
-msgstr "Plan Actual"
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/views/accounting.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
-msgid "Select Plan"
-msgstr "Seleccione el Plan"
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Pause Subscription\n"
+" Since you've opted to publish your multimedia along with your "
+"app,\n"
+" you must select a license that is more restrictive than the "
+"multimedia in the app.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" What happens after you pause?\n"
+" To satisfy this condition, you can either decide not to publish "
+"the multimedia\n"
+" or select one of the following licenses:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap3/page_content.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap5/page_content.html
msgid ""
-"\n"
-" You will lose access to your project space, but you will be\n"
-" able to re-subscribe anytime in the future.\n"
-" "
-msgstr ""
+"Thank you for your submission. A representative will be in contact with you "
+"shortly."
+msgstr "Gracias por su envío. Un representante lo contactará pronto."
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will no longer be billed.\n"
-" "
-msgstr ""
+#: corehq/apps/domain/templates/error.html
+msgid "Error details"
+msgstr "Detalles del error"
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription is currently paused.\n"
-" "
-msgstr ""
+#: corehq/apps/domain/templates/error.html
+msgid "Log In"
+msgstr "Ingresar"
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
-msgid ""
-"\n"
-" Your subscription is currently paused because you have\n"
-" past-due invoices.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/login.html
+msgid "Log In :: CommCare HQ"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will not be allowed to un-pause your project until\n"
-" these invoices are paid.\n"
-" "
-msgstr ""
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset Confirmation"
+msgstr "Confirmación de Restablecimiento de Contraseña"
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription will be pausing on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
+#: corehq/apps/users/forms.py
+msgid "Reset Password"
+msgstr "Restablecer Contraseña"
+
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+msgid "Reset Password Unsuccessful"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Your subscription will be downgrading to\n"
-" on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
+" The password reset link was invalid, possibly because\n"
+" it has already been used.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" You are currently on the FREE CommCare Community plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Dismiss"
+" Please request a new password reset.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Saved Credit Cards"
-msgstr "Tarjetas de Crédito Guardadas"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Add Card"
-msgstr "Agregar Tarjeta"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Credit Card"
-msgstr "Tarjeta de Crédito"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Your request was successful!"
-msgstr "¡Su solicitud fue exitosa!"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Delete Card"
-msgstr "Eliminar Tarjeta"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Actually remove "
-"strong> card\n"
-" ************"
-"strong>?\n"
+" Request Password Reset\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Autopay card"
-msgstr "Tarjeta de pago automático"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Remove Autopay"
-msgstr "Eliminar Pago automático"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Set as autopay card"
-msgstr "Seleccionar como tarjeta para pago automático"
-
-#: corehq/apps/domain/templates/error.html
-msgid "Error details"
-msgstr "Detalles del error"
-
-#: corehq/apps/domain/templates/error.html
-msgid "Log In"
-msgstr "Ingresar"
-
-#: corehq/apps/domain/templates/login_and_password/login.html
-msgid "Log In :: CommCare HQ"
-msgstr ""
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset"
+msgstr "Contraseña Restablecida"
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"\n"
" No account? Sign up today, it's free!\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Learn more"
msgstr "Aprenda más"
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"about how CommCare HQ can be your mobile solution for your frontline "
"workforce."
@@ -18220,16 +18588,19 @@ msgstr ""
"acerca de cómo CommCare HQ puede ser su solución móvil para su fuerza de "
"trabajo de primera línea."
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
#, python-format
msgid "Request Access to %(hr_name)s"
msgstr "Solicitar Acceso a %(hr_name)s"
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Sign Up"
msgstr "Registrarse"
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
msgid ""
"\n"
" We will email instructions to you for resetting your "
@@ -18237,15 +18608,6 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/users/forms.py
-msgid "Reset Password"
-msgstr "Restablecer Contraseña"
-
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/urls.py
msgid "Password Change Complete"
@@ -18258,7 +18620,8 @@ msgstr "Su contraseña fue cambiada exitosamente."
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap3/base_navigation.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap5/base_navigation.html
msgid "Sign In"
@@ -18269,37 +18632,6 @@ msgstr "Iniciar Sesión"
msgid "Password Reset Complete"
msgstr "Restablecimiento de Contraseña Realizado"
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset Confirmation"
-msgstr "Confirmación de Restablecimiento de Contraseña"
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid "Reset Password Unsuccessful"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" The password reset link was invalid, possibly because\n"
-" it has already been used.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Please request a new password reset.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Request Password Reset\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
msgid "Password Reset Requested"
msgstr "Restablecimiento de Contraseña Solicitado"
@@ -18343,21 +18675,20 @@ msgstr "Gracias por utilizar CommCare HQ."
msgid "--The CommCare HQ Team"
msgstr "-- El Equipo CommCare HQ"
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset"
-msgstr "Contraseña Restablecida"
-
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_forms.html
msgid "Forgot your password?"
msgstr "¿Olvidó su contraseña?"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Tokens"
msgstr "Identificadores de Respaldo"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid ""
"Backup tokens can be used when your primary and backup\n"
" phone numbers aren't available. The backup tokens below can be used\n"
@@ -18366,29 +18697,37 @@ msgid ""
" below will be valid."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Print these tokens and keep them somewhere safe."
msgstr "Imprima estos identificadores y guárdelos en algún lugar seguro."
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "You don't have any backup codes yet."
msgstr "Usted todavía no tiene ningún código de respaldo."
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Begin Using CommCare Now"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Back to Profile"
msgstr "Regresar al Perfil"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Generate Tokens"
msgstr "Generar Identificadores"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We are calling your phone right now, please enter the\n"
@@ -18396,7 +18735,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We sent you a text message, please enter the tokens we\n"
@@ -18404,7 +18744,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the tokens generated by your token\n"
@@ -18412,51 +18753,62 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the token given to you by your domain administrator.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Looks like your CommCare session has expired."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please log in again to continue working."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below to continue."
msgstr "Por favor inicie sesión abajo para continuar."
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "You will be transferred to your original destination after you sign in."
msgstr ""
"Usted será transferido a su destino original después de iniciar sesión."
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Or, alternatively, use one of your backup phones:"
msgstr "O, en vez de, utilice uno de sus teléfonos de respaldo:"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Please contact your domain administrator if you need a backup token."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Use Backup Token"
msgstr "Utilizar Identificador de Respaldo"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid "Please set up Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" For security purposes, your CommCare administrator has required that "
@@ -18467,7 +18819,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" To access your account, please enable two-factor authentication "
@@ -18475,71 +18828,87 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/file_download.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/file_download.html
msgid "Go back"
msgstr "Regresar"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Enable Two-Factor Authentication"
msgstr "Habilitar Autenticación de Dos Factores"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid "Add Backup Phone"
msgstr "Agregar Teléfono de Respaldo"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"Your backup phone number will be used if your primary method of registration "
"is not available. Please enter a valid phone number."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"We've sent a token to your phone number. Please enter the token you've "
"received."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Follow the steps in this wizard to enable two-factor authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Please select which authentication method you would like to use."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To start using a token generator, please use your smartphone to scan the QR "
"code below. For example, use Google Authenticator. Then, enter the token "
"generated by the app."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to receive the text messages on. This "
"number will be validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to be called on. This number will be "
"validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We are calling your phone right now, please enter the digits you hear."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We sent you a text message, please enter the tokens we sent."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"We've encountered an issue with the selected authentication method. Please "
"go back and verify that you entered your information correctly, try again, "
@@ -18547,44 +18916,52 @@ msgid ""
"contact the site administrator."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To identify and verify your YubiKey, please insert a token in the field "
"below. Your YubiKey will be linked to your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid ""
"Congratulations, you've successfully enabled two-factor\n"
" authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "To enable account recovery, generate backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Generate Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid "Remove Two-factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid ""
"You are about to remove two-factor authentication. This\n"
" compromises your account security, are you sure?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" Two-Factor Authentication is not managed here.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -18594,11 +18971,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Phone Numbers"
msgstr "Números de Teléfono de Respaldo"
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If your primary method is not available, we are able to\n"
" send backup tokens to the phone numbers listed below."
@@ -18606,16 +18985,19 @@ msgstr ""
"Si su método principal no está disponible, podemos enviarle identificadores "
"de respaldo a los números de teléfono que se listan abajo."
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Unregister"
msgstr "Dar de baja el registro"
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/sms/templates/sms/add_gateway.html
msgid "Add Phone Number"
msgstr "Agregue un Número de Teléfono"
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If you don't have any device with you, you can access\n"
" your account using backup tokens."
@@ -18623,7 +19005,8 @@ msgstr ""
"Si no tiene ningún dispositivo con usted, puede acceder a su cuenta "
"utilizando los identificadores de respaldo."
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -18637,27 +19020,32 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Show Codes"
msgstr "Mostar Códigos"
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/settings/views.py
msgid "Remove Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"We strongly discourage this, but if absolutely necessary "
"you can\n"
" remove two-factor authentication from your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Reset Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" This will remove your current two-factor authentication, and "
@@ -18668,7 +19056,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"Two-factor authentication is not enabled for your\n"
" account. Enable two-factor authentication for enhanced account\n"
@@ -19640,10 +20029,6 @@ msgstr ""
msgid "Enterprise Dashboard: {}"
msgstr ""
-#: corehq/apps/enterprise/templates/enterprise/enterprise_dashboard.html
-msgid "Email Report"
-msgstr ""
-
#: corehq/apps/enterprise/templates/enterprise/enterprise_permissions.html
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
msgid "Enterprise Permissions"
@@ -19704,10 +20089,37 @@ msgstr ""
msgid "No project spaces found."
msgstr ""
+#: corehq/apps/enterprise/templates/enterprise/partials/project_tile.html
+msgid "Email Report"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Platform Overview for {}"
+msgstr ""
+
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
-msgid "Enterprise Dashboard"
+#, fuzzy
+#| msgid "Days for Review"
+msgid "Platform Overview"
+msgstr "Días para Revisión"
+
+#: corehq/apps/enterprise/views.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
+#: corehq/apps/sso/forms.py
+msgid "Enterprise Console"
msgstr ""
+#: corehq/apps/enterprise/views.py
+msgid "Security Center for {}"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
+#, fuzzy
+#| msgid "Security"
+msgid "Security Center"
+msgstr "Manejo de Casos"
+
#: corehq/apps/enterprise/views.py corehq/apps/reports/views.py
msgid ""
"That report was not found. Please remember that download links expire after "
@@ -19725,13 +20137,6 @@ msgstr ""
msgid "Enterprise Settings"
msgstr ""
-#: corehq/apps/enterprise/views.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
-#: corehq/apps/sso/forms.py
-msgid "Enterprise Console"
-msgstr ""
-
#: corehq/apps/enterprise/views.py
msgid "Enterprise permissions have been disabled."
msgstr "Relatorio Semanal aos Coordinadores do Distrito e os NEDs"
@@ -19855,11 +20260,11 @@ msgstr ""
msgid "Event in progress"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19869,15 +20274,15 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Update Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Delete Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19886,7 +20291,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19896,14 +20301,14 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid ""
"\n"
" This action cannot be undone.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" Known potential attendees who can be invited to participate in "
@@ -19912,42 +20317,42 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Create Potential Attendee"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Enable Mobile Worker Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "New Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "Pending..."
msgstr "Pendiente..."
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "NEW"
msgstr "NUEVO"
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "ERROR"
msgstr "ERROR"
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Loading potential attendees ..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid ""
"\n"
@@ -19959,21 +20364,21 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" You currently have no potential attendees.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" No matching potential attendees found.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid ""
"\n"
" Attendance tracking events can be used to track attendance of all "
@@ -19981,31 +20386,31 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Add new event"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "View Attendees"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "No Attendees Yet"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Date Attended"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Attendee Name"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Event has not yet started"
msgstr ""
-#: corehq/apps/events/templates/new_event.html
+#: corehq/apps/events/templates/events/new_event.html
msgid ""
"\n"
" There was a problem fetching the list of attendees and attendance "
@@ -22951,7 +23356,7 @@ msgid ""
msgstr ""
#: corehq/apps/geospatial/forms.py
-msgid "Case Grouping Parameters"
+msgid "Case Clustering Map Parameters"
msgstr ""
#: corehq/apps/geospatial/forms.py
@@ -23034,7 +23439,7 @@ msgid "Driving"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Management Map"
+msgid "Microplanning Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -23054,7 +23459,7 @@ msgid "name"
msgstr "Relatorio Semanal aos Coordinadores do Distrito e os NEDs"
#: corehq/apps/geospatial/reports.py
-msgid "Case Grouping"
+msgid "Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -23081,11 +23486,11 @@ msgid "Link"
msgstr "Enlace"
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Lock Case Grouping for Me"
+msgid "Lock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Unlock Case Grouping for Me"
+msgid "Unlock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -23093,7 +23498,7 @@ msgid "Export Groups"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Summary of Case Grouping"
+msgid "Summary of Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -23363,6 +23768,35 @@ msgstr ""
msgid "You are about to delete this saved area"
msgstr ""
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain were not processed to be available in "
+"Microplanning reports\n"
+" because there were too many to be processed. New or updated cases "
+"will still be available\n"
+" for use for Microplanning. Please reach out to support if you need "
+"support with existing cases.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Oops! Something went wrong while processing existing cases to be "
+"available in Microplanning\n"
+" reports. Please reach out to support.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain are being processed to be available in\n"
+" Microplanning reports. Please be patient.\n"
+" "
+msgstr ""
+
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
msgid "Review Assignment Results"
msgstr ""
@@ -23707,7 +24141,7 @@ msgid ""
" For all active mobile workers in this group, and for "
"each phone number, this will\n"
" initiate an SMS verification workflow. When a user "
-"replies to the SMS< their phone\n"
+"replies to the SMS, their phone\n"
" number will be verified.
If the phone number "
"is already verified or\n"
" if the phone number is already in use by another "
@@ -25492,6 +25926,13 @@ msgstr "Errores"
msgid "Server Error Encountered"
msgstr ""
+#: corehq/apps/hqwebapp/templates/hqwebapp/htmx/htmx_action_error.html
+#, python-format
+msgid ""
+"\n"
+" Encountered error \"%(htmx_error)s\" while performing action %(action)s.\n"
+msgstr ""
+
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/domain_list_dropdown.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/domain_list_dropdown.html
msgid "Change Project"
@@ -28547,11 +28988,6 @@ msgstr "Por favor vea nuestro blog para obtener actualizaciones del servicio."
msgid "Manage Notification"
msgstr "Administra Notificación"
-#: corehq/apps/oauth_integrations/views/google.py
-msgid ""
-"Something went wrong when trying to sign you in to Google. Please try again."
-msgstr ""
-
#: corehq/apps/ota/utils.py corehq/apps/users/tasks.py
msgid ""
"Something went wrong in creating restore for the user. Please try again or "
@@ -29563,10 +29999,8 @@ msgid "Know what you need?"
msgstr ""
#: corehq/apps/registration/templates/registration/partials/choose_your_plan.html
-#, fuzzy
-#| msgid "Latest starred version"
msgid "Get started here!"
-msgstr "La última versión lanzada"
+msgstr ""
#: corehq/apps/registration/templates/registration/partials/choose_your_plan.html
msgid ""
@@ -35216,10 +35650,6 @@ msgstr "Configuración de Suscripción"
msgid "Update settings"
msgstr "Configuración de Actualización"
-#: corehq/apps/sms/forms.py
-msgid "Type a username, group name or 'send to all'"
-msgstr "Escriba un nombre de usuario, nombre de grupo o 'enviar a todos'"
-
#: corehq/apps/sms/forms.py
msgid "0 characters (160 max)"
msgstr "0 caracteres (160 max)"
@@ -36007,10 +36437,6 @@ msgstr "Usted no especificó ningún destinatario"
msgid "You can't send an empty message"
msgstr "No puede enviar un mensaje vacío"
-#: corehq/apps/sms/views.py
-msgid "Please remember to separate recipients with a comma."
-msgstr "Por favor recuerde separar los destinatarios con una coma."
-
#: corehq/apps/sms/views.py
msgid "The following groups don't exist: "
msgstr "Los siguientes grupos no existen:"
@@ -42068,6 +42494,26 @@ msgstr ""
msgid "Please select at least one item."
msgstr ""
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: \"%(request_username)s\" will no longer be able to "
+"access or edit \"%(couch_username)s\"\n"
+" if they don't share a location.\n"
+" "
+msgstr ""
+
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: %(user_type)s \"%(couch_username)s\" must have at "
+"least one location assigned.\n"
+" They won't be able to log in otherwise.\n"
+" "
+msgstr ""
+
#: corehq/apps/users/templates/users/partials/manage_phone_numbers.html
msgid ""
"Phone numbers can only contain digits and we were unable to convert yours "
@@ -43505,10 +43951,8 @@ msgid ""
msgstr ""
#: corehq/messaging/scheduling/forms.py
-#, fuzzy
-#| msgid "Filter"
msgid "Filter on"
-msgstr "Filtro"
+msgstr ""
#: corehq/messaging/scheduling/forms.py
msgid "User data filter: whole json"
@@ -46787,7 +47231,7 @@ msgid "User Management"
msgstr "Manejo de Casos"
#: corehq/reports.py
-msgid "Case Mapping"
+msgid "Microplanning"
msgstr ""
#: corehq/tabs/tabclasses.py corehq/tabs/utils.py
@@ -46811,7 +47255,7 @@ msgid "Data Manipulation"
msgstr ""
#: corehq/tabs/tabclasses.py
-msgid "Configure Geospatial Settings"
+msgid "Configure Microplanning Settings"
msgstr ""
#: corehq/tabs/tabclasses.py
@@ -47952,3 +48396,6 @@ msgstr ""
#: manage.py
msgid "Enter valid JSON"
msgstr ""
+
+#~ msgid "Calendar Fixture Settings"
+#~ msgstr "Configuración de Fixture del Calendario"
diff --git a/locale/es/LC_MESSAGES/djangojs.po b/locale/es/LC_MESSAGES/djangojs.po
index c457357859dc..3f2db5fb8f0c 100644
--- a/locale/es/LC_MESSAGES/djangojs.po
+++ b/locale/es/LC_MESSAGES/djangojs.po
@@ -1189,7 +1189,7 @@ msgid "no formatting"
msgstr "sin formato"
#: corehq/apps/app_manager/static/app_manager/js/vellum/src/main-components.js
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Custom"
msgstr "Personalizado"
@@ -3232,26 +3232,30 @@ msgstr ""
msgid "Sorry, it looks like the upload failed."
msgstr "Lo sentimos, parece que la carga falló."
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Payment"
msgstr "Ingrese Pago"
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Invoice Request"
msgstr "Ingrese Solicitud de Factura"
-#: corehq/apps/domain/static/domain/js/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/case_search.js
msgid "You have unchanged settings"
msgstr ""
+#: corehq/apps/domain/static/domain/js/bootstrap3/info_basic.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/info_basic.js
+msgid "Select a Timezone..."
+msgstr ""
+
#: corehq/apps/domain/static/domain/js/current_subscription.js
msgid "Buy Credits"
msgstr "Comprar Créditos"
-#: corehq/apps/domain/static/domain/js/info_basic.js
-msgid "Select a Timezone..."
-msgstr ""
-
#: corehq/apps/domain/static/domain/js/internal_settings.js
msgid "Available Countries"
msgstr "Países disponibles"
@@ -3295,42 +3299,42 @@ msgid ""
"the project space as a member in order to override your timezone."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
+msgid ""
+"Do not allow new users to sign up on commcarehq.org. This may take up to an "
+"hour to take effect. This will affect users with email addresses from "
+"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
+msgstr ""
+
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Last 30 Days"
msgstr "Últimos 30 Días"
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
#: corehq/apps/hqwebapp/static/hqwebapp/js/tempus_dominus.js
msgid "Previous Month"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Spans <%- startDate %> to <%- endDate %> (UTC)"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error updating display total, please try again or report an issue if this "
"persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "??"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error sending email, please try again or report an issue if this persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
-msgid ""
-"Do not allow new users to sign up on commcarehq.org. This may take up to an "
-"hour to take effect. This will affect users with email addresses from "
-"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
-msgstr ""
-
#: corehq/apps/events/static/events/js/event_attendees.js
msgid "Disable Mobile Worker Attendees"
msgstr ""
@@ -3484,6 +3488,10 @@ msgstr "ID Confidencial"
msgid "Sensitive Date"
msgstr "Fecha Confidencial"
+#: corehq/apps/fixtures/static/fixtures/js/lookup-manage.js
+msgid "Can not create table with ID '<%= tag %>'. Table IDs should be unique."
+msgstr ""
+
#: corehq/apps/geospatial/static/geospatial/js/case_grouping_map.js
msgid "No group"
msgstr ""
@@ -4248,35 +4256,6 @@ msgstr ""
msgid "label-info-light"
msgstr ""
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords"
-msgstr "Palabras Clave"
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords to copy"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Search keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/users/static/users/js/roles.js
-msgid "Linked Project Spaces"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Projects to copy to"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Search projects"
-msgstr ""
-
#: corehq/apps/reports/static/reports/js/bootstrap3/base.js
#: corehq/apps/reports/static/reports/js/bootstrap5/base.js
#: corehq/apps/userreports/static/userreports/js/configurable_report.js
@@ -4623,11 +4602,11 @@ msgstr "Mostrando_PRINCIPIO_a_FIN_del_TOTAL_de contactos"
msgid "(filtered from _MAX_ total contacts)"
msgstr "(filtrado de _MAX_ total de contactos)"
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "There was an error fetching the SMS rate."
msgstr "Se produjo un error al buscar la tarifa de SMS."
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "Please Select a Country Code"
msgstr "Por favor Seleccione un Código de País"
@@ -4804,6 +4783,16 @@ msgstr ""
msgid "Linked projects"
msgstr ""
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Projects to copy to"
+msgstr ""
+
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Search projects"
+msgstr ""
+
#: corehq/apps/userreports/static/userreports/js/expression_evaluator.js
msgid "Unknown error"
msgstr ""
@@ -5111,6 +5100,10 @@ msgstr ""
msgid "Multi-Environment Release Management"
msgstr ""
+#: corehq/apps/users/static/users/js/roles.js
+msgid "Linked Project Spaces"
+msgstr ""
+
#: corehq/apps/users/static/users/js/roles.js
msgid "Allow role to configure linked project spaces"
msgstr ""
diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po
index 691b5782a76a..a5e98a297f27 100644
--- a/locale/fr/LC_MESSAGES/django.po
+++ b/locale/fr/LC_MESSAGES/django.po
@@ -24,7 +24,8 @@ msgstr ""
#: corehq/apps/accounting/filters.py
#: corehq/apps/app_manager/templates/app_manager/partials/bulk_upload_app_translations.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/geospatial/filters.py
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
@@ -288,8 +289,10 @@ msgstr ""
#: corehq/apps/builds/templates/builds/all.html
#: corehq/apps/builds/templates/builds/edit_menu.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/translations_coverage.html
msgid "Version"
msgstr ""
@@ -446,9 +449,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
#: corehq/apps/enterprise/enterprise.py corehq/apps/events/forms.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -490,7 +494,8 @@ msgid "Company / Organization"
msgstr ""
#: corehq/apps/accounting/forms.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
#: corehq/apps/reminders/forms.py corehq/apps/reports/standard/deployments.py
#: corehq/apps/reports/standard/sms.py
@@ -904,8 +909,10 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/accounting_admins.html
#: corehq/apps/data_interfaces/templates/data_interfaces/manage_case_groups.html
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/partials/manage_downstream_domains.html
#: corehq/apps/locations/templates/locations/location_types.html
@@ -960,11 +967,13 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
#: corehq/apps/enterprise/templates/enterprise/partials/date_range_modal.html
-#: corehq/apps/events/templates/edit_attendee.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/edit_attendee.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/dialogs/bulk_delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
@@ -1449,9 +1458,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_run_history.html
#: corehq/apps/data_interfaces/views.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/enterprise/enterprise.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/standard/cases/basic.py
@@ -2543,7 +2553,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/invoice.html
#: corehq/apps/app_execution/templates/app_execution/workflow_list.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/app_release_logs.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/hqadmin/reports.py corehq/apps/linked_domain/views.py
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/reports/standard/deployments.py
@@ -2773,7 +2784,8 @@ msgid "Add New Credit Card"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/new_stripe_card_template.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
msgid "Processing your request"
msgstr ""
@@ -2843,12 +2855,14 @@ msgid "Save"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Monthly"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Annually"
msgstr ""
@@ -2935,7 +2949,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/subscriptions_tab.html
#: corehq/apps/app_execution/templates/app_execution/components/title_bar.html
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_properties.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
#: corehq/apps/locations/templates/locations/manage/location_template.html
@@ -3156,8 +3171,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_lookup.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/partials/reference_table.html
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/registry/templates/registry/registry_edit.html
@@ -3543,7 +3560,8 @@ msgstr ""
#: corehq/apps/data_interfaces/forms.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/geospatial/templates/geospatial/gps_capture.html
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/scheduled_reports_table.html
@@ -3619,8 +3637,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_case_groups.html
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
@@ -3973,8 +3993,10 @@ msgstr ""
#: corehq/apps/app_manager/fields.py
#: corehq/apps/cloudcare/templates/cloudcare/config.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/linked_domain/const.py
#: corehq/apps/reports/filters/forms.py corehq/apps/reports/filters/select.py
#: corehq/apps/reports/standard/deployments.py
@@ -4277,7 +4299,6 @@ msgstr ""
#: corehq/apps/app_manager/helpers/validators.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case property"
msgstr ""
@@ -4871,7 +4892,8 @@ msgid "Enable Menu Display Setting Per-Module"
msgstr ""
#: corehq/apps/app_manager/static_strings.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/enterprise/templates/enterprise/partials/enterprise_permissions_table.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqadmin/forms.py
@@ -5087,7 +5109,8 @@ msgid "No Validation"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -5575,7 +5598,8 @@ msgid "XXX-High Density"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -6279,7 +6303,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/odk_install.html
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_tab_advanced.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/releases_deploy_modal.html
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/export/templates/export/partials/export_download_progress.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqmedia/templates/hqmedia/audio_translator.html
@@ -6321,11 +6346,15 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
#: corehq/apps/data_interfaces/templates/data_interfaces/interfaces/case_management.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/dialogs/process_deleted_questions.html
#: corehq/apps/export/templates/export/dialogs/process_deprecated_properties.html
#: corehq/apps/export/templates/export/partials/table.html
@@ -8073,8 +8102,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_workflow.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_detail.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_list/multi_select_continue_button.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/messaging/scheduling/templates/scheduling/partials/conditional_alert_continue.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/start.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/step1.html
@@ -9410,7 +9441,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/mobile_report_configs.html
#: corehq/apps/data_dictionary/templates/data_dictionary/base.html
#: corehq/apps/data_dictionary/views.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/download_data_files.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -9488,7 +9520,8 @@ msgid ""
msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/module_actions.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/apps/registration/templates/registration/partials/start_trial_modal.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/description.html
#: corehq/apps/reports/templates/reports/partials/bootstrap5/description.html
@@ -11489,7 +11522,6 @@ msgid "Case Type to Update/Create"
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case type"
msgstr ""
@@ -11532,8 +11564,10 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
#: corehq/apps/case_importer/templates/case_importer/excel_fields.html
#: corehq/apps/domain/templates/error.html
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/registration/forms.py corehq/apps/settings/forms.py
msgid "Back"
@@ -11697,19 +11731,21 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" row had an invalid\n"
-" \"\" cell and was not "
+" row had an "
+"invalid\n"
+" \"\" cell and was not "
"saved\n"
-" "
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" rows had invalid\n"
-" \"\" cells and were not "
-"saved\n"
-" "
+" rows had "
+"invalid\n"
+" \"\" cells and were "
+"not saved\n"
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
@@ -11852,7 +11888,7 @@ msgid "{param} must be a string"
msgstr ""
#: corehq/apps/case_search/models.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/locations/templates/locations/manage/location.html
#: corehq/apps/reports/filters/users.py corehq/apps/users/models.py
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -11924,7 +11960,8 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/form_entry/entry_geo.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/reports/filters/simple.py
#: corehq/apps/reports/standard/cases/filters.py
#: corehq/apps/sms/templates/sms/chat_contacts.html
@@ -11934,7 +11971,8 @@ msgstr ""
#: corehq/apps/case_search/templates/case_search/case_search.html
#: corehq/apps/custom_data_fields/edit_entity.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/users/templates/users/enterprise_users.html
msgid "Profile"
msgstr ""
@@ -12140,6 +12178,14 @@ msgid ""
"\"YYYY-mm-dd\""
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "{} is not a valid datetime"
+msgstr ""
+
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Invalid datetime value. Must be a number or a ISO 8601 string."
+msgstr ""
+
#: corehq/apps/case_search/xpath_functions/value_functions.py
#, python-brace-format
msgid ""
@@ -12158,6 +12204,10 @@ msgid ""
"add\" function"
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Cannot convert {} to a double"
+msgstr ""
+
#: corehq/apps/cloudcare/api.py
#, python-format
msgid "Not found application by name: %s"
@@ -14271,7 +14321,8 @@ msgid ""
msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/domain_links.html
#: corehq/apps/translations/forms.py
@@ -14692,7 +14743,8 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/events/forms.py corehq/apps/events/views.py
#: corehq/apps/geospatial/templates/geospatial/case_management.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/locations/forms.py
@@ -15702,7 +15754,8 @@ msgid ""
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/paused_plan_notice.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/paused_plan_notice.html
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -15710,7 +15763,8 @@ msgid "Subscribe to Plan"
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Renew Plan"
msgstr ""
@@ -15913,45 +15967,379 @@ msgstr ""
msgid "There has been a transfer of ownership of {domain}"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Transfer project ownership"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "SMS Keyword"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#, python-format
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "Action Type"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/edit_alert.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/edit_alert.html
+msgid "Edit Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
+msgid "Feature Previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "What are Feature Previews?"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" By clicking \"accept\" below you acknowledge that you accept "
-"full ownership of this project space (\"%(domain)s\").\n"
-" You agree to be bound by the terms of Dimagi's Terms of Service and "
-"Business Agreement.\n"
-" By accepting this agreement, your are acknowledging you have "
-"permission and authority to accept these terms. A Dimagi representative will "
-"notify you when the transfer is complete.\n"
+" Before we invest in making certain product features generally\n"
+" available, we release them as Feature Previews to learn the\n"
+" following two things from usage data and qualitative feedback.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Perceived Value:\n"
+" The biggest risk in product development is to\n"
+" build something that offers little value to our users. As "
+"such,\n"
+" we make Feature Previews generally available only if they "
+"have\n"
+" high perceived value.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-#: corehq/apps/registry/templates/registry/registry_list.html
-msgid "Accept"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" User Experience:\n"
+" Even if a feature has high perceived value,\n"
+" it is important that the user experience of the feature is\n"
+" optimized such that our users actually receive the value.\n"
+" As such, we make high value Feature Previews generally\n"
+" available after we optimize the user experience.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Decline"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Feature Previews are in active product development, therefore\n"
+" should not be used for business critical workflows. We encourage\n"
+" you to use Feature Previews and provide us feedback, however\n"
+" please note that Feature Previews:\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" Sorry this transfer request has expired.\n"
+" May not be optimized for performance\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not supported by the CommCare Support Team\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" May change at any time without notice\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/calendar_fixture.html
-msgid "Calendar Fixture Settings"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not subject to any warranties on current and future\n"
+" availability. Please refer to our\n"
+" terms to\n"
+" learn more.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Looking for something that used to be here?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" The feature flags Control Mapping in Case List"
+"strong>,\n"
+" Custom Calculations in Case List, "
+"Custom\n"
+" Single and Multiple Answer Questions, and Icons "
+"in\n"
+" Case List are now add-ons for individual apps. To turn\n"
+" them on, go to the application's settings and choose the\n"
+" Add-Ons tab.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Update previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Feature Name"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
+msgid "More information"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "SMS Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/userreports/views.py
+msgid "Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" View SMS prices for using Dimagi's connections in each country.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" You can choose a connection for your project under Messaging -> SMS "
+"Connectivity\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Calculating SMS Rate...\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Connection"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Incoming"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Outgoing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Your own Android Gateway"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" Pricing is per message sent or received. Fees are subject to change "
+"based on provider rates and exchange rates and are computed at the time the "
+"SMS is sent or received.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/location_fixture.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/location_fixture.html
+msgid "Location Fixture Settings"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "Add New Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Available Alerts"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "You can only have 3 alerts activated at any one time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
+msgid "Start Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "End Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Added By"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "De-activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "No alerts added yet for the project."
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Measure"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Sequence Number"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "App Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "CC Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+#: corehq/apps/users/templates/users/edit_commcare_user.html
+msgid "Created On"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Notes"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "No measures have been initiated for this application"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Use this form to get a cost estimation per 160 character SMS,\n"
+" given a connection, direction,\n"
+" and country code.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" The fee will be applied to the most specific criteria available.\n"
+" A fee for a specific country code (if available) will be used\n"
+" over the default of 'Any Country'.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Fees are subject to change based on updates to each carrier and are\n"
+" computed at the time the SMS is sent.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain.html
+msgid ""
+"\n"
+" Use this to transfer your project to another user.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+#, python-format
+msgid ""
+"\n"
+" You have a pending transfer with %(username)s\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid ""
+"\n"
+" Resend Transfer Request\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid "Cancel Transfer"
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16020,9 +16408,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update case search data immediately on web apps form "
+" Update case search data immediately on web apps form "
"submission.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16040,9 +16428,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update local case data immediately before entering a web "
+" Update local case data immediately before entering a web "
"apps form.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16071,302 +16459,6 @@ msgstr ""
msgid "Add case property"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "SMS Keyword"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "Action Type"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/edit_alert.html
-msgid "Edit Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
-msgid "Feature Previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "What are Feature Previews?"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Before we invest in making certain product features generally\n"
-" available, we release them as Feature Previews to learn the\n"
-" following two things from usage data and qualitative feedback.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Perceived Value:\n"
-" The biggest risk in product development is to\n"
-" build something that offers little value to our users. As "
-"such,\n"
-" we make Feature Previews generally available only if they "
-"have\n"
-" high perceived value.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" User Experience:\n"
-" Even if a feature has high perceived value,\n"
-" it is important that the user experience of the feature is\n"
-" optimized such that our users actually receive the value.\n"
-" As such, we make high value Feature Previews generally\n"
-" available after we optimize the user experience.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Feature Previews are in active product development, therefore\n"
-" should not be used for business critical workflows. We encourage\n"
-" you to use Feature Previews and provide us feedback, however\n"
-" please note that Feature Previews:\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May not be optimized for performance\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not supported by the CommCare Support Team\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May change at any time without notice\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not subject to any warranties on current and future\n"
-" availability. Please refer to our\n"
-" terms to\n"
-" learn more.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Looking for something that used to be here?\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" The feature flags Control Mapping in Case List"
-"strong>,\n"
-" Custom Calculations in Case List, "
-"Custom\n"
-" Single and Multiple Answer Questions, and Icons "
-"in\n"
-" Case List are now add-ons for individual apps. To turn\n"
-" them on, go to the application's settings and choose the\n"
-" Add-Ons tab.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Update previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Feature Name"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
-msgid "More information"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "SMS Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/userreports/views.py
-msgid "Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" View SMS prices for using Dimagi's connections in each country.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" You can choose a connection for your project under Messaging -> SMS "
-"Connectivity\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Calculating SMS Rate...\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Connection"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Incoming"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Outgoing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Your own Android Gateway"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" Pricing is per message sent or received. Fees are subject to change "
-"based on provider rates and exchange rates and are computed at the time the "
-"SMS is sent or received.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/location_fixture.html
-msgid "Location Fixture Settings"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "Add New Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Available Alerts"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "You can only have 3 alerts activated at any one time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
-msgid "Start Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "End Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Added By"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "De-activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "No alerts added yet for the project."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Measure"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Sequence Number"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "App Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "CC Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-#: corehq/apps/users/templates/users/edit_commcare_user.html
-msgid "Created On"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Notes"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "No measures have been initiated for this application"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Use this form to get a cost estimation per 160 character SMS,\n"
-" given a connection, direction,\n"
-" and country code.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" The fee will be applied to the most specific criteria available.\n"
-" A fee for a specific country code (if available) will be used\n"
-" over the default of 'Any Country'.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Fees are subject to change based on updates to each carrier and are\n"
-" computed at the time the SMS is sent.\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/domain/admin/sms_settings.html
msgid "Stock Actions"
msgstr ""
@@ -16379,75 +16471,103 @@ msgstr ""
msgid "Save Settings"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain.html
-msgid ""
-"\n"
-" Use this to transfer your project to another user.\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Transfer project ownership"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
#, python-format
msgid ""
"\n"
-" You have a pending transfer with %(username)s\n"
-" "
+" By clicking \"accept\" below you acknowledge that you accept "
+"full ownership of this project space (\"%(domain)s\").\n"
+" You agree to be bound by the terms of Dimagi's Terms of Service and "
+"Business Agreement.\n"
+" By accepting this agreement, your are acknowledging you have "
+"permission and authority to accept these terms. A Dimagi representative will "
+"notify you when the transfer is complete.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid ""
-"\n"
-" Resend Transfer Request\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+#: corehq/apps/registry/templates/registry/registry_list.html
+msgid "Accept"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid "Cancel Transfer"
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Decline"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid ""
+"\n"
+" Sorry this transfer request has expired.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Total Due:"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Wire"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Not Billing Admin, Can't Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/domain/views/accounting.py corehq/apps/enterprise/views.py
#: corehq/tabs/tabclasses.py
msgid "Billing Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Unpaid"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show Only Unpaid Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show All Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Payment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay the full balance: $"
@@ -16455,14 +16575,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay a portion of the balance:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Please enter an amount that's between $0.50 and $"
@@ -16488,20 +16612,25 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Wire Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Thank you for your payment!"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Thank you for your upcoming wire payment.\n"
@@ -16511,7 +16640,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_billing_info.html
#, python-format
msgid ""
"\n"
@@ -16521,7 +16651,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Clicking the 'Confirm Plan' button below will bring you to a "
@@ -16529,33 +16660,40 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Select different option"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Select different plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Confirm Pause"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Confirm Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Before you pause..."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Downgrading?"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" We'd love to make CommCare work better for you.\n"
@@ -16563,56 +16701,64 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you pausing your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you downgrading your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Do you think your project may start again?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Could you indicate which new tool you’re using?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you switching to a new tool?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please specify\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please let us know any other feedback you have\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16620,11 +16766,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
msgid "— which matches your current feature usage."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16632,7 +16780,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16642,31 +16791,36 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
msgid "Current Subscription"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/styleguide/examples/bootstrap5/select2_manual_form.py
msgid "Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Your Subscription is Paused\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid " Day Trial"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16676,7 +16830,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16687,7 +16842,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Note: This subscription will not be "
@@ -16695,22 +16851,28 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Got questions about your plan?"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Talk to Sales"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Change Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16718,7 +16880,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16726,104 +16889,129 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Started"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Ending"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Begins"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Subscription Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Plan Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "General Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Generate Prepayment Invoice"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Not Billing Admin, Can't Add Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Usage Summary"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Feature"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Use"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Included in Software Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Usage"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepayment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"One credit is equivalent to one USD. Credits are applied to monthly invoices"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Please enter an amount that's either $0 or greater than "
@@ -16831,11 +17019,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Total Credits"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Thank you! You will receive an invoice via email with instructions for "
@@ -16844,17 +17034,360 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid "Domain Temporarily Unavailable"
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid ""
"The page you requested is currently unavailable due to a\n"
" data migration. Please check back later."
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+#, python-format
+msgid ""
+"\n"
+" %(feature_name)s is only available to projects\n"
+" subscribed to %(plan_name)s plan or higher.\n"
+" To access this feature, you must subscribe to the\n"
+" %(plan_name)s plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid ""
+"\n"
+" You must be a Project Administrator to make Subscription changes.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Read more about our plans"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Change My Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load EVERYTHING"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load Property"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_subscription_management.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_subscription_management.html
+#, python-format
+msgid ""
+"\n"
+"
\n"
+" This page is visible to Dimagi employees only (you have an @dimagi.com "
+"email address). You can use this page\n"
+" to set up a subscription for this project space.\n"
+"\n"
+" Use this tool only for projects that are:\n"
+"
\n"
+"
an internal test project
\n"
+"
part of a contracted project
\n"
+"
a short term extended trial for biz dev
\n"
+"
\n"
+" \n"
+"\n"
+"
\n"
+" Your project is currently subscribed to %(plan_name)s.\n"
+"
\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Could not update!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Last Activity"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Activated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Deactivated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#, python-format
+msgid ""
+"\n"
+" You are renewing your %(p)s subscription.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
+#: corehq/apps/registration/forms.py
+#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
+#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
+#: corehq/apps/settings/forms.py
+#: corehq/apps/userreports/reports/builder/forms.py
+msgid "Next"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/settings/views.py
+msgid "My Projects"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "Accept All Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "My Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "90 day refund policy"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "monthly"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "discounted"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be downgrading to\n"
+" on\n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be pausing on \n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Current Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/views/accounting.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
+msgid "Select Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Pause Subscription\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" What happens after you pause?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will lose access to your project space, but you will be\n"
+" able to re-subscribe anytime in the future.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will no longer be billed.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription is currently paused.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Your subscription is currently paused because you have\n"
+" past-due invoices.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will not be allowed to un-pause your project until\n"
+" these invoices are paid.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be pausing on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be downgrading to\n"
+" on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You are currently on the FREE CommCare Community plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Dismiss"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Saved Credit Cards"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Add Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Credit Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Your request was successful!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Delete Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid ""
+"\n"
+" Actually remove "
+"strong> card\n"
+" ************"
+"strong>?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Remove Autopay"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Set as autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually. \n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16863,7 +17396,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16871,14 +17405,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
msgid ""
"\n"
" Accept Invitation\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16888,7 +17424,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
msgid ""
"\n"
" CommCare HQ is a data management tool used by over 500 organizations\n"
@@ -16898,7 +17434,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16908,6 +17445,16 @@ msgid ""
" "
msgstr ""
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
+msgid ""
+"\n"
+" CommCare HQ is a data management tool used by over 500 organizations\n"
+" to help frontline workers around the world.\n"
+" Learn "
+"more about CommCare. \n"
+" "
+msgstr ""
+
#: corehq/apps/domain/templates/domain/email/domain_invite.txt
#: corehq/apps/registration/templates/registration/email/mobile_worker_confirm_account.txt
msgid "Hey there,"
@@ -17163,93 +17710,23 @@ msgid ""
"org/.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-#, python-format
-msgid ""
-"\n"
-" %(feature_name)s is only available to projects\n"
-" subscribed to %(plan_name)s plan or higher.\n"
-" To access this feature, you must subscribe to the\n"
-" %(plan_name)s plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid ""
-"\n"
-" You must be a Project Administrator to make Subscription changes.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Read more about our plans"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Change My Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load EVERYTHING"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load Property"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_subscription_management.html
-#, python-format
-msgid ""
-"\n"
-"
\n"
-" This page is visible to Dimagi employees only (you have an @dimagi.com "
-"email address). You can use this page\n"
-" to set up a subscription for this project space.\n"
-"\n"
-" Use this tool only for projects that are:\n"
-"
\n"
-"
an internal test project
\n"
-"
part of a contracted project
\n"
-"
a short term extended trial for biz dev
\n"
-"
\n"
-" \n"
-"\n"
-"
\n"
-" Your project is currently subscribed to %(plan_name)s.\n"
-"
\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Could not update!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Last Activity"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Activated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Deactivated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "Use the Creative Commons website"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "to choose a Creative Commons license."
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Wire Payment Information"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid ""
"\n"
" Dimagi accepts wire payments via ACH and wire transfer. You "
@@ -17262,271 +17739,156 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Invoice Recipients"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Please agree to the Privacy Policy."
msgstr ""
-#: corehq/apps/domain/templates/domain/pro_bono/page_content.html
-msgid ""
-"Thank you for your submission. A representative will be in contact with you "
-"shortly."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#, python-format
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" You are renewing your %(p)s subscription.\n"
-" "
+" This license doesn't cover all your multimedia.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
-#: corehq/apps/registration/forms.py
-#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
-#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
-#: corehq/apps/settings/forms.py
-#: corehq/apps/userreports/reports/builder/forms.py
-msgid "Next"
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "More info..."
msgstr ""
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/settings/views.py
-msgid "My Projects"
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "Select a more restrictive license"
msgstr ""
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "Accept All Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "My Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Save close to 20%% when you pay annually.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "90 day refund policy"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "monthly"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "discounted"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be downgrading to\n"
-" on\n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be pausing on \n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Current Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/views/accounting.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
-msgid "Select Plan"
+" Since you've opted to publish your multimedia along with your "
+"app,\n"
+" you must select a license that is more restrictive than the "
+"multimedia in the app.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Pause Subscription\n"
+" To satisfy this condition, you can either decide not to publish "
+"the multimedia\n"
+" or select one of the following licenses:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap3/page_content.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap5/page_content.html
msgid ""
-"\n"
-" What happens after you pause?\n"
-" "
+"Thank you for your submission. A representative will be in contact with you "
+"shortly."
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will lose access to your project space, but you will be\n"
-" able to re-subscribe anytime in the future.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Error details"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will no longer be billed.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Log In"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription is currently paused.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/login.html
+msgid "Log In :: CommCare HQ"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
-msgid ""
-"\n"
-" Your subscription is currently paused because you have\n"
-" past-due invoices.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset Confirmation"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will not be allowed to un-pause your project until\n"
-" these invoices are paid.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
+#: corehq/apps/users/forms.py
+msgid "Reset Password"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription will be pausing on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+msgid "Reset Password Unsuccessful"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Your subscription will be downgrading to\n"
-" on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
+" The password reset link was invalid, possibly because\n"
+" it has already been used.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" You are currently on the FREE CommCare Community plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Dismiss"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Saved Credit Cards"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Add Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Credit Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Your request was successful!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Delete Card"
+" Please request a new password reset.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Actually remove "
-"strong> card\n"
-" ************"
-"strong>?\n"
+" Request Password Reset\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Remove Autopay"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Set as autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Error details"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Log In"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/login.html
-msgid "Log In :: CommCare HQ"
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"\n"
" No account? Sign up today, it's free!\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Learn more"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"about how CommCare HQ can be your mobile solution for your frontline "
"workforce."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
#, python-format
msgid "Request Access to %(hr_name)s"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Sign Up"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
msgid ""
"\n"
" We will email instructions to you for resetting your "
@@ -17534,15 +17896,6 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/users/forms.py
-msgid "Reset Password"
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/urls.py
msgid "Password Change Complete"
@@ -17555,7 +17908,8 @@ msgstr ""
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap3/base_navigation.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap5/base_navigation.html
msgid "Sign In"
@@ -17566,37 +17920,6 @@ msgstr ""
msgid "Password Reset Complete"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset Confirmation"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid "Reset Password Unsuccessful"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" The password reset link was invalid, possibly because\n"
-" it has already been used.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Please request a new password reset.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Request Password Reset\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
msgid "Password Reset Requested"
msgstr ""
@@ -17638,21 +17961,20 @@ msgstr ""
msgid "--The CommCare HQ Team"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_forms.html
msgid "Forgot your password?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid ""
"Backup tokens can be used when your primary and backup\n"
" phone numbers aren't available. The backup tokens below can be used\n"
@@ -17661,29 +17983,37 @@ msgid ""
" below will be valid."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Print these tokens and keep them somewhere safe."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "You don't have any backup codes yet."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Begin Using CommCare Now"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Back to Profile"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Generate Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We are calling your phone right now, please enter the\n"
@@ -17691,7 +18021,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We sent you a text message, please enter the tokens we\n"
@@ -17699,7 +18030,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the tokens generated by your token\n"
@@ -17707,50 +18039,61 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the token given to you by your domain administrator.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Looks like your CommCare session has expired."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please log in again to continue working."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below to continue."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "You will be transferred to your original destination after you sign in."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Or, alternatively, use one of your backup phones:"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Please contact your domain administrator if you need a backup token."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Use Backup Token"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid "Please set up Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" For security purposes, your CommCare administrator has required that "
@@ -17761,7 +18104,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" To access your account, please enable two-factor authentication "
@@ -17769,71 +18113,87 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/file_download.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/file_download.html
msgid "Go back"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Enable Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid "Add Backup Phone"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"Your backup phone number will be used if your primary method of registration "
"is not available. Please enter a valid phone number."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"We've sent a token to your phone number. Please enter the token you've "
"received."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Follow the steps in this wizard to enable two-factor authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Please select which authentication method you would like to use."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To start using a token generator, please use your smartphone to scan the QR "
"code below. For example, use Google Authenticator. Then, enter the token "
"generated by the app."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to receive the text messages on. This "
"number will be validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to be called on. This number will be "
"validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We are calling your phone right now, please enter the digits you hear."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We sent you a text message, please enter the tokens we sent."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"We've encountered an issue with the selected authentication method. Please "
"go back and verify that you entered your information correctly, try again, "
@@ -17841,44 +18201,52 @@ msgid ""
"contact the site administrator."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To identify and verify your YubiKey, please insert a token in the field "
"below. Your YubiKey will be linked to your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid ""
"Congratulations, you've successfully enabled two-factor\n"
" authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "To enable account recovery, generate backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Generate Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid "Remove Two-factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid ""
"You are about to remove two-factor authentication. This\n"
" compromises your account security, are you sure?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" Two-Factor Authentication is not managed here.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17888,32 +18256,38 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Phone Numbers"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If your primary method is not available, we are able to\n"
" send backup tokens to the phone numbers listed below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Unregister"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/sms/templates/sms/add_gateway.html
msgid "Add Phone Number"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If you don't have any device with you, you can access\n"
" your account using backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17926,27 +18300,32 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Show Codes"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/settings/views.py
msgid "Remove Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"We strongly discourage this, but if absolutely necessary "
"you can\n"
" remove two-factor authentication from your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Reset Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" This will remove your current two-factor authentication, and "
@@ -17957,7 +18336,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"Two-factor authentication is not enabled for your\n"
" account. Enable two-factor authentication for enhanced account\n"
@@ -18902,10 +19282,6 @@ msgstr ""
msgid "Enterprise Dashboard: {}"
msgstr ""
-#: corehq/apps/enterprise/templates/enterprise/enterprise_dashboard.html
-msgid "Email Report"
-msgstr ""
-
#: corehq/apps/enterprise/templates/enterprise/enterprise_permissions.html
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
msgid "Enterprise Permissions"
@@ -18966,8 +19342,31 @@ msgstr ""
msgid "No project spaces found."
msgstr ""
+#: corehq/apps/enterprise/templates/enterprise/partials/project_tile.html
+msgid "Email Report"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Platform Overview for {}"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
+msgid "Platform Overview"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
+#: corehq/apps/sso/forms.py
+msgid "Enterprise Console"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Security Center for {}"
+msgstr ""
+
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
-msgid "Enterprise Dashboard"
+msgid "Security Center"
msgstr ""
#: corehq/apps/enterprise/views.py corehq/apps/reports/views.py
@@ -18985,13 +19384,6 @@ msgstr ""
msgid "Enterprise Settings"
msgstr ""
-#: corehq/apps/enterprise/views.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
-#: corehq/apps/sso/forms.py
-msgid "Enterprise Console"
-msgstr ""
-
#: corehq/apps/enterprise/views.py
msgid "Enterprise permissions have been disabled."
msgstr ""
@@ -19115,11 +19507,11 @@ msgstr ""
msgid "Event in progress"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19129,15 +19521,15 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Update Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Delete Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19146,7 +19538,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19156,14 +19548,14 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid ""
"\n"
" This action cannot be undone.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" Known potential attendees who can be invited to participate in "
@@ -19172,42 +19564,42 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Create Potential Attendee"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Enable Mobile Worker Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "New Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "Pending..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "NEW"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "ERROR"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Loading potential attendees ..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid ""
"\n"
@@ -19219,21 +19611,21 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" You currently have no potential attendees.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" No matching potential attendees found.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid ""
"\n"
" Attendance tracking events can be used to track attendance of all "
@@ -19241,31 +19633,31 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Add new event"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "View Attendees"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "No Attendees Yet"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Date Attended"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Attendee Name"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Event has not yet started"
msgstr ""
-#: corehq/apps/events/templates/new_event.html
+#: corehq/apps/events/templates/events/new_event.html
msgid ""
"\n"
" There was a problem fetching the list of attendees and attendance "
@@ -22155,7 +22547,7 @@ msgid ""
msgstr ""
#: corehq/apps/geospatial/forms.py
-msgid "Case Grouping Parameters"
+msgid "Case Clustering Map Parameters"
msgstr ""
#: corehq/apps/geospatial/forms.py
@@ -22238,7 +22630,7 @@ msgid "Driving"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Management Map"
+msgid "Microplanning Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22258,7 +22650,7 @@ msgid "name"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Grouping"
+msgid "Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22285,11 +22677,11 @@ msgid "Link"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Lock Case Grouping for Me"
+msgid "Lock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Unlock Case Grouping for Me"
+msgid "Unlock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22297,7 +22689,7 @@ msgid "Export Groups"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Summary of Case Grouping"
+msgid "Summary of Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22567,6 +22959,35 @@ msgstr ""
msgid "You are about to delete this saved area"
msgstr ""
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain were not processed to be available in "
+"Microplanning reports\n"
+" because there were too many to be processed. New or updated cases "
+"will still be available\n"
+" for use for Microplanning. Please reach out to support if you need "
+"support with existing cases.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Oops! Something went wrong while processing existing cases to be "
+"available in Microplanning\n"
+" reports. Please reach out to support.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain are being processed to be available in\n"
+" Microplanning reports. Please be patient.\n"
+" "
+msgstr ""
+
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
msgid "Review Assignment Results"
msgstr ""
@@ -22909,7 +23330,7 @@ msgid ""
" For all active mobile workers in this group, and for "
"each phone number, this will\n"
" initiate an SMS verification workflow. When a user "
-"replies to the SMS< their phone\n"
+"replies to the SMS, their phone\n"
" number will be verified.
If the phone number "
"is already verified or\n"
" if the phone number is already in use by another "
@@ -24649,6 +25070,13 @@ msgstr ""
msgid "Server Error Encountered"
msgstr ""
+#: corehq/apps/hqwebapp/templates/hqwebapp/htmx/htmx_action_error.html
+#, python-format
+msgid ""
+"\n"
+" Encountered error \"%(htmx_error)s\" while performing action %(action)s.\n"
+msgstr ""
+
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/domain_list_dropdown.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/domain_list_dropdown.html
msgid "Change Project"
@@ -27623,11 +28051,6 @@ msgstr ""
msgid "Manage Notification"
msgstr ""
-#: corehq/apps/oauth_integrations/views/google.py
-msgid ""
-"Something went wrong when trying to sign you in to Google. Please try again."
-msgstr ""
-
#: corehq/apps/ota/utils.py corehq/apps/users/tasks.py
msgid ""
"Something went wrong in creating restore for the user. Please try again or "
@@ -34055,10 +34478,6 @@ msgstr ""
msgid "Update settings"
msgstr ""
-#: corehq/apps/sms/forms.py
-msgid "Type a username, group name or 'send to all'"
-msgstr ""
-
#: corehq/apps/sms/forms.py
msgid "0 characters (160 max)"
msgstr ""
@@ -34824,10 +35243,6 @@ msgstr ""
msgid "You can't send an empty message"
msgstr ""
-#: corehq/apps/sms/views.py
-msgid "Please remember to separate recipients with a comma."
-msgstr ""
-
#: corehq/apps/sms/views.py
msgid "The following groups don't exist: "
msgstr ""
@@ -40764,6 +41179,26 @@ msgstr ""
msgid "Please select at least one item."
msgstr ""
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: \"%(request_username)s\" will no longer be able to "
+"access or edit \"%(couch_username)s\"\n"
+" if they don't share a location.\n"
+" "
+msgstr ""
+
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: %(user_type)s \"%(couch_username)s\" must have at "
+"least one location assigned.\n"
+" They won't be able to log in otherwise.\n"
+" "
+msgstr ""
+
#: corehq/apps/users/templates/users/partials/manage_phone_numbers.html
msgid ""
"Phone numbers can only contain digits and we were unable to convert yours "
@@ -45405,7 +45840,7 @@ msgid "User Management"
msgstr ""
#: corehq/reports.py
-msgid "Case Mapping"
+msgid "Microplanning"
msgstr ""
#: corehq/tabs/tabclasses.py corehq/tabs/utils.py
@@ -45429,7 +45864,7 @@ msgid "Data Manipulation"
msgstr ""
#: corehq/tabs/tabclasses.py
-msgid "Configure Geospatial Settings"
+msgid "Configure Microplanning Settings"
msgstr ""
#: corehq/tabs/tabclasses.py
diff --git a/locale/fr/LC_MESSAGES/djangojs.po b/locale/fr/LC_MESSAGES/djangojs.po
index 6296dbc9417f..b10732cd606a 100644
--- a/locale/fr/LC_MESSAGES/djangojs.po
+++ b/locale/fr/LC_MESSAGES/djangojs.po
@@ -1167,7 +1167,7 @@ msgid "no formatting"
msgstr ""
#: corehq/apps/app_manager/static/app_manager/js/vellum/src/main-components.js
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Custom"
msgstr ""
@@ -3087,24 +3087,28 @@ msgstr ""
msgid "Sorry, it looks like the upload failed."
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Payment"
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Invoice Request"
msgstr ""
-#: corehq/apps/domain/static/domain/js/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/case_search.js
msgid "You have unchanged settings"
msgstr ""
-#: corehq/apps/domain/static/domain/js/current_subscription.js
-msgid "Buy Credits"
+#: corehq/apps/domain/static/domain/js/bootstrap3/info_basic.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/info_basic.js
+msgid "Select a Timezone..."
msgstr ""
-#: corehq/apps/domain/static/domain/js/info_basic.js
-msgid "Select a Timezone..."
+#: corehq/apps/domain/static/domain/js/current_subscription.js
+msgid "Buy Credits"
msgstr ""
#: corehq/apps/domain/static/domain/js/internal_settings.js
@@ -3150,42 +3154,42 @@ msgid ""
"the project space as a member in order to override your timezone."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
+msgid ""
+"Do not allow new users to sign up on commcarehq.org. This may take up to an "
+"hour to take effect. This will affect users with email addresses from "
+"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
+msgstr ""
+
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Last 30 Days"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
#: corehq/apps/hqwebapp/static/hqwebapp/js/tempus_dominus.js
msgid "Previous Month"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Spans <%- startDate %> to <%- endDate %> (UTC)"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error updating display total, please try again or report an issue if this "
"persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "??"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error sending email, please try again or report an issue if this persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
-msgid ""
-"Do not allow new users to sign up on commcarehq.org. This may take up to an "
-"hour to take effect. This will affect users with email addresses from "
-"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
-msgstr ""
-
#: corehq/apps/events/static/events/js/event_attendees.js
msgid "Disable Mobile Worker Attendees"
msgstr ""
@@ -3338,6 +3342,10 @@ msgstr ""
msgid "Sensitive Date"
msgstr ""
+#: corehq/apps/fixtures/static/fixtures/js/lookup-manage.js
+msgid "Can not create table with ID '<%= tag %>'. Table IDs should be unique."
+msgstr ""
+
#: corehq/apps/geospatial/static/geospatial/js/case_grouping_map.js
msgid "No group"
msgstr ""
@@ -4090,35 +4098,6 @@ msgstr ""
msgid "label-info-light"
msgstr ""
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords to copy"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Search keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/users/static/users/js/roles.js
-msgid "Linked Project Spaces"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Projects to copy to"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Search projects"
-msgstr ""
-
#: corehq/apps/reports/static/reports/js/bootstrap3/base.js
#: corehq/apps/reports/static/reports/js/bootstrap5/base.js
#: corehq/apps/userreports/static/userreports/js/configurable_report.js
@@ -4440,11 +4419,11 @@ msgstr ""
msgid "(filtered from _MAX_ total contacts)"
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "There was an error fetching the SMS rate."
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "Please Select a Country Code"
msgstr ""
@@ -4603,6 +4582,16 @@ msgstr ""
msgid "Linked projects"
msgstr ""
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Projects to copy to"
+msgstr ""
+
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Search projects"
+msgstr ""
+
#: corehq/apps/userreports/static/userreports/js/expression_evaluator.js
msgid "Unknown error"
msgstr ""
@@ -4906,6 +4895,10 @@ msgstr ""
msgid "Multi-Environment Release Management"
msgstr ""
+#: corehq/apps/users/static/users/js/roles.js
+msgid "Linked Project Spaces"
+msgstr ""
+
#: corehq/apps/users/static/users/js/roles.js
msgid "Allow role to configure linked project spaces"
msgstr ""
diff --git a/locale/fra/LC_MESSAGES/django.po b/locale/fra/LC_MESSAGES/django.po
index f3bfb928d250..6e24474478f8 100644
--- a/locale/fra/LC_MESSAGES/django.po
+++ b/locale/fra/LC_MESSAGES/django.po
@@ -56,7 +56,8 @@ msgstr "Type de Compte"
#: corehq/apps/accounting/filters.py
#: corehq/apps/app_manager/templates/app_manager/partials/bulk_upload_app_translations.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/geospatial/filters.py
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
@@ -326,8 +327,10 @@ msgstr "Compte de facturation"
#: corehq/apps/builds/templates/builds/all.html
#: corehq/apps/builds/templates/builds/edit_menu.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/translations_coverage.html
msgid "Version"
msgstr "Version"
@@ -488,9 +491,10 @@ msgstr "Un nom est requis pour ce nouveau rôle."
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
#: corehq/apps/enterprise/enterprise.py corehq/apps/events/forms.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -532,7 +536,8 @@ msgid "Company / Organization"
msgstr "Compagnie / Organisation"
#: corehq/apps/accounting/forms.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
#: corehq/apps/reminders/forms.py corehq/apps/reports/standard/deployments.py
#: corehq/apps/reports/standard/sms.py
@@ -1019,8 +1024,10 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/accounting_admins.html
#: corehq/apps/data_interfaces/templates/data_interfaces/manage_case_groups.html
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/partials/manage_downstream_domains.html
#: corehq/apps/locations/templates/locations/location_types.html
@@ -1075,11 +1082,13 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
#: corehq/apps/enterprise/templates/enterprise/partials/date_range_modal.html
-#: corehq/apps/events/templates/edit_attendee.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/edit_attendee.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/dialogs/bulk_delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
@@ -1616,9 +1625,10 @@ msgstr "État Numero"
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_run_history.html
#: corehq/apps/data_interfaces/views.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/enterprise/enterprise.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/standard/cases/basic.py
@@ -2799,7 +2809,8 @@ msgstr "Raison"
#: corehq/apps/accounting/templates/accounting/invoice.html
#: corehq/apps/app_execution/templates/app_execution/workflow_list.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/app_release_logs.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/hqadmin/reports.py corehq/apps/linked_domain/views.py
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/reports/standard/deployments.py
@@ -3031,7 +3042,8 @@ msgid "Add New Credit Card"
msgstr "Ajoutez nouvelle carte bancaire"
#: corehq/apps/accounting/templates/accounting/partials/new_stripe_card_template.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
msgid "Processing your request"
msgstr "Traitement de votre demande"
@@ -3101,12 +3113,14 @@ msgid "Save"
msgstr "Enregistrer"
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Monthly"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Annually"
msgstr ""
@@ -3193,7 +3207,8 @@ msgstr "Raison de \"Non Facturation\""
#: corehq/apps/accounting/templates/accounting/partials/subscriptions_tab.html
#: corehq/apps/app_execution/templates/app_execution/components/title_bar.html
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_properties.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
#: corehq/apps/locations/templates/locations/manage/location_template.html
@@ -3418,8 +3433,10 @@ msgstr "Ajouter les utilisateurs:"
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_lookup.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/partials/reference_table.html
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/registry/templates/registry/registry_edit.html
@@ -3805,7 +3822,8 @@ msgstr ""
#: corehq/apps/data_interfaces/forms.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/geospatial/templates/geospatial/gps_capture.html
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/scheduled_reports_table.html
@@ -3881,8 +3899,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_case_groups.html
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
@@ -4245,8 +4265,10 @@ msgstr "Source de données"
#: corehq/apps/app_manager/fields.py
#: corehq/apps/cloudcare/templates/cloudcare/config.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/linked_domain/const.py
#: corehq/apps/reports/filters/forms.py corehq/apps/reports/filters/select.py
#: corehq/apps/reports/standard/deployments.py
@@ -4564,7 +4586,6 @@ msgstr ""
#: corehq/apps/app_manager/helpers/validators.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case property"
msgstr "Propriété de Cas"
@@ -5183,7 +5204,8 @@ msgid "Enable Menu Display Setting Per-Module"
msgstr ""
#: corehq/apps/app_manager/static_strings.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/enterprise/templates/enterprise/partials/enterprise_permissions_table.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqadmin/forms.py
@@ -5399,7 +5421,8 @@ msgid "No Validation"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -5887,7 +5910,8 @@ msgid "XXX-High Density"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -6625,7 +6649,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/odk_install.html
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_tab_advanced.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/releases_deploy_modal.html
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/export/templates/export/partials/export_download_progress.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqmedia/templates/hqmedia/audio_translator.html
@@ -6667,11 +6692,15 @@ msgstr "Installer CommCare"
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
#: corehq/apps/data_interfaces/templates/data_interfaces/interfaces/case_management.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/dialogs/process_deleted_questions.html
#: corehq/apps/export/templates/export/dialogs/process_deprecated_properties.html
#: corehq/apps/export/templates/export/partials/table.html
@@ -8441,8 +8470,10 @@ msgstr "Reactualiser"
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_workflow.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_detail.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_list/multi_select_continue_button.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/messaging/scheduling/templates/scheduling/partials/conditional_alert_continue.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/start.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/step1.html
@@ -9834,7 +9865,8 @@ msgstr "Rapport"
#: corehq/apps/app_manager/templates/app_manager/partials/modules/mobile_report_configs.html
#: corehq/apps/data_dictionary/templates/data_dictionary/base.html
#: corehq/apps/data_dictionary/views.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/download_data_files.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -9912,7 +9944,8 @@ msgid ""
msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/module_actions.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/apps/registration/templates/registration/partials/start_trial_modal.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/description.html
#: corehq/apps/reports/templates/reports/partials/bootstrap5/description.html
@@ -12003,7 +12036,6 @@ msgid "Case Type to Update/Create"
msgstr "Type de dossier à mettre à jour / créer"
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case type"
msgstr "Type de dossier"
@@ -12046,8 +12078,10 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
#: corehq/apps/case_importer/templates/case_importer/excel_fields.html
#: corehq/apps/domain/templates/error.html
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/registration/forms.py corehq/apps/settings/forms.py
msgid "Back"
@@ -12211,19 +12245,21 @@ msgstr "Aucun dossier n'a été créé ou mis à jour pendant cette importation.
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" row had an invalid\n"
-" \"\" cell and was not "
+" row had an "
+"invalid\n"
+" \"\" cell and was not "
"saved\n"
-" "
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" rows had invalid\n"
-" \"\" cells and were not "
-"saved\n"
-" "
+" rows had "
+"invalid\n"
+" \"\" cells and were "
+"not saved\n"
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
@@ -12368,7 +12404,7 @@ msgid "{param} must be a string"
msgstr ""
#: corehq/apps/case_search/models.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/locations/templates/locations/manage/location.html
#: corehq/apps/reports/filters/users.py corehq/apps/users/models.py
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -12440,7 +12476,8 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/form_entry/entry_geo.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/reports/filters/simple.py
#: corehq/apps/reports/standard/cases/filters.py
#: corehq/apps/sms/templates/sms/chat_contacts.html
@@ -12450,7 +12487,8 @@ msgstr "Recherche"
#: corehq/apps/case_search/templates/case_search/case_search.html
#: corehq/apps/custom_data_fields/edit_entity.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/users/templates/users/enterprise_users.html
msgid "Profile"
msgstr ""
@@ -12656,6 +12694,14 @@ msgid ""
"\"YYYY-mm-dd\""
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "{} is not a valid datetime"
+msgstr ""
+
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Invalid datetime value. Must be a number or a ISO 8601 string."
+msgstr ""
+
#: corehq/apps/case_search/xpath_functions/value_functions.py
#, python-brace-format
msgid ""
@@ -12674,6 +12720,10 @@ msgid ""
"add\" function"
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Cannot convert {} to a double"
+msgstr ""
+
#: corehq/apps/cloudcare/api.py
#, python-format
msgid "Not found application by name: %s"
@@ -14814,7 +14864,8 @@ msgid ""
msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/domain_links.html
#: corehq/apps/translations/forms.py
@@ -15235,7 +15286,8 @@ msgstr "Date de la propriété de dossier (avancé)"
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/events/forms.py corehq/apps/events/views.py
#: corehq/apps/geospatial/templates/geospatial/case_management.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/locations/forms.py
@@ -16278,7 +16330,8 @@ msgstr ""
"Ce numéro de téléphone semble invalide. Auriez-vous oublier le code du pays?"
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/paused_plan_notice.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/paused_plan_notice.html
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -16286,7 +16339,8 @@ msgid "Subscribe to Plan"
msgstr "Souscrire à un Plan"
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Renew Plan"
msgstr "Renouveler l'abonnement"
@@ -16513,46 +16567,380 @@ msgstr "Transfert de propriété d'espace projet CommCare."
msgid "There has been a transfer of ownership of {domain}"
msgstr "Il y a eu un transfert de propriété de {domain}"
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Transfer project ownership"
-msgstr "Transférer la propriété du projet"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "SMS Keyword"
+msgstr "Mot-clé SMS"
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#, python-format
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "Action Type"
+msgstr "Type d'action"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/edit_alert.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/edit_alert.html
+msgid "Edit Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
+msgid "Feature Previews"
+msgstr "Aperçus des fonctionnalités"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "What are Feature Previews?"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" By clicking \"accept\" below you acknowledge that you accept "
-"full ownership of this project space (\"%(domain)s\").\n"
-" You agree to be bound by the terms of Dimagi's Terms of Service and "
-"Business Agreement.\n"
-" By accepting this agreement, your are acknowledging you have "
-"permission and authority to accept these terms. A Dimagi representative will "
-"notify you when the transfer is complete.\n"
+" Before we invest in making certain product features generally\n"
+" available, we release them as Feature Previews to learn the\n"
+" following two things from usage data and qualitative feedback.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Perceived Value:\n"
+" The biggest risk in product development is to\n"
+" build something that offers little value to our users. As "
+"such,\n"
+" we make Feature Previews generally available only if they "
+"have\n"
+" high perceived value.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-#: corehq/apps/registry/templates/registry/registry_list.html
-msgid "Accept"
-msgstr "Accepter "
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" User Experience:\n"
+" Even if a feature has high perceived value,\n"
+" it is important that the user experience of the feature is\n"
+" optimized such that our users actually receive the value.\n"
+" As such, we make high value Feature Previews generally\n"
+" available after we optimize the user experience.\n"
+" "
+msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Decline"
-msgstr "Refuser "
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Feature Previews are in active product development, therefore\n"
+" should not be used for business critical workflows. We encourage\n"
+" you to use Feature Previews and provide us feedback, however\n"
+" please note that Feature Previews:\n"
+" "
+msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" Sorry this transfer request has expired.\n"
+" May not be optimized for performance\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not supported by the CommCare Support Team\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" May change at any time without notice\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not subject to any warranties on current and future\n"
+" availability. Please refer to our\n"
+" terms to\n"
+" learn more.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/calendar_fixture.html
-msgid "Calendar Fixture Settings"
-msgstr "Paramètres d'éléments de calendrier"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Looking for something that used to be here?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" The feature flags Control Mapping in Case List"
+"strong>,\n"
+" Custom Calculations in Case List, "
+"Custom\n"
+" Single and Multiple Answer Questions, and Icons "
+"in\n"
+" Case List are now add-ons for individual apps. To turn\n"
+" them on, go to the application's settings and choose the\n"
+" Add-Ons tab.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Update previews"
+msgstr "Prévisualisation des Mises à jours"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Feature Name"
+msgstr "Nom du Caracteristique "
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
+msgid "More information"
+msgstr "Plus d'Informations "
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "SMS Pricing"
+msgstr "Tarification SMS"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/userreports/views.py
+msgid "Pricing"
+msgstr "Tarifs"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" View SMS prices for using Dimagi's connections in each country.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" You can choose a connection for your project under Messaging -> SMS "
+"Connectivity\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Calculating SMS Rate...\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Connection"
+msgstr "Connexion"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Incoming"
+msgstr "Entrant"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Outgoing"
+msgstr "Sortant"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Your own Android Gateway"
+msgstr "Votre propre passerelle androïde"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" Pricing is per message sent or received. Fees are subject to change "
+"based on provider rates and exchange rates and are computed at the time the "
+"SMS is sent or received.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/location_fixture.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/location_fixture.html
+msgid "Location Fixture Settings"
+msgstr "Paramètres d'éléments de Sites"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "Add New Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Available Alerts"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "You can only have 3 alerts activated at any one time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
+msgid "Start Time"
+msgstr "Date de début"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "End Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Added By"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "De-activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "No alerts added yet for the project."
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Measure"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Sequence Number"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "App Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "CC Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+#: corehq/apps/users/templates/users/edit_commcare_user.html
+msgid "Created On"
+msgstr "Créé le"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Notes"
+msgstr "Remarques"
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "No measures have been initiated for this application"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Use this form to get a cost estimation per 160 character SMS,\n"
+" given a connection, direction,\n"
+" and country code.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" The fee will be applied to the most specific criteria available.\n"
+" A fee for a specific country code (if available) will be used\n"
+" over the default of 'Any Country'.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Fees are subject to change based on updates to each carrier and are\n"
+" computed at the time the SMS is sent.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain.html
+msgid ""
+"\n"
+" Use this to transfer your project to another user.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+#, python-format
+msgid ""
+"\n"
+" You have a pending transfer with %(username)s\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid ""
+"\n"
+" Resend Transfer Request\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid "Cancel Transfer"
+msgstr "Annuler le transfer"
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid "Enable Case Search"
@@ -16620,9 +17008,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update case search data immediately on web apps form "
+" Update case search data immediately on web apps form "
"submission.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16640,9 +17028,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update local case data immediately before entering a web "
+" Update local case data immediately before entering a web "
"apps form.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16671,302 +17059,6 @@ msgstr ""
msgid "Add case property"
msgstr "Ajouter une propriété de dossier"
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "SMS Keyword"
-msgstr "Mot-clé SMS"
-
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "Action Type"
-msgstr "Type d'action"
-
-#: corehq/apps/domain/templates/domain/admin/edit_alert.html
-msgid "Edit Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
-msgid "Feature Previews"
-msgstr "Aperçus des fonctionnalités"
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "What are Feature Previews?"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Before we invest in making certain product features generally\n"
-" available, we release them as Feature Previews to learn the\n"
-" following two things from usage data and qualitative feedback.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Perceived Value:\n"
-" The biggest risk in product development is to\n"
-" build something that offers little value to our users. As "
-"such,\n"
-" we make Feature Previews generally available only if they "
-"have\n"
-" high perceived value.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" User Experience:\n"
-" Even if a feature has high perceived value,\n"
-" it is important that the user experience of the feature is\n"
-" optimized such that our users actually receive the value.\n"
-" As such, we make high value Feature Previews generally\n"
-" available after we optimize the user experience.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Feature Previews are in active product development, therefore\n"
-" should not be used for business critical workflows. We encourage\n"
-" you to use Feature Previews and provide us feedback, however\n"
-" please note that Feature Previews:\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May not be optimized for performance\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not supported by the CommCare Support Team\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May change at any time without notice\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not subject to any warranties on current and future\n"
-" availability. Please refer to our\n"
-" terms to\n"
-" learn more.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Looking for something that used to be here?\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" The feature flags Control Mapping in Case List"
-"strong>,\n"
-" Custom Calculations in Case List, "
-"Custom\n"
-" Single and Multiple Answer Questions, and Icons "
-"in\n"
-" Case List are now add-ons for individual apps. To turn\n"
-" them on, go to the application's settings and choose the\n"
-" Add-Ons tab.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Update previews"
-msgstr "Prévisualisation des Mises à jours"
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Feature Name"
-msgstr "Nom du Caracteristique "
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
-msgid "More information"
-msgstr "Plus d'Informations "
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "SMS Pricing"
-msgstr "Tarification SMS"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/userreports/views.py
-msgid "Pricing"
-msgstr "Tarifs"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" View SMS prices for using Dimagi's connections in each country.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" You can choose a connection for your project under Messaging -> SMS "
-"Connectivity\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Calculating SMS Rate...\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Connection"
-msgstr "Connexion"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Incoming"
-msgstr "Entrant"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Outgoing"
-msgstr "Sortant"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Your own Android Gateway"
-msgstr "Votre propre passerelle androïde"
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" Pricing is per message sent or received. Fees are subject to change "
-"based on provider rates and exchange rates and are computed at the time the "
-"SMS is sent or received.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/location_fixture.html
-msgid "Location Fixture Settings"
-msgstr "Paramètres d'éléments de Sites"
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "Add New Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Available Alerts"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "You can only have 3 alerts activated at any one time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
-msgid "Start Time"
-msgstr "Date de début"
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "End Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Added By"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "De-activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "No alerts added yet for the project."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Measure"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Sequence Number"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "App Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "CC Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-#: corehq/apps/users/templates/users/edit_commcare_user.html
-msgid "Created On"
-msgstr "Créé le"
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Notes"
-msgstr "Remarques"
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "No measures have been initiated for this application"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Use this form to get a cost estimation per 160 character SMS,\n"
-" given a connection, direction,\n"
-" and country code.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" The fee will be applied to the most specific criteria available.\n"
-" A fee for a specific country code (if available) will be used\n"
-" over the default of 'Any Country'.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Fees are subject to change based on updates to each carrier and are\n"
-" computed at the time the SMS is sent.\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/domain/admin/sms_settings.html
msgid "Stock Actions"
msgstr "Actions d'inventaire"
@@ -16979,77 +17071,105 @@ msgstr "Nouvelle action"
msgid "Save Settings"
msgstr "Enregistrer les paramètres"
-#: corehq/apps/domain/templates/domain/admin/transfer_domain.html
-msgid ""
-"\n"
-" Use this to transfer your project to another user.\n"
-" "
-msgstr ""
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Transfer project ownership"
+msgstr "Transférer la propriété du projet"
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
#, python-format
msgid ""
"\n"
-" You have a pending transfer with %(username)s\n"
-" "
+" By clicking \"accept\" below you acknowledge that you accept "
+"full ownership of this project space (\"%(domain)s\").\n"
+" You agree to be bound by the terms of Dimagi's Terms of Service and "
+"Business Agreement.\n"
+" By accepting this agreement, your are acknowledging you have "
+"permission and authority to accept these terms. A Dimagi representative will "
+"notify you when the transfer is complete.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+#: corehq/apps/registry/templates/registry/registry_list.html
+msgid "Accept"
+msgstr "Accepter "
+
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Decline"
+msgstr "Refuser "
+
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
msgid ""
"\n"
-" Resend Transfer Request\n"
-" "
+" Sorry this transfer request has expired.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid "Cancel Transfer"
-msgstr "Annuler le transfer"
-
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Total Due:"
msgstr "Somme due:"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Credit Card"
msgstr "Payer par carte bancaire "
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Wire"
msgstr "Payer par virement bancaire"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Not Billing Admin, Can't Make Payment"
msgstr ""
"Vous n'êtes pas un administrateur de facturation, vous ne pouvez pas "
"effectuer le paiement"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/domain/views/accounting.py corehq/apps/enterprise/views.py
#: corehq/tabs/tabclasses.py
msgid "Billing Statements"
msgstr "Relevés de facturation"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Unpaid"
msgstr "Impayé "
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show Only Unpaid Statements"
msgstr "Afficher que les relevés impayés"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show All Statements"
msgstr "Afficher tous les relevés"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Make Payment"
msgstr "Effectuer un paiement"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Payment Amount"
msgstr "Montant "
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay the full balance: $"
@@ -17057,14 +17177,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay a portion of the balance:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Please enter an amount that's between $0.50 and $"
@@ -17090,20 +17214,25 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Wire Payment"
msgstr "Payement électronique de masse"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Payment"
msgstr "Paiement de masse"
-#: corehq/apps/domain/templates/domain/billing_statements.html
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Thank you for your payment!"
msgstr "Merci pour votre paiement!"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Thank you for your upcoming wire payment.\n"
@@ -17113,7 +17242,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_billing_info.html
#, python-format
msgid ""
"\n"
@@ -17123,7 +17253,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Clicking the 'Confirm Plan' button below will bring you to a "
@@ -17131,33 +17262,40 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Select different option"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Select different plan"
msgstr "Sélectionnez différents plans"
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Confirm Pause"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Confirm Plan"
msgstr "Confirmez le plan"
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Before you pause..."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Downgrading?"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" We'd love to make CommCare work better for you.\n"
@@ -17165,56 +17303,64 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you pausing your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you downgrading your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Do you think your project may start again?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Could you indicate which new tool you’re using?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you switching to a new tool?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please specify\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please let us know any other feedback you have\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -17222,11 +17368,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
msgid "— which matches your current feature usage."
msgstr "— ce qui correspond à votre usage actuel des fonctionnalités."
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -17234,7 +17382,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -17244,31 +17393,36 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
msgid "Current Subscription"
msgstr "Abonnement actuel "
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/styleguide/examples/bootstrap5/select2_manual_form.py
msgid "Plan"
msgstr "Plan "
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Your Subscription is Paused\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid " Day Trial"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -17278,7 +17432,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -17289,7 +17444,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Note: This subscription will not be "
@@ -17297,22 +17453,28 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Got questions about your plan?"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Talk to Sales"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Change Plan"
msgstr "Changer Abonnement"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -17320,7 +17482,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -17328,108 +17491,133 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Started"
msgstr "Date de Début"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Ending"
msgstr "Date de fin"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Price"
msgstr "Prix Actuel"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Begins"
msgstr "La prochaine suscription commence"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Plan"
msgstr "Prochain plan d'abonnement"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Price"
msgstr "Prochain prix de suscription"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Subscription Credit"
msgstr "Crédit de suscription"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Plan Credit"
msgstr "Crédit du Plan"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "General Credit"
msgstr "Crédit général"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Remaining"
msgstr "Crédits restants"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepay by Credit Card"
msgstr "Prépayé par carte de crédit"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Generate Prepayment Invoice"
msgstr "Générer une facture de paiement anticipé"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Not Billing Admin, Can't Add Credit"
msgstr ""
"Vous n'êtes pas un administrateur de facturation, vous ne pouvez pas ajouter "
"du crédit"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credit"
msgstr "Crédit de compte"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Usage Summary"
msgstr "Résumé d'utilisation"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Feature"
msgstr "Fonctionnalité"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Use"
msgstr "Utilisation actuelle "
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Remaining"
msgstr "Restant"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Available"
msgstr "Crédit disponible"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credits Available"
msgstr "Crédit de compte disponible"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Included in Software Plan"
msgstr "Inclus dans le Plan Logiciel "
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Usage"
msgstr "Utilisation actuelle "
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepayment Amount"
msgstr "Montant du pré-paiement "
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"One credit is equivalent to one USD. Credits are applied to monthly invoices"
msgstr ""
"Un crédit équivaut à un USD. Les crédits sont appliqués aux factures "
"mensuelles"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Please enter an amount that's either $0 or greater than "
@@ -17437,11 +17625,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Total Credits"
msgstr "Total des crédits"
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Thank you! You will receive an invoice via email with instructions for "
@@ -17450,17 +17640,360 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid "Domain Temporarily Unavailable"
msgstr "Domaine temporairement indisponible"
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid ""
"The page you requested is currently unavailable due to a\n"
" data migration. Please check back later."
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+#, python-format
+msgid ""
+"\n"
+" %(feature_name)s is only available to projects\n"
+" subscribed to %(plan_name)s plan or higher.\n"
+" To access this feature, you must subscribe to the\n"
+" %(plan_name)s plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid ""
+"\n"
+" You must be a Project Administrator to make Subscription changes.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Read more about our plans"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Change My Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load EVERYTHING"
+msgstr "Charger TOUT"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load Property"
+msgstr "Propriété de chargement"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_subscription_management.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_subscription_management.html
+#, python-format
+msgid ""
+"\n"
+"
\n"
+" This page is visible to Dimagi employees only (you have an @dimagi.com "
+"email address). You can use this page\n"
+" to set up a subscription for this project space.\n"
+"\n"
+" Use this tool only for projects that are:\n"
+"
\n"
+"
an internal test project
\n"
+"
part of a contracted project
\n"
+"
a short term extended trial for biz dev
\n"
+"
\n"
+" \n"
+"\n"
+"
\n"
+" Your project is currently subscribed to %(plan_name)s.\n"
+"
\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Could not update!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Last Activity"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Activated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Deactivated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#, python-format
+msgid ""
+"\n"
+" You are renewing your %(p)s subscription.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
+#: corehq/apps/registration/forms.py
+#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
+#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
+#: corehq/apps/settings/forms.py
+#: corehq/apps/userreports/reports/builder/forms.py
+msgid "Next"
+msgstr "Suivant"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/settings/views.py
+msgid "My Projects"
+msgstr "Mes projets"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "Accept All Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "My Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "90 day refund policy"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "monthly"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "discounted"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be downgrading to\n"
+" on\n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be pausing on \n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Current Plan"
+msgstr "Plan actuel"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/views/accounting.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
+msgid "Select Plan"
+msgstr "Sélectionnez un plan"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Pause Subscription\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" What happens after you pause?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will lose access to your project space, but you will be\n"
+" able to re-subscribe anytime in the future.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will no longer be billed.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription is currently paused.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Your subscription is currently paused because you have\n"
+" past-due invoices.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will not be allowed to un-pause your project until\n"
+" these invoices are paid.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be pausing on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be downgrading to\n"
+" on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You are currently on the FREE CommCare Community plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Dismiss"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Saved Credit Cards"
+msgstr "Cartes de crédit enregistrées"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Add Card"
+msgstr "Ajouter carte bancaire"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Credit Card"
+msgstr "Carte bancaire "
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Your request was successful!"
+msgstr "Votre requête a été fructueuse"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Delete Card"
+msgstr "Supprimer carte bancaire"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid ""
+"\n"
+" Actually remove "
+"strong> card\n"
+" ************"
+"strong>?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Autopay card"
+msgstr "Carte pour paiement automatique"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Remove Autopay"
+msgstr "Supprimer le paiement automatique"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Set as autopay card"
+msgstr "Définir en tant que carte pour paiement automatique"
+
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually. \n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -17469,7 +18002,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -17477,14 +18011,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
msgid ""
"\n"
" Accept Invitation\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -17494,7 +18030,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
msgid ""
"\n"
" CommCare HQ is a data management tool used by over 500 organizations\n"
@@ -17504,7 +18040,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -17514,6 +18051,16 @@ msgid ""
" "
msgstr ""
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
+msgid ""
+"\n"
+" CommCare HQ is a data management tool used by over 500 organizations\n"
+" to help frontline workers around the world.\n"
+" Learn "
+"more about CommCare. \n"
+" "
+msgstr ""
+
#: corehq/apps/domain/templates/domain/email/domain_invite.txt
#: corehq/apps/registration/templates/registration/email/mobile_worker_confirm_account.txt
msgid "Hey there,"
@@ -17787,93 +18334,23 @@ msgid ""
"org/.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-#, python-format
-msgid ""
-"\n"
-" %(feature_name)s is only available to projects\n"
-" subscribed to %(plan_name)s plan or higher.\n"
-" To access this feature, you must subscribe to the\n"
-" %(plan_name)s plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid ""
-"\n"
-" You must be a Project Administrator to make Subscription changes.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Read more about our plans"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Change My Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load EVERYTHING"
-msgstr "Charger TOUT"
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load Property"
-msgstr "Propriété de chargement"
-
-#: corehq/apps/domain/templates/domain/internal_subscription_management.html
-#, python-format
-msgid ""
-"\n"
-"
\n"
-" This page is visible to Dimagi employees only (you have an @dimagi.com "
-"email address). You can use this page\n"
-" to set up a subscription for this project space.\n"
-"\n"
-" Use this tool only for projects that are:\n"
-"
\n"
-"
an internal test project
\n"
-"
part of a contracted project
\n"
-"
a short term extended trial for biz dev
\n"
-"
\n"
-" \n"
-"\n"
-"
\n"
-" Your project is currently subscribed to %(plan_name)s.\n"
-"
\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Could not update!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Last Activity"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Activated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Deactivated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "Use the Creative Commons website"
msgstr "Utiliser le site Web de Creative Commons"
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "to choose a Creative Commons license."
msgstr "pour choisir une licence Creative Commons."
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Wire Payment Information"
msgstr "Information sur paiement par virement bancaire "
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid ""
"\n"
" Dimagi accepts wire payments via ACH and wire transfer. You "
@@ -17886,258 +18363,140 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Invoice Recipients"
msgstr "Destinataires de la facture"
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Please agree to the Privacy Policy."
msgstr "Veuillez accepter la politique de confidentialité. "
-#: corehq/apps/domain/templates/domain/pro_bono/page_content.html
-msgid ""
-"Thank you for your submission. A representative will be in contact with you "
-"shortly."
-msgstr ""
-"Merci pour votre Souscription. Un représentant vous contactera sous peu de "
-"temps."
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#, python-format
-msgid ""
-"\n"
-" You are renewing your %(p)s subscription.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
-#: corehq/apps/registration/forms.py
-#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
-#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
-#: corehq/apps/settings/forms.py
-#: corehq/apps/userreports/reports/builder/forms.py
-msgid "Next"
-msgstr "Suivant"
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/settings/views.py
-msgid "My Projects"
-msgstr "Mes projets"
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "Accept All Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "My Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Save close to 20%% when you pay annually.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "90 day refund policy"
+" This license doesn't cover all your multimedia.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "monthly"
-msgstr ""
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "More info..."
+msgstr "Plus d'informations..."
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "discounted"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be downgrading to\n"
-" on\n"
-" .\n"
-" "
-msgstr ""
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "Select a more restrictive license"
+msgstr "Choisir une licence plus restrictive"
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" This plan will be pausing on \n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Current Plan"
-msgstr "Plan actuel"
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/views/accounting.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
-msgid "Select Plan"
-msgstr "Sélectionnez un plan"
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Pause Subscription\n"
+" Since you've opted to publish your multimedia along with your "
+"app,\n"
+" you must select a license that is more restrictive than the "
+"multimedia in the app.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" What happens after you pause?\n"
+" To satisfy this condition, you can either decide not to publish "
+"the multimedia\n"
+" or select one of the following licenses:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap3/page_content.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap5/page_content.html
msgid ""
-"\n"
-" You will lose access to your project space, but you will be\n"
-" able to re-subscribe anytime in the future.\n"
-" "
+"Thank you for your submission. A representative will be in contact with you "
+"shortly."
msgstr ""
+"Merci pour votre Souscription. Un représentant vous contactera sous peu de "
+"temps."
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will no longer be billed.\n"
-" "
-msgstr ""
+#: corehq/apps/domain/templates/error.html
+msgid "Error details"
+msgstr "Détails de l'erreur"
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription is currently paused.\n"
-" "
-msgstr ""
+#: corehq/apps/domain/templates/error.html
+msgid "Log In"
+msgstr "Connexion"
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
-msgid ""
-"\n"
-" Your subscription is currently paused because you have\n"
-" past-due invoices.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/login.html
+msgid "Log In :: CommCare HQ"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will not be allowed to un-pause your project until\n"
-" these invoices are paid.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset Confirmation"
+msgstr "Confirmation de la réinitialisation du mot de passe"
+
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
+#: corehq/apps/users/forms.py
+msgid "Reset Password"
+msgstr "Réinitialiser le mot de passe"
+
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+msgid "Reset Password Unsuccessful"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Your subscription will be pausing on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
+" The password reset link was invalid, possibly because\n"
+" it has already been used.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Your subscription will be downgrading to\n"
-" on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
+" Please request a new password reset.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" You are currently on the FREE CommCare Community plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Dismiss"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Saved Credit Cards"
-msgstr "Cartes de crédit enregistrées"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Add Card"
-msgstr "Ajouter carte bancaire"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Credit Card"
-msgstr "Carte bancaire "
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Your request was successful!"
-msgstr "Votre requête a été fructueuse"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Delete Card"
-msgstr "Supprimer carte bancaire"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid ""
-"\n"
-" Actually remove "
-"strong> card\n"
-" ************"
-"strong>?\n"
+" Request Password Reset\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Autopay card"
-msgstr "Carte pour paiement automatique"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Remove Autopay"
-msgstr "Supprimer le paiement automatique"
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Set as autopay card"
-msgstr "Définir en tant que carte pour paiement automatique"
-
-#: corehq/apps/domain/templates/error.html
-msgid "Error details"
-msgstr "Détails de l'erreur"
-
-#: corehq/apps/domain/templates/error.html
-msgid "Log In"
-msgstr "Connexion"
-
-#: corehq/apps/domain/templates/login_and_password/login.html
-msgid "Log In :: CommCare HQ"
-msgstr ""
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset"
+msgstr "Réinitialisation du mot de passe"
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"\n"
" No account? Sign up today, it's free!\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Learn more"
msgstr "Lire plus"
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"about how CommCare HQ can be your mobile solution for your frontline "
"workforce."
@@ -18145,16 +18504,19 @@ msgstr ""
"sur la façon dont CommCare HQ peut être votre solution mobile pour votre "
"personnel de première ligne."
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
#, python-format
msgid "Request Access to %(hr_name)s"
msgstr "Demander accès à %(hr_name)s"
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Sign Up"
msgstr "Inscription"
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
msgid ""
"\n"
" We will email instructions to you for resetting your "
@@ -18162,15 +18524,6 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/users/forms.py
-msgid "Reset Password"
-msgstr "Réinitialiser le mot de passe"
-
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/urls.py
msgid "Password Change Complete"
@@ -18183,7 +18536,8 @@ msgstr "Votre mot de passe a été modifié avec succès."
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap3/base_navigation.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap5/base_navigation.html
msgid "Sign In"
@@ -18194,37 +18548,6 @@ msgstr "Connexion"
msgid "Password Reset Complete"
msgstr "Réinitialisation du mot de passe terminée"
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset Confirmation"
-msgstr "Confirmation de la réinitialisation du mot de passe"
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid "Reset Password Unsuccessful"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" The password reset link was invalid, possibly because\n"
-" it has already been used.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Please request a new password reset.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Request Password Reset\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
msgid "Password Reset Requested"
msgstr "Réinitialisation de mot de passe demandée"
@@ -18268,21 +18591,20 @@ msgstr "Merci d'utiliser CommCareHQ."
msgid "--The CommCare HQ Team"
msgstr "--L'Équipe de CommCare HQ"
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset"
-msgstr "Réinitialisation du mot de passe"
-
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_forms.html
msgid "Forgot your password?"
msgstr "Mot de passe oublié ?"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Tokens"
msgstr "Les bons sauvegardés"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid ""
"Backup tokens can be used when your primary and backup\n"
" phone numbers aren't available. The backup tokens below can be used\n"
@@ -18291,29 +18613,37 @@ msgid ""
" below will be valid."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Print these tokens and keep them somewhere safe."
msgstr "Imprimez ses bons et conservez les en sécurité."
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "You don't have any backup codes yet."
msgstr "Vous n'avez pas encore de code de sauvegarde."
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Begin Using CommCare Now"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Back to Profile"
msgstr "Retour au profile "
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Generate Tokens"
msgstr "Generer des bons"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We are calling your phone right now, please enter the\n"
@@ -18321,7 +18651,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We sent you a text message, please enter the tokens we\n"
@@ -18329,7 +18660,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the tokens generated by your token\n"
@@ -18337,53 +18669,64 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the token given to you by your domain administrator.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Looks like your CommCare session has expired."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please log in again to continue working."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below to continue."
msgstr "Veuillez vous connecter ci-dessous pour poursuivre."
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "You will be transferred to your original destination after you sign in."
msgstr ""
"Une fois connecté, vous serez transféré vers votre destination de départ."
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Or, alternatively, use one of your backup phones:"
msgstr ""
"Ou, alternativement, vous pouvez utiliser un de vos téléphones de "
"remplacement: "
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Please contact your domain administrator if you need a backup token."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Use Backup Token"
msgstr "Utilisez les bons sauvegardés"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid "Please set up Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" For security purposes, your CommCare administrator has required that "
@@ -18394,7 +18737,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" To access your account, please enable two-factor authentication "
@@ -18402,71 +18746,87 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/file_download.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/file_download.html
msgid "Go back"
msgstr "Retour"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Enable Two-Factor Authentication"
msgstr "Activer l'authentification à deux facteurs"
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid "Add Backup Phone"
msgstr "Ajouter un téléphone de remplacement "
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"Your backup phone number will be used if your primary method of registration "
"is not available. Please enter a valid phone number."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"We've sent a token to your phone number. Please enter the token you've "
"received."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Follow the steps in this wizard to enable two-factor authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Please select which authentication method you would like to use."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To start using a token generator, please use your smartphone to scan the QR "
"code below. For example, use Google Authenticator. Then, enter the token "
"generated by the app."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to receive the text messages on. This "
"number will be validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to be called on. This number will be "
"validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We are calling your phone right now, please enter the digits you hear."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We sent you a text message, please enter the tokens we sent."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"We've encountered an issue with the selected authentication method. Please "
"go back and verify that you entered your information correctly, try again, "
@@ -18474,44 +18834,52 @@ msgid ""
"contact the site administrator."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To identify and verify your YubiKey, please insert a token in the field "
"below. Your YubiKey will be linked to your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid ""
"Congratulations, you've successfully enabled two-factor\n"
" authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "To enable account recovery, generate backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Generate Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid "Remove Two-factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid ""
"You are about to remove two-factor authentication. This\n"
" compromises your account security, are you sure?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" Two-Factor Authentication is not managed here.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -18521,11 +18889,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Phone Numbers"
msgstr "Numéros de téléphone de sauvegarde"
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If your primary method is not available, we are able to\n"
" send backup tokens to the phone numbers listed below."
@@ -18533,16 +18903,19 @@ msgstr ""
"Si votre méthode initiale n'est pas disponible, nous pouvons envoyer des "
"bons sauvegardés au numéro de téléphone indiqué ci-dessous."
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Unregister"
msgstr "Se désinscrire"
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/sms/templates/sms/add_gateway.html
msgid "Add Phone Number"
msgstr "Ajouter un numéro de téléphone"
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If you don't have any device with you, you can access\n"
" your account using backup tokens."
@@ -18550,7 +18923,8 @@ msgstr ""
"Si vous n'avez aucun périphérique avec vous, vous pouvez accéder à\n"
"votre compte à l'aide de jetons de sauvegarde."
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -18564,27 +18938,32 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Show Codes"
msgstr "Afficher les codes"
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/settings/views.py
msgid "Remove Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"We strongly discourage this, but if absolutely necessary "
"you can\n"
" remove two-factor authentication from your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Reset Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" This will remove your current two-factor authentication, and "
@@ -18595,7 +18974,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"Two-factor authentication is not enabled for your\n"
" account. Enable two-factor authentication for enhanced account\n"
@@ -19571,10 +19951,6 @@ msgstr ""
msgid "Enterprise Dashboard: {}"
msgstr ""
-#: corehq/apps/enterprise/templates/enterprise/enterprise_dashboard.html
-msgid "Email Report"
-msgstr ""
-
#: corehq/apps/enterprise/templates/enterprise/enterprise_permissions.html
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
msgid "Enterprise Permissions"
@@ -19635,10 +20011,35 @@ msgstr ""
msgid "No project spaces found."
msgstr ""
+#: corehq/apps/enterprise/templates/enterprise/partials/project_tile.html
+msgid "Email Report"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Platform Overview for {}"
+msgstr ""
+
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
-msgid "Enterprise Dashboard"
+msgid "Platform Overview"
msgstr ""
+#: corehq/apps/enterprise/views.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
+#: corehq/apps/sso/forms.py
+msgid "Enterprise Console"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Security Center for {}"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
+#, fuzzy
+#| msgid "Security"
+msgid "Security Center"
+msgstr "Sécurité"
+
#: corehq/apps/enterprise/views.py corehq/apps/reports/views.py
msgid ""
"That report was not found. Please remember that download links expire after "
@@ -19656,13 +20057,6 @@ msgstr ""
msgid "Enterprise Settings"
msgstr ""
-#: corehq/apps/enterprise/views.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
-#: corehq/apps/sso/forms.py
-msgid "Enterprise Console"
-msgstr ""
-
#: corehq/apps/enterprise/views.py
msgid "Enterprise permissions have been disabled."
msgstr "Relatorio Semanal aos Coordinadores do Distrito e os NEDs"
@@ -19786,11 +20180,11 @@ msgstr ""
msgid "Event in progress"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19800,15 +20194,15 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Update Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Delete Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19817,7 +20211,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19827,14 +20221,14 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid ""
"\n"
" This action cannot be undone.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" Known potential attendees who can be invited to participate in "
@@ -19843,42 +20237,42 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Create Potential Attendee"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Enable Mobile Worker Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "New Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "Pending..."
msgstr "En cours..."
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "NEW"
msgstr "NOUVEAU"
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "ERROR"
msgstr "ERREUR "
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Loading potential attendees ..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid ""
"\n"
@@ -19890,21 +20284,21 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" You currently have no potential attendees.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" No matching potential attendees found.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid ""
"\n"
" Attendance tracking events can be used to track attendance of all "
@@ -19912,31 +20306,31 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Add new event"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "View Attendees"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "No Attendees Yet"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Date Attended"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Attendee Name"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Event has not yet started"
msgstr ""
-#: corehq/apps/events/templates/new_event.html
+#: corehq/apps/events/templates/events/new_event.html
msgid ""
"\n"
" There was a problem fetching the list of attendees and attendance "
@@ -22875,7 +23269,7 @@ msgid ""
msgstr ""
#: corehq/apps/geospatial/forms.py
-msgid "Case Grouping Parameters"
+msgid "Case Clustering Map Parameters"
msgstr ""
#: corehq/apps/geospatial/forms.py
@@ -22958,7 +23352,7 @@ msgid "Driving"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Management Map"
+msgid "Microplanning Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22978,7 +23372,7 @@ msgid "name"
msgstr "Relatorio Semanal aos Coordinadores do Distrito e os NEDs"
#: corehq/apps/geospatial/reports.py
-msgid "Case Grouping"
+msgid "Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -23005,11 +23399,11 @@ msgid "Link"
msgstr "Lien"
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Lock Case Grouping for Me"
+msgid "Lock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Unlock Case Grouping for Me"
+msgid "Unlock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -23017,7 +23411,7 @@ msgid "Export Groups"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Summary of Case Grouping"
+msgid "Summary of Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -23287,6 +23681,35 @@ msgstr ""
msgid "You are about to delete this saved area"
msgstr ""
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain were not processed to be available in "
+"Microplanning reports\n"
+" because there were too many to be processed. New or updated cases "
+"will still be available\n"
+" for use for Microplanning. Please reach out to support if you need "
+"support with existing cases.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Oops! Something went wrong while processing existing cases to be "
+"available in Microplanning\n"
+" reports. Please reach out to support.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain are being processed to be available in\n"
+" Microplanning reports. Please be patient.\n"
+" "
+msgstr ""
+
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
msgid "Review Assignment Results"
msgstr ""
@@ -23631,7 +24054,7 @@ msgid ""
" For all active mobile workers in this group, and for "
"each phone number, this will\n"
" initiate an SMS verification workflow. When a user "
-"replies to the SMS< their phone\n"
+"replies to the SMS, their phone\n"
" number will be verified.
If the phone number "
"is already verified or\n"
" if the phone number is already in use by another "
@@ -25426,6 +25849,13 @@ msgstr "Erreurs"
msgid "Server Error Encountered"
msgstr ""
+#: corehq/apps/hqwebapp/templates/hqwebapp/htmx/htmx_action_error.html
+#, python-format
+msgid ""
+"\n"
+" Encountered error \"%(htmx_error)s\" while performing action %(action)s.\n"
+msgstr ""
+
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/domain_list_dropdown.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/domain_list_dropdown.html
msgid "Change Project"
@@ -28476,11 +28906,6 @@ msgstr "Veuillez voir notre blog pour les mises à jour de service."
msgid "Manage Notification"
msgstr "Gérer les notifications"
-#: corehq/apps/oauth_integrations/views/google.py
-msgid ""
-"Something went wrong when trying to sign you in to Google. Please try again."
-msgstr ""
-
#: corehq/apps/ota/utils.py corehq/apps/users/tasks.py
msgid ""
"Something went wrong in creating restore for the user. Please try again or "
@@ -29521,10 +29946,8 @@ msgid "Know what you need?"
msgstr ""
#: corehq/apps/registration/templates/registration/partials/choose_your_plan.html
-#, fuzzy
-#| msgid "Latest starred version"
msgid "Get started here!"
-msgstr "Dernière version marquée d'une étoile"
+msgstr ""
#: corehq/apps/registration/templates/registration/partials/choose_your_plan.html
msgid ""
@@ -35179,10 +35602,6 @@ msgstr "Paramètres d'inscription"
msgid "Update settings"
msgstr "Mettre à jour les paramètres"
-#: corehq/apps/sms/forms.py
-msgid "Type a username, group name or 'send to all'"
-msgstr "Tapez un nom d'utilisateur, nom de groupe ou 'envoyer à tous'"
-
#: corehq/apps/sms/forms.py
msgid "0 characters (160 max)"
msgstr "0 caractères (160 max.)"
@@ -35973,10 +36392,6 @@ msgstr "Vous n'avez spécifié aucun destinataire"
msgid "You can't send an empty message"
msgstr "Vous ne pouvez pas envoyer un message vide"
-#: corehq/apps/sms/views.py
-msgid "Please remember to separate recipients with a comma."
-msgstr "N'oubliez pas de séparer les destinataires par une virgule."
-
#: corehq/apps/sms/views.py
msgid "The following groups don't exist: "
msgstr "Les groupes suivants n'existent pas : "
@@ -42021,6 +42436,26 @@ msgstr ""
msgid "Please select at least one item."
msgstr ""
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: \"%(request_username)s\" will no longer be able to "
+"access or edit \"%(couch_username)s\"\n"
+" if they don't share a location.\n"
+" "
+msgstr ""
+
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: %(user_type)s \"%(couch_username)s\" must have at "
+"least one location assigned.\n"
+" They won't be able to log in otherwise.\n"
+" "
+msgstr ""
+
#: corehq/apps/users/templates/users/partials/manage_phone_numbers.html
msgid ""
"Phone numbers can only contain digits and we were unable to convert yours "
@@ -43460,10 +43895,8 @@ msgid ""
msgstr ""
#: corehq/messaging/scheduling/forms.py
-#, fuzzy
-#| msgid "Filter"
msgid "Filter on"
-msgstr "Filtrer"
+msgstr ""
#: corehq/messaging/scheduling/forms.py
msgid "User data filter: whole json"
@@ -46742,7 +47175,7 @@ msgid "User Management"
msgstr "Manejo de Casos"
#: corehq/reports.py
-msgid "Case Mapping"
+msgid "Microplanning"
msgstr ""
#: corehq/tabs/tabclasses.py corehq/tabs/utils.py
@@ -46766,7 +47199,7 @@ msgid "Data Manipulation"
msgstr ""
#: corehq/tabs/tabclasses.py
-msgid "Configure Geospatial Settings"
+msgid "Configure Microplanning Settings"
msgstr ""
#: corehq/tabs/tabclasses.py
@@ -47942,3 +48375,6 @@ msgstr "Le Score à la Fonctionnalité"
#: manage.py
msgid "Enter valid JSON"
msgstr "Saisir un JSON valide"
+
+#~ msgid "Calendar Fixture Settings"
+#~ msgstr "Paramètres d'éléments de calendrier"
diff --git a/locale/fra/LC_MESSAGES/djangojs.po b/locale/fra/LC_MESSAGES/djangojs.po
index 4a5d44c938ab..b4c9e3fef947 100644
--- a/locale/fra/LC_MESSAGES/djangojs.po
+++ b/locale/fra/LC_MESSAGES/djangojs.po
@@ -1204,7 +1204,7 @@ msgid "no formatting"
msgstr "pas de formatage"
#: corehq/apps/app_manager/static/app_manager/js/vellum/src/main-components.js
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Custom"
msgstr "Peronnaliser"
@@ -3127,26 +3127,30 @@ msgstr ""
msgid "Sorry, it looks like the upload failed."
msgstr "Désolé, il semble que le téléversement ait échoué."
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Payment"
msgstr "Soumettre paiement"
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Invoice Request"
msgstr "Soumettre la demande de Facture"
-#: corehq/apps/domain/static/domain/js/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/case_search.js
msgid "You have unchanged settings"
msgstr ""
+#: corehq/apps/domain/static/domain/js/bootstrap3/info_basic.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/info_basic.js
+msgid "Select a Timezone..."
+msgstr ""
+
#: corehq/apps/domain/static/domain/js/current_subscription.js
msgid "Buy Credits"
msgstr "Acheter des crédits "
-#: corehq/apps/domain/static/domain/js/info_basic.js
-msgid "Select a Timezone..."
-msgstr ""
-
#: corehq/apps/domain/static/domain/js/internal_settings.js
msgid "Available Countries"
msgstr "Pays disponibles"
@@ -3190,42 +3194,42 @@ msgid ""
"the project space as a member in order to override your timezone."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
+msgid ""
+"Do not allow new users to sign up on commcarehq.org. This may take up to an "
+"hour to take effect. This will affect users with email addresses from "
+"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
+msgstr ""
+
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Last 30 Days"
msgstr "30 derniers jours"
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
#: corehq/apps/hqwebapp/static/hqwebapp/js/tempus_dominus.js
msgid "Previous Month"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Spans <%- startDate %> to <%- endDate %> (UTC)"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error updating display total, please try again or report an issue if this "
"persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "??"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error sending email, please try again or report an issue if this persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
-msgid ""
-"Do not allow new users to sign up on commcarehq.org. This may take up to an "
-"hour to take effect. This will affect users with email addresses from "
-"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
-msgstr ""
-
#: corehq/apps/events/static/events/js/event_attendees.js
msgid "Disable Mobile Worker Attendees"
msgstr ""
@@ -3378,6 +3382,10 @@ msgstr "Identifiant sensible"
msgid "Sensitive Date"
msgstr "Date sensible"
+#: corehq/apps/fixtures/static/fixtures/js/lookup-manage.js
+msgid "Can not create table with ID '<%= tag %>'. Table IDs should be unique."
+msgstr ""
+
#: corehq/apps/geospatial/static/geospatial/js/case_grouping_map.js
msgid "No group"
msgstr ""
@@ -4138,35 +4146,6 @@ msgstr ""
msgid "label-info-light"
msgstr ""
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords"
-msgstr "Mots-clés"
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords to copy"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Search keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/users/static/users/js/roles.js
-msgid "Linked Project Spaces"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Projects to copy to"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Search projects"
-msgstr ""
-
#: corehq/apps/reports/static/reports/js/bootstrap3/base.js
#: corehq/apps/reports/static/reports/js/bootstrap5/base.js
#: corehq/apps/userreports/static/userreports/js/configurable_report.js
@@ -4495,11 +4474,11 @@ msgstr "Affichage _DÉBUT_ jusqu’à la _FIN_ du _TOTAL_ des contacts"
msgid "(filtered from _MAX_ total contacts)"
msgstr "(trié à partir du _MAX_ total des contacts)"
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "There was an error fetching the SMS rate."
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "Please Select a Country Code"
msgstr "Sélectionnez un code pays"
@@ -4660,6 +4639,16 @@ msgstr ""
msgid "Linked projects"
msgstr ""
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Projects to copy to"
+msgstr ""
+
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Search projects"
+msgstr ""
+
#: corehq/apps/userreports/static/userreports/js/expression_evaluator.js
msgid "Unknown error"
msgstr ""
@@ -4965,6 +4954,10 @@ msgstr ""
msgid "Multi-Environment Release Management"
msgstr ""
+#: corehq/apps/users/static/users/js/roles.js
+msgid "Linked Project Spaces"
+msgstr ""
+
#: corehq/apps/users/static/users/js/roles.js
msgid "Allow role to configure linked project spaces"
msgstr ""
diff --git a/locale/hi/LC_MESSAGES/django.po b/locale/hi/LC_MESSAGES/django.po
index 15355fa9b0bf..5e46275f75d0 100644
--- a/locale/hi/LC_MESSAGES/django.po
+++ b/locale/hi/LC_MESSAGES/django.po
@@ -24,7 +24,8 @@ msgstr ""
#: corehq/apps/accounting/filters.py
#: corehq/apps/app_manager/templates/app_manager/partials/bulk_upload_app_translations.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/geospatial/filters.py
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
@@ -288,8 +289,10 @@ msgstr ""
#: corehq/apps/builds/templates/builds/all.html
#: corehq/apps/builds/templates/builds/edit_menu.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/translations_coverage.html
msgid "Version"
msgstr ""
@@ -446,9 +449,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
#: corehq/apps/enterprise/enterprise.py corehq/apps/events/forms.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -490,7 +494,8 @@ msgid "Company / Organization"
msgstr ""
#: corehq/apps/accounting/forms.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
#: corehq/apps/reminders/forms.py corehq/apps/reports/standard/deployments.py
#: corehq/apps/reports/standard/sms.py
@@ -904,8 +909,10 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/accounting_admins.html
#: corehq/apps/data_interfaces/templates/data_interfaces/manage_case_groups.html
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/partials/manage_downstream_domains.html
#: corehq/apps/locations/templates/locations/location_types.html
@@ -960,11 +967,13 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
#: corehq/apps/enterprise/templates/enterprise/partials/date_range_modal.html
-#: corehq/apps/events/templates/edit_attendee.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/edit_attendee.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/dialogs/bulk_delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
@@ -1449,9 +1458,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_run_history.html
#: corehq/apps/data_interfaces/views.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/enterprise/enterprise.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/standard/cases/basic.py
@@ -2543,7 +2553,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/invoice.html
#: corehq/apps/app_execution/templates/app_execution/workflow_list.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/app_release_logs.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/hqadmin/reports.py corehq/apps/linked_domain/views.py
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/reports/standard/deployments.py
@@ -2773,7 +2784,8 @@ msgid "Add New Credit Card"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/new_stripe_card_template.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
msgid "Processing your request"
msgstr ""
@@ -2843,12 +2855,14 @@ msgid "Save"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Monthly"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Annually"
msgstr ""
@@ -2935,7 +2949,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/subscriptions_tab.html
#: corehq/apps/app_execution/templates/app_execution/components/title_bar.html
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_properties.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
#: corehq/apps/locations/templates/locations/manage/location_template.html
@@ -3156,8 +3171,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_lookup.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/partials/reference_table.html
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/registry/templates/registry/registry_edit.html
@@ -3543,7 +3560,8 @@ msgstr ""
#: corehq/apps/data_interfaces/forms.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/geospatial/templates/geospatial/gps_capture.html
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/scheduled_reports_table.html
@@ -3619,8 +3637,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_case_groups.html
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
@@ -3973,8 +3993,10 @@ msgstr ""
#: corehq/apps/app_manager/fields.py
#: corehq/apps/cloudcare/templates/cloudcare/config.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/linked_domain/const.py
#: corehq/apps/reports/filters/forms.py corehq/apps/reports/filters/select.py
#: corehq/apps/reports/standard/deployments.py
@@ -4277,7 +4299,6 @@ msgstr ""
#: corehq/apps/app_manager/helpers/validators.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case property"
msgstr ""
@@ -4871,7 +4892,8 @@ msgid "Enable Menu Display Setting Per-Module"
msgstr ""
#: corehq/apps/app_manager/static_strings.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/enterprise/templates/enterprise/partials/enterprise_permissions_table.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqadmin/forms.py
@@ -5087,7 +5109,8 @@ msgid "No Validation"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -5575,7 +5598,8 @@ msgid "XXX-High Density"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -6279,7 +6303,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/odk_install.html
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_tab_advanced.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/releases_deploy_modal.html
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/export/templates/export/partials/export_download_progress.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqmedia/templates/hqmedia/audio_translator.html
@@ -6321,11 +6346,15 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
#: corehq/apps/data_interfaces/templates/data_interfaces/interfaces/case_management.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/dialogs/process_deleted_questions.html
#: corehq/apps/export/templates/export/dialogs/process_deprecated_properties.html
#: corehq/apps/export/templates/export/partials/table.html
@@ -8073,8 +8102,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_workflow.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_detail.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_list/multi_select_continue_button.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/messaging/scheduling/templates/scheduling/partials/conditional_alert_continue.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/start.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/step1.html
@@ -9410,7 +9441,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/mobile_report_configs.html
#: corehq/apps/data_dictionary/templates/data_dictionary/base.html
#: corehq/apps/data_dictionary/views.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/download_data_files.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -9488,7 +9520,8 @@ msgid ""
msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/module_actions.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/apps/registration/templates/registration/partials/start_trial_modal.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/description.html
#: corehq/apps/reports/templates/reports/partials/bootstrap5/description.html
@@ -11489,7 +11522,6 @@ msgid "Case Type to Update/Create"
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case type"
msgstr ""
@@ -11532,8 +11564,10 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
#: corehq/apps/case_importer/templates/case_importer/excel_fields.html
#: corehq/apps/domain/templates/error.html
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/registration/forms.py corehq/apps/settings/forms.py
msgid "Back"
@@ -11697,19 +11731,21 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" row had an invalid\n"
-" \"\" cell and was not "
+" row had an "
+"invalid\n"
+" \"\" cell and was not "
"saved\n"
-" "
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" rows had invalid\n"
-" \"\" cells and were not "
-"saved\n"
-" "
+" rows had "
+"invalid\n"
+" \"\" cells and were "
+"not saved\n"
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
@@ -11852,7 +11888,7 @@ msgid "{param} must be a string"
msgstr ""
#: corehq/apps/case_search/models.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/locations/templates/locations/manage/location.html
#: corehq/apps/reports/filters/users.py corehq/apps/users/models.py
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -11924,7 +11960,8 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/form_entry/entry_geo.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/reports/filters/simple.py
#: corehq/apps/reports/standard/cases/filters.py
#: corehq/apps/sms/templates/sms/chat_contacts.html
@@ -11934,7 +11971,8 @@ msgstr ""
#: corehq/apps/case_search/templates/case_search/case_search.html
#: corehq/apps/custom_data_fields/edit_entity.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/users/templates/users/enterprise_users.html
msgid "Profile"
msgstr ""
@@ -12140,6 +12178,14 @@ msgid ""
"\"YYYY-mm-dd\""
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "{} is not a valid datetime"
+msgstr ""
+
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Invalid datetime value. Must be a number or a ISO 8601 string."
+msgstr ""
+
#: corehq/apps/case_search/xpath_functions/value_functions.py
#, python-brace-format
msgid ""
@@ -12158,6 +12204,10 @@ msgid ""
"add\" function"
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Cannot convert {} to a double"
+msgstr ""
+
#: corehq/apps/cloudcare/api.py
#, python-format
msgid "Not found application by name: %s"
@@ -14271,7 +14321,8 @@ msgid ""
msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/domain_links.html
#: corehq/apps/translations/forms.py
@@ -14692,7 +14743,8 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/events/forms.py corehq/apps/events/views.py
#: corehq/apps/geospatial/templates/geospatial/case_management.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/locations/forms.py
@@ -15702,7 +15754,8 @@ msgid ""
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/paused_plan_notice.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/paused_plan_notice.html
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -15710,7 +15763,8 @@ msgid "Subscribe to Plan"
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Renew Plan"
msgstr ""
@@ -15913,45 +15967,379 @@ msgstr ""
msgid "There has been a transfer of ownership of {domain}"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Transfer project ownership"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "SMS Keyword"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#, python-format
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "Action Type"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/edit_alert.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/edit_alert.html
+msgid "Edit Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
+msgid "Feature Previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "What are Feature Previews?"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" By clicking \"accept\" below you acknowledge that you accept "
-"full ownership of this project space (\"%(domain)s\").\n"
-" You agree to be bound by the terms of Dimagi's Terms of Service and "
-"Business Agreement.\n"
-" By accepting this agreement, your are acknowledging you have "
-"permission and authority to accept these terms. A Dimagi representative will "
-"notify you when the transfer is complete.\n"
+" Before we invest in making certain product features generally\n"
+" available, we release them as Feature Previews to learn the\n"
+" following two things from usage data and qualitative feedback.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Perceived Value:\n"
+" The biggest risk in product development is to\n"
+" build something that offers little value to our users. As "
+"such,\n"
+" we make Feature Previews generally available only if they "
+"have\n"
+" high perceived value.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-#: corehq/apps/registry/templates/registry/registry_list.html
-msgid "Accept"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" User Experience:\n"
+" Even if a feature has high perceived value,\n"
+" it is important that the user experience of the feature is\n"
+" optimized such that our users actually receive the value.\n"
+" As such, we make high value Feature Previews generally\n"
+" available after we optimize the user experience.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Decline"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Feature Previews are in active product development, therefore\n"
+" should not be used for business critical workflows. We encourage\n"
+" you to use Feature Previews and provide us feedback, however\n"
+" please note that Feature Previews:\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" Sorry this transfer request has expired.\n"
+" May not be optimized for performance\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not supported by the CommCare Support Team\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" May change at any time without notice\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/calendar_fixture.html
-msgid "Calendar Fixture Settings"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not subject to any warranties on current and future\n"
+" availability. Please refer to our\n"
+" terms to\n"
+" learn more.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Looking for something that used to be here?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" The feature flags Control Mapping in Case List"
+"strong>,\n"
+" Custom Calculations in Case List, "
+"Custom\n"
+" Single and Multiple Answer Questions, and Icons "
+"in\n"
+" Case List are now add-ons for individual apps. To turn\n"
+" them on, go to the application's settings and choose the\n"
+" Add-Ons tab.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Update previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Feature Name"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
+msgid "More information"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "SMS Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/userreports/views.py
+msgid "Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" View SMS prices for using Dimagi's connections in each country.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" You can choose a connection for your project under Messaging -> SMS "
+"Connectivity\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Calculating SMS Rate...\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Connection"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Incoming"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Outgoing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Your own Android Gateway"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" Pricing is per message sent or received. Fees are subject to change "
+"based on provider rates and exchange rates and are computed at the time the "
+"SMS is sent or received.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/location_fixture.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/location_fixture.html
+msgid "Location Fixture Settings"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "Add New Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Available Alerts"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "You can only have 3 alerts activated at any one time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
+msgid "Start Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "End Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Added By"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "De-activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "No alerts added yet for the project."
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Measure"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Sequence Number"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "App Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "CC Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+#: corehq/apps/users/templates/users/edit_commcare_user.html
+msgid "Created On"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Notes"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "No measures have been initiated for this application"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Use this form to get a cost estimation per 160 character SMS,\n"
+" given a connection, direction,\n"
+" and country code.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" The fee will be applied to the most specific criteria available.\n"
+" A fee for a specific country code (if available) will be used\n"
+" over the default of 'Any Country'.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Fees are subject to change based on updates to each carrier and are\n"
+" computed at the time the SMS is sent.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain.html
+msgid ""
+"\n"
+" Use this to transfer your project to another user.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+#, python-format
+msgid ""
+"\n"
+" You have a pending transfer with %(username)s\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid ""
+"\n"
+" Resend Transfer Request\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid "Cancel Transfer"
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16020,9 +16408,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update case search data immediately on web apps form "
+" Update case search data immediately on web apps form "
"submission.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16040,9 +16428,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update local case data immediately before entering a web "
+" Update local case data immediately before entering a web "
"apps form.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16071,302 +16459,6 @@ msgstr ""
msgid "Add case property"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "SMS Keyword"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "Action Type"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/edit_alert.html
-msgid "Edit Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
-msgid "Feature Previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "What are Feature Previews?"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Before we invest in making certain product features generally\n"
-" available, we release them as Feature Previews to learn the\n"
-" following two things from usage data and qualitative feedback.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Perceived Value:\n"
-" The biggest risk in product development is to\n"
-" build something that offers little value to our users. As "
-"such,\n"
-" we make Feature Previews generally available only if they "
-"have\n"
-" high perceived value.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" User Experience:\n"
-" Even if a feature has high perceived value,\n"
-" it is important that the user experience of the feature is\n"
-" optimized such that our users actually receive the value.\n"
-" As such, we make high value Feature Previews generally\n"
-" available after we optimize the user experience.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Feature Previews are in active product development, therefore\n"
-" should not be used for business critical workflows. We encourage\n"
-" you to use Feature Previews and provide us feedback, however\n"
-" please note that Feature Previews:\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May not be optimized for performance\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not supported by the CommCare Support Team\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May change at any time without notice\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not subject to any warranties on current and future\n"
-" availability. Please refer to our\n"
-" terms to\n"
-" learn more.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Looking for something that used to be here?\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" The feature flags Control Mapping in Case List"
-"strong>,\n"
-" Custom Calculations in Case List, "
-"Custom\n"
-" Single and Multiple Answer Questions, and Icons "
-"in\n"
-" Case List are now add-ons for individual apps. To turn\n"
-" them on, go to the application's settings and choose the\n"
-" Add-Ons tab.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Update previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Feature Name"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
-msgid "More information"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "SMS Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/userreports/views.py
-msgid "Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" View SMS prices for using Dimagi's connections in each country.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" You can choose a connection for your project under Messaging -> SMS "
-"Connectivity\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Calculating SMS Rate...\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Connection"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Incoming"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Outgoing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Your own Android Gateway"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" Pricing is per message sent or received. Fees are subject to change "
-"based on provider rates and exchange rates and are computed at the time the "
-"SMS is sent or received.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/location_fixture.html
-msgid "Location Fixture Settings"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "Add New Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Available Alerts"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "You can only have 3 alerts activated at any one time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
-msgid "Start Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "End Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Added By"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "De-activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "No alerts added yet for the project."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Measure"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Sequence Number"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "App Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "CC Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-#: corehq/apps/users/templates/users/edit_commcare_user.html
-msgid "Created On"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Notes"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "No measures have been initiated for this application"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Use this form to get a cost estimation per 160 character SMS,\n"
-" given a connection, direction,\n"
-" and country code.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" The fee will be applied to the most specific criteria available.\n"
-" A fee for a specific country code (if available) will be used\n"
-" over the default of 'Any Country'.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Fees are subject to change based on updates to each carrier and are\n"
-" computed at the time the SMS is sent.\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/domain/admin/sms_settings.html
msgid "Stock Actions"
msgstr ""
@@ -16379,75 +16471,103 @@ msgstr ""
msgid "Save Settings"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain.html
-msgid ""
-"\n"
-" Use this to transfer your project to another user.\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Transfer project ownership"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
#, python-format
msgid ""
"\n"
-" You have a pending transfer with %(username)s\n"
-" "
+" By clicking \"accept\" below you acknowledge that you accept "
+"full ownership of this project space (\"%(domain)s\").\n"
+" You agree to be bound by the terms of Dimagi's Terms of Service and "
+"Business Agreement.\n"
+" By accepting this agreement, your are acknowledging you have "
+"permission and authority to accept these terms. A Dimagi representative will "
+"notify you when the transfer is complete.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid ""
-"\n"
-" Resend Transfer Request\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+#: corehq/apps/registry/templates/registry/registry_list.html
+msgid "Accept"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid "Cancel Transfer"
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Decline"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid ""
+"\n"
+" Sorry this transfer request has expired.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Total Due:"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Wire"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Not Billing Admin, Can't Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/domain/views/accounting.py corehq/apps/enterprise/views.py
#: corehq/tabs/tabclasses.py
msgid "Billing Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Unpaid"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show Only Unpaid Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show All Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Payment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay the full balance: $"
@@ -16455,14 +16575,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay a portion of the balance:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Please enter an amount that's between $0.50 and $"
@@ -16488,20 +16612,25 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Wire Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Thank you for your payment!"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Thank you for your upcoming wire payment.\n"
@@ -16511,7 +16640,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_billing_info.html
#, python-format
msgid ""
"\n"
@@ -16521,7 +16651,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Clicking the 'Confirm Plan' button below will bring you to a "
@@ -16529,33 +16660,40 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Select different option"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Select different plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Confirm Pause"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Confirm Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Before you pause..."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Downgrading?"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" We'd love to make CommCare work better for you.\n"
@@ -16563,56 +16701,64 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you pausing your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you downgrading your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Do you think your project may start again?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Could you indicate which new tool you’re using?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you switching to a new tool?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please specify\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please let us know any other feedback you have\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16620,11 +16766,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
msgid "— which matches your current feature usage."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16632,7 +16780,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16642,31 +16791,36 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
msgid "Current Subscription"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/styleguide/examples/bootstrap5/select2_manual_form.py
msgid "Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Your Subscription is Paused\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid " Day Trial"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16676,7 +16830,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16687,7 +16842,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Note: This subscription will not be "
@@ -16695,22 +16851,28 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Got questions about your plan?"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Talk to Sales"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Change Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16718,7 +16880,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16726,104 +16889,129 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Started"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Ending"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Begins"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Subscription Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Plan Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "General Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Generate Prepayment Invoice"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Not Billing Admin, Can't Add Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Usage Summary"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Feature"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Use"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Included in Software Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Usage"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepayment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"One credit is equivalent to one USD. Credits are applied to monthly invoices"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Please enter an amount that's either $0 or greater than "
@@ -16831,11 +17019,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Total Credits"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Thank you! You will receive an invoice via email with instructions for "
@@ -16844,17 +17034,360 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid "Domain Temporarily Unavailable"
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid ""
"The page you requested is currently unavailable due to a\n"
" data migration. Please check back later."
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+#, python-format
+msgid ""
+"\n"
+" %(feature_name)s is only available to projects\n"
+" subscribed to %(plan_name)s plan or higher.\n"
+" To access this feature, you must subscribe to the\n"
+" %(plan_name)s plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid ""
+"\n"
+" You must be a Project Administrator to make Subscription changes.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Read more about our plans"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Change My Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load EVERYTHING"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load Property"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_subscription_management.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_subscription_management.html
+#, python-format
+msgid ""
+"\n"
+"
\n"
+" This page is visible to Dimagi employees only (you have an @dimagi.com "
+"email address). You can use this page\n"
+" to set up a subscription for this project space.\n"
+"\n"
+" Use this tool only for projects that are:\n"
+"
\n"
+"
an internal test project
\n"
+"
part of a contracted project
\n"
+"
a short term extended trial for biz dev
\n"
+"
\n"
+" \n"
+"\n"
+"
\n"
+" Your project is currently subscribed to %(plan_name)s.\n"
+"
\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Could not update!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Last Activity"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Activated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Deactivated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#, python-format
+msgid ""
+"\n"
+" You are renewing your %(p)s subscription.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
+#: corehq/apps/registration/forms.py
+#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
+#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
+#: corehq/apps/settings/forms.py
+#: corehq/apps/userreports/reports/builder/forms.py
+msgid "Next"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/settings/views.py
+msgid "My Projects"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "Accept All Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "My Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "90 day refund policy"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "monthly"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "discounted"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be downgrading to\n"
+" on\n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be pausing on \n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Current Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/views/accounting.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
+msgid "Select Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Pause Subscription\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" What happens after you pause?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will lose access to your project space, but you will be\n"
+" able to re-subscribe anytime in the future.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will no longer be billed.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription is currently paused.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Your subscription is currently paused because you have\n"
+" past-due invoices.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will not be allowed to un-pause your project until\n"
+" these invoices are paid.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be pausing on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be downgrading to\n"
+" on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You are currently on the FREE CommCare Community plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Dismiss"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Saved Credit Cards"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Add Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Credit Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Your request was successful!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Delete Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid ""
+"\n"
+" Actually remove "
+"strong> card\n"
+" ************"
+"strong>?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Remove Autopay"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Set as autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually. \n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16863,7 +17396,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16871,14 +17405,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
msgid ""
"\n"
" Accept Invitation\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16888,7 +17424,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
msgid ""
"\n"
" CommCare HQ is a data management tool used by over 500 organizations\n"
@@ -16898,7 +17434,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16908,6 +17445,16 @@ msgid ""
" "
msgstr ""
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
+msgid ""
+"\n"
+" CommCare HQ is a data management tool used by over 500 organizations\n"
+" to help frontline workers around the world.\n"
+" Learn "
+"more about CommCare. \n"
+" "
+msgstr ""
+
#: corehq/apps/domain/templates/domain/email/domain_invite.txt
#: corehq/apps/registration/templates/registration/email/mobile_worker_confirm_account.txt
msgid "Hey there,"
@@ -17163,93 +17710,23 @@ msgid ""
"org/.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-#, python-format
-msgid ""
-"\n"
-" %(feature_name)s is only available to projects\n"
-" subscribed to %(plan_name)s plan or higher.\n"
-" To access this feature, you must subscribe to the\n"
-" %(plan_name)s plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid ""
-"\n"
-" You must be a Project Administrator to make Subscription changes.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Read more about our plans"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Change My Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load EVERYTHING"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load Property"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_subscription_management.html
-#, python-format
-msgid ""
-"\n"
-"
\n"
-" This page is visible to Dimagi employees only (you have an @dimagi.com "
-"email address). You can use this page\n"
-" to set up a subscription for this project space.\n"
-"\n"
-" Use this tool only for projects that are:\n"
-"
\n"
-"
an internal test project
\n"
-"
part of a contracted project
\n"
-"
a short term extended trial for biz dev
\n"
-"
\n"
-" \n"
-"\n"
-"
\n"
-" Your project is currently subscribed to %(plan_name)s.\n"
-"
\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Could not update!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Last Activity"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Activated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Deactivated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "Use the Creative Commons website"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "to choose a Creative Commons license."
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Wire Payment Information"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid ""
"\n"
" Dimagi accepts wire payments via ACH and wire transfer. You "
@@ -17262,271 +17739,156 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Invoice Recipients"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Please agree to the Privacy Policy."
msgstr ""
-#: corehq/apps/domain/templates/domain/pro_bono/page_content.html
-msgid ""
-"Thank you for your submission. A representative will be in contact with you "
-"shortly."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#, python-format
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" You are renewing your %(p)s subscription.\n"
-" "
+" This license doesn't cover all your multimedia.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
-#: corehq/apps/registration/forms.py
-#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
-#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
-#: corehq/apps/settings/forms.py
-#: corehq/apps/userreports/reports/builder/forms.py
-msgid "Next"
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "More info..."
msgstr ""
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/settings/views.py
-msgid "My Projects"
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "Select a more restrictive license"
msgstr ""
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "Accept All Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "My Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Save close to 20%% when you pay annually.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "90 day refund policy"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "monthly"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "discounted"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be downgrading to\n"
-" on\n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be pausing on \n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Current Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/views/accounting.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
-msgid "Select Plan"
+" Since you've opted to publish your multimedia along with your "
+"app,\n"
+" you must select a license that is more restrictive than the "
+"multimedia in the app.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Pause Subscription\n"
+" To satisfy this condition, you can either decide not to publish "
+"the multimedia\n"
+" or select one of the following licenses:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap3/page_content.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap5/page_content.html
msgid ""
-"\n"
-" What happens after you pause?\n"
-" "
+"Thank you for your submission. A representative will be in contact with you "
+"shortly."
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will lose access to your project space, but you will be\n"
-" able to re-subscribe anytime in the future.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Error details"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will no longer be billed.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Log In"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription is currently paused.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/login.html
+msgid "Log In :: CommCare HQ"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
-msgid ""
-"\n"
-" Your subscription is currently paused because you have\n"
-" past-due invoices.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset Confirmation"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will not be allowed to un-pause your project until\n"
-" these invoices are paid.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
+#: corehq/apps/users/forms.py
+msgid "Reset Password"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription will be pausing on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+msgid "Reset Password Unsuccessful"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Your subscription will be downgrading to\n"
-" on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
+" The password reset link was invalid, possibly because\n"
+" it has already been used.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" You are currently on the FREE CommCare Community plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Dismiss"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Saved Credit Cards"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Add Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Credit Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Your request was successful!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Delete Card"
+" Please request a new password reset.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Actually remove "
-"strong> card\n"
-" ************"
-"strong>?\n"
+" Request Password Reset\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Remove Autopay"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Set as autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Error details"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Log In"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/login.html
-msgid "Log In :: CommCare HQ"
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"\n"
" No account? Sign up today, it's free!\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Learn more"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"about how CommCare HQ can be your mobile solution for your frontline "
"workforce."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
#, python-format
msgid "Request Access to %(hr_name)s"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Sign Up"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
msgid ""
"\n"
" We will email instructions to you for resetting your "
@@ -17534,15 +17896,6 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/users/forms.py
-msgid "Reset Password"
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/urls.py
msgid "Password Change Complete"
@@ -17555,7 +17908,8 @@ msgstr ""
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap3/base_navigation.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap5/base_navigation.html
msgid "Sign In"
@@ -17566,37 +17920,6 @@ msgstr ""
msgid "Password Reset Complete"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset Confirmation"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid "Reset Password Unsuccessful"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" The password reset link was invalid, possibly because\n"
-" it has already been used.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Please request a new password reset.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Request Password Reset\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
msgid "Password Reset Requested"
msgstr ""
@@ -17638,21 +17961,20 @@ msgstr ""
msgid "--The CommCare HQ Team"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_forms.html
msgid "Forgot your password?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid ""
"Backup tokens can be used when your primary and backup\n"
" phone numbers aren't available. The backup tokens below can be used\n"
@@ -17661,29 +17983,37 @@ msgid ""
" below will be valid."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Print these tokens and keep them somewhere safe."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "You don't have any backup codes yet."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Begin Using CommCare Now"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Back to Profile"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Generate Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We are calling your phone right now, please enter the\n"
@@ -17691,7 +18021,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We sent you a text message, please enter the tokens we\n"
@@ -17699,7 +18030,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the tokens generated by your token\n"
@@ -17707,50 +18039,61 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the token given to you by your domain administrator.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Looks like your CommCare session has expired."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please log in again to continue working."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below to continue."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "You will be transferred to your original destination after you sign in."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Or, alternatively, use one of your backup phones:"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Please contact your domain administrator if you need a backup token."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Use Backup Token"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid "Please set up Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" For security purposes, your CommCare administrator has required that "
@@ -17761,7 +18104,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" To access your account, please enable two-factor authentication "
@@ -17769,71 +18113,87 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/file_download.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/file_download.html
msgid "Go back"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Enable Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid "Add Backup Phone"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"Your backup phone number will be used if your primary method of registration "
"is not available. Please enter a valid phone number."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"We've sent a token to your phone number. Please enter the token you've "
"received."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Follow the steps in this wizard to enable two-factor authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Please select which authentication method you would like to use."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To start using a token generator, please use your smartphone to scan the QR "
"code below. For example, use Google Authenticator. Then, enter the token "
"generated by the app."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to receive the text messages on. This "
"number will be validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to be called on. This number will be "
"validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We are calling your phone right now, please enter the digits you hear."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We sent you a text message, please enter the tokens we sent."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"We've encountered an issue with the selected authentication method. Please "
"go back and verify that you entered your information correctly, try again, "
@@ -17841,44 +18201,52 @@ msgid ""
"contact the site administrator."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To identify and verify your YubiKey, please insert a token in the field "
"below. Your YubiKey will be linked to your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid ""
"Congratulations, you've successfully enabled two-factor\n"
" authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "To enable account recovery, generate backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Generate Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid "Remove Two-factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid ""
"You are about to remove two-factor authentication. This\n"
" compromises your account security, are you sure?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" Two-Factor Authentication is not managed here.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17888,32 +18256,38 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Phone Numbers"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If your primary method is not available, we are able to\n"
" send backup tokens to the phone numbers listed below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Unregister"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/sms/templates/sms/add_gateway.html
msgid "Add Phone Number"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If you don't have any device with you, you can access\n"
" your account using backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17926,27 +18300,32 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Show Codes"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/settings/views.py
msgid "Remove Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"We strongly discourage this, but if absolutely necessary "
"you can\n"
" remove two-factor authentication from your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Reset Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" This will remove your current two-factor authentication, and "
@@ -17957,7 +18336,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"Two-factor authentication is not enabled for your\n"
" account. Enable two-factor authentication for enhanced account\n"
@@ -18902,10 +19282,6 @@ msgstr ""
msgid "Enterprise Dashboard: {}"
msgstr ""
-#: corehq/apps/enterprise/templates/enterprise/enterprise_dashboard.html
-msgid "Email Report"
-msgstr ""
-
#: corehq/apps/enterprise/templates/enterprise/enterprise_permissions.html
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
msgid "Enterprise Permissions"
@@ -18966,8 +19342,31 @@ msgstr ""
msgid "No project spaces found."
msgstr ""
+#: corehq/apps/enterprise/templates/enterprise/partials/project_tile.html
+msgid "Email Report"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Platform Overview for {}"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
+msgid "Platform Overview"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
+#: corehq/apps/sso/forms.py
+msgid "Enterprise Console"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Security Center for {}"
+msgstr ""
+
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
-msgid "Enterprise Dashboard"
+msgid "Security Center"
msgstr ""
#: corehq/apps/enterprise/views.py corehq/apps/reports/views.py
@@ -18985,13 +19384,6 @@ msgstr ""
msgid "Enterprise Settings"
msgstr ""
-#: corehq/apps/enterprise/views.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
-#: corehq/apps/sso/forms.py
-msgid "Enterprise Console"
-msgstr ""
-
#: corehq/apps/enterprise/views.py
msgid "Enterprise permissions have been disabled."
msgstr ""
@@ -19115,11 +19507,11 @@ msgstr ""
msgid "Event in progress"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19129,15 +19521,15 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Update Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Delete Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19146,7 +19538,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19156,14 +19548,14 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid ""
"\n"
" This action cannot be undone.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" Known potential attendees who can be invited to participate in "
@@ -19172,42 +19564,42 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Create Potential Attendee"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Enable Mobile Worker Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "New Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "Pending..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "NEW"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "ERROR"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Loading potential attendees ..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid ""
"\n"
@@ -19219,21 +19611,21 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" You currently have no potential attendees.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" No matching potential attendees found.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid ""
"\n"
" Attendance tracking events can be used to track attendance of all "
@@ -19241,31 +19633,31 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Add new event"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "View Attendees"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "No Attendees Yet"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Date Attended"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Attendee Name"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Event has not yet started"
msgstr ""
-#: corehq/apps/events/templates/new_event.html
+#: corehq/apps/events/templates/events/new_event.html
msgid ""
"\n"
" There was a problem fetching the list of attendees and attendance "
@@ -22155,7 +22547,7 @@ msgid ""
msgstr ""
#: corehq/apps/geospatial/forms.py
-msgid "Case Grouping Parameters"
+msgid "Case Clustering Map Parameters"
msgstr ""
#: corehq/apps/geospatial/forms.py
@@ -22238,7 +22630,7 @@ msgid "Driving"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Management Map"
+msgid "Microplanning Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22258,7 +22650,7 @@ msgid "name"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Grouping"
+msgid "Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22285,11 +22677,11 @@ msgid "Link"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Lock Case Grouping for Me"
+msgid "Lock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Unlock Case Grouping for Me"
+msgid "Unlock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22297,7 +22689,7 @@ msgid "Export Groups"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Summary of Case Grouping"
+msgid "Summary of Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22567,6 +22959,35 @@ msgstr ""
msgid "You are about to delete this saved area"
msgstr ""
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain were not processed to be available in "
+"Microplanning reports\n"
+" because there were too many to be processed. New or updated cases "
+"will still be available\n"
+" for use for Microplanning. Please reach out to support if you need "
+"support with existing cases.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Oops! Something went wrong while processing existing cases to be "
+"available in Microplanning\n"
+" reports. Please reach out to support.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain are being processed to be available in\n"
+" Microplanning reports. Please be patient.\n"
+" "
+msgstr ""
+
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
msgid "Review Assignment Results"
msgstr ""
@@ -22909,7 +23330,7 @@ msgid ""
" For all active mobile workers in this group, and for "
"each phone number, this will\n"
" initiate an SMS verification workflow. When a user "
-"replies to the SMS< their phone\n"
+"replies to the SMS, their phone\n"
" number will be verified.
If the phone number "
"is already verified or\n"
" if the phone number is already in use by another "
@@ -24649,6 +25070,13 @@ msgstr ""
msgid "Server Error Encountered"
msgstr ""
+#: corehq/apps/hqwebapp/templates/hqwebapp/htmx/htmx_action_error.html
+#, python-format
+msgid ""
+"\n"
+" Encountered error \"%(htmx_error)s\" while performing action %(action)s.\n"
+msgstr ""
+
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/domain_list_dropdown.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/domain_list_dropdown.html
msgid "Change Project"
@@ -27623,11 +28051,6 @@ msgstr ""
msgid "Manage Notification"
msgstr ""
-#: corehq/apps/oauth_integrations/views/google.py
-msgid ""
-"Something went wrong when trying to sign you in to Google. Please try again."
-msgstr ""
-
#: corehq/apps/ota/utils.py corehq/apps/users/tasks.py
msgid ""
"Something went wrong in creating restore for the user. Please try again or "
@@ -34055,10 +34478,6 @@ msgstr ""
msgid "Update settings"
msgstr ""
-#: corehq/apps/sms/forms.py
-msgid "Type a username, group name or 'send to all'"
-msgstr ""
-
#: corehq/apps/sms/forms.py
msgid "0 characters (160 max)"
msgstr ""
@@ -34824,10 +35243,6 @@ msgstr ""
msgid "You can't send an empty message"
msgstr ""
-#: corehq/apps/sms/views.py
-msgid "Please remember to separate recipients with a comma."
-msgstr ""
-
#: corehq/apps/sms/views.py
msgid "The following groups don't exist: "
msgstr ""
@@ -40764,6 +41179,26 @@ msgstr ""
msgid "Please select at least one item."
msgstr ""
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: \"%(request_username)s\" will no longer be able to "
+"access or edit \"%(couch_username)s\"\n"
+" if they don't share a location.\n"
+" "
+msgstr ""
+
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: %(user_type)s \"%(couch_username)s\" must have at "
+"least one location assigned.\n"
+" They won't be able to log in otherwise.\n"
+" "
+msgstr ""
+
#: corehq/apps/users/templates/users/partials/manage_phone_numbers.html
msgid ""
"Phone numbers can only contain digits and we were unable to convert yours "
@@ -45405,7 +45840,7 @@ msgid "User Management"
msgstr ""
#: corehq/reports.py
-msgid "Case Mapping"
+msgid "Microplanning"
msgstr ""
#: corehq/tabs/tabclasses.py corehq/tabs/utils.py
@@ -45429,7 +45864,7 @@ msgid "Data Manipulation"
msgstr ""
#: corehq/tabs/tabclasses.py
-msgid "Configure Geospatial Settings"
+msgid "Configure Microplanning Settings"
msgstr ""
#: corehq/tabs/tabclasses.py
diff --git a/locale/hi/LC_MESSAGES/djangojs.po b/locale/hi/LC_MESSAGES/djangojs.po
index 4c154be6613b..d71c1b9de2ad 100644
--- a/locale/hi/LC_MESSAGES/djangojs.po
+++ b/locale/hi/LC_MESSAGES/djangojs.po
@@ -1167,7 +1167,7 @@ msgid "no formatting"
msgstr ""
#: corehq/apps/app_manager/static/app_manager/js/vellum/src/main-components.js
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Custom"
msgstr ""
@@ -3087,24 +3087,28 @@ msgstr ""
msgid "Sorry, it looks like the upload failed."
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Payment"
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Invoice Request"
msgstr ""
-#: corehq/apps/domain/static/domain/js/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/case_search.js
msgid "You have unchanged settings"
msgstr ""
-#: corehq/apps/domain/static/domain/js/current_subscription.js
-msgid "Buy Credits"
+#: corehq/apps/domain/static/domain/js/bootstrap3/info_basic.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/info_basic.js
+msgid "Select a Timezone..."
msgstr ""
-#: corehq/apps/domain/static/domain/js/info_basic.js
-msgid "Select a Timezone..."
+#: corehq/apps/domain/static/domain/js/current_subscription.js
+msgid "Buy Credits"
msgstr ""
#: corehq/apps/domain/static/domain/js/internal_settings.js
@@ -3150,42 +3154,42 @@ msgid ""
"the project space as a member in order to override your timezone."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
+msgid ""
+"Do not allow new users to sign up on commcarehq.org. This may take up to an "
+"hour to take effect. This will affect users with email addresses from "
+"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
+msgstr ""
+
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Last 30 Days"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
#: corehq/apps/hqwebapp/static/hqwebapp/js/tempus_dominus.js
msgid "Previous Month"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Spans <%- startDate %> to <%- endDate %> (UTC)"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error updating display total, please try again or report an issue if this "
"persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "??"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error sending email, please try again or report an issue if this persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
-msgid ""
-"Do not allow new users to sign up on commcarehq.org. This may take up to an "
-"hour to take effect. This will affect users with email addresses from "
-"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
-msgstr ""
-
#: corehq/apps/events/static/events/js/event_attendees.js
msgid "Disable Mobile Worker Attendees"
msgstr ""
@@ -3338,6 +3342,10 @@ msgstr ""
msgid "Sensitive Date"
msgstr ""
+#: corehq/apps/fixtures/static/fixtures/js/lookup-manage.js
+msgid "Can not create table with ID '<%= tag %>'. Table IDs should be unique."
+msgstr ""
+
#: corehq/apps/geospatial/static/geospatial/js/case_grouping_map.js
msgid "No group"
msgstr ""
@@ -4090,35 +4098,6 @@ msgstr ""
msgid "label-info-light"
msgstr ""
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords to copy"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Search keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/users/static/users/js/roles.js
-msgid "Linked Project Spaces"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Projects to copy to"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Search projects"
-msgstr ""
-
#: corehq/apps/reports/static/reports/js/bootstrap3/base.js
#: corehq/apps/reports/static/reports/js/bootstrap5/base.js
#: corehq/apps/userreports/static/userreports/js/configurable_report.js
@@ -4440,11 +4419,11 @@ msgstr ""
msgid "(filtered from _MAX_ total contacts)"
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "There was an error fetching the SMS rate."
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "Please Select a Country Code"
msgstr ""
@@ -4603,6 +4582,16 @@ msgstr ""
msgid "Linked projects"
msgstr ""
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Projects to copy to"
+msgstr ""
+
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Search projects"
+msgstr ""
+
#: corehq/apps/userreports/static/userreports/js/expression_evaluator.js
msgid "Unknown error"
msgstr ""
@@ -4906,6 +4895,10 @@ msgstr ""
msgid "Multi-Environment Release Management"
msgstr ""
+#: corehq/apps/users/static/users/js/roles.js
+msgid "Linked Project Spaces"
+msgstr ""
+
#: corehq/apps/users/static/users/js/roles.js
msgid "Allow role to configure linked project spaces"
msgstr ""
diff --git a/locale/hin/LC_MESSAGES/django.po b/locale/hin/LC_MESSAGES/django.po
index f0f5b61f3940..9f8b5634d4bc 100644
--- a/locale/hin/LC_MESSAGES/django.po
+++ b/locale/hin/LC_MESSAGES/django.po
@@ -38,7 +38,8 @@ msgstr ""
#: corehq/apps/accounting/filters.py
#: corehq/apps/app_manager/templates/app_manager/partials/bulk_upload_app_translations.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/geospatial/filters.py
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
@@ -302,8 +303,10 @@ msgstr ""
#: corehq/apps/builds/templates/builds/all.html
#: corehq/apps/builds/templates/builds/edit_menu.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/translations_coverage.html
msgid "Version"
msgstr ""
@@ -460,9 +463,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
#: corehq/apps/enterprise/enterprise.py corehq/apps/events/forms.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -504,7 +508,8 @@ msgid "Company / Organization"
msgstr ""
#: corehq/apps/accounting/forms.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
#: corehq/apps/reminders/forms.py corehq/apps/reports/standard/deployments.py
#: corehq/apps/reports/standard/sms.py
@@ -918,8 +923,10 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/accounting_admins.html
#: corehq/apps/data_interfaces/templates/data_interfaces/manage_case_groups.html
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/partials/manage_downstream_domains.html
#: corehq/apps/locations/templates/locations/location_types.html
@@ -974,11 +981,13 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
#: corehq/apps/enterprise/templates/enterprise/partials/date_range_modal.html
-#: corehq/apps/events/templates/edit_attendee.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/edit_attendee.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/dialogs/bulk_delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
@@ -1463,9 +1472,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_run_history.html
#: corehq/apps/data_interfaces/views.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/enterprise/enterprise.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/standard/cases/basic.py
@@ -2557,7 +2567,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/invoice.html
#: corehq/apps/app_execution/templates/app_execution/workflow_list.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/app_release_logs.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/hqadmin/reports.py corehq/apps/linked_domain/views.py
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/reports/standard/deployments.py
@@ -2787,7 +2798,8 @@ msgid "Add New Credit Card"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/new_stripe_card_template.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
msgid "Processing your request"
msgstr ""
@@ -2857,12 +2869,14 @@ msgid "Save"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Monthly"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Annually"
msgstr ""
@@ -2949,7 +2963,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/subscriptions_tab.html
#: corehq/apps/app_execution/templates/app_execution/components/title_bar.html
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_properties.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
#: corehq/apps/locations/templates/locations/manage/location_template.html
@@ -3170,8 +3185,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_lookup.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/partials/reference_table.html
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/registry/templates/registry/registry_edit.html
@@ -3557,7 +3574,8 @@ msgstr ""
#: corehq/apps/data_interfaces/forms.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/geospatial/templates/geospatial/gps_capture.html
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/scheduled_reports_table.html
@@ -3633,8 +3651,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_case_groups.html
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
@@ -3987,8 +4007,10 @@ msgstr ""
#: corehq/apps/app_manager/fields.py
#: corehq/apps/cloudcare/templates/cloudcare/config.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/linked_domain/const.py
#: corehq/apps/reports/filters/forms.py corehq/apps/reports/filters/select.py
#: corehq/apps/reports/standard/deployments.py
@@ -4291,7 +4313,6 @@ msgstr ""
#: corehq/apps/app_manager/helpers/validators.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case property"
msgstr ""
@@ -4885,7 +4906,8 @@ msgid "Enable Menu Display Setting Per-Module"
msgstr ""
#: corehq/apps/app_manager/static_strings.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/enterprise/templates/enterprise/partials/enterprise_permissions_table.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqadmin/forms.py
@@ -5101,7 +5123,8 @@ msgid "No Validation"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -5589,7 +5612,8 @@ msgid "XXX-High Density"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -6293,7 +6317,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/odk_install.html
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_tab_advanced.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/releases_deploy_modal.html
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/export/templates/export/partials/export_download_progress.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqmedia/templates/hqmedia/audio_translator.html
@@ -6335,11 +6360,15 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
#: corehq/apps/data_interfaces/templates/data_interfaces/interfaces/case_management.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/dialogs/process_deleted_questions.html
#: corehq/apps/export/templates/export/dialogs/process_deprecated_properties.html
#: corehq/apps/export/templates/export/partials/table.html
@@ -8087,8 +8116,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_workflow.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_detail.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_list/multi_select_continue_button.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/messaging/scheduling/templates/scheduling/partials/conditional_alert_continue.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/start.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/step1.html
@@ -9424,7 +9455,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/mobile_report_configs.html
#: corehq/apps/data_dictionary/templates/data_dictionary/base.html
#: corehq/apps/data_dictionary/views.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/download_data_files.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -9502,7 +9534,8 @@ msgid ""
msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/module_actions.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/apps/registration/templates/registration/partials/start_trial_modal.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/description.html
#: corehq/apps/reports/templates/reports/partials/bootstrap5/description.html
@@ -11503,7 +11536,6 @@ msgid "Case Type to Update/Create"
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case type"
msgstr ""
@@ -11546,8 +11578,10 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
#: corehq/apps/case_importer/templates/case_importer/excel_fields.html
#: corehq/apps/domain/templates/error.html
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/registration/forms.py corehq/apps/settings/forms.py
msgid "Back"
@@ -11711,19 +11745,21 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" row had an invalid\n"
-" \"\" cell and was not "
+" row had an "
+"invalid\n"
+" \"\" cell and was not "
"saved\n"
-" "
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" rows had invalid\n"
-" \"\" cells and were not "
-"saved\n"
-" "
+" rows had "
+"invalid\n"
+" \"\" cells and were "
+"not saved\n"
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
@@ -11866,7 +11902,7 @@ msgid "{param} must be a string"
msgstr ""
#: corehq/apps/case_search/models.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/locations/templates/locations/manage/location.html
#: corehq/apps/reports/filters/users.py corehq/apps/users/models.py
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -11938,7 +11974,8 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/form_entry/entry_geo.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/reports/filters/simple.py
#: corehq/apps/reports/standard/cases/filters.py
#: corehq/apps/sms/templates/sms/chat_contacts.html
@@ -11948,7 +11985,8 @@ msgstr ""
#: corehq/apps/case_search/templates/case_search/case_search.html
#: corehq/apps/custom_data_fields/edit_entity.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/users/templates/users/enterprise_users.html
msgid "Profile"
msgstr ""
@@ -12154,6 +12192,14 @@ msgid ""
"\"YYYY-mm-dd\""
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "{} is not a valid datetime"
+msgstr ""
+
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Invalid datetime value. Must be a number or a ISO 8601 string."
+msgstr ""
+
#: corehq/apps/case_search/xpath_functions/value_functions.py
#, python-brace-format
msgid ""
@@ -12172,6 +12218,10 @@ msgid ""
"add\" function"
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Cannot convert {} to a double"
+msgstr ""
+
#: corehq/apps/cloudcare/api.py
#, python-format
msgid "Not found application by name: %s"
@@ -14285,7 +14335,8 @@ msgid ""
msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/domain_links.html
#: corehq/apps/translations/forms.py
@@ -14706,7 +14757,8 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/events/forms.py corehq/apps/events/views.py
#: corehq/apps/geospatial/templates/geospatial/case_management.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/locations/forms.py
@@ -15716,7 +15768,8 @@ msgid ""
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/paused_plan_notice.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/paused_plan_notice.html
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -15724,7 +15777,8 @@ msgid "Subscribe to Plan"
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Renew Plan"
msgstr ""
@@ -15927,45 +15981,379 @@ msgstr ""
msgid "There has been a transfer of ownership of {domain}"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Transfer project ownership"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "SMS Keyword"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#, python-format
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "Action Type"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/edit_alert.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/edit_alert.html
+msgid "Edit Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
+msgid "Feature Previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "What are Feature Previews?"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" By clicking \"accept\" below you acknowledge that you accept "
-"full ownership of this project space (\"%(domain)s\").\n"
-" You agree to be bound by the terms of Dimagi's Terms of Service and "
-"Business Agreement.\n"
-" By accepting this agreement, your are acknowledging you have "
-"permission and authority to accept these terms. A Dimagi representative will "
-"notify you when the transfer is complete.\n"
+" Before we invest in making certain product features generally\n"
+" available, we release them as Feature Previews to learn the\n"
+" following two things from usage data and qualitative feedback.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Perceived Value:\n"
+" The biggest risk in product development is to\n"
+" build something that offers little value to our users. As "
+"such,\n"
+" we make Feature Previews generally available only if they "
+"have\n"
+" high perceived value.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-#: corehq/apps/registry/templates/registry/registry_list.html
-msgid "Accept"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" User Experience:\n"
+" Even if a feature has high perceived value,\n"
+" it is important that the user experience of the feature is\n"
+" optimized such that our users actually receive the value.\n"
+" As such, we make high value Feature Previews generally\n"
+" available after we optimize the user experience.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Decline"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Feature Previews are in active product development, therefore\n"
+" should not be used for business critical workflows. We encourage\n"
+" you to use Feature Previews and provide us feedback, however\n"
+" please note that Feature Previews:\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" Sorry this transfer request has expired.\n"
+" May not be optimized for performance\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not supported by the CommCare Support Team\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" May change at any time without notice\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/calendar_fixture.html
-msgid "Calendar Fixture Settings"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not subject to any warranties on current and future\n"
+" availability. Please refer to our\n"
+" terms to\n"
+" learn more.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Looking for something that used to be here?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" The feature flags Control Mapping in Case List"
+"strong>,\n"
+" Custom Calculations in Case List, "
+"Custom\n"
+" Single and Multiple Answer Questions, and Icons "
+"in\n"
+" Case List are now add-ons for individual apps. To turn\n"
+" them on, go to the application's settings and choose the\n"
+" Add-Ons tab.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Update previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Feature Name"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
+msgid "More information"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "SMS Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/userreports/views.py
+msgid "Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" View SMS prices for using Dimagi's connections in each country.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" You can choose a connection for your project under Messaging -> SMS "
+"Connectivity\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Calculating SMS Rate...\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Connection"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Incoming"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Outgoing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Your own Android Gateway"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" Pricing is per message sent or received. Fees are subject to change "
+"based on provider rates and exchange rates and are computed at the time the "
+"SMS is sent or received.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/location_fixture.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/location_fixture.html
+msgid "Location Fixture Settings"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "Add New Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Available Alerts"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "You can only have 3 alerts activated at any one time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
+msgid "Start Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "End Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Added By"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "De-activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "No alerts added yet for the project."
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Measure"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Sequence Number"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "App Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "CC Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+#: corehq/apps/users/templates/users/edit_commcare_user.html
+msgid "Created On"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Notes"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "No measures have been initiated for this application"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Use this form to get a cost estimation per 160 character SMS,\n"
+" given a connection, direction,\n"
+" and country code.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" The fee will be applied to the most specific criteria available.\n"
+" A fee for a specific country code (if available) will be used\n"
+" over the default of 'Any Country'.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Fees are subject to change based on updates to each carrier and are\n"
+" computed at the time the SMS is sent.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain.html
+msgid ""
+"\n"
+" Use this to transfer your project to another user.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+#, python-format
+msgid ""
+"\n"
+" You have a pending transfer with %(username)s\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid ""
+"\n"
+" Resend Transfer Request\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid "Cancel Transfer"
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16034,9 +16422,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update case search data immediately on web apps form "
+" Update case search data immediately on web apps form "
"submission.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16054,9 +16442,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update local case data immediately before entering a web "
+" Update local case data immediately before entering a web "
"apps form.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16085,302 +16473,6 @@ msgstr ""
msgid "Add case property"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "SMS Keyword"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "Action Type"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/edit_alert.html
-msgid "Edit Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
-msgid "Feature Previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "What are Feature Previews?"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Before we invest in making certain product features generally\n"
-" available, we release them as Feature Previews to learn the\n"
-" following two things from usage data and qualitative feedback.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Perceived Value:\n"
-" The biggest risk in product development is to\n"
-" build something that offers little value to our users. As "
-"such,\n"
-" we make Feature Previews generally available only if they "
-"have\n"
-" high perceived value.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" User Experience:\n"
-" Even if a feature has high perceived value,\n"
-" it is important that the user experience of the feature is\n"
-" optimized such that our users actually receive the value.\n"
-" As such, we make high value Feature Previews generally\n"
-" available after we optimize the user experience.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Feature Previews are in active product development, therefore\n"
-" should not be used for business critical workflows. We encourage\n"
-" you to use Feature Previews and provide us feedback, however\n"
-" please note that Feature Previews:\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May not be optimized for performance\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not supported by the CommCare Support Team\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May change at any time without notice\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not subject to any warranties on current and future\n"
-" availability. Please refer to our\n"
-" terms to\n"
-" learn more.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Looking for something that used to be here?\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" The feature flags Control Mapping in Case List"
-"strong>,\n"
-" Custom Calculations in Case List, "
-"Custom\n"
-" Single and Multiple Answer Questions, and Icons "
-"in\n"
-" Case List are now add-ons for individual apps. To turn\n"
-" them on, go to the application's settings and choose the\n"
-" Add-Ons tab.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Update previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Feature Name"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
-msgid "More information"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "SMS Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/userreports/views.py
-msgid "Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" View SMS prices for using Dimagi's connections in each country.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" You can choose a connection for your project under Messaging -> SMS "
-"Connectivity\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Calculating SMS Rate...\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Connection"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Incoming"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Outgoing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Your own Android Gateway"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" Pricing is per message sent or received. Fees are subject to change "
-"based on provider rates and exchange rates and are computed at the time the "
-"SMS is sent or received.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/location_fixture.html
-msgid "Location Fixture Settings"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "Add New Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Available Alerts"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "You can only have 3 alerts activated at any one time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
-msgid "Start Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "End Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Added By"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "De-activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "No alerts added yet for the project."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Measure"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Sequence Number"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "App Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "CC Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-#: corehq/apps/users/templates/users/edit_commcare_user.html
-msgid "Created On"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Notes"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "No measures have been initiated for this application"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Use this form to get a cost estimation per 160 character SMS,\n"
-" given a connection, direction,\n"
-" and country code.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" The fee will be applied to the most specific criteria available.\n"
-" A fee for a specific country code (if available) will be used\n"
-" over the default of 'Any Country'.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Fees are subject to change based on updates to each carrier and are\n"
-" computed at the time the SMS is sent.\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/domain/admin/sms_settings.html
msgid "Stock Actions"
msgstr ""
@@ -16393,75 +16485,103 @@ msgstr ""
msgid "Save Settings"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain.html
-msgid ""
-"\n"
-" Use this to transfer your project to another user.\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Transfer project ownership"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
#, python-format
msgid ""
"\n"
-" You have a pending transfer with %(username)s\n"
-" "
+" By clicking \"accept\" below you acknowledge that you accept "
+"full ownership of this project space (\"%(domain)s\").\n"
+" You agree to be bound by the terms of Dimagi's Terms of Service and "
+"Business Agreement.\n"
+" By accepting this agreement, your are acknowledging you have "
+"permission and authority to accept these terms. A Dimagi representative will "
+"notify you when the transfer is complete.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid ""
-"\n"
-" Resend Transfer Request\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+#: corehq/apps/registry/templates/registry/registry_list.html
+msgid "Accept"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid "Cancel Transfer"
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Decline"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid ""
+"\n"
+" Sorry this transfer request has expired.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Total Due:"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Wire"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Not Billing Admin, Can't Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/domain/views/accounting.py corehq/apps/enterprise/views.py
#: corehq/tabs/tabclasses.py
msgid "Billing Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Unpaid"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show Only Unpaid Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show All Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Payment Amount"
msgstr "नकद मिला"
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay the full balance: $"
@@ -16469,14 +16589,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay a portion of the balance:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Please enter an amount that's between $0.50 and $"
@@ -16502,20 +16626,25 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Wire Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Thank you for your payment!"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Thank you for your upcoming wire payment.\n"
@@ -16525,7 +16654,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_billing_info.html
#, python-format
msgid ""
"\n"
@@ -16535,7 +16665,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Clicking the 'Confirm Plan' button below will bring you to a "
@@ -16543,33 +16674,40 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Select different option"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Select different plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Confirm Pause"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Confirm Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Before you pause..."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Downgrading?"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" We'd love to make CommCare work better for you.\n"
@@ -16577,56 +16715,64 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you pausing your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you downgrading your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Do you think your project may start again?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Could you indicate which new tool you’re using?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you switching to a new tool?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please specify\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please let us know any other feedback you have\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16634,11 +16780,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
msgid "— which matches your current feature usage."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16646,7 +16794,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16656,31 +16805,36 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
msgid "Current Subscription"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/styleguide/examples/bootstrap5/select2_manual_form.py
msgid "Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Your Subscription is Paused\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid " Day Trial"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16690,7 +16844,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16701,7 +16856,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Note: This subscription will not be "
@@ -16709,22 +16865,28 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Got questions about your plan?"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Talk to Sales"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Change Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16732,7 +16894,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16740,104 +16903,129 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Started"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Ending"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Begins"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Subscription Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Plan Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "General Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Generate Prepayment Invoice"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Not Billing Admin, Can't Add Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Usage Summary"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Feature"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Use"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Included in Software Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Usage"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepayment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"One credit is equivalent to one USD. Credits are applied to monthly invoices"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Please enter an amount that's either $0 or greater than "
@@ -16845,11 +17033,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Total Credits"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Thank you! You will receive an invoice via email with instructions for "
@@ -16858,17 +17048,360 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid "Domain Temporarily Unavailable"
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid ""
"The page you requested is currently unavailable due to a\n"
" data migration. Please check back later."
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+#, python-format
+msgid ""
+"\n"
+" %(feature_name)s is only available to projects\n"
+" subscribed to %(plan_name)s plan or higher.\n"
+" To access this feature, you must subscribe to the\n"
+" %(plan_name)s plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid ""
+"\n"
+" You must be a Project Administrator to make Subscription changes.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Read more about our plans"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Change My Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load EVERYTHING"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load Property"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_subscription_management.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_subscription_management.html
+#, python-format
+msgid ""
+"\n"
+"
\n"
+" This page is visible to Dimagi employees only (you have an @dimagi.com "
+"email address). You can use this page\n"
+" to set up a subscription for this project space.\n"
+"\n"
+" Use this tool only for projects that are:\n"
+"
\n"
+"
an internal test project
\n"
+"
part of a contracted project
\n"
+"
a short term extended trial for biz dev
\n"
+"
\n"
+" \n"
+"\n"
+"
\n"
+" Your project is currently subscribed to %(plan_name)s.\n"
+"
\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Could not update!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Last Activity"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Activated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Deactivated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#, python-format
+msgid ""
+"\n"
+" You are renewing your %(p)s subscription.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
+#: corehq/apps/registration/forms.py
+#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
+#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
+#: corehq/apps/settings/forms.py
+#: corehq/apps/userreports/reports/builder/forms.py
+msgid "Next"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/settings/views.py
+msgid "My Projects"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "Accept All Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "My Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "90 day refund policy"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "monthly"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "discounted"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be downgrading to\n"
+" on\n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be pausing on \n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Current Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/views/accounting.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
+msgid "Select Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Pause Subscription\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" What happens after you pause?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will lose access to your project space, but you will be\n"
+" able to re-subscribe anytime in the future.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will no longer be billed.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription is currently paused.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Your subscription is currently paused because you have\n"
+" past-due invoices.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will not be allowed to un-pause your project until\n"
+" these invoices are paid.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be pausing on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be downgrading to\n"
+" on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You are currently on the FREE CommCare Community plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Dismiss"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Saved Credit Cards"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Add Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Credit Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Your request was successful!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Delete Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid ""
+"\n"
+" Actually remove "
+"strong> card\n"
+" ************"
+"strong>?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Remove Autopay"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Set as autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually. \n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16877,7 +17410,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16885,14 +17419,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
msgid ""
"\n"
" Accept Invitation\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16902,7 +17438,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
msgid ""
"\n"
" CommCare HQ is a data management tool used by over 500 organizations\n"
@@ -16912,7 +17448,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16922,6 +17459,16 @@ msgid ""
" "
msgstr ""
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
+msgid ""
+"\n"
+" CommCare HQ is a data management tool used by over 500 organizations\n"
+" to help frontline workers around the world.\n"
+" Learn "
+"more about CommCare. \n"
+" "
+msgstr ""
+
#: corehq/apps/domain/templates/domain/email/domain_invite.txt
#: corehq/apps/registration/templates/registration/email/mobile_worker_confirm_account.txt
msgid "Hey there,"
@@ -17177,93 +17724,23 @@ msgid ""
"org/.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-#, python-format
-msgid ""
-"\n"
-" %(feature_name)s is only available to projects\n"
-" subscribed to %(plan_name)s plan or higher.\n"
-" To access this feature, you must subscribe to the\n"
-" %(plan_name)s plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid ""
-"\n"
-" You must be a Project Administrator to make Subscription changes.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Read more about our plans"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Change My Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load EVERYTHING"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load Property"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_subscription_management.html
-#, python-format
-msgid ""
-"\n"
-"
\n"
-" This page is visible to Dimagi employees only (you have an @dimagi.com "
-"email address). You can use this page\n"
-" to set up a subscription for this project space.\n"
-"\n"
-" Use this tool only for projects that are:\n"
-"
\n"
-"
an internal test project
\n"
-"
part of a contracted project
\n"
-"
a short term extended trial for biz dev
\n"
-"
\n"
-" \n"
-"\n"
-"
\n"
-" Your project is currently subscribed to %(plan_name)s.\n"
-"
\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Could not update!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Last Activity"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Activated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Deactivated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "Use the Creative Commons website"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "to choose a Creative Commons license."
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Wire Payment Information"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid ""
"\n"
" Dimagi accepts wire payments via ACH and wire transfer. You "
@@ -17276,271 +17753,156 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Invoice Recipients"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Please agree to the Privacy Policy."
msgstr ""
-#: corehq/apps/domain/templates/domain/pro_bono/page_content.html
-msgid ""
-"Thank you for your submission. A representative will be in contact with you "
-"shortly."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#, python-format
-msgid ""
-"\n"
-" You are renewing your %(p)s subscription.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
-#: corehq/apps/registration/forms.py
-#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
-#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
-#: corehq/apps/settings/forms.py
-#: corehq/apps/userreports/reports/builder/forms.py
-msgid "Next"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/settings/views.py
-msgid "My Projects"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "Accept All Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "My Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Save close to 20%% when you pay annually.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "90 day refund policy"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "monthly"
+" This license doesn't cover all your multimedia.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "discounted"
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "More info..."
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be downgrading to\n"
-" on\n"
-" .\n"
-" "
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "Select a more restrictive license"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" This plan will be pausing on \n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Current Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/views/accounting.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
-msgid "Select Plan"
+" Since you've opted to publish your multimedia along with your "
+"app,\n"
+" you must select a license that is more restrictive than the "
+"multimedia in the app.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Pause Subscription\n"
+" To satisfy this condition, you can either decide not to publish "
+"the multimedia\n"
+" or select one of the following licenses:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap3/page_content.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap5/page_content.html
msgid ""
-"\n"
-" What happens after you pause?\n"
-" "
+"Thank you for your submission. A representative will be in contact with you "
+"shortly."
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will lose access to your project space, but you will be\n"
-" able to re-subscribe anytime in the future.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Error details"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will no longer be billed.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Log In"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription is currently paused.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/login.html
+msgid "Log In :: CommCare HQ"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
-msgid ""
-"\n"
-" Your subscription is currently paused because you have\n"
-" past-due invoices.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset Confirmation"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will not be allowed to un-pause your project until\n"
-" these invoices are paid.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
+#: corehq/apps/users/forms.py
+msgid "Reset Password"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription will be pausing on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+msgid "Reset Password Unsuccessful"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Your subscription will be downgrading to\n"
-" on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
+" The password reset link was invalid, possibly because\n"
+" it has already been used.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" You are currently on the FREE CommCare Community plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Dismiss"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Saved Credit Cards"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Add Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Credit Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Your request was successful!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Delete Card"
+" Please request a new password reset.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Actually remove "
-"strong> card\n"
-" ************"
-"strong>?\n"
+" Request Password Reset\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Remove Autopay"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Set as autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Error details"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Log In"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/login.html
-msgid "Log In :: CommCare HQ"
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"\n"
" No account? Sign up today, it's free!\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Learn more"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"about how CommCare HQ can be your mobile solution for your frontline "
"workforce."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
#, python-format
msgid "Request Access to %(hr_name)s"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Sign Up"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
msgid ""
"\n"
" We will email instructions to you for resetting your "
@@ -17548,15 +17910,6 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/users/forms.py
-msgid "Reset Password"
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/urls.py
msgid "Password Change Complete"
@@ -17569,7 +17922,8 @@ msgstr ""
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap3/base_navigation.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap5/base_navigation.html
msgid "Sign In"
@@ -17580,37 +17934,6 @@ msgstr ""
msgid "Password Reset Complete"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset Confirmation"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid "Reset Password Unsuccessful"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" The password reset link was invalid, possibly because\n"
-" it has already been used.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Please request a new password reset.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Request Password Reset\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
msgid "Password Reset Requested"
msgstr ""
@@ -17652,21 +17975,20 @@ msgstr ""
msgid "--The CommCare HQ Team"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_forms.html
msgid "Forgot your password?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid ""
"Backup tokens can be used when your primary and backup\n"
" phone numbers aren't available. The backup tokens below can be used\n"
@@ -17675,29 +17997,37 @@ msgid ""
" below will be valid."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Print these tokens and keep them somewhere safe."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "You don't have any backup codes yet."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Begin Using CommCare Now"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Back to Profile"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Generate Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We are calling your phone right now, please enter the\n"
@@ -17705,7 +18035,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We sent you a text message, please enter the tokens we\n"
@@ -17713,7 +18044,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the tokens generated by your token\n"
@@ -17721,50 +18053,61 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the token given to you by your domain administrator.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Looks like your CommCare session has expired."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please log in again to continue working."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below to continue."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "You will be transferred to your original destination after you sign in."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Or, alternatively, use one of your backup phones:"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Please contact your domain administrator if you need a backup token."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Use Backup Token"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid "Please set up Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" For security purposes, your CommCare administrator has required that "
@@ -17775,7 +18118,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" To access your account, please enable two-factor authentication "
@@ -17783,71 +18127,87 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/file_download.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/file_download.html
msgid "Go back"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Enable Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid "Add Backup Phone"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"Your backup phone number will be used if your primary method of registration "
"is not available. Please enter a valid phone number."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"We've sent a token to your phone number. Please enter the token you've "
"received."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Follow the steps in this wizard to enable two-factor authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Please select which authentication method you would like to use."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To start using a token generator, please use your smartphone to scan the QR "
"code below. For example, use Google Authenticator. Then, enter the token "
"generated by the app."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to receive the text messages on. This "
"number will be validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to be called on. This number will be "
"validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We are calling your phone right now, please enter the digits you hear."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We sent you a text message, please enter the tokens we sent."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"We've encountered an issue with the selected authentication method. Please "
"go back and verify that you entered your information correctly, try again, "
@@ -17855,44 +18215,52 @@ msgid ""
"contact the site administrator."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To identify and verify your YubiKey, please insert a token in the field "
"below. Your YubiKey will be linked to your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid ""
"Congratulations, you've successfully enabled two-factor\n"
" authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "To enable account recovery, generate backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Generate Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid "Remove Two-factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid ""
"You are about to remove two-factor authentication. This\n"
" compromises your account security, are you sure?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" Two-Factor Authentication is not managed here.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17902,32 +18270,38 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Phone Numbers"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If your primary method is not available, we are able to\n"
" send backup tokens to the phone numbers listed below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Unregister"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/sms/templates/sms/add_gateway.html
msgid "Add Phone Number"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If you don't have any device with you, you can access\n"
" your account using backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17940,27 +18314,32 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Show Codes"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/settings/views.py
msgid "Remove Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"We strongly discourage this, but if absolutely necessary "
"you can\n"
" remove two-factor authentication from your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Reset Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" This will remove your current two-factor authentication, and "
@@ -17971,7 +18350,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"Two-factor authentication is not enabled for your\n"
" account. Enable two-factor authentication for enhanced account\n"
@@ -18916,10 +19296,6 @@ msgstr ""
msgid "Enterprise Dashboard: {}"
msgstr ""
-#: corehq/apps/enterprise/templates/enterprise/enterprise_dashboard.html
-msgid "Email Report"
-msgstr ""
-
#: corehq/apps/enterprise/templates/enterprise/enterprise_permissions.html
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
msgid "Enterprise Permissions"
@@ -18980,10 +19356,35 @@ msgstr ""
msgid "No project spaces found."
msgstr ""
+#: corehq/apps/enterprise/templates/enterprise/partials/project_tile.html
+msgid "Email Report"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Platform Overview for {}"
+msgstr ""
+
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
-msgid "Enterprise Dashboard"
+msgid "Platform Overview"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
+#: corehq/apps/sso/forms.py
+msgid "Enterprise Console"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Security Center for {}"
msgstr ""
+#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
+#, fuzzy
+#| msgid "Security"
+msgid "Security Center"
+msgstr "Manejo de Casos"
+
#: corehq/apps/enterprise/views.py corehq/apps/reports/views.py
msgid ""
"That report was not found. Please remember that download links expire after "
@@ -18999,13 +19400,6 @@ msgstr ""
msgid "Enterprise Settings"
msgstr ""
-#: corehq/apps/enterprise/views.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
-#: corehq/apps/sso/forms.py
-msgid "Enterprise Console"
-msgstr ""
-
#: corehq/apps/enterprise/views.py
msgid "Enterprise permissions have been disabled."
msgstr "Relatorio Semanal aos Coordinadores do Distrito e os NEDs"
@@ -19129,11 +19523,11 @@ msgstr ""
msgid "Event in progress"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19143,15 +19537,15 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Update Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Delete Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19160,7 +19554,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19170,14 +19564,14 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid ""
"\n"
" This action cannot be undone.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" Known potential attendees who can be invited to participate in "
@@ -19186,42 +19580,42 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Create Potential Attendee"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Enable Mobile Worker Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "New Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "Pending..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "NEW"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "ERROR"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Loading potential attendees ..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid ""
"\n"
@@ -19233,21 +19627,21 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" You currently have no potential attendees.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" No matching potential attendees found.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid ""
"\n"
" Attendance tracking events can be used to track attendance of all "
@@ -19255,31 +19649,31 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Add new event"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "View Attendees"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "No Attendees Yet"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Date Attended"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Attendee Name"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Event has not yet started"
msgstr ""
-#: corehq/apps/events/templates/new_event.html
+#: corehq/apps/events/templates/events/new_event.html
msgid ""
"\n"
" There was a problem fetching the list of attendees and attendance "
@@ -22169,7 +22563,7 @@ msgid ""
msgstr ""
#: corehq/apps/geospatial/forms.py
-msgid "Case Grouping Parameters"
+msgid "Case Clustering Map Parameters"
msgstr ""
#: corehq/apps/geospatial/forms.py
@@ -22252,7 +22646,7 @@ msgid "Driving"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Management Map"
+msgid "Microplanning Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22272,7 +22666,7 @@ msgid "name"
msgstr "Relatorio Semanal aos Coordinadores do Distrito e os NEDs"
#: corehq/apps/geospatial/reports.py
-msgid "Case Grouping"
+msgid "Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22299,11 +22693,11 @@ msgid "Link"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Lock Case Grouping for Me"
+msgid "Lock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Unlock Case Grouping for Me"
+msgid "Unlock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22311,7 +22705,7 @@ msgid "Export Groups"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Summary of Case Grouping"
+msgid "Summary of Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22581,6 +22975,35 @@ msgstr ""
msgid "You are about to delete this saved area"
msgstr ""
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain were not processed to be available in "
+"Microplanning reports\n"
+" because there were too many to be processed. New or updated cases "
+"will still be available\n"
+" for use for Microplanning. Please reach out to support if you need "
+"support with existing cases.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Oops! Something went wrong while processing existing cases to be "
+"available in Microplanning\n"
+" reports. Please reach out to support.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain are being processed to be available in\n"
+" Microplanning reports. Please be patient.\n"
+" "
+msgstr ""
+
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
msgid "Review Assignment Results"
msgstr ""
@@ -22923,7 +23346,7 @@ msgid ""
" For all active mobile workers in this group, and for "
"each phone number, this will\n"
" initiate an SMS verification workflow. When a user "
-"replies to the SMS< their phone\n"
+"replies to the SMS, their phone\n"
" number will be verified.
If the phone number "
"is already verified or\n"
" if the phone number is already in use by another "
@@ -24663,6 +25086,13 @@ msgstr ""
msgid "Server Error Encountered"
msgstr ""
+#: corehq/apps/hqwebapp/templates/hqwebapp/htmx/htmx_action_error.html
+#, python-format
+msgid ""
+"\n"
+" Encountered error \"%(htmx_error)s\" while performing action %(action)s.\n"
+msgstr ""
+
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/domain_list_dropdown.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/domain_list_dropdown.html
msgid "Change Project"
@@ -27637,11 +28067,6 @@ msgstr ""
msgid "Manage Notification"
msgstr ""
-#: corehq/apps/oauth_integrations/views/google.py
-msgid ""
-"Something went wrong when trying to sign you in to Google. Please try again."
-msgstr ""
-
#: corehq/apps/ota/utils.py corehq/apps/users/tasks.py
msgid ""
"Something went wrong in creating restore for the user. Please try again or "
@@ -34069,10 +34494,6 @@ msgstr ""
msgid "Update settings"
msgstr ""
-#: corehq/apps/sms/forms.py
-msgid "Type a username, group name or 'send to all'"
-msgstr ""
-
#: corehq/apps/sms/forms.py
msgid "0 characters (160 max)"
msgstr ""
@@ -34838,10 +35259,6 @@ msgstr ""
msgid "You can't send an empty message"
msgstr ""
-#: corehq/apps/sms/views.py
-msgid "Please remember to separate recipients with a comma."
-msgstr ""
-
#: corehq/apps/sms/views.py
msgid "The following groups don't exist: "
msgstr ""
@@ -40778,6 +41195,26 @@ msgstr ""
msgid "Please select at least one item."
msgstr ""
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: \"%(request_username)s\" will no longer be able to "
+"access or edit \"%(couch_username)s\"\n"
+" if they don't share a location.\n"
+" "
+msgstr ""
+
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: %(user_type)s \"%(couch_username)s\" must have at "
+"least one location assigned.\n"
+" They won't be able to log in otherwise.\n"
+" "
+msgstr ""
+
#: corehq/apps/users/templates/users/partials/manage_phone_numbers.html
msgid ""
"Phone numbers can only contain digits and we were unable to convert yours "
@@ -42151,10 +42588,8 @@ msgid ""
msgstr ""
#: corehq/messaging/scheduling/forms.py
-#, fuzzy
-#| msgid "Add Filter"
msgid "Filter on"
-msgstr "Relatorio Semanal aos Coordinadores do Distrito e os NEDs"
+msgstr ""
#: corehq/messaging/scheduling/forms.py
msgid "User data filter: whole json"
@@ -45421,7 +45856,7 @@ msgid "User Management"
msgstr "Manejo de Casos"
#: corehq/reports.py
-msgid "Case Mapping"
+msgid "Microplanning"
msgstr ""
#: corehq/tabs/tabclasses.py corehq/tabs/utils.py
@@ -45445,7 +45880,7 @@ msgid "Data Manipulation"
msgstr ""
#: corehq/tabs/tabclasses.py
-msgid "Configure Geospatial Settings"
+msgid "Configure Microplanning Settings"
msgstr ""
#: corehq/tabs/tabclasses.py
diff --git a/locale/hin/LC_MESSAGES/djangojs.po b/locale/hin/LC_MESSAGES/djangojs.po
index 37c75278591c..f658fdeced18 100644
--- a/locale/hin/LC_MESSAGES/djangojs.po
+++ b/locale/hin/LC_MESSAGES/djangojs.po
@@ -1170,7 +1170,7 @@ msgid "no formatting"
msgstr ""
#: corehq/apps/app_manager/static/app_manager/js/vellum/src/main-components.js
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Custom"
msgstr ""
@@ -3090,24 +3090,28 @@ msgstr ""
msgid "Sorry, it looks like the upload failed."
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Payment"
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Invoice Request"
msgstr ""
-#: corehq/apps/domain/static/domain/js/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/case_search.js
msgid "You have unchanged settings"
msgstr ""
-#: corehq/apps/domain/static/domain/js/current_subscription.js
-msgid "Buy Credits"
+#: corehq/apps/domain/static/domain/js/bootstrap3/info_basic.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/info_basic.js
+msgid "Select a Timezone..."
msgstr ""
-#: corehq/apps/domain/static/domain/js/info_basic.js
-msgid "Select a Timezone..."
+#: corehq/apps/domain/static/domain/js/current_subscription.js
+msgid "Buy Credits"
msgstr ""
#: corehq/apps/domain/static/domain/js/internal_settings.js
@@ -3153,42 +3157,42 @@ msgid ""
"the project space as a member in order to override your timezone."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
+msgid ""
+"Do not allow new users to sign up on commcarehq.org. This may take up to an "
+"hour to take effect. This will affect users with email addresses from "
+"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
+msgstr ""
+
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Last 30 Days"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
#: corehq/apps/hqwebapp/static/hqwebapp/js/tempus_dominus.js
msgid "Previous Month"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Spans <%- startDate %> to <%- endDate %> (UTC)"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error updating display total, please try again or report an issue if this "
"persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "??"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error sending email, please try again or report an issue if this persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
-msgid ""
-"Do not allow new users to sign up on commcarehq.org. This may take up to an "
-"hour to take effect. This will affect users with email addresses from "
-"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
-msgstr ""
-
#: corehq/apps/events/static/events/js/event_attendees.js
msgid "Disable Mobile Worker Attendees"
msgstr ""
@@ -3341,6 +3345,10 @@ msgstr ""
msgid "Sensitive Date"
msgstr ""
+#: corehq/apps/fixtures/static/fixtures/js/lookup-manage.js
+msgid "Can not create table with ID '<%= tag %>'. Table IDs should be unique."
+msgstr ""
+
#: corehq/apps/geospatial/static/geospatial/js/case_grouping_map.js
msgid "No group"
msgstr ""
@@ -4093,35 +4101,6 @@ msgstr ""
msgid "label-info-light"
msgstr ""
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords to copy"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Search keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/users/static/users/js/roles.js
-msgid "Linked Project Spaces"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Projects to copy to"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Search projects"
-msgstr ""
-
#: corehq/apps/reports/static/reports/js/bootstrap3/base.js
#: corehq/apps/reports/static/reports/js/bootstrap5/base.js
#: corehq/apps/userreports/static/userreports/js/configurable_report.js
@@ -4443,11 +4422,11 @@ msgstr ""
msgid "(filtered from _MAX_ total contacts)"
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "There was an error fetching the SMS rate."
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "Please Select a Country Code"
msgstr ""
@@ -4606,6 +4585,16 @@ msgstr ""
msgid "Linked projects"
msgstr ""
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Projects to copy to"
+msgstr ""
+
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Search projects"
+msgstr ""
+
#: corehq/apps/userreports/static/userreports/js/expression_evaluator.js
msgid "Unknown error"
msgstr ""
@@ -4909,6 +4898,10 @@ msgstr ""
msgid "Multi-Environment Release Management"
msgstr ""
+#: corehq/apps/users/static/users/js/roles.js
+msgid "Linked Project Spaces"
+msgstr ""
+
#: corehq/apps/users/static/users/js/roles.js
msgid "Allow role to configure linked project spaces"
msgstr ""
diff --git a/locale/por/LC_MESSAGES/django.po b/locale/por/LC_MESSAGES/django.po
index 395afe8519a7..d3d1d41563ff 100644
--- a/locale/por/LC_MESSAGES/django.po
+++ b/locale/por/LC_MESSAGES/django.po
@@ -55,7 +55,8 @@ msgstr "Tipo de Conta"
#: corehq/apps/accounting/filters.py
#: corehq/apps/app_manager/templates/app_manager/partials/bulk_upload_app_translations.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/geospatial/filters.py
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
@@ -323,8 +324,10 @@ msgstr "Conta de Faturamento"
#: corehq/apps/builds/templates/builds/all.html
#: corehq/apps/builds/templates/builds/edit_menu.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/translations_coverage.html
msgid "Version"
msgstr ""
@@ -481,9 +484,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
#: corehq/apps/enterprise/enterprise.py corehq/apps/events/forms.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -525,7 +529,8 @@ msgid "Company / Organization"
msgstr "Companhia/ Organização"
#: corehq/apps/accounting/forms.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
#: corehq/apps/reminders/forms.py corehq/apps/reports/standard/deployments.py
#: corehq/apps/reports/standard/sms.py
@@ -963,8 +968,10 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/accounting_admins.html
#: corehq/apps/data_interfaces/templates/data_interfaces/manage_case_groups.html
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/partials/manage_downstream_domains.html
#: corehq/apps/locations/templates/locations/location_types.html
@@ -1019,11 +1026,13 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
#: corehq/apps/enterprise/templates/enterprise/partials/date_range_modal.html
-#: corehq/apps/events/templates/edit_attendee.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/edit_attendee.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/dialogs/bulk_delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
@@ -1508,9 +1517,10 @@ msgstr "# de Extracto"
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_run_history.html
#: corehq/apps/data_interfaces/views.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/enterprise/enterprise.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/standard/cases/basic.py
@@ -2602,7 +2612,8 @@ msgstr "Razão"
#: corehq/apps/accounting/templates/accounting/invoice.html
#: corehq/apps/app_execution/templates/app_execution/workflow_list.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/app_release_logs.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/hqadmin/reports.py corehq/apps/linked_domain/views.py
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/reports/standard/deployments.py
@@ -2832,7 +2843,8 @@ msgid "Add New Credit Card"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/new_stripe_card_template.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
msgid "Processing your request"
msgstr ""
@@ -2902,12 +2914,14 @@ msgid "Save"
msgstr "Salvar"
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Monthly"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Annually"
msgstr ""
@@ -2994,7 +3008,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/subscriptions_tab.html
#: corehq/apps/app_execution/templates/app_execution/components/title_bar.html
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_properties.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
#: corehq/apps/locations/templates/locations/manage/location_template.html
@@ -3215,8 +3230,10 @@ msgstr "Usuários adicionados:"
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_lookup.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/partials/reference_table.html
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/registry/templates/registry/registry_edit.html
@@ -3602,7 +3619,8 @@ msgstr ""
#: corehq/apps/data_interfaces/forms.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/geospatial/templates/geospatial/gps_capture.html
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/scheduled_reports_table.html
@@ -3678,8 +3696,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_case_groups.html
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
@@ -4032,8 +4052,10 @@ msgstr ""
#: corehq/apps/app_manager/fields.py
#: corehq/apps/cloudcare/templates/cloudcare/config.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/linked_domain/const.py
#: corehq/apps/reports/filters/forms.py corehq/apps/reports/filters/select.py
#: corehq/apps/reports/standard/deployments.py
@@ -4340,7 +4362,6 @@ msgstr ""
#: corehq/apps/app_manager/helpers/validators.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case property"
msgstr "Propriedade do Caso"
@@ -4936,7 +4957,8 @@ msgid "Enable Menu Display Setting Per-Module"
msgstr ""
#: corehq/apps/app_manager/static_strings.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/enterprise/templates/enterprise/partials/enterprise_permissions_table.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqadmin/forms.py
@@ -5152,7 +5174,8 @@ msgid "No Validation"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -5640,7 +5663,8 @@ msgid "XXX-High Density"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -6347,7 +6371,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/odk_install.html
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_tab_advanced.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/releases_deploy_modal.html
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/export/templates/export/partials/export_download_progress.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqmedia/templates/hqmedia/audio_translator.html
@@ -6389,11 +6414,15 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
#: corehq/apps/data_interfaces/templates/data_interfaces/interfaces/case_management.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/dialogs/process_deleted_questions.html
#: corehq/apps/export/templates/export/dialogs/process_deprecated_properties.html
#: corehq/apps/export/templates/export/partials/table.html
@@ -8141,8 +8170,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_workflow.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_detail.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_list/multi_select_continue_button.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/messaging/scheduling/templates/scheduling/partials/conditional_alert_continue.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/start.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/step1.html
@@ -9478,7 +9509,8 @@ msgstr "Relatório"
#: corehq/apps/app_manager/templates/app_manager/partials/modules/mobile_report_configs.html
#: corehq/apps/data_dictionary/templates/data_dictionary/base.html
#: corehq/apps/data_dictionary/views.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/download_data_files.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -9556,7 +9588,8 @@ msgid ""
msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/module_actions.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/apps/registration/templates/registration/partials/start_trial_modal.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/description.html
#: corehq/apps/reports/templates/reports/partials/bootstrap5/description.html
@@ -11568,7 +11601,6 @@ msgid "Case Type to Update/Create"
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case type"
msgstr ""
@@ -11611,8 +11643,10 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
#: corehq/apps/case_importer/templates/case_importer/excel_fields.html
#: corehq/apps/domain/templates/error.html
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/registration/forms.py corehq/apps/settings/forms.py
msgid "Back"
@@ -11776,19 +11810,21 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" row had an invalid\n"
-" \"\" cell and was not "
+" row had an "
+"invalid\n"
+" \"\" cell and was not "
"saved\n"
-" "
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" rows had invalid\n"
-" \"\" cells and were not "
-"saved\n"
-" "
+" rows had "
+"invalid\n"
+" \"\" cells and were "
+"not saved\n"
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
@@ -11931,7 +11967,7 @@ msgid "{param} must be a string"
msgstr ""
#: corehq/apps/case_search/models.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/locations/templates/locations/manage/location.html
#: corehq/apps/reports/filters/users.py corehq/apps/users/models.py
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -12003,7 +12039,8 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/form_entry/entry_geo.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/reports/filters/simple.py
#: corehq/apps/reports/standard/cases/filters.py
#: corehq/apps/sms/templates/sms/chat_contacts.html
@@ -12013,7 +12050,8 @@ msgstr "Procurar"
#: corehq/apps/case_search/templates/case_search/case_search.html
#: corehq/apps/custom_data_fields/edit_entity.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/users/templates/users/enterprise_users.html
msgid "Profile"
msgstr ""
@@ -12219,6 +12257,14 @@ msgid ""
"\"YYYY-mm-dd\""
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "{} is not a valid datetime"
+msgstr ""
+
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Invalid datetime value. Must be a number or a ISO 8601 string."
+msgstr ""
+
#: corehq/apps/case_search/xpath_functions/value_functions.py
#, python-brace-format
msgid ""
@@ -12237,6 +12283,10 @@ msgid ""
"add\" function"
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Cannot convert {} to a double"
+msgstr ""
+
#: corehq/apps/cloudcare/api.py
#, python-format
msgid "Not found application by name: %s"
@@ -14350,7 +14400,8 @@ msgid ""
msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/domain_links.html
#: corehq/apps/translations/forms.py
@@ -14771,7 +14822,8 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/events/forms.py corehq/apps/events/views.py
#: corehq/apps/geospatial/templates/geospatial/case_management.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/locations/forms.py
@@ -15781,7 +15833,8 @@ msgid ""
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/paused_plan_notice.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/paused_plan_notice.html
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -15789,7 +15842,8 @@ msgid "Subscribe to Plan"
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Renew Plan"
msgstr ""
@@ -15992,45 +16046,379 @@ msgstr ""
msgid "There has been a transfer of ownership of {domain}"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Transfer project ownership"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "SMS Keyword"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#, python-format
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "Action Type"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/edit_alert.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/edit_alert.html
+msgid "Edit Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
+msgid "Feature Previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "What are Feature Previews?"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" By clicking \"accept\" below you acknowledge that you accept "
-"full ownership of this project space (\"%(domain)s\").\n"
-" You agree to be bound by the terms of Dimagi's Terms of Service and "
-"Business Agreement.\n"
-" By accepting this agreement, your are acknowledging you have "
-"permission and authority to accept these terms. A Dimagi representative will "
-"notify you when the transfer is complete.\n"
+" Before we invest in making certain product features generally\n"
+" available, we release them as Feature Previews to learn the\n"
+" following two things from usage data and qualitative feedback.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Perceived Value:\n"
+" The biggest risk in product development is to\n"
+" build something that offers little value to our users. As "
+"such,\n"
+" we make Feature Previews generally available only if they "
+"have\n"
+" high perceived value.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-#: corehq/apps/registry/templates/registry/registry_list.html
-msgid "Accept"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" User Experience:\n"
+" Even if a feature has high perceived value,\n"
+" it is important that the user experience of the feature is\n"
+" optimized such that our users actually receive the value.\n"
+" As such, we make high value Feature Previews generally\n"
+" available after we optimize the user experience.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Decline"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Feature Previews are in active product development, therefore\n"
+" should not be used for business critical workflows. We encourage\n"
+" you to use Feature Previews and provide us feedback, however\n"
+" please note that Feature Previews:\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" Sorry this transfer request has expired.\n"
+" May not be optimized for performance\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not supported by the CommCare Support Team\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" May change at any time without notice\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/calendar_fixture.html
-msgid "Calendar Fixture Settings"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not subject to any warranties on current and future\n"
+" availability. Please refer to our\n"
+" terms to\n"
+" learn more.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Looking for something that used to be here?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" The feature flags Control Mapping in Case List"
+"strong>,\n"
+" Custom Calculations in Case List, "
+"Custom\n"
+" Single and Multiple Answer Questions, and Icons "
+"in\n"
+" Case List are now add-ons for individual apps. To turn\n"
+" them on, go to the application's settings and choose the\n"
+" Add-Ons tab.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Update previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Feature Name"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
+msgid "More information"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "SMS Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/userreports/views.py
+msgid "Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" View SMS prices for using Dimagi's connections in each country.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" You can choose a connection for your project under Messaging -> SMS "
+"Connectivity\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Calculating SMS Rate...\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Connection"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Incoming"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Outgoing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Your own Android Gateway"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" Pricing is per message sent or received. Fees are subject to change "
+"based on provider rates and exchange rates and are computed at the time the "
+"SMS is sent or received.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/location_fixture.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/location_fixture.html
+msgid "Location Fixture Settings"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "Add New Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Available Alerts"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "You can only have 3 alerts activated at any one time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
+msgid "Start Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "End Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Added By"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "De-activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "No alerts added yet for the project."
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Measure"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Sequence Number"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "App Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "CC Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+#: corehq/apps/users/templates/users/edit_commcare_user.html
+msgid "Created On"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Notes"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "No measures have been initiated for this application"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Use this form to get a cost estimation per 160 character SMS,\n"
+" given a connection, direction,\n"
+" and country code.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" The fee will be applied to the most specific criteria available.\n"
+" A fee for a specific country code (if available) will be used\n"
+" over the default of 'Any Country'.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Fees are subject to change based on updates to each carrier and are\n"
+" computed at the time the SMS is sent.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain.html
+msgid ""
+"\n"
+" Use this to transfer your project to another user.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+#, python-format
+msgid ""
+"\n"
+" You have a pending transfer with %(username)s\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid ""
+"\n"
+" Resend Transfer Request\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid "Cancel Transfer"
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16099,9 +16487,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update case search data immediately on web apps form "
+" Update case search data immediately on web apps form "
"submission.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16119,9 +16507,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update local case data immediately before entering a web "
+" Update local case data immediately before entering a web "
"apps form.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16150,302 +16538,6 @@ msgstr ""
msgid "Add case property"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "SMS Keyword"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "Action Type"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/edit_alert.html
-msgid "Edit Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
-msgid "Feature Previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "What are Feature Previews?"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Before we invest in making certain product features generally\n"
-" available, we release them as Feature Previews to learn the\n"
-" following two things from usage data and qualitative feedback.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Perceived Value:\n"
-" The biggest risk in product development is to\n"
-" build something that offers little value to our users. As "
-"such,\n"
-" we make Feature Previews generally available only if they "
-"have\n"
-" high perceived value.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" User Experience:\n"
-" Even if a feature has high perceived value,\n"
-" it is important that the user experience of the feature is\n"
-" optimized such that our users actually receive the value.\n"
-" As such, we make high value Feature Previews generally\n"
-" available after we optimize the user experience.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Feature Previews are in active product development, therefore\n"
-" should not be used for business critical workflows. We encourage\n"
-" you to use Feature Previews and provide us feedback, however\n"
-" please note that Feature Previews:\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May not be optimized for performance\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not supported by the CommCare Support Team\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May change at any time without notice\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not subject to any warranties on current and future\n"
-" availability. Please refer to our\n"
-" terms to\n"
-" learn more.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Looking for something that used to be here?\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" The feature flags Control Mapping in Case List"
-"strong>,\n"
-" Custom Calculations in Case List, "
-"Custom\n"
-" Single and Multiple Answer Questions, and Icons "
-"in\n"
-" Case List are now add-ons for individual apps. To turn\n"
-" them on, go to the application's settings and choose the\n"
-" Add-Ons tab.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Update previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Feature Name"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
-msgid "More information"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "SMS Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/userreports/views.py
-msgid "Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" View SMS prices for using Dimagi's connections in each country.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" You can choose a connection for your project under Messaging -> SMS "
-"Connectivity\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Calculating SMS Rate...\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Connection"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Incoming"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Outgoing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Your own Android Gateway"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" Pricing is per message sent or received. Fees are subject to change "
-"based on provider rates and exchange rates and are computed at the time the "
-"SMS is sent or received.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/location_fixture.html
-msgid "Location Fixture Settings"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "Add New Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Available Alerts"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "You can only have 3 alerts activated at any one time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
-msgid "Start Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "End Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Added By"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "De-activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "No alerts added yet for the project."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Measure"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Sequence Number"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "App Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "CC Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-#: corehq/apps/users/templates/users/edit_commcare_user.html
-msgid "Created On"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Notes"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "No measures have been initiated for this application"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Use this form to get a cost estimation per 160 character SMS,\n"
-" given a connection, direction,\n"
-" and country code.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" The fee will be applied to the most specific criteria available.\n"
-" A fee for a specific country code (if available) will be used\n"
-" over the default of 'Any Country'.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Fees are subject to change based on updates to each carrier and are\n"
-" computed at the time the SMS is sent.\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/domain/admin/sms_settings.html
msgid "Stock Actions"
msgstr ""
@@ -16458,75 +16550,103 @@ msgstr ""
msgid "Save Settings"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain.html
-msgid ""
-"\n"
-" Use this to transfer your project to another user.\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Transfer project ownership"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
#, python-format
msgid ""
"\n"
-" You have a pending transfer with %(username)s\n"
-" "
+" By clicking \"accept\" below you acknowledge that you accept "
+"full ownership of this project space (\"%(domain)s\").\n"
+" You agree to be bound by the terms of Dimagi's Terms of Service and "
+"Business Agreement.\n"
+" By accepting this agreement, your are acknowledging you have "
+"permission and authority to accept these terms. A Dimagi representative will "
+"notify you when the transfer is complete.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid ""
-"\n"
-" Resend Transfer Request\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+#: corehq/apps/registry/templates/registry/registry_list.html
+msgid "Accept"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid "Cancel Transfer"
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Decline"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid ""
+"\n"
+" Sorry this transfer request has expired.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Total Due:"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Wire"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Not Billing Admin, Can't Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/domain/views/accounting.py corehq/apps/enterprise/views.py
#: corehq/tabs/tabclasses.py
msgid "Billing Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Unpaid"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show Only Unpaid Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show All Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Payment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay the full balance: $"
@@ -16534,14 +16654,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay a portion of the balance:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Please enter an amount that's between $0.50 and $"
@@ -16567,20 +16691,25 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Wire Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Thank you for your payment!"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Thank you for your upcoming wire payment.\n"
@@ -16590,7 +16719,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_billing_info.html
#, python-format
msgid ""
"\n"
@@ -16600,7 +16730,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Clicking the 'Confirm Plan' button below will bring you to a "
@@ -16608,33 +16739,40 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Select different option"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Select different plan"
msgstr "Selecionar plano diferente"
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Confirm Pause"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Confirm Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Before you pause..."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Downgrading?"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" We'd love to make CommCare work better for you.\n"
@@ -16642,56 +16780,64 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you pausing your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you downgrading your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Do you think your project may start again?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Could you indicate which new tool you’re using?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you switching to a new tool?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please specify\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please let us know any other feedback you have\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16699,11 +16845,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
msgid "— which matches your current feature usage."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16711,7 +16859,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16721,31 +16870,36 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
msgid "Current Subscription"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/styleguide/examples/bootstrap5/select2_manual_form.py
msgid "Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Your Subscription is Paused\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid " Day Trial"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16755,7 +16909,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16766,7 +16921,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Note: This subscription will not be "
@@ -16774,22 +16930,28 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Got questions about your plan?"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Talk to Sales"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Change Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16797,7 +16959,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16805,104 +16968,129 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Started"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Ending"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Begins"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Subscription Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Plan Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "General Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Generate Prepayment Invoice"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Not Billing Admin, Can't Add Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Usage Summary"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Feature"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Use"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Included in Software Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Usage"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepayment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"One credit is equivalent to one USD. Credits are applied to monthly invoices"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Please enter an amount that's either $0 or greater than "
@@ -16910,11 +17098,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Total Credits"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Thank you! You will receive an invoice via email with instructions for "
@@ -16923,17 +17113,360 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid "Domain Temporarily Unavailable"
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid ""
"The page you requested is currently unavailable due to a\n"
" data migration. Please check back later."
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+#, python-format
+msgid ""
+"\n"
+" %(feature_name)s is only available to projects\n"
+" subscribed to %(plan_name)s plan or higher.\n"
+" To access this feature, you must subscribe to the\n"
+" %(plan_name)s plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid ""
+"\n"
+" You must be a Project Administrator to make Subscription changes.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Read more about our plans"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Change My Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load EVERYTHING"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load Property"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_subscription_management.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_subscription_management.html
+#, python-format
+msgid ""
+"\n"
+"
\n"
+" This page is visible to Dimagi employees only (you have an @dimagi.com "
+"email address). You can use this page\n"
+" to set up a subscription for this project space.\n"
+"\n"
+" Use this tool only for projects that are:\n"
+"
\n"
+"
an internal test project
\n"
+"
part of a contracted project
\n"
+"
a short term extended trial for biz dev
\n"
+"
\n"
+" \n"
+"\n"
+"
\n"
+" Your project is currently subscribed to %(plan_name)s.\n"
+"
\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Could not update!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Last Activity"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Activated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Deactivated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#, python-format
+msgid ""
+"\n"
+" You are renewing your %(p)s subscription.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
+#: corehq/apps/registration/forms.py
+#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
+#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
+#: corehq/apps/settings/forms.py
+#: corehq/apps/userreports/reports/builder/forms.py
+msgid "Next"
+msgstr "Próximo"
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/settings/views.py
+msgid "My Projects"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "Accept All Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "My Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "90 day refund policy"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "monthly"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "discounted"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be downgrading to\n"
+" on\n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be pausing on \n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Current Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/views/accounting.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
+msgid "Select Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Pause Subscription\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" What happens after you pause?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will lose access to your project space, but you will be\n"
+" able to re-subscribe anytime in the future.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will no longer be billed.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription is currently paused.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Your subscription is currently paused because you have\n"
+" past-due invoices.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will not be allowed to un-pause your project until\n"
+" these invoices are paid.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be pausing on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be downgrading to\n"
+" on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You are currently on the FREE CommCare Community plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Dismiss"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Saved Credit Cards"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Add Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Credit Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Your request was successful!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Delete Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid ""
+"\n"
+" Actually remove "
+"strong> card\n"
+" ************"
+"strong>?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Remove Autopay"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Set as autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually. \n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16942,7 +17475,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16950,14 +17484,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
msgid ""
"\n"
" Accept Invitation\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16967,7 +17503,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
msgid ""
"\n"
" CommCare HQ is a data management tool used by over 500 organizations\n"
@@ -16977,7 +17513,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16987,6 +17524,16 @@ msgid ""
" "
msgstr ""
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
+msgid ""
+"\n"
+" CommCare HQ is a data management tool used by over 500 organizations\n"
+" to help frontline workers around the world.\n"
+" Learn "
+"more about CommCare. \n"
+" "
+msgstr ""
+
#: corehq/apps/domain/templates/domain/email/domain_invite.txt
#: corehq/apps/registration/templates/registration/email/mobile_worker_confirm_account.txt
msgid "Hey there,"
@@ -17242,93 +17789,23 @@ msgid ""
"org/.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-#, python-format
-msgid ""
-"\n"
-" %(feature_name)s is only available to projects\n"
-" subscribed to %(plan_name)s plan or higher.\n"
-" To access this feature, you must subscribe to the\n"
-" %(plan_name)s plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid ""
-"\n"
-" You must be a Project Administrator to make Subscription changes.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Read more about our plans"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Change My Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load EVERYTHING"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load Property"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_subscription_management.html
-#, python-format
-msgid ""
-"\n"
-"
\n"
-" This page is visible to Dimagi employees only (you have an @dimagi.com "
-"email address). You can use this page\n"
-" to set up a subscription for this project space.\n"
-"\n"
-" Use this tool only for projects that are:\n"
-"
\n"
-"
an internal test project
\n"
-"
part of a contracted project
\n"
-"
a short term extended trial for biz dev
\n"
-"
\n"
-" \n"
-"\n"
-"
\n"
-" Your project is currently subscribed to %(plan_name)s.\n"
-"
\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Could not update!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Last Activity"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Activated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Deactivated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "Use the Creative Commons website"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "to choose a Creative Commons license."
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Wire Payment Information"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid ""
"\n"
" Dimagi accepts wire payments via ACH and wire transfer. You "
@@ -17341,271 +17818,156 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Invoice Recipients"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Please agree to the Privacy Policy."
msgstr ""
-#: corehq/apps/domain/templates/domain/pro_bono/page_content.html
-msgid ""
-"Thank you for your submission. A representative will be in contact with you "
-"shortly."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#, python-format
-msgid ""
-"\n"
-" You are renewing your %(p)s subscription.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
-#: corehq/apps/registration/forms.py
-#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
-#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
-#: corehq/apps/settings/forms.py
-#: corehq/apps/userreports/reports/builder/forms.py
-msgid "Next"
-msgstr "Próximo"
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/settings/views.py
-msgid "My Projects"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "Accept All Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "My Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
-msgid ""
-"\n"
-" Save close to 20%% when you pay annually.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "90 day refund policy"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "monthly"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "discounted"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be downgrading to\n"
-" on\n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" This plan will be pausing on \n"
-" .\n"
-" "
+" This license doesn't cover all your multimedia.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Current Plan"
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "More info..."
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/views/accounting.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
-msgid "Select Plan"
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "Select a more restrictive license"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Pause Subscription\n"
+" Since you've opted to publish your multimedia along with your "
+"app,\n"
+" you must select a license that is more restrictive than the "
+"multimedia in the app.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" What happens after you pause?\n"
+" To satisfy this condition, you can either decide not to publish "
+"the multimedia\n"
+" or select one of the following licenses:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap3/page_content.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap5/page_content.html
msgid ""
-"\n"
-" You will lose access to your project space, but you will be\n"
-" able to re-subscribe anytime in the future.\n"
-" "
+"Thank you for your submission. A representative will be in contact with you "
+"shortly."
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will no longer be billed.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Error details"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription is currently paused.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Log In"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
-msgid ""
-"\n"
-" Your subscription is currently paused because you have\n"
-" past-due invoices.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/login.html
+msgid "Log In :: CommCare HQ"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will not be allowed to un-pause your project until\n"
-" these invoices are paid.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset Confirmation"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription will be pausing on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
+#: corehq/apps/users/forms.py
+msgid "Reset Password"
+msgstr "Alterar Palavra-passe"
+
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+msgid "Reset Password Unsuccessful"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Your subscription will be downgrading to\n"
-" on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
+" The password reset link was invalid, possibly because\n"
+" it has already been used.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" You are currently on the FREE CommCare Community plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Dismiss"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Saved Credit Cards"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Add Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Credit Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Your request was successful!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Delete Card"
+" Please request a new password reset.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Actually remove "
-"strong> card\n"
-" ************"
-"strong>?\n"
+" Request Password Reset\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Remove Autopay"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Set as autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Error details"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Log In"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/login.html
-msgid "Log In :: CommCare HQ"
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"\n"
" No account? Sign up today, it's free!\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Learn more"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"about how CommCare HQ can be your mobile solution for your frontline "
"workforce."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
#, python-format
msgid "Request Access to %(hr_name)s"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Sign Up"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
msgid ""
"\n"
" We will email instructions to you for resetting your "
@@ -17613,15 +17975,6 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/users/forms.py
-msgid "Reset Password"
-msgstr "Alterar Palavra-passe"
-
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/urls.py
msgid "Password Change Complete"
@@ -17634,7 +17987,8 @@ msgstr ""
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap3/base_navigation.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap5/base_navigation.html
msgid "Sign In"
@@ -17645,37 +17999,6 @@ msgstr ""
msgid "Password Reset Complete"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset Confirmation"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid "Reset Password Unsuccessful"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" The password reset link was invalid, possibly because\n"
-" it has already been used.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Please request a new password reset.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Request Password Reset\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
msgid "Password Reset Requested"
msgstr ""
@@ -17717,21 +18040,20 @@ msgstr ""
msgid "--The CommCare HQ Team"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_forms.html
msgid "Forgot your password?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid ""
"Backup tokens can be used when your primary and backup\n"
" phone numbers aren't available. The backup tokens below can be used\n"
@@ -17740,29 +18062,37 @@ msgid ""
" below will be valid."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Print these tokens and keep them somewhere safe."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "You don't have any backup codes yet."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Begin Using CommCare Now"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Back to Profile"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Generate Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We are calling your phone right now, please enter the\n"
@@ -17770,7 +18100,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We sent you a text message, please enter the tokens we\n"
@@ -17778,7 +18109,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the tokens generated by your token\n"
@@ -17786,50 +18118,61 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the token given to you by your domain administrator.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Looks like your CommCare session has expired."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please log in again to continue working."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below to continue."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "You will be transferred to your original destination after you sign in."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Or, alternatively, use one of your backup phones:"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Please contact your domain administrator if you need a backup token."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Use Backup Token"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid "Please set up Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" For security purposes, your CommCare administrator has required that "
@@ -17840,7 +18183,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" To access your account, please enable two-factor authentication "
@@ -17848,71 +18192,87 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/file_download.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/file_download.html
msgid "Go back"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Enable Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid "Add Backup Phone"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"Your backup phone number will be used if your primary method of registration "
"is not available. Please enter a valid phone number."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"We've sent a token to your phone number. Please enter the token you've "
"received."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Follow the steps in this wizard to enable two-factor authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Please select which authentication method you would like to use."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To start using a token generator, please use your smartphone to scan the QR "
"code below. For example, use Google Authenticator. Then, enter the token "
"generated by the app."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to receive the text messages on. This "
"number will be validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to be called on. This number will be "
"validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We are calling your phone right now, please enter the digits you hear."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We sent you a text message, please enter the tokens we sent."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"We've encountered an issue with the selected authentication method. Please "
"go back and verify that you entered your information correctly, try again, "
@@ -17920,44 +18280,52 @@ msgid ""
"contact the site administrator."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To identify and verify your YubiKey, please insert a token in the field "
"below. Your YubiKey will be linked to your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid ""
"Congratulations, you've successfully enabled two-factor\n"
" authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "To enable account recovery, generate backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Generate Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid "Remove Two-factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid ""
"You are about to remove two-factor authentication. This\n"
" compromises your account security, are you sure?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" Two-Factor Authentication is not managed here.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17967,32 +18335,38 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Phone Numbers"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If your primary method is not available, we are able to\n"
" send backup tokens to the phone numbers listed below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Unregister"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/sms/templates/sms/add_gateway.html
msgid "Add Phone Number"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If you don't have any device with you, you can access\n"
" your account using backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -18006,27 +18380,32 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Show Codes"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/settings/views.py
msgid "Remove Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"We strongly discourage this, but if absolutely necessary "
"you can\n"
" remove two-factor authentication from your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Reset Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" This will remove your current two-factor authentication, and "
@@ -18037,7 +18416,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"Two-factor authentication is not enabled for your\n"
" account. Enable two-factor authentication for enhanced account\n"
@@ -18982,10 +19362,6 @@ msgstr ""
msgid "Enterprise Dashboard: {}"
msgstr ""
-#: corehq/apps/enterprise/templates/enterprise/enterprise_dashboard.html
-msgid "Email Report"
-msgstr "Enviar Relatório Por E-mail"
-
#: corehq/apps/enterprise/templates/enterprise/enterprise_permissions.html
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
msgid "Enterprise Permissions"
@@ -19046,10 +19422,35 @@ msgstr ""
msgid "No project spaces found."
msgstr ""
+#: corehq/apps/enterprise/templates/enterprise/partials/project_tile.html
+msgid "Email Report"
+msgstr "Enviar Relatório Por E-mail"
+
+#: corehq/apps/enterprise/views.py
+msgid "Platform Overview for {}"
+msgstr ""
+
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
-msgid "Enterprise Dashboard"
+msgid "Platform Overview"
msgstr ""
+#: corehq/apps/enterprise/views.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
+#: corehq/apps/sso/forms.py
+msgid "Enterprise Console"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Security Center for {}"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
+#, fuzzy
+#| msgid "Security"
+msgid "Security Center"
+msgstr "Manejo de Casos"
+
#: corehq/apps/enterprise/views.py corehq/apps/reports/views.py
msgid ""
"That report was not found. Please remember that download links expire after "
@@ -19065,13 +19466,6 @@ msgstr ""
msgid "Enterprise Settings"
msgstr ""
-#: corehq/apps/enterprise/views.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
-#: corehq/apps/sso/forms.py
-msgid "Enterprise Console"
-msgstr ""
-
#: corehq/apps/enterprise/views.py
msgid "Enterprise permissions have been disabled."
msgstr "Relatorio Semanal aos Coordinadores do Distrito e os NEDs"
@@ -19195,11 +19589,11 @@ msgstr ""
msgid "Event in progress"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19209,15 +19603,15 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Update Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Delete Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19226,7 +19620,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19236,14 +19630,14 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid ""
"\n"
" This action cannot be undone.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" Known potential attendees who can be invited to participate in "
@@ -19252,42 +19646,42 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Create Potential Attendee"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Enable Mobile Worker Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "New Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "Pending..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "NEW"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "ERROR"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Loading potential attendees ..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid ""
"\n"
@@ -19299,21 +19693,21 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" You currently have no potential attendees.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" No matching potential attendees found.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid ""
"\n"
" Attendance tracking events can be used to track attendance of all "
@@ -19321,31 +19715,31 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Add new event"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "View Attendees"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "No Attendees Yet"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Date Attended"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Attendee Name"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Event has not yet started"
msgstr ""
-#: corehq/apps/events/templates/new_event.html
+#: corehq/apps/events/templates/events/new_event.html
msgid ""
"\n"
" There was a problem fetching the list of attendees and attendance "
@@ -22274,7 +22668,7 @@ msgid ""
msgstr ""
#: corehq/apps/geospatial/forms.py
-msgid "Case Grouping Parameters"
+msgid "Case Clustering Map Parameters"
msgstr ""
#: corehq/apps/geospatial/forms.py
@@ -22357,7 +22751,7 @@ msgid "Driving"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Management Map"
+msgid "Microplanning Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22377,7 +22771,7 @@ msgid "name"
msgstr "Relatorio Semanal aos Coordinadores do Distrito e os NEDs"
#: corehq/apps/geospatial/reports.py
-msgid "Case Grouping"
+msgid "Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22404,11 +22798,11 @@ msgid "Link"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Lock Case Grouping for Me"
+msgid "Lock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Unlock Case Grouping for Me"
+msgid "Unlock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22416,7 +22810,7 @@ msgid "Export Groups"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Summary of Case Grouping"
+msgid "Summary of Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22686,6 +23080,35 @@ msgstr ""
msgid "You are about to delete this saved area"
msgstr ""
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain were not processed to be available in "
+"Microplanning reports\n"
+" because there were too many to be processed. New or updated cases "
+"will still be available\n"
+" for use for Microplanning. Please reach out to support if you need "
+"support with existing cases.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Oops! Something went wrong while processing existing cases to be "
+"available in Microplanning\n"
+" reports. Please reach out to support.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain are being processed to be available in\n"
+" Microplanning reports. Please be patient.\n"
+" "
+msgstr ""
+
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
msgid "Review Assignment Results"
msgstr ""
@@ -23041,7 +23464,7 @@ msgid ""
" For all active mobile workers in this group, and for "
"each phone number, this will\n"
" initiate an SMS verification workflow. When a user "
-"replies to the SMS< their phone\n"
+"replies to the SMS, their phone\n"
" number will be verified.
If the phone number "
"is already verified or\n"
" if the phone number is already in use by another "
@@ -24784,6 +25207,13 @@ msgstr ""
msgid "Server Error Encountered"
msgstr ""
+#: corehq/apps/hqwebapp/templates/hqwebapp/htmx/htmx_action_error.html
+#, python-format
+msgid ""
+"\n"
+" Encountered error \"%(htmx_error)s\" while performing action %(action)s.\n"
+msgstr ""
+
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/domain_list_dropdown.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/domain_list_dropdown.html
msgid "Change Project"
@@ -27775,11 +28205,6 @@ msgstr ""
msgid "Manage Notification"
msgstr ""
-#: corehq/apps/oauth_integrations/views/google.py
-msgid ""
-"Something went wrong when trying to sign you in to Google. Please try again."
-msgstr ""
-
#: corehq/apps/ota/utils.py corehq/apps/users/tasks.py
msgid ""
"Something went wrong in creating restore for the user. Please try again or "
@@ -28735,20 +29160,11 @@ msgid ""
msgstr ""
#: corehq/apps/registration/templates/registration/partials/choose_your_plan.html
-#, fuzzy
-#| msgid ""
-#| "\n"
-#| " Mobile Workers can log into applications in this project "
-#| "space and submit data.\n"
-#| " "
msgid ""
"\n"
" For organizations managing projects.\n"
" "
msgstr ""
-"\n"
-"Trabalhadores Móveis podem entrar nas aplicações nesta área de projeto e "
-"enviar dados."
#: corehq/apps/registration/templates/registration/partials/choose_your_plan.html
msgid ""
@@ -28759,18 +29175,11 @@ msgid ""
msgstr ""
#: corehq/apps/registration/templates/registration/partials/choose_your_plan.html
-#, fuzzy
-#| msgid ""
-#| "\n"
-#| " Upload Lookup Tables\n"
-#| " "
msgid ""
"\n"
" Request a Trial\n"
" "
msgstr ""
-"\n"
-"Carregar Tabelas de Pesquisa"
#: corehq/apps/registration/templates/registration/partials/choose_your_plan.html
msgid ""
@@ -34253,10 +34662,6 @@ msgstr ""
msgid "Update settings"
msgstr ""
-#: corehq/apps/sms/forms.py
-msgid "Type a username, group name or 'send to all'"
-msgstr ""
-
#: corehq/apps/sms/forms.py
msgid "0 characters (160 max)"
msgstr ""
@@ -35027,10 +35432,6 @@ msgstr ""
msgid "You can't send an empty message"
msgstr ""
-#: corehq/apps/sms/views.py
-msgid "Please remember to separate recipients with a comma."
-msgstr ""
-
#: corehq/apps/sms/views.py
msgid "The following groups don't exist: "
msgstr ""
@@ -40980,6 +41381,26 @@ msgstr ""
msgid "Please select at least one item."
msgstr ""
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: \"%(request_username)s\" will no longer be able to "
+"access or edit \"%(couch_username)s\"\n"
+" if they don't share a location.\n"
+" "
+msgstr ""
+
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: %(user_type)s \"%(couch_username)s\" must have at "
+"least one location assigned.\n"
+" They won't be able to log in otherwise.\n"
+" "
+msgstr ""
+
#: corehq/apps/users/templates/users/partials/manage_phone_numbers.html
msgid ""
"Phone numbers can only contain digits and we were unable to convert yours "
@@ -42370,10 +42791,8 @@ msgid ""
msgstr ""
#: corehq/messaging/scheduling/forms.py
-#, fuzzy
-#| msgid "Filter Forms"
msgid "Filter on"
-msgstr "Filtrar Formulários"
+msgstr ""
#: corehq/messaging/scheduling/forms.py
msgid "User data filter: whole json"
@@ -45640,7 +46059,7 @@ msgid "User Management"
msgstr "Manejo de Casos"
#: corehq/reports.py
-msgid "Case Mapping"
+msgid "Microplanning"
msgstr ""
#: corehq/tabs/tabclasses.py corehq/tabs/utils.py
@@ -45664,7 +46083,7 @@ msgid "Data Manipulation"
msgstr ""
#: corehq/tabs/tabclasses.py
-msgid "Configure Geospatial Settings"
+msgid "Configure Microplanning Settings"
msgstr ""
#: corehq/tabs/tabclasses.py
diff --git a/locale/por/LC_MESSAGES/djangojs.po b/locale/por/LC_MESSAGES/djangojs.po
index a68223c51c15..947f0da0c971 100644
--- a/locale/por/LC_MESSAGES/djangojs.po
+++ b/locale/por/LC_MESSAGES/djangojs.po
@@ -1174,7 +1174,7 @@ msgid "no formatting"
msgstr ""
#: corehq/apps/app_manager/static/app_manager/js/vellum/src/main-components.js
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Custom"
msgstr ""
@@ -3095,24 +3095,28 @@ msgstr ""
msgid "Sorry, it looks like the upload failed."
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Payment"
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Invoice Request"
msgstr ""
-#: corehq/apps/domain/static/domain/js/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/case_search.js
msgid "You have unchanged settings"
msgstr ""
-#: corehq/apps/domain/static/domain/js/current_subscription.js
-msgid "Buy Credits"
+#: corehq/apps/domain/static/domain/js/bootstrap3/info_basic.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/info_basic.js
+msgid "Select a Timezone..."
msgstr ""
-#: corehq/apps/domain/static/domain/js/info_basic.js
-msgid "Select a Timezone..."
+#: corehq/apps/domain/static/domain/js/current_subscription.js
+msgid "Buy Credits"
msgstr ""
#: corehq/apps/domain/static/domain/js/internal_settings.js
@@ -3158,42 +3162,42 @@ msgid ""
"the project space as a member in order to override your timezone."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
+msgid ""
+"Do not allow new users to sign up on commcarehq.org. This may take up to an "
+"hour to take effect. This will affect users with email addresses from "
+"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
+msgstr ""
+
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Last 30 Days"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
#: corehq/apps/hqwebapp/static/hqwebapp/js/tempus_dominus.js
msgid "Previous Month"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Spans <%- startDate %> to <%- endDate %> (UTC)"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error updating display total, please try again or report an issue if this "
"persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "??"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error sending email, please try again or report an issue if this persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
-msgid ""
-"Do not allow new users to sign up on commcarehq.org. This may take up to an "
-"hour to take effect. This will affect users with email addresses from "
-"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
-msgstr ""
-
#: corehq/apps/events/static/events/js/event_attendees.js
msgid "Disable Mobile Worker Attendees"
msgstr ""
@@ -3346,6 +3350,10 @@ msgstr ""
msgid "Sensitive Date"
msgstr ""
+#: corehq/apps/fixtures/static/fixtures/js/lookup-manage.js
+msgid "Can not create table with ID '<%= tag %>'. Table IDs should be unique."
+msgstr ""
+
#: corehq/apps/geospatial/static/geospatial/js/case_grouping_map.js
msgid "No group"
msgstr ""
@@ -4102,35 +4110,6 @@ msgstr ""
msgid "label-info-light"
msgstr ""
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords to copy"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Search keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/users/static/users/js/roles.js
-msgid "Linked Project Spaces"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Projects to copy to"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Search projects"
-msgstr ""
-
#: corehq/apps/reports/static/reports/js/bootstrap3/base.js
#: corehq/apps/reports/static/reports/js/bootstrap5/base.js
#: corehq/apps/userreports/static/userreports/js/configurable_report.js
@@ -4452,11 +4431,11 @@ msgstr ""
msgid "(filtered from _MAX_ total contacts)"
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "There was an error fetching the SMS rate."
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "Please Select a Country Code"
msgstr ""
@@ -4615,6 +4594,16 @@ msgstr ""
msgid "Linked projects"
msgstr ""
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Projects to copy to"
+msgstr ""
+
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Search projects"
+msgstr ""
+
#: corehq/apps/userreports/static/userreports/js/expression_evaluator.js
msgid "Unknown error"
msgstr ""
@@ -4918,6 +4907,10 @@ msgstr ""
msgid "Multi-Environment Release Management"
msgstr ""
+#: corehq/apps/users/static/users/js/roles.js
+msgid "Linked Project Spaces"
+msgstr ""
+
#: corehq/apps/users/static/users/js/roles.js
msgid "Allow role to configure linked project spaces"
msgstr ""
diff --git a/locale/pt/LC_MESSAGES/django.po b/locale/pt/LC_MESSAGES/django.po
index 15355fa9b0bf..5e46275f75d0 100644
--- a/locale/pt/LC_MESSAGES/django.po
+++ b/locale/pt/LC_MESSAGES/django.po
@@ -24,7 +24,8 @@ msgstr ""
#: corehq/apps/accounting/filters.py
#: corehq/apps/app_manager/templates/app_manager/partials/bulk_upload_app_translations.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/geospatial/filters.py
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
@@ -288,8 +289,10 @@ msgstr ""
#: corehq/apps/builds/templates/builds/all.html
#: corehq/apps/builds/templates/builds/edit_menu.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/translations_coverage.html
msgid "Version"
msgstr ""
@@ -446,9 +449,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
#: corehq/apps/enterprise/enterprise.py corehq/apps/events/forms.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -490,7 +494,8 @@ msgid "Company / Organization"
msgstr ""
#: corehq/apps/accounting/forms.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
#: corehq/apps/reminders/forms.py corehq/apps/reports/standard/deployments.py
#: corehq/apps/reports/standard/sms.py
@@ -904,8 +909,10 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/accounting_admins.html
#: corehq/apps/data_interfaces/templates/data_interfaces/manage_case_groups.html
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/partials/manage_downstream_domains.html
#: corehq/apps/locations/templates/locations/location_types.html
@@ -960,11 +967,13 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
#: corehq/apps/enterprise/templates/enterprise/partials/date_range_modal.html
-#: corehq/apps/events/templates/edit_attendee.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/edit_attendee.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/dialogs/bulk_delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
@@ -1449,9 +1458,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_run_history.html
#: corehq/apps/data_interfaces/views.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/enterprise/enterprise.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/standard/cases/basic.py
@@ -2543,7 +2553,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/invoice.html
#: corehq/apps/app_execution/templates/app_execution/workflow_list.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/app_release_logs.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/hqadmin/reports.py corehq/apps/linked_domain/views.py
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/reports/standard/deployments.py
@@ -2773,7 +2784,8 @@ msgid "Add New Credit Card"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/new_stripe_card_template.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
msgid "Processing your request"
msgstr ""
@@ -2843,12 +2855,14 @@ msgid "Save"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Monthly"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Annually"
msgstr ""
@@ -2935,7 +2949,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/subscriptions_tab.html
#: corehq/apps/app_execution/templates/app_execution/components/title_bar.html
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_properties.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
#: corehq/apps/locations/templates/locations/manage/location_template.html
@@ -3156,8 +3171,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_lookup.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/partials/reference_table.html
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/registry/templates/registry/registry_edit.html
@@ -3543,7 +3560,8 @@ msgstr ""
#: corehq/apps/data_interfaces/forms.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/geospatial/templates/geospatial/gps_capture.html
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/scheduled_reports_table.html
@@ -3619,8 +3637,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_case_groups.html
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
@@ -3973,8 +3993,10 @@ msgstr ""
#: corehq/apps/app_manager/fields.py
#: corehq/apps/cloudcare/templates/cloudcare/config.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/linked_domain/const.py
#: corehq/apps/reports/filters/forms.py corehq/apps/reports/filters/select.py
#: corehq/apps/reports/standard/deployments.py
@@ -4277,7 +4299,6 @@ msgstr ""
#: corehq/apps/app_manager/helpers/validators.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case property"
msgstr ""
@@ -4871,7 +4892,8 @@ msgid "Enable Menu Display Setting Per-Module"
msgstr ""
#: corehq/apps/app_manager/static_strings.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/enterprise/templates/enterprise/partials/enterprise_permissions_table.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqadmin/forms.py
@@ -5087,7 +5109,8 @@ msgid "No Validation"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -5575,7 +5598,8 @@ msgid "XXX-High Density"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -6279,7 +6303,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/odk_install.html
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_tab_advanced.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/releases_deploy_modal.html
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/export/templates/export/partials/export_download_progress.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqmedia/templates/hqmedia/audio_translator.html
@@ -6321,11 +6346,15 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
#: corehq/apps/data_interfaces/templates/data_interfaces/interfaces/case_management.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/dialogs/process_deleted_questions.html
#: corehq/apps/export/templates/export/dialogs/process_deprecated_properties.html
#: corehq/apps/export/templates/export/partials/table.html
@@ -8073,8 +8102,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_workflow.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_detail.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_list/multi_select_continue_button.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/messaging/scheduling/templates/scheduling/partials/conditional_alert_continue.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/start.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/step1.html
@@ -9410,7 +9441,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/mobile_report_configs.html
#: corehq/apps/data_dictionary/templates/data_dictionary/base.html
#: corehq/apps/data_dictionary/views.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/download_data_files.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -9488,7 +9520,8 @@ msgid ""
msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/module_actions.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/apps/registration/templates/registration/partials/start_trial_modal.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/description.html
#: corehq/apps/reports/templates/reports/partials/bootstrap5/description.html
@@ -11489,7 +11522,6 @@ msgid "Case Type to Update/Create"
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case type"
msgstr ""
@@ -11532,8 +11564,10 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
#: corehq/apps/case_importer/templates/case_importer/excel_fields.html
#: corehq/apps/domain/templates/error.html
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/registration/forms.py corehq/apps/settings/forms.py
msgid "Back"
@@ -11697,19 +11731,21 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" row had an invalid\n"
-" \"\" cell and was not "
+" row had an "
+"invalid\n"
+" \"\" cell and was not "
"saved\n"
-" "
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" rows had invalid\n"
-" \"\" cells and were not "
-"saved\n"
-" "
+" rows had "
+"invalid\n"
+" \"\" cells and were "
+"not saved\n"
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
@@ -11852,7 +11888,7 @@ msgid "{param} must be a string"
msgstr ""
#: corehq/apps/case_search/models.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/locations/templates/locations/manage/location.html
#: corehq/apps/reports/filters/users.py corehq/apps/users/models.py
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -11924,7 +11960,8 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/form_entry/entry_geo.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/reports/filters/simple.py
#: corehq/apps/reports/standard/cases/filters.py
#: corehq/apps/sms/templates/sms/chat_contacts.html
@@ -11934,7 +11971,8 @@ msgstr ""
#: corehq/apps/case_search/templates/case_search/case_search.html
#: corehq/apps/custom_data_fields/edit_entity.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/users/templates/users/enterprise_users.html
msgid "Profile"
msgstr ""
@@ -12140,6 +12178,14 @@ msgid ""
"\"YYYY-mm-dd\""
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "{} is not a valid datetime"
+msgstr ""
+
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Invalid datetime value. Must be a number or a ISO 8601 string."
+msgstr ""
+
#: corehq/apps/case_search/xpath_functions/value_functions.py
#, python-brace-format
msgid ""
@@ -12158,6 +12204,10 @@ msgid ""
"add\" function"
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Cannot convert {} to a double"
+msgstr ""
+
#: corehq/apps/cloudcare/api.py
#, python-format
msgid "Not found application by name: %s"
@@ -14271,7 +14321,8 @@ msgid ""
msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/domain_links.html
#: corehq/apps/translations/forms.py
@@ -14692,7 +14743,8 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/events/forms.py corehq/apps/events/views.py
#: corehq/apps/geospatial/templates/geospatial/case_management.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/locations/forms.py
@@ -15702,7 +15754,8 @@ msgid ""
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/paused_plan_notice.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/paused_plan_notice.html
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -15710,7 +15763,8 @@ msgid "Subscribe to Plan"
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Renew Plan"
msgstr ""
@@ -15913,45 +15967,379 @@ msgstr ""
msgid "There has been a transfer of ownership of {domain}"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Transfer project ownership"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "SMS Keyword"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#, python-format
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "Action Type"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/edit_alert.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/edit_alert.html
+msgid "Edit Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
+msgid "Feature Previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "What are Feature Previews?"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" By clicking \"accept\" below you acknowledge that you accept "
-"full ownership of this project space (\"%(domain)s\").\n"
-" You agree to be bound by the terms of Dimagi's Terms of Service and "
-"Business Agreement.\n"
-" By accepting this agreement, your are acknowledging you have "
-"permission and authority to accept these terms. A Dimagi representative will "
-"notify you when the transfer is complete.\n"
+" Before we invest in making certain product features generally\n"
+" available, we release them as Feature Previews to learn the\n"
+" following two things from usage data and qualitative feedback.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Perceived Value:\n"
+" The biggest risk in product development is to\n"
+" build something that offers little value to our users. As "
+"such,\n"
+" we make Feature Previews generally available only if they "
+"have\n"
+" high perceived value.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-#: corehq/apps/registry/templates/registry/registry_list.html
-msgid "Accept"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" User Experience:\n"
+" Even if a feature has high perceived value,\n"
+" it is important that the user experience of the feature is\n"
+" optimized such that our users actually receive the value.\n"
+" As such, we make high value Feature Previews generally\n"
+" available after we optimize the user experience.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Decline"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Feature Previews are in active product development, therefore\n"
+" should not be used for business critical workflows. We encourage\n"
+" you to use Feature Previews and provide us feedback, however\n"
+" please note that Feature Previews:\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" Sorry this transfer request has expired.\n"
+" May not be optimized for performance\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not supported by the CommCare Support Team\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" May change at any time without notice\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/calendar_fixture.html
-msgid "Calendar Fixture Settings"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not subject to any warranties on current and future\n"
+" availability. Please refer to our\n"
+" terms to\n"
+" learn more.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Looking for something that used to be here?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" The feature flags Control Mapping in Case List"
+"strong>,\n"
+" Custom Calculations in Case List, "
+"Custom\n"
+" Single and Multiple Answer Questions, and Icons "
+"in\n"
+" Case List are now add-ons for individual apps. To turn\n"
+" them on, go to the application's settings and choose the\n"
+" Add-Ons tab.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Update previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Feature Name"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
+msgid "More information"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "SMS Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/userreports/views.py
+msgid "Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" View SMS prices for using Dimagi's connections in each country.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" You can choose a connection for your project under Messaging -> SMS "
+"Connectivity\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Calculating SMS Rate...\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Connection"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Incoming"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Outgoing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Your own Android Gateway"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" Pricing is per message sent or received. Fees are subject to change "
+"based on provider rates and exchange rates and are computed at the time the "
+"SMS is sent or received.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/location_fixture.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/location_fixture.html
+msgid "Location Fixture Settings"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "Add New Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Available Alerts"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "You can only have 3 alerts activated at any one time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
+msgid "Start Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "End Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Added By"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "De-activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "No alerts added yet for the project."
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Measure"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Sequence Number"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "App Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "CC Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+#: corehq/apps/users/templates/users/edit_commcare_user.html
+msgid "Created On"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Notes"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "No measures have been initiated for this application"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Use this form to get a cost estimation per 160 character SMS,\n"
+" given a connection, direction,\n"
+" and country code.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" The fee will be applied to the most specific criteria available.\n"
+" A fee for a specific country code (if available) will be used\n"
+" over the default of 'Any Country'.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Fees are subject to change based on updates to each carrier and are\n"
+" computed at the time the SMS is sent.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain.html
+msgid ""
+"\n"
+" Use this to transfer your project to another user.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+#, python-format
+msgid ""
+"\n"
+" You have a pending transfer with %(username)s\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid ""
+"\n"
+" Resend Transfer Request\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid "Cancel Transfer"
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16020,9 +16408,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update case search data immediately on web apps form "
+" Update case search data immediately on web apps form "
"submission.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16040,9 +16428,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update local case data immediately before entering a web "
+" Update local case data immediately before entering a web "
"apps form.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16071,302 +16459,6 @@ msgstr ""
msgid "Add case property"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "SMS Keyword"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "Action Type"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/edit_alert.html
-msgid "Edit Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
-msgid "Feature Previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "What are Feature Previews?"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Before we invest in making certain product features generally\n"
-" available, we release them as Feature Previews to learn the\n"
-" following two things from usage data and qualitative feedback.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Perceived Value:\n"
-" The biggest risk in product development is to\n"
-" build something that offers little value to our users. As "
-"such,\n"
-" we make Feature Previews generally available only if they "
-"have\n"
-" high perceived value.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" User Experience:\n"
-" Even if a feature has high perceived value,\n"
-" it is important that the user experience of the feature is\n"
-" optimized such that our users actually receive the value.\n"
-" As such, we make high value Feature Previews generally\n"
-" available after we optimize the user experience.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Feature Previews are in active product development, therefore\n"
-" should not be used for business critical workflows. We encourage\n"
-" you to use Feature Previews and provide us feedback, however\n"
-" please note that Feature Previews:\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May not be optimized for performance\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not supported by the CommCare Support Team\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May change at any time without notice\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not subject to any warranties on current and future\n"
-" availability. Please refer to our\n"
-" terms to\n"
-" learn more.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Looking for something that used to be here?\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" The feature flags Control Mapping in Case List"
-"strong>,\n"
-" Custom Calculations in Case List, "
-"Custom\n"
-" Single and Multiple Answer Questions, and Icons "
-"in\n"
-" Case List are now add-ons for individual apps. To turn\n"
-" them on, go to the application's settings and choose the\n"
-" Add-Ons tab.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Update previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Feature Name"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
-msgid "More information"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "SMS Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/userreports/views.py
-msgid "Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" View SMS prices for using Dimagi's connections in each country.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" You can choose a connection for your project under Messaging -> SMS "
-"Connectivity\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Calculating SMS Rate...\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Connection"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Incoming"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Outgoing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Your own Android Gateway"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" Pricing is per message sent or received. Fees are subject to change "
-"based on provider rates and exchange rates and are computed at the time the "
-"SMS is sent or received.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/location_fixture.html
-msgid "Location Fixture Settings"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "Add New Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Available Alerts"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "You can only have 3 alerts activated at any one time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
-msgid "Start Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "End Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Added By"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "De-activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "No alerts added yet for the project."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Measure"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Sequence Number"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "App Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "CC Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-#: corehq/apps/users/templates/users/edit_commcare_user.html
-msgid "Created On"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Notes"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "No measures have been initiated for this application"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Use this form to get a cost estimation per 160 character SMS,\n"
-" given a connection, direction,\n"
-" and country code.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" The fee will be applied to the most specific criteria available.\n"
-" A fee for a specific country code (if available) will be used\n"
-" over the default of 'Any Country'.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Fees are subject to change based on updates to each carrier and are\n"
-" computed at the time the SMS is sent.\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/domain/admin/sms_settings.html
msgid "Stock Actions"
msgstr ""
@@ -16379,75 +16471,103 @@ msgstr ""
msgid "Save Settings"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain.html
-msgid ""
-"\n"
-" Use this to transfer your project to another user.\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Transfer project ownership"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
#, python-format
msgid ""
"\n"
-" You have a pending transfer with %(username)s\n"
-" "
+" By clicking \"accept\" below you acknowledge that you accept "
+"full ownership of this project space (\"%(domain)s\").\n"
+" You agree to be bound by the terms of Dimagi's Terms of Service and "
+"Business Agreement.\n"
+" By accepting this agreement, your are acknowledging you have "
+"permission and authority to accept these terms. A Dimagi representative will "
+"notify you when the transfer is complete.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid ""
-"\n"
-" Resend Transfer Request\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+#: corehq/apps/registry/templates/registry/registry_list.html
+msgid "Accept"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid "Cancel Transfer"
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Decline"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid ""
+"\n"
+" Sorry this transfer request has expired.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Total Due:"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Wire"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Not Billing Admin, Can't Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/domain/views/accounting.py corehq/apps/enterprise/views.py
#: corehq/tabs/tabclasses.py
msgid "Billing Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Unpaid"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show Only Unpaid Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show All Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Payment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay the full balance: $"
@@ -16455,14 +16575,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay a portion of the balance:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Please enter an amount that's between $0.50 and $"
@@ -16488,20 +16612,25 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Wire Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Thank you for your payment!"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Thank you for your upcoming wire payment.\n"
@@ -16511,7 +16640,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_billing_info.html
#, python-format
msgid ""
"\n"
@@ -16521,7 +16651,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Clicking the 'Confirm Plan' button below will bring you to a "
@@ -16529,33 +16660,40 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Select different option"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Select different plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Confirm Pause"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Confirm Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Before you pause..."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Downgrading?"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" We'd love to make CommCare work better for you.\n"
@@ -16563,56 +16701,64 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you pausing your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you downgrading your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Do you think your project may start again?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Could you indicate which new tool you’re using?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you switching to a new tool?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please specify\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please let us know any other feedback you have\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16620,11 +16766,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
msgid "— which matches your current feature usage."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16632,7 +16780,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16642,31 +16791,36 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
msgid "Current Subscription"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/styleguide/examples/bootstrap5/select2_manual_form.py
msgid "Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Your Subscription is Paused\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid " Day Trial"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16676,7 +16830,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16687,7 +16842,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Note: This subscription will not be "
@@ -16695,22 +16851,28 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Got questions about your plan?"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Talk to Sales"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Change Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16718,7 +16880,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16726,104 +16889,129 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Started"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Ending"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Begins"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Subscription Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Plan Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "General Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Generate Prepayment Invoice"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Not Billing Admin, Can't Add Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Usage Summary"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Feature"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Use"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Included in Software Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Usage"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepayment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"One credit is equivalent to one USD. Credits are applied to monthly invoices"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Please enter an amount that's either $0 or greater than "
@@ -16831,11 +17019,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Total Credits"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Thank you! You will receive an invoice via email with instructions for "
@@ -16844,17 +17034,360 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid "Domain Temporarily Unavailable"
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid ""
"The page you requested is currently unavailable due to a\n"
" data migration. Please check back later."
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+#, python-format
+msgid ""
+"\n"
+" %(feature_name)s is only available to projects\n"
+" subscribed to %(plan_name)s plan or higher.\n"
+" To access this feature, you must subscribe to the\n"
+" %(plan_name)s plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid ""
+"\n"
+" You must be a Project Administrator to make Subscription changes.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Read more about our plans"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Change My Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load EVERYTHING"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load Property"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_subscription_management.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_subscription_management.html
+#, python-format
+msgid ""
+"\n"
+"
\n"
+" This page is visible to Dimagi employees only (you have an @dimagi.com "
+"email address). You can use this page\n"
+" to set up a subscription for this project space.\n"
+"\n"
+" Use this tool only for projects that are:\n"
+"
\n"
+"
an internal test project
\n"
+"
part of a contracted project
\n"
+"
a short term extended trial for biz dev
\n"
+"
\n"
+" \n"
+"\n"
+"
\n"
+" Your project is currently subscribed to %(plan_name)s.\n"
+"
\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Could not update!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Last Activity"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Activated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Deactivated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#, python-format
+msgid ""
+"\n"
+" You are renewing your %(p)s subscription.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
+#: corehq/apps/registration/forms.py
+#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
+#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
+#: corehq/apps/settings/forms.py
+#: corehq/apps/userreports/reports/builder/forms.py
+msgid "Next"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/settings/views.py
+msgid "My Projects"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "Accept All Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "My Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "90 day refund policy"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "monthly"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "discounted"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be downgrading to\n"
+" on\n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be pausing on \n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Current Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/views/accounting.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
+msgid "Select Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Pause Subscription\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" What happens after you pause?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will lose access to your project space, but you will be\n"
+" able to re-subscribe anytime in the future.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will no longer be billed.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription is currently paused.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Your subscription is currently paused because you have\n"
+" past-due invoices.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will not be allowed to un-pause your project until\n"
+" these invoices are paid.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be pausing on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be downgrading to\n"
+" on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You are currently on the FREE CommCare Community plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Dismiss"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Saved Credit Cards"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Add Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Credit Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Your request was successful!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Delete Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid ""
+"\n"
+" Actually remove "
+"strong> card\n"
+" ************"
+"strong>?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Remove Autopay"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Set as autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually. \n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16863,7 +17396,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16871,14 +17405,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
msgid ""
"\n"
" Accept Invitation\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16888,7 +17424,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
msgid ""
"\n"
" CommCare HQ is a data management tool used by over 500 organizations\n"
@@ -16898,7 +17434,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16908,6 +17445,16 @@ msgid ""
" "
msgstr ""
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
+msgid ""
+"\n"
+" CommCare HQ is a data management tool used by over 500 organizations\n"
+" to help frontline workers around the world.\n"
+" Learn "
+"more about CommCare. \n"
+" "
+msgstr ""
+
#: corehq/apps/domain/templates/domain/email/domain_invite.txt
#: corehq/apps/registration/templates/registration/email/mobile_worker_confirm_account.txt
msgid "Hey there,"
@@ -17163,93 +17710,23 @@ msgid ""
"org/.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-#, python-format
-msgid ""
-"\n"
-" %(feature_name)s is only available to projects\n"
-" subscribed to %(plan_name)s plan or higher.\n"
-" To access this feature, you must subscribe to the\n"
-" %(plan_name)s plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid ""
-"\n"
-" You must be a Project Administrator to make Subscription changes.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Read more about our plans"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Change My Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load EVERYTHING"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load Property"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_subscription_management.html
-#, python-format
-msgid ""
-"\n"
-"
\n"
-" This page is visible to Dimagi employees only (you have an @dimagi.com "
-"email address). You can use this page\n"
-" to set up a subscription for this project space.\n"
-"\n"
-" Use this tool only for projects that are:\n"
-"
\n"
-"
an internal test project
\n"
-"
part of a contracted project
\n"
-"
a short term extended trial for biz dev
\n"
-"
\n"
-" \n"
-"\n"
-"
\n"
-" Your project is currently subscribed to %(plan_name)s.\n"
-"
\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Could not update!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Last Activity"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Activated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Deactivated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "Use the Creative Commons website"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "to choose a Creative Commons license."
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Wire Payment Information"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid ""
"\n"
" Dimagi accepts wire payments via ACH and wire transfer. You "
@@ -17262,271 +17739,156 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Invoice Recipients"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Please agree to the Privacy Policy."
msgstr ""
-#: corehq/apps/domain/templates/domain/pro_bono/page_content.html
-msgid ""
-"Thank you for your submission. A representative will be in contact with you "
-"shortly."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#, python-format
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" You are renewing your %(p)s subscription.\n"
-" "
+" This license doesn't cover all your multimedia.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
-#: corehq/apps/registration/forms.py
-#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
-#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
-#: corehq/apps/settings/forms.py
-#: corehq/apps/userreports/reports/builder/forms.py
-msgid "Next"
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "More info..."
msgstr ""
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/settings/views.py
-msgid "My Projects"
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "Select a more restrictive license"
msgstr ""
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "Accept All Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "My Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Save close to 20%% when you pay annually.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "90 day refund policy"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "monthly"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "discounted"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be downgrading to\n"
-" on\n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be pausing on \n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Current Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/views/accounting.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
-msgid "Select Plan"
+" Since you've opted to publish your multimedia along with your "
+"app,\n"
+" you must select a license that is more restrictive than the "
+"multimedia in the app.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Pause Subscription\n"
+" To satisfy this condition, you can either decide not to publish "
+"the multimedia\n"
+" or select one of the following licenses:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap3/page_content.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap5/page_content.html
msgid ""
-"\n"
-" What happens after you pause?\n"
-" "
+"Thank you for your submission. A representative will be in contact with you "
+"shortly."
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will lose access to your project space, but you will be\n"
-" able to re-subscribe anytime in the future.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Error details"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will no longer be billed.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Log In"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription is currently paused.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/login.html
+msgid "Log In :: CommCare HQ"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
-msgid ""
-"\n"
-" Your subscription is currently paused because you have\n"
-" past-due invoices.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset Confirmation"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will not be allowed to un-pause your project until\n"
-" these invoices are paid.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
+#: corehq/apps/users/forms.py
+msgid "Reset Password"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription will be pausing on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+msgid "Reset Password Unsuccessful"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Your subscription will be downgrading to\n"
-" on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
+" The password reset link was invalid, possibly because\n"
+" it has already been used.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" You are currently on the FREE CommCare Community plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Dismiss"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Saved Credit Cards"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Add Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Credit Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Your request was successful!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Delete Card"
+" Please request a new password reset.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Actually remove "
-"strong> card\n"
-" ************"
-"strong>?\n"
+" Request Password Reset\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Remove Autopay"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Set as autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Error details"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Log In"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/login.html
-msgid "Log In :: CommCare HQ"
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"\n"
" No account? Sign up today, it's free!\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Learn more"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"about how CommCare HQ can be your mobile solution for your frontline "
"workforce."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
#, python-format
msgid "Request Access to %(hr_name)s"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Sign Up"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
msgid ""
"\n"
" We will email instructions to you for resetting your "
@@ -17534,15 +17896,6 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/users/forms.py
-msgid "Reset Password"
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/urls.py
msgid "Password Change Complete"
@@ -17555,7 +17908,8 @@ msgstr ""
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap3/base_navigation.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap5/base_navigation.html
msgid "Sign In"
@@ -17566,37 +17920,6 @@ msgstr ""
msgid "Password Reset Complete"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset Confirmation"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid "Reset Password Unsuccessful"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" The password reset link was invalid, possibly because\n"
-" it has already been used.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Please request a new password reset.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Request Password Reset\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
msgid "Password Reset Requested"
msgstr ""
@@ -17638,21 +17961,20 @@ msgstr ""
msgid "--The CommCare HQ Team"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_forms.html
msgid "Forgot your password?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid ""
"Backup tokens can be used when your primary and backup\n"
" phone numbers aren't available. The backup tokens below can be used\n"
@@ -17661,29 +17983,37 @@ msgid ""
" below will be valid."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Print these tokens and keep them somewhere safe."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "You don't have any backup codes yet."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Begin Using CommCare Now"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Back to Profile"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Generate Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We are calling your phone right now, please enter the\n"
@@ -17691,7 +18021,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We sent you a text message, please enter the tokens we\n"
@@ -17699,7 +18030,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the tokens generated by your token\n"
@@ -17707,50 +18039,61 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the token given to you by your domain administrator.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Looks like your CommCare session has expired."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please log in again to continue working."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below to continue."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "You will be transferred to your original destination after you sign in."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Or, alternatively, use one of your backup phones:"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Please contact your domain administrator if you need a backup token."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Use Backup Token"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid "Please set up Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" For security purposes, your CommCare administrator has required that "
@@ -17761,7 +18104,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" To access your account, please enable two-factor authentication "
@@ -17769,71 +18113,87 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/file_download.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/file_download.html
msgid "Go back"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Enable Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid "Add Backup Phone"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"Your backup phone number will be used if your primary method of registration "
"is not available. Please enter a valid phone number."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"We've sent a token to your phone number. Please enter the token you've "
"received."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Follow the steps in this wizard to enable two-factor authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Please select which authentication method you would like to use."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To start using a token generator, please use your smartphone to scan the QR "
"code below. For example, use Google Authenticator. Then, enter the token "
"generated by the app."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to receive the text messages on. This "
"number will be validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to be called on. This number will be "
"validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We are calling your phone right now, please enter the digits you hear."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We sent you a text message, please enter the tokens we sent."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"We've encountered an issue with the selected authentication method. Please "
"go back and verify that you entered your information correctly, try again, "
@@ -17841,44 +18201,52 @@ msgid ""
"contact the site administrator."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To identify and verify your YubiKey, please insert a token in the field "
"below. Your YubiKey will be linked to your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid ""
"Congratulations, you've successfully enabled two-factor\n"
" authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "To enable account recovery, generate backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Generate Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid "Remove Two-factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid ""
"You are about to remove two-factor authentication. This\n"
" compromises your account security, are you sure?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" Two-Factor Authentication is not managed here.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17888,32 +18256,38 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Phone Numbers"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If your primary method is not available, we are able to\n"
" send backup tokens to the phone numbers listed below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Unregister"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/sms/templates/sms/add_gateway.html
msgid "Add Phone Number"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If you don't have any device with you, you can access\n"
" your account using backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17926,27 +18300,32 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Show Codes"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/settings/views.py
msgid "Remove Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"We strongly discourage this, but if absolutely necessary "
"you can\n"
" remove two-factor authentication from your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Reset Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" This will remove your current two-factor authentication, and "
@@ -17957,7 +18336,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"Two-factor authentication is not enabled for your\n"
" account. Enable two-factor authentication for enhanced account\n"
@@ -18902,10 +19282,6 @@ msgstr ""
msgid "Enterprise Dashboard: {}"
msgstr ""
-#: corehq/apps/enterprise/templates/enterprise/enterprise_dashboard.html
-msgid "Email Report"
-msgstr ""
-
#: corehq/apps/enterprise/templates/enterprise/enterprise_permissions.html
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
msgid "Enterprise Permissions"
@@ -18966,8 +19342,31 @@ msgstr ""
msgid "No project spaces found."
msgstr ""
+#: corehq/apps/enterprise/templates/enterprise/partials/project_tile.html
+msgid "Email Report"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Platform Overview for {}"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
+msgid "Platform Overview"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
+#: corehq/apps/sso/forms.py
+msgid "Enterprise Console"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Security Center for {}"
+msgstr ""
+
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
-msgid "Enterprise Dashboard"
+msgid "Security Center"
msgstr ""
#: corehq/apps/enterprise/views.py corehq/apps/reports/views.py
@@ -18985,13 +19384,6 @@ msgstr ""
msgid "Enterprise Settings"
msgstr ""
-#: corehq/apps/enterprise/views.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
-#: corehq/apps/sso/forms.py
-msgid "Enterprise Console"
-msgstr ""
-
#: corehq/apps/enterprise/views.py
msgid "Enterprise permissions have been disabled."
msgstr ""
@@ -19115,11 +19507,11 @@ msgstr ""
msgid "Event in progress"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19129,15 +19521,15 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Update Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Delete Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19146,7 +19538,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19156,14 +19548,14 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid ""
"\n"
" This action cannot be undone.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" Known potential attendees who can be invited to participate in "
@@ -19172,42 +19564,42 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Create Potential Attendee"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Enable Mobile Worker Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "New Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "Pending..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "NEW"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "ERROR"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Loading potential attendees ..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid ""
"\n"
@@ -19219,21 +19611,21 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" You currently have no potential attendees.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" No matching potential attendees found.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid ""
"\n"
" Attendance tracking events can be used to track attendance of all "
@@ -19241,31 +19633,31 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Add new event"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "View Attendees"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "No Attendees Yet"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Date Attended"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Attendee Name"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Event has not yet started"
msgstr ""
-#: corehq/apps/events/templates/new_event.html
+#: corehq/apps/events/templates/events/new_event.html
msgid ""
"\n"
" There was a problem fetching the list of attendees and attendance "
@@ -22155,7 +22547,7 @@ msgid ""
msgstr ""
#: corehq/apps/geospatial/forms.py
-msgid "Case Grouping Parameters"
+msgid "Case Clustering Map Parameters"
msgstr ""
#: corehq/apps/geospatial/forms.py
@@ -22238,7 +22630,7 @@ msgid "Driving"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Management Map"
+msgid "Microplanning Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22258,7 +22650,7 @@ msgid "name"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Grouping"
+msgid "Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22285,11 +22677,11 @@ msgid "Link"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Lock Case Grouping for Me"
+msgid "Lock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Unlock Case Grouping for Me"
+msgid "Unlock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22297,7 +22689,7 @@ msgid "Export Groups"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Summary of Case Grouping"
+msgid "Summary of Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22567,6 +22959,35 @@ msgstr ""
msgid "You are about to delete this saved area"
msgstr ""
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain were not processed to be available in "
+"Microplanning reports\n"
+" because there were too many to be processed. New or updated cases "
+"will still be available\n"
+" for use for Microplanning. Please reach out to support if you need "
+"support with existing cases.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Oops! Something went wrong while processing existing cases to be "
+"available in Microplanning\n"
+" reports. Please reach out to support.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain are being processed to be available in\n"
+" Microplanning reports. Please be patient.\n"
+" "
+msgstr ""
+
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
msgid "Review Assignment Results"
msgstr ""
@@ -22909,7 +23330,7 @@ msgid ""
" For all active mobile workers in this group, and for "
"each phone number, this will\n"
" initiate an SMS verification workflow. When a user "
-"replies to the SMS< their phone\n"
+"replies to the SMS, their phone\n"
" number will be verified.
If the phone number "
"is already verified or\n"
" if the phone number is already in use by another "
@@ -24649,6 +25070,13 @@ msgstr ""
msgid "Server Error Encountered"
msgstr ""
+#: corehq/apps/hqwebapp/templates/hqwebapp/htmx/htmx_action_error.html
+#, python-format
+msgid ""
+"\n"
+" Encountered error \"%(htmx_error)s\" while performing action %(action)s.\n"
+msgstr ""
+
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/domain_list_dropdown.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/domain_list_dropdown.html
msgid "Change Project"
@@ -27623,11 +28051,6 @@ msgstr ""
msgid "Manage Notification"
msgstr ""
-#: corehq/apps/oauth_integrations/views/google.py
-msgid ""
-"Something went wrong when trying to sign you in to Google. Please try again."
-msgstr ""
-
#: corehq/apps/ota/utils.py corehq/apps/users/tasks.py
msgid ""
"Something went wrong in creating restore for the user. Please try again or "
@@ -34055,10 +34478,6 @@ msgstr ""
msgid "Update settings"
msgstr ""
-#: corehq/apps/sms/forms.py
-msgid "Type a username, group name or 'send to all'"
-msgstr ""
-
#: corehq/apps/sms/forms.py
msgid "0 characters (160 max)"
msgstr ""
@@ -34824,10 +35243,6 @@ msgstr ""
msgid "You can't send an empty message"
msgstr ""
-#: corehq/apps/sms/views.py
-msgid "Please remember to separate recipients with a comma."
-msgstr ""
-
#: corehq/apps/sms/views.py
msgid "The following groups don't exist: "
msgstr ""
@@ -40764,6 +41179,26 @@ msgstr ""
msgid "Please select at least one item."
msgstr ""
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: \"%(request_username)s\" will no longer be able to "
+"access or edit \"%(couch_username)s\"\n"
+" if they don't share a location.\n"
+" "
+msgstr ""
+
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: %(user_type)s \"%(couch_username)s\" must have at "
+"least one location assigned.\n"
+" They won't be able to log in otherwise.\n"
+" "
+msgstr ""
+
#: corehq/apps/users/templates/users/partials/manage_phone_numbers.html
msgid ""
"Phone numbers can only contain digits and we were unable to convert yours "
@@ -45405,7 +45840,7 @@ msgid "User Management"
msgstr ""
#: corehq/reports.py
-msgid "Case Mapping"
+msgid "Microplanning"
msgstr ""
#: corehq/tabs/tabclasses.py corehq/tabs/utils.py
@@ -45429,7 +45864,7 @@ msgid "Data Manipulation"
msgstr ""
#: corehq/tabs/tabclasses.py
-msgid "Configure Geospatial Settings"
+msgid "Configure Microplanning Settings"
msgstr ""
#: corehq/tabs/tabclasses.py
diff --git a/locale/pt/LC_MESSAGES/djangojs.po b/locale/pt/LC_MESSAGES/djangojs.po
index 4c154be6613b..d71c1b9de2ad 100644
--- a/locale/pt/LC_MESSAGES/djangojs.po
+++ b/locale/pt/LC_MESSAGES/djangojs.po
@@ -1167,7 +1167,7 @@ msgid "no formatting"
msgstr ""
#: corehq/apps/app_manager/static/app_manager/js/vellum/src/main-components.js
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Custom"
msgstr ""
@@ -3087,24 +3087,28 @@ msgstr ""
msgid "Sorry, it looks like the upload failed."
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Payment"
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Invoice Request"
msgstr ""
-#: corehq/apps/domain/static/domain/js/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/case_search.js
msgid "You have unchanged settings"
msgstr ""
-#: corehq/apps/domain/static/domain/js/current_subscription.js
-msgid "Buy Credits"
+#: corehq/apps/domain/static/domain/js/bootstrap3/info_basic.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/info_basic.js
+msgid "Select a Timezone..."
msgstr ""
-#: corehq/apps/domain/static/domain/js/info_basic.js
-msgid "Select a Timezone..."
+#: corehq/apps/domain/static/domain/js/current_subscription.js
+msgid "Buy Credits"
msgstr ""
#: corehq/apps/domain/static/domain/js/internal_settings.js
@@ -3150,42 +3154,42 @@ msgid ""
"the project space as a member in order to override your timezone."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
+msgid ""
+"Do not allow new users to sign up on commcarehq.org. This may take up to an "
+"hour to take effect. This will affect users with email addresses from "
+"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
+msgstr ""
+
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Last 30 Days"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
#: corehq/apps/hqwebapp/static/hqwebapp/js/tempus_dominus.js
msgid "Previous Month"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Spans <%- startDate %> to <%- endDate %> (UTC)"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error updating display total, please try again or report an issue if this "
"persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "??"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error sending email, please try again or report an issue if this persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
-msgid ""
-"Do not allow new users to sign up on commcarehq.org. This may take up to an "
-"hour to take effect. This will affect users with email addresses from "
-"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
-msgstr ""
-
#: corehq/apps/events/static/events/js/event_attendees.js
msgid "Disable Mobile Worker Attendees"
msgstr ""
@@ -3338,6 +3342,10 @@ msgstr ""
msgid "Sensitive Date"
msgstr ""
+#: corehq/apps/fixtures/static/fixtures/js/lookup-manage.js
+msgid "Can not create table with ID '<%= tag %>'. Table IDs should be unique."
+msgstr ""
+
#: corehq/apps/geospatial/static/geospatial/js/case_grouping_map.js
msgid "No group"
msgstr ""
@@ -4090,35 +4098,6 @@ msgstr ""
msgid "label-info-light"
msgstr ""
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords to copy"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Search keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/users/static/users/js/roles.js
-msgid "Linked Project Spaces"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Projects to copy to"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Search projects"
-msgstr ""
-
#: corehq/apps/reports/static/reports/js/bootstrap3/base.js
#: corehq/apps/reports/static/reports/js/bootstrap5/base.js
#: corehq/apps/userreports/static/userreports/js/configurable_report.js
@@ -4440,11 +4419,11 @@ msgstr ""
msgid "(filtered from _MAX_ total contacts)"
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "There was an error fetching the SMS rate."
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "Please Select a Country Code"
msgstr ""
@@ -4603,6 +4582,16 @@ msgstr ""
msgid "Linked projects"
msgstr ""
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Projects to copy to"
+msgstr ""
+
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Search projects"
+msgstr ""
+
#: corehq/apps/userreports/static/userreports/js/expression_evaluator.js
msgid "Unknown error"
msgstr ""
@@ -4906,6 +4895,10 @@ msgstr ""
msgid "Multi-Environment Release Management"
msgstr ""
+#: corehq/apps/users/static/users/js/roles.js
+msgid "Linked Project Spaces"
+msgstr ""
+
#: corehq/apps/users/static/users/js/roles.js
msgid "Allow role to configure linked project spaces"
msgstr ""
diff --git a/locale/sw/LC_MESSAGES/django.po b/locale/sw/LC_MESSAGES/django.po
index 49f4682bd166..fc380ac6fd83 100644
--- a/locale/sw/LC_MESSAGES/django.po
+++ b/locale/sw/LC_MESSAGES/django.po
@@ -28,7 +28,8 @@ msgstr ""
#: corehq/apps/accounting/filters.py
#: corehq/apps/app_manager/templates/app_manager/partials/bulk_upload_app_translations.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/geospatial/filters.py
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
@@ -292,8 +293,10 @@ msgstr ""
#: corehq/apps/builds/templates/builds/all.html
#: corehq/apps/builds/templates/builds/edit_menu.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/translations_coverage.html
msgid "Version"
msgstr ""
@@ -450,9 +453,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
#: corehq/apps/enterprise/enterprise.py corehq/apps/events/forms.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -494,7 +498,8 @@ msgid "Company / Organization"
msgstr ""
#: corehq/apps/accounting/forms.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
#: corehq/apps/reminders/forms.py corehq/apps/reports/standard/deployments.py
#: corehq/apps/reports/standard/sms.py
@@ -908,8 +913,10 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/accounting_admins.html
#: corehq/apps/data_interfaces/templates/data_interfaces/manage_case_groups.html
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/partials/manage_downstream_domains.html
#: corehq/apps/locations/templates/locations/location_types.html
@@ -964,11 +971,13 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
#: corehq/apps/enterprise/templates/enterprise/partials/date_range_modal.html
-#: corehq/apps/events/templates/edit_attendee.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/edit_attendee.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/dialogs/bulk_delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
@@ -1453,9 +1462,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_run_history.html
#: corehq/apps/data_interfaces/views.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/enterprise/enterprise.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/events/views.py
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/standard/cases/basic.py
@@ -2547,7 +2557,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/invoice.html
#: corehq/apps/app_execution/templates/app_execution/workflow_list.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/app_release_logs.html
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
#: corehq/apps/hqadmin/reports.py corehq/apps/linked_domain/views.py
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/reports/standard/deployments.py
@@ -2777,7 +2788,8 @@ msgid "Add New Credit Card"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/new_stripe_card_template.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
msgid "Processing your request"
msgstr ""
@@ -2847,12 +2859,14 @@ msgid "Save"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Monthly"
msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/renew_plan_selection.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Pay Annually"
msgstr ""
@@ -2939,7 +2953,8 @@ msgstr ""
#: corehq/apps/accounting/templates/accounting/partials/subscriptions_tab.html
#: corehq/apps/app_execution/templates/app_execution/components/title_bar.html
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_properties.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
#: corehq/apps/locations/templates/locations/manage/location_template.html
@@ -3160,8 +3175,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/case_list_lookup.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqmedia/templates/hqmedia/partials/reference_table.html
#: corehq/apps/registry/templates/registry/partials/audit_logs.html
#: corehq/apps/registry/templates/registry/registry_edit.html
@@ -3547,7 +3564,8 @@ msgstr ""
#: corehq/apps/data_interfaces/forms.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/views.py
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
#: corehq/apps/geospatial/templates/geospatial/gps_capture.html
#: corehq/apps/registry/templates/registry/registry_edit.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/scheduled_reports_table.html
@@ -3623,8 +3641,10 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/list_case_groups.html
#: corehq/apps/data_interfaces/templates/data_interfaces/list_deduplication_rules.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/auto_update_rule_list.html
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
#: corehq/apps/export/templates/export/dialogs/delete_custom_export_dialog.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/fixtures/templates/fixtures/manage_tables.html
@@ -3977,8 +3997,10 @@ msgstr ""
#: corehq/apps/app_manager/fields.py
#: corehq/apps/cloudcare/templates/cloudcare/config.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/linked_domain/const.py
#: corehq/apps/reports/filters/forms.py corehq/apps/reports/filters/select.py
#: corehq/apps/reports/standard/deployments.py
@@ -4281,7 +4303,6 @@ msgstr ""
#: corehq/apps/app_manager/helpers/validators.py
#: corehq/apps/data_interfaces/templates/data_interfaces/edit_deduplication_rule.html
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case property"
msgstr ""
@@ -4875,7 +4896,8 @@ msgid "Enable Menu Display Setting Per-Module"
msgstr ""
#: corehq/apps/app_manager/static_strings.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/enterprise/templates/enterprise/partials/enterprise_permissions_table.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqadmin/forms.py
@@ -5091,7 +5113,8 @@ msgid "No Validation"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -5579,7 +5602,8 @@ msgid "XXX-High Density"
msgstr ""
#: corehq/apps/app_manager/static_strings.py corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/reports/standard/sms.py
#: corehq/apps/reports/templates/reports/bootstrap3/tableau_visualization.html
#: corehq/apps/reports/templates/reports/bootstrap5/tableau_visualization.html
@@ -6283,7 +6307,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/odk_install.html
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_tab_advanced.html
#: corehq/apps/app_manager/templates/app_manager/partials/releases/releases_deploy_modal.html
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/export/templates/export/partials/export_download_progress.html
#: corehq/apps/export/templates/export/partials/table.html
#: corehq/apps/hqmedia/templates/hqmedia/audio_translator.html
@@ -6325,11 +6350,15 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
#: corehq/apps/data_interfaces/templates/data_interfaces/interfaces/case_management.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/export/templates/export/dialogs/process_deleted_questions.html
#: corehq/apps/export/templates/export/dialogs/process_deprecated_properties.html
#: corehq/apps/export/templates/export/partials/table.html
@@ -8077,8 +8106,10 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/forms/form_workflow.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_detail.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/case_list/multi_select_continue_button.html
-#: corehq/apps/domain/templates/domain/confirm_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/messaging/scheduling/templates/scheduling/partials/conditional_alert_continue.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/start.html
#: corehq/messaging/smsbackends/telerivet/templates/telerivet/partials/step1.html
@@ -9414,7 +9445,8 @@ msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/mobile_report_configs.html
#: corehq/apps/data_dictionary/templates/data_dictionary/base.html
#: corehq/apps/data_dictionary/views.py
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/export/templates/export/download_data_files.html
#: corehq/apps/fixtures/templates/fixtures/partials/edit_table_modal.html
@@ -9492,7 +9524,8 @@ msgid ""
msgstr ""
#: corehq/apps/app_manager/templates/app_manager/partials/modules/module_actions.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
#: corehq/apps/registration/templates/registration/partials/start_trial_modal.html
#: corehq/apps/reports/templates/reports/partials/bootstrap3/description.html
#: corehq/apps/reports/templates/reports/partials/bootstrap5/description.html
@@ -11493,7 +11526,6 @@ msgid "Case Type to Update/Create"
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
-#: corehq/apps/domain/templates/domain/admin/partials/case_search_templates.html
msgid "Case type"
msgstr ""
@@ -11536,8 +11568,10 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/excel_config.html
#: corehq/apps/case_importer/templates/case_importer/excel_fields.html
#: corehq/apps/domain/templates/error.html
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/export/templates/export/customize_export_new.html
#: corehq/apps/registration/forms.py corehq/apps/settings/forms.py
msgid "Back"
@@ -11701,19 +11735,21 @@ msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" row had an invalid\n"
-" \"\" cell and was not "
+" row had an "
+"invalid\n"
+" \"\" cell and was not "
"saved\n"
-" "
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
msgid ""
"\n"
-" rows had invalid\n"
-" \"\" cells and were not "
-"saved\n"
-" "
+" rows had "
+"invalid\n"
+" \"\" cells and were "
+"not saved\n"
+" "
msgstr ""
#: corehq/apps/case_importer/templates/case_importer/partials/ko_import_status.html
@@ -11856,7 +11892,7 @@ msgid "{param} must be a string"
msgstr ""
#: corehq/apps/case_search/models.py
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/locations/templates/locations/manage/location.html
#: corehq/apps/reports/filters/users.py corehq/apps/users/models.py
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -11928,7 +11964,8 @@ msgstr ""
#: corehq/apps/cloudcare/templates/cloudcare/partials/form_entry/entry_geo.html
#: corehq/apps/cloudcare/templates/cloudcare/partials/query/list.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/reports/filters/simple.py
#: corehq/apps/reports/standard/cases/filters.py
#: corehq/apps/sms/templates/sms/chat_contacts.html
@@ -11938,7 +11975,8 @@ msgstr ""
#: corehq/apps/case_search/templates/case_search/case_search.html
#: corehq/apps/custom_data_fields/edit_entity.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/users/templates/users/enterprise_users.html
msgid "Profile"
msgstr ""
@@ -12144,6 +12182,14 @@ msgid ""
"\"YYYY-mm-dd\""
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "{} is not a valid datetime"
+msgstr ""
+
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Invalid datetime value. Must be a number or a ISO 8601 string."
+msgstr ""
+
#: corehq/apps/case_search/xpath_functions/value_functions.py
#, python-brace-format
msgid ""
@@ -12162,6 +12208,10 @@ msgid ""
"add\" function"
msgstr ""
+#: corehq/apps/case_search/xpath_functions/value_functions.py
+msgid "Cannot convert {} to a double"
+msgstr ""
+
#: corehq/apps/cloudcare/api.py
#, python-format
msgid "Not found application by name: %s"
@@ -14275,7 +14325,8 @@ msgid ""
msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/explore_case_data.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
#: corehq/apps/export/templates/export/partials/new_customize_export_templates.html
#: corehq/apps/linked_domain/templates/linked_domain/domain_links.html
#: corehq/apps/translations/forms.py
@@ -14696,7 +14747,8 @@ msgstr ""
#: corehq/apps/data_interfaces/templates/data_interfaces/partials/case_rule_criteria.html
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
#: corehq/apps/events/forms.py corehq/apps/events/views.py
#: corehq/apps/geospatial/templates/geospatial/case_management.html
#: corehq/apps/hqwebapp/doc_info.py corehq/apps/locations/forms.py
@@ -15706,7 +15758,8 @@ msgid ""
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/paused_plan_notice.html
#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/paused_plan_notice.html
#: corehq/apps/users/templates/users/mobile_workers.html
@@ -15714,7 +15767,8 @@ msgid "Subscribe to Plan"
msgstr ""
#: corehq/apps/domain/forms.py
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Renew Plan"
msgstr ""
@@ -15917,45 +15971,379 @@ msgstr ""
msgid "There has been a transfer of ownership of {domain}"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Transfer project ownership"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "SMS Keyword"
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#, python-format
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/commtrack_action_table.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/commtrack_action_table.html
+msgid "Action Type"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/edit_alert.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/edit_alert.html
+msgid "Edit Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
+msgid "Feature Previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "What are Feature Previews?"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" By clicking \"accept\" below you acknowledge that you accept "
-"full ownership of this project space (\"%(domain)s\").\n"
-" You agree to be bound by the terms of Dimagi's Terms of Service and "
-"Business Agreement.\n"
-" By accepting this agreement, your are acknowledging you have "
-"permission and authority to accept these terms. A Dimagi representative will "
-"notify you when the transfer is complete.\n"
+" Before we invest in making certain product features generally\n"
+" available, we release them as Feature Previews to learn the\n"
+" following two things from usage data and qualitative feedback.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Perceived Value:\n"
+" The biggest risk in product development is to\n"
+" build something that offers little value to our users. As "
+"such,\n"
+" we make Feature Previews generally available only if they "
+"have\n"
+" high perceived value.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-#: corehq/apps/registry/templates/registry/registry_list.html
-msgid "Accept"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" User Experience:\n"
+" Even if a feature has high perceived value,\n"
+" it is important that the user experience of the feature is\n"
+" optimized such that our users actually receive the value.\n"
+" As such, we make high value Feature Previews generally\n"
+" available after we optimize the user experience.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
-msgid "Decline"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Feature Previews are in active product development, therefore\n"
+" should not be used for business critical workflows. We encourage\n"
+" you to use Feature Previews and provide us feedback, however\n"
+" please note that Feature Previews:\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
msgid ""
"\n"
-" Sorry this transfer request has expired.\n"
+" May not be optimized for performance\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not supported by the CommCare Support Team\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" May change at any time without notice\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/calendar_fixture.html
-msgid "Calendar Fixture Settings"
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Are not subject to any warranties on current and future\n"
+" availability. Please refer to our\n"
+" terms to\n"
+" learn more.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" Looking for something that used to be here?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid ""
+"\n"
+" The feature flags Control Mapping in Case List"
+"strong>,\n"
+" Custom Calculations in Case List, "
+"Custom\n"
+" Single and Multiple Answer Questions, and Icons "
+"in\n"
+" Case List are now add-ons for individual apps. To turn\n"
+" them on, go to the application's settings and choose the\n"
+" Add-Ons tab.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Update previews"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+msgid "Feature Name"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/feature_previews.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/feature_previews.html
+#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
+msgid "More information"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "SMS Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/userreports/views.py
+msgid "Pricing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" View SMS prices for using Dimagi's connections in each country.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" You can choose a connection for your project under Messaging -> SMS "
+"Connectivity\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Calculating SMS Rate...\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Connection"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Incoming"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
+#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
+#: corehq/messaging/scheduling/views.py
+msgid "Outgoing"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid "Your own Android Gateway"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/global_sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/global_sms_rates.html
+msgid ""
+"\n"
+" Pricing is per message sent or received. Fees are subject to change "
+"based on provider rates and exchange rates and are computed at the time the "
+"SMS is sent or received.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/location_fixture.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/location_fixture.html
+msgid "Location Fixture Settings"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "Add New Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Available Alerts"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "You can only have 3 alerts activated at any one time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
+#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
+msgid "Start Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "End Time"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Added By"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "Activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
+msgid "De-activate Alert"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/manage_alerts.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/manage_alerts.html
+msgid "No alerts added yet for the project."
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Measure"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Sequence Number"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "App Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "CC Versions"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+#: corehq/apps/users/templates/users/edit_commcare_user.html
+msgid "Created On"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "Notes"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/recovery_measures_history.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/recovery_measures_history.html
+msgid "No measures have been initiated for this application"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Use this form to get a cost estimation per 160 character SMS,\n"
+" given a connection, direction,\n"
+" and country code.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" The fee will be applied to the most specific criteria available.\n"
+" A fee for a specific country code (if available) will be used\n"
+" over the default of 'Any Country'.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/sms_rates.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/sms_rates.html
+msgid ""
+"\n"
+" Fees are subject to change based on updates to each carrier and are\n"
+" computed at the time the SMS is sent.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain.html
+msgid ""
+"\n"
+" Use this to transfer your project to another user.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+#, python-format
+msgid ""
+"\n"
+" You have a pending transfer with %(username)s\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid ""
+"\n"
+" Resend Transfer Request\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/admin/bootstrap3/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/admin/bootstrap5/transfer_domain_pending.html
+msgid "Cancel Transfer"
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16024,9 +16412,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update case search data immediately on web apps form "
+" Update case search data immediately on web apps form "
"submission.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16044,9 +16432,9 @@ msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
msgid ""
"\n"
-" Update local case data immediately before entering a web "
+" Update local case data immediately before entering a web "
"apps form.\n"
-" "
+" "
msgstr ""
#: corehq/apps/domain/templates/domain/admin/case_search.html
@@ -16075,302 +16463,6 @@ msgstr ""
msgid "Add case property"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "SMS Keyword"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/commtrack_action_table.html
-msgid "Action Type"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/edit_alert.html
-msgid "Edit Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/domain/views/settings.py corehq/apps/linked_domain/const.py
-msgid "Feature Previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "What are Feature Previews?"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Before we invest in making certain product features generally\n"
-" available, we release them as Feature Previews to learn the\n"
-" following two things from usage data and qualitative feedback.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Perceived Value:\n"
-" The biggest risk in product development is to\n"
-" build something that offers little value to our users. As "
-"such,\n"
-" we make Feature Previews generally available only if they "
-"have\n"
-" high perceived value.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" User Experience:\n"
-" Even if a feature has high perceived value,\n"
-" it is important that the user experience of the feature is\n"
-" optimized such that our users actually receive the value.\n"
-" As such, we make high value Feature Previews generally\n"
-" available after we optimize the user experience.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Feature Previews are in active product development, therefore\n"
-" should not be used for business critical workflows. We encourage\n"
-" you to use Feature Previews and provide us feedback, however\n"
-" please note that Feature Previews:\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May not be optimized for performance\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not supported by the CommCare Support Team\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" May change at any time without notice\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Are not subject to any warranties on current and future\n"
-" availability. Please refer to our\n"
-" terms to\n"
-" learn more.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" Looking for something that used to be here?\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid ""
-"\n"
-" The feature flags Control Mapping in Case List"
-"strong>,\n"
-" Custom Calculations in Case List, "
-"Custom\n"
-" Single and Multiple Answer Questions, and Icons "
-"in\n"
-" Case List are now add-ons for individual apps. To turn\n"
-" them on, go to the application's settings and choose the\n"
-" Add-Ons tab.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Update previews"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-msgid "Feature Name"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/feature_previews.html
-#: corehq/apps/toggle_ui/templates/toggle/edit_flag.html
-msgid "More information"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "SMS Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/userreports/views.py
-msgid "Pricing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" View SMS prices for using Dimagi's connections in each country.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" You can choose a connection for your project under Messaging -> SMS "
-"Connectivity\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Calculating SMS Rate...\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Connection"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Incoming"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-#: corehq/apps/enterprise/interface.py corehq/apps/reports/standard/sms.py
-#: corehq/apps/smsbillables/forms.py corehq/apps/smsbillables/interface.py
-#: corehq/messaging/scheduling/views.py
-msgid "Outgoing"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid "Your own Android Gateway"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/global_sms_rates.html
-msgid ""
-"\n"
-" Pricing is per message sent or received. Fees are subject to change "
-"based on provider rates and exchange rates and are computed at the time the "
-"SMS is sent or received.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/location_fixture.html
-msgid "Location Fixture Settings"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "Add New Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Available Alerts"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "You can only have 3 alerts activated at any one time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap3/survey_detail.html
-#: corehq/apps/reports/templates/reports/messaging/bootstrap5/survey_detail.html
-msgid "Start Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "End Time"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Added By"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "Activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/maintenance_alerts.html
-msgid "De-activate Alert"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/manage_alerts.html
-msgid "No alerts added yet for the project."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Measure"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Sequence Number"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "App Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "CC Versions"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-#: corehq/apps/users/templates/users/edit_commcare_user.html
-msgid "Created On"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "Notes"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/recovery_measures_history.html
-msgid "No measures have been initiated for this application"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Use this form to get a cost estimation per 160 character SMS,\n"
-" given a connection, direction,\n"
-" and country code.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" The fee will be applied to the most specific criteria available.\n"
-" A fee for a specific country code (if available) will be used\n"
-" over the default of 'Any Country'.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/admin/sms_rates.html
-msgid ""
-"\n"
-" Fees are subject to change based on updates to each carrier and are\n"
-" computed at the time the SMS is sent.\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/domain/admin/sms_settings.html
msgid "Stock Actions"
msgstr ""
@@ -16383,75 +16475,103 @@ msgstr ""
msgid "Save Settings"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain.html
-msgid ""
-"\n"
-" Use this to transfer your project to another user.\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Transfer project ownership"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
#, python-format
msgid ""
"\n"
-" You have a pending transfer with %(username)s\n"
-" "
+" By clicking \"accept\" below you acknowledge that you accept "
+"full ownership of this project space (\"%(domain)s\").\n"
+" You agree to be bound by the terms of Dimagi's Terms of Service and "
+"Business Agreement.\n"
+" By accepting this agreement, your are acknowledging you have "
+"permission and authority to accept these terms. A Dimagi representative will "
+"notify you when the transfer is complete.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid ""
-"\n"
-" Resend Transfer Request\n"
-" "
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+#: corehq/apps/registry/templates/registry/registry_list.html
+msgid "Accept"
msgstr ""
-#: corehq/apps/domain/templates/domain/admin/transfer_domain_pending.html
-msgid "Cancel Transfer"
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid "Decline"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/activate_transfer_domain.html
+#: corehq/apps/domain/templates/domain/bootstrap5/activate_transfer_domain.html
+msgid ""
+"\n"
+" Sorry this transfer request has expired.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Total Due:"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Pay by Wire"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Not Billing Admin, Can't Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
#: corehq/apps/domain/views/accounting.py corehq/apps/enterprise/views.py
#: corehq/tabs/tabclasses.py
msgid "Billing Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Unpaid"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show Only Unpaid Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Show All Statements"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Make Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Payment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay the full balance: $"
@@ -16459,14 +16579,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Pay a portion of the balance:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Please enter an amount that's between $0.50 and $"
@@ -16492,20 +16616,25 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Wire Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid "Bulk Payment"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Thank you for your payment!"
msgstr ""
-#: corehq/apps/domain/templates/domain/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap3/billing_statements.html
+#: corehq/apps/domain/templates/domain/bootstrap5/billing_statements.html
msgid ""
"\n"
" Thank you for your upcoming wire payment.\n"
@@ -16515,7 +16644,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_billing_info.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_billing_info.html
#, python-format
msgid ""
"\n"
@@ -16525,7 +16655,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Clicking the 'Confirm Plan' button below will bring you to a "
@@ -16533,33 +16664,40 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Select different option"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Select different plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
#: corehq/apps/domain/views/accounting.py
msgid "Confirm Pause"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Confirm Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Before you pause..."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid "Downgrading?"
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" We'd love to make CommCare work better for you.\n"
@@ -16567,56 +16705,64 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you pausing your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you downgrading your subscription today?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Do you think your project may start again?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Could you indicate which new tool you’re using?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Why are you switching to a new tool?\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please specify\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_plan.html
msgid ""
"\n"
" Please let us know any other feedback you have\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16624,11 +16770,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
msgid "— which matches your current feature usage."
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16636,7 +16784,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap3/confirm_subscription_renewal.html
+#: corehq/apps/domain/templates/domain/bootstrap5/confirm_subscription_renewal.html
#, python-format
msgid ""
"\n"
@@ -16646,31 +16795,36 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
msgid "Current Subscription"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
#: corehq/apps/styleguide/examples/bootstrap5/select2_manual_form.py
msgid "Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Your Subscription is Paused\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid " Day Trial"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16680,7 +16834,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16691,7 +16846,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Note: This subscription will not be "
@@ -16699,22 +16855,28 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Got questions about your plan?"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
msgid "Talk to Sales"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#: corehq/apps/domain/views/accounting.py
msgid "Change Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16722,7 +16884,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
#, python-format
msgid ""
"\n"
@@ -16730,104 +16893,129 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Started"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Date Ending"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Begins"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Next Subscription Price"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Subscription Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Plan Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "General Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepay by Credit Card"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Generate Prepayment Invoice"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Not Billing Admin, Can't Add Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credit"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Usage Summary"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Feature"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Use"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Remaining"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Account Credits Available"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Included in Software Plan"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Current Usage"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Prepayment Amount"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"One credit is equivalent to one USD. Credits are applied to monthly invoices"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Please enter an amount that's either $0 or greater than "
@@ -16835,11 +17023,13 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid "Total Credits"
msgstr ""
-#: corehq/apps/domain/templates/domain/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap3/current_subscription.html
+#: corehq/apps/domain/templates/domain/bootstrap5/current_subscription.html
msgid ""
"\n"
" Thank you! You will receive an invoice via email with instructions for "
@@ -16848,17 +17038,360 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid "Domain Temporarily Unavailable"
msgstr ""
-#: corehq/apps/domain/templates/domain/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap3/data_migration_in_progress.html
+#: corehq/apps/domain/templates/domain/bootstrap5/data_migration_in_progress.html
msgid ""
"The page you requested is currently unavailable due to a\n"
" data migration. Please check back later."
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+#, python-format
+msgid ""
+"\n"
+" %(feature_name)s is only available to projects\n"
+" subscribed to %(plan_name)s plan or higher.\n"
+" To access this feature, you must subscribe to the\n"
+" %(plan_name)s plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid ""
+"\n"
+" You must be a Project Administrator to make Subscription changes.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Read more about our plans"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/insufficient_privilege_notification.html
+#: corehq/apps/domain/templates/domain/bootstrap5/insufficient_privilege_notification.html
+msgid "Change My Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load EVERYTHING"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_calculations.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_calculations.html
+msgid "Load Property"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/internal_subscription_management.html
+#: corehq/apps/domain/templates/domain/bootstrap5/internal_subscription_management.html
+#, python-format
+msgid ""
+"\n"
+"
\n"
+" This page is visible to Dimagi employees only (you have an @dimagi.com "
+"email address). You can use this page\n"
+" to set up a subscription for this project space.\n"
+"\n"
+" Use this tool only for projects that are:\n"
+"
\n"
+"
an internal test project
\n"
+"
part of a contracted project
\n"
+"
a short term extended trial for biz dev
\n"
+"
\n"
+" \n"
+"\n"
+"
\n"
+" Your project is currently subscribed to %(plan_name)s.\n"
+"
\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_app_profile.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Could not update!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Last Activity"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Activated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/manage_releases_by_location.html
+#: corehq/apps/domain/templates/domain/bootstrap5/manage_releases_by_location.html
+msgid "Deactivated On : "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#, python-format
+msgid ""
+"\n"
+" You are renewing your %(p)s subscription.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/renew_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
+#: corehq/apps/registration/forms.py
+#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
+#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
+#: corehq/apps/settings/forms.py
+#: corehq/apps/userreports/reports/builder/forms.py
+msgid "Next"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/settings/views.py
+msgid "My Projects"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "Accept All Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select.html
+#: corehq/apps/registration/templates/registration/domain_request.html
+msgid "My Invitations"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "90 day refund policy"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "monthly"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "discounted"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be downgrading to\n"
+" on\n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" This plan will be pausing on \n"
+" .\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Current Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#: corehq/apps/domain/views/accounting.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
+msgid "Select Plan"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Pause Subscription\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" What happens after you pause?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will lose access to your project space, but you will be\n"
+" able to re-subscribe anytime in the future.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will no longer be billed.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription is currently paused.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Your subscription is currently paused because you have\n"
+" past-due invoices.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You will not be allowed to un-pause your project until\n"
+" these invoices are paid.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be pausing on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" Your subscription will be downgrading to\n"
+" on\n"
+" "
+"unless\n"
+" you select a different plan above.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid ""
+"\n"
+" You are currently on the FREE CommCare Community plan.\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/select_plan.html
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+msgid "Dismiss"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Saved Credit Cards"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Add Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Credit Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Your request was successful!"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Delete Card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid ""
+"\n"
+" Actually remove "
+"strong> card\n"
+" ************"
+"strong>?\n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Remove Autopay"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap3/stripe_cards.html
+#: corehq/apps/domain/templates/domain/bootstrap5/stripe_cards.html
+msgid "Set as autopay card"
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/bootstrap5/select_plan.html
+#, python-format
+msgid ""
+"\n"
+" Save close to 20%% when you pay annually. \n"
+" "
+msgstr ""
+
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16867,7 +17400,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16875,14 +17409,16 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
msgid ""
"\n"
" Accept Invitation\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16892,7 +17428,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
msgid ""
"\n"
" CommCare HQ is a data management tool used by over 500 organizations\n"
@@ -16902,7 +17438,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/email/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap3/domain_invite.html
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
#, python-format
msgid ""
"\n"
@@ -16912,6 +17449,16 @@ msgid ""
" "
msgstr ""
+#: corehq/apps/domain/templates/domain/email/bootstrap5/domain_invite.html
+msgid ""
+"\n"
+" CommCare HQ is a data management tool used by over 500 organizations\n"
+" to help frontline workers around the world.\n"
+" Learn "
+"more about CommCare. \n"
+" "
+msgstr ""
+
#: corehq/apps/domain/templates/domain/email/domain_invite.txt
#: corehq/apps/registration/templates/registration/email/mobile_worker_confirm_account.txt
msgid "Hey there,"
@@ -17167,93 +17714,23 @@ msgid ""
"org/.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-#, python-format
-msgid ""
-"\n"
-" %(feature_name)s is only available to projects\n"
-" subscribed to %(plan_name)s plan or higher.\n"
-" To access this feature, you must subscribe to the\n"
-" %(plan_name)s plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid ""
-"\n"
-" You must be a Project Administrator to make Subscription changes.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Read more about our plans"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/insufficient_privilege_notification.html
-msgid "Change My Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load EVERYTHING"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_calculations.html
-msgid "Load Property"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/internal_subscription_management.html
-#, python-format
-msgid ""
-"\n"
-"
\n"
-" This page is visible to Dimagi employees only (you have an @dimagi.com "
-"email address). You can use this page\n"
-" to set up a subscription for this project space.\n"
-"\n"
-" Use this tool only for projects that are:\n"
-"
\n"
-"
an internal test project
\n"
-"
part of a contracted project
\n"
-"
a short term extended trial for biz dev
\n"
-"
\n"
-" \n"
-"\n"
-"
\n"
-" Your project is currently subscribed to %(plan_name)s.\n"
-"
\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_app_profile.html
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Could not update!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Last Activity"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Activated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/manage_releases_by_location.html
-msgid "Deactivated On : "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "Use the Creative Commons website"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/license_explanations.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/license_explanations.html
msgid "to choose a Creative Commons license."
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Wire Payment Information"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid ""
"\n"
" Dimagi accepts wire payments via ACH and wire transfer. You "
@@ -17266,271 +17743,156 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Invoice Recipients"
msgstr ""
-#: corehq/apps/domain/templates/domain/partials/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap3/payment_modal.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/payment_modal.html
msgid "Please agree to the Privacy Policy."
msgstr ""
-#: corehq/apps/domain/templates/domain/pro_bono/page_content.html
-msgid ""
-"Thank you for your submission. A representative will be in contact with you "
-"shortly."
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#, python-format
-msgid ""
-"\n"
-" You are renewing your %(p)s subscription.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/renew_plan.html
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap3/pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/ko_pagination.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/bootstrap5/pagination.html
-#: corehq/apps/registration/forms.py
-#: corehq/apps/reports/templates/reports/filters/bootstrap3/drilldown_options.html
-#: corehq/apps/reports/templates/reports/filters/bootstrap5/drilldown_options.html
-#: corehq/apps/settings/forms.py
-#: corehq/apps/userreports/reports/builder/forms.py
-msgid "Next"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/settings/views.py
-msgid "My Projects"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "Accept All Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select.html
-#: corehq/apps/registration/templates/registration/domain_request.html
-msgid "My Invitations"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Save close to 20%% when you pay annually.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "90 day refund policy"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "monthly"
+" This license doesn't cover all your multimedia.\n"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "discounted"
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "More info..."
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" This plan will be downgrading to\n"
-" on\n"
-" .\n"
-" "
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
+msgid "Select a more restrictive license"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" This plan will be pausing on \n"
-" .\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Current Plan"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-#: corehq/apps/domain/views/accounting.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/partials/pending_plan_notice.html
-msgid "Select Plan"
+" Since you've opted to publish your multimedia along with your "
+"app,\n"
+" you must select a license that is more restrictive than the "
+"multimedia in the app.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/partials/bootstrap5/restrictive_license.html
msgid ""
"\n"
-" Pause Subscription\n"
+" To satisfy this condition, you can either decide not to publish "
+"the multimedia\n"
+" or select one of the following licenses:\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap3/page_content.html
+#: corehq/apps/domain/templates/domain/pro_bono/bootstrap5/page_content.html
msgid ""
-"\n"
-" What happens after you pause?\n"
-" "
+"Thank you for your submission. A representative will be in contact with you "
+"shortly."
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will lose access to your project space, but you will be\n"
-" able to re-subscribe anytime in the future.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Error details"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will no longer be billed.\n"
-" "
+#: corehq/apps/domain/templates/error.html
+msgid "Log In"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription is currently paused.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/login.html
+msgid "Log In :: CommCare HQ"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-#, python-format
-msgid ""
-"\n"
-" Your subscription is currently paused because you have\n"
-" past-due invoices.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset Confirmation"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" You will not be allowed to un-pause your project until\n"
-" these invoices are paid.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
+#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
+#: corehq/apps/users/forms.py
+msgid "Reset Password"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid ""
-"\n"
-" Your subscription will be pausing on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
-" "
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
+msgid "Reset Password Unsuccessful"
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Your subscription will be downgrading to\n"
-" on\n"
-" "
-"unless\n"
-" you select a different plan above.\n"
+" The password reset link was invalid, possibly because\n"
+" it has already been used.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/select_plan.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" You are currently on the FREE CommCare Community plan.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/select_plan.html
-msgid "Dismiss"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Saved Credit Cards"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Add Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Credit Card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Your request was successful!"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Delete Card"
+" Please request a new password reset.\n"
+" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_confirm.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_confirm.html
msgid ""
"\n"
-" Actually remove "
-"strong> card\n"
-" ************"
-"strong>?\n"
+" Request Password Reset\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Remove Autopay"
-msgstr ""
-
-#: corehq/apps/domain/templates/domain/stripe_cards.html
-msgid "Set as autopay card"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Error details"
-msgstr ""
-
-#: corehq/apps/domain/templates/error.html
-msgid "Log In"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/login.html
-msgid "Log In :: CommCare HQ"
+#: corehq/apps/domain/templates/login_and_password/bootstrap3/password_reset_form.html
+#: corehq/apps/domain/templates/login_and_password/bootstrap5/password_reset_form.html
+#: corehq/apps/domain/urls.py
+msgid "Password Reset"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"\n"
" No account? Sign up today, it's free!\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Learn more"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid ""
"about how CommCare HQ can be your mobile solution for your frontline "
"workforce."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
#, python-format
msgid "Request Access to %(hr_name)s"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/login_full.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/login_full.html
msgid "Sign Up"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap3/password_reset_form_only.html
+#: corehq/apps/domain/templates/login_and_password/partials/bootstrap5/password_reset_form_only.html
msgid ""
"\n"
" We will email instructions to you for resetting your "
@@ -17538,15 +17900,6 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/partials/password_reset_form_only.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/users/forms.py
-msgid "Reset Password"
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/urls.py
msgid "Password Change Complete"
@@ -17559,7 +17912,8 @@ msgstr ""
#: corehq/apps/domain/templates/login_and_password/password_change_done.html
#: corehq/apps/domain/templates/login_and_password/password_reset_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_actions.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_actions.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap3/base_navigation.html
#: corehq/apps/hqwebapp/templates/hqwebapp/bootstrap5/base_navigation.html
msgid "Sign In"
@@ -17570,37 +17924,6 @@ msgstr ""
msgid "Password Reset Complete"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset Confirmation"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid "Reset Password Unsuccessful"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" The password reset link was invalid, possibly because\n"
-" it has already been used.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Please request a new password reset.\n"
-" "
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/password_reset_confirm.html
-msgid ""
-"\n"
-" Request Password Reset\n"
-" "
-msgstr ""
-
#: corehq/apps/domain/templates/login_and_password/password_reset_done.html
msgid "Password Reset Requested"
msgstr ""
@@ -17642,21 +17965,20 @@ msgstr ""
msgid "--The CommCare HQ Team"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/password_reset_form.html
-#: corehq/apps/domain/urls.py
-msgid "Password Reset"
-msgstr ""
-
-#: corehq/apps/domain/templates/login_and_password/two_factor/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap3/_wizard_forms.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/bootstrap5/_wizard_forms.html
msgid "Forgot your password?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid ""
"Backup tokens can be used when your primary and backup\n"
" phone numbers aren't available. The backup tokens below can be used\n"
@@ -17665,29 +17987,37 @@ msgid ""
" below will be valid."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Print these tokens and keep them somewhere safe."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "You don't have any backup codes yet."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Begin Using CommCare Now"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Back to Profile"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/backup_tokens.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/backup_tokens.html
msgid "Generate Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We are calling your phone right now, please enter the\n"
@@ -17695,7 +18025,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" We sent you a text message, please enter the tokens we\n"
@@ -17703,7 +18034,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the tokens generated by your token\n"
@@ -17711,50 +18043,61 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid ""
"\n"
" Please enter the token given to you by your domain administrator.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Looks like your CommCare session has expired."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please log in again to continue working."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "Please sign in below to continue."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login.html
msgid "You will be transferred to your original destination after you sign in."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Or, alternatively, use one of your backup phones:"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Please contact your domain administrator if you need a backup token."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/login_form.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/login_form.html
msgid "Use Backup Token"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid "Please set up Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" For security purposes, your CommCare administrator has required that "
@@ -17765,7 +18108,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
msgid ""
"\n"
" To access your account, please enable two-factor authentication "
@@ -17773,71 +18117,87 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/file_download.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/file_download.html
msgid "Go back"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/otp_required.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/otp_required.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Enable Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid "Add Backup Phone"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"Your backup phone number will be used if your primary method of registration "
"is not available. Please enter a valid phone number."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/phone_register.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/phone_register.html
msgid ""
"We've sent a token to your phone number. Please enter the token you've "
"received."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Follow the steps in this wizard to enable two-factor authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "Please select which authentication method you would like to use."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To start using a token generator, please use your smartphone to scan the QR "
"code below. For example, use Google Authenticator. Then, enter the token "
"generated by the app."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to receive the text messages on. This "
"number will be validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"Please enter the phone number you wish to be called on. This number will be "
"validated in the next step."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We are calling your phone right now, please enter the digits you hear."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid "We sent you a text message, please enter the tokens we sent."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"We've encountered an issue with the selected authentication method. Please "
"go back and verify that you entered your information correctly, try again, "
@@ -17845,44 +18205,52 @@ msgid ""
"contact the site administrator."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup.html
msgid ""
"To identify and verify your YubiKey, please insert a token in the field "
"below. Your YubiKey will be linked to your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid ""
"Congratulations, you've successfully enabled two-factor\n"
" authentication."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "To enable account recovery, generate backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/core/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap3/setup_complete.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/core/bootstrap5/setup_complete.html
msgid "Generate Backup Tokens"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid "Remove Two-factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/disable.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/disable.html
msgid ""
"You are about to remove two-factor authentication. This\n"
" compromises your account security, are you sure?"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" Two-Factor Authentication is not managed here.\n"
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17892,32 +18260,38 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Backup Phone Numbers"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If your primary method is not available, we are able to\n"
" send backup tokens to the phone numbers listed below."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Unregister"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/sms/templates/sms/add_gateway.html
msgid "Add Phone Number"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"If you don't have any device with you, you can access\n"
" your account using backup tokens."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#, python-format
msgid ""
"\n"
@@ -17930,27 +18304,32 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Show Codes"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
#: corehq/apps/settings/views.py
msgid "Remove Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"We strongly discourage this, but if absolutely necessary "
"you can\n"
" remove two-factor authentication from your account."
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid "Reset Two-Factor Authentication"
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"\n"
" This will remove your current two-factor authentication, and "
@@ -17961,7 +18340,8 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/domain/templates/login_and_password/two_factor/profile/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap3/profile.html
+#: corehq/apps/domain/templates/login_and_password/two_factor/profile/bootstrap5/profile.html
msgid ""
"Two-factor authentication is not enabled for your\n"
" account. Enable two-factor authentication for enhanced account\n"
@@ -18906,10 +19286,6 @@ msgstr ""
msgid "Enterprise Dashboard: {}"
msgstr ""
-#: corehq/apps/enterprise/templates/enterprise/enterprise_dashboard.html
-msgid "Email Report"
-msgstr ""
-
#: corehq/apps/enterprise/templates/enterprise/enterprise_permissions.html
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
msgid "Enterprise Permissions"
@@ -18970,10 +19346,35 @@ msgstr ""
msgid "No project spaces found."
msgstr ""
+#: corehq/apps/enterprise/templates/enterprise/partials/project_tile.html
+msgid "Email Report"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Platform Overview for {}"
+msgstr ""
+
#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
-msgid "Enterprise Dashboard"
+msgid "Platform Overview"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
+#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
+#: corehq/apps/sso/forms.py
+msgid "Enterprise Console"
+msgstr ""
+
+#: corehq/apps/enterprise/views.py
+msgid "Security Center for {}"
msgstr ""
+#: corehq/apps/enterprise/views.py corehq/tabs/tabclasses.py
+#, fuzzy
+#| msgid "Security"
+msgid "Security Center"
+msgstr "Manejo de Casos"
+
#: corehq/apps/enterprise/views.py corehq/apps/reports/views.py
msgid ""
"That report was not found. Please remember that download links expire after "
@@ -18989,13 +19390,6 @@ msgstr ""
msgid "Enterprise Settings"
msgstr ""
-#: corehq/apps/enterprise/views.py
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/global_navigation_bar.html
-#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/global_navigation_bar.html
-#: corehq/apps/sso/forms.py
-msgid "Enterprise Console"
-msgstr ""
-
#: corehq/apps/enterprise/views.py
msgid "Enterprise permissions have been disabled."
msgstr "Relatorio Semanal aos Coordinadores do Distrito e os NEDs"
@@ -19119,11 +19513,11 @@ msgstr ""
msgid "Event in progress"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19133,15 +19527,15 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Update Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid "Delete Attendee"
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19150,7 +19544,7 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
#, python-format
msgid ""
"\n"
@@ -19160,14 +19554,14 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/edit_attendee.html
+#: corehq/apps/events/templates/events/edit_attendee.html
msgid ""
"\n"
" This action cannot be undone.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" Known potential attendees who can be invited to participate in "
@@ -19176,42 +19570,42 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Create Potential Attendee"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Enable Mobile Worker Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "New Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "Pending..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "NEW"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid "ERROR"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Potential Attendees"
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid "Loading potential attendees ..."
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
#: corehq/apps/users/templates/users/mobile_workers.html
msgid ""
"\n"
@@ -19223,21 +19617,21 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" You currently have no potential attendees.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/event_attendees.html
+#: corehq/apps/events/templates/events/event_attendees.html
msgid ""
"\n"
" No matching potential attendees found.\n"
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid ""
"\n"
" Attendance tracking events can be used to track attendance of all "
@@ -19245,31 +19639,31 @@ msgid ""
" "
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Add new event"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "View Attendees"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "No Attendees Yet"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Date Attended"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Attendee Name"
msgstr ""
-#: corehq/apps/events/templates/events_list.html
+#: corehq/apps/events/templates/events/events_list.html
msgid "Event has not yet started"
msgstr ""
-#: corehq/apps/events/templates/new_event.html
+#: corehq/apps/events/templates/events/new_event.html
msgid ""
"\n"
" There was a problem fetching the list of attendees and attendance "
@@ -22159,7 +22553,7 @@ msgid ""
msgstr ""
#: corehq/apps/geospatial/forms.py
-msgid "Case Grouping Parameters"
+msgid "Case Clustering Map Parameters"
msgstr ""
#: corehq/apps/geospatial/forms.py
@@ -22242,7 +22636,7 @@ msgid "Driving"
msgstr ""
#: corehq/apps/geospatial/reports.py
-msgid "Case Management Map"
+msgid "Microplanning Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22262,7 +22656,7 @@ msgid "name"
msgstr "Relatorio Semanal aos Coordinadores do Distrito e os NEDs"
#: corehq/apps/geospatial/reports.py
-msgid "Case Grouping"
+msgid "Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/reports.py
@@ -22289,11 +22683,11 @@ msgid "Link"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Lock Case Grouping for Me"
+msgid "Lock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Unlock Case Grouping for Me"
+msgid "Unlock Case Clustering Map for Me"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22301,7 +22695,7 @@ msgid "Export Groups"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
-msgid "Summary of Case Grouping"
+msgid "Summary of Case Clustering Map"
msgstr ""
#: corehq/apps/geospatial/templates/geospatial/case_grouping_map.html
@@ -22571,6 +22965,35 @@ msgstr ""
msgid "You are about to delete this saved area"
msgstr ""
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain were not processed to be available in "
+"Microplanning reports\n"
+" because there were too many to be processed. New or updated cases "
+"will still be available\n"
+" for use for Microplanning. Please reach out to support if you need "
+"support with existing cases.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Oops! Something went wrong while processing existing cases to be "
+"available in Microplanning\n"
+" reports. Please reach out to support.\n"
+" "
+msgstr ""
+
+#: corehq/apps/geospatial/templates/geospatial/partials/index_alert.html
+msgid ""
+"\n"
+" Existing cases in the domain are being processed to be available in\n"
+" Microplanning reports. Please be patient.\n"
+" "
+msgstr ""
+
#: corehq/apps/geospatial/templates/geospatial/partials/review_assignment_modal.html
msgid "Review Assignment Results"
msgstr ""
@@ -22913,7 +23336,7 @@ msgid ""
" For all active mobile workers in this group, and for "
"each phone number, this will\n"
" initiate an SMS verification workflow. When a user "
-"replies to the SMS< their phone\n"
+"replies to the SMS, their phone\n"
" number will be verified.
If the phone number "
"is already verified or\n"
" if the phone number is already in use by another "
@@ -24653,6 +25076,13 @@ msgstr ""
msgid "Server Error Encountered"
msgstr ""
+#: corehq/apps/hqwebapp/templates/hqwebapp/htmx/htmx_action_error.html
+#, python-format
+msgid ""
+"\n"
+" Encountered error \"%(htmx_error)s\" while performing action %(action)s.\n"
+msgstr ""
+
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap3/domain_list_dropdown.html
#: corehq/apps/hqwebapp/templates/hqwebapp/includes/bootstrap5/domain_list_dropdown.html
msgid "Change Project"
@@ -27627,11 +28057,6 @@ msgstr ""
msgid "Manage Notification"
msgstr ""
-#: corehq/apps/oauth_integrations/views/google.py
-msgid ""
-"Something went wrong when trying to sign you in to Google. Please try again."
-msgstr ""
-
#: corehq/apps/ota/utils.py corehq/apps/users/tasks.py
msgid ""
"Something went wrong in creating restore for the user. Please try again or "
@@ -34059,10 +34484,6 @@ msgstr ""
msgid "Update settings"
msgstr ""
-#: corehq/apps/sms/forms.py
-msgid "Type a username, group name or 'send to all'"
-msgstr ""
-
#: corehq/apps/sms/forms.py
msgid "0 characters (160 max)"
msgstr ""
@@ -34828,10 +35249,6 @@ msgstr ""
msgid "You can't send an empty message"
msgstr ""
-#: corehq/apps/sms/views.py
-msgid "Please remember to separate recipients with a comma."
-msgstr ""
-
#: corehq/apps/sms/views.py
msgid "The following groups don't exist: "
msgstr ""
@@ -40768,6 +41185,26 @@ msgstr ""
msgid "Please select at least one item."
msgstr ""
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: \"%(request_username)s\" will no longer be able to "
+"access or edit \"%(couch_username)s\"\n"
+" if they don't share a location.\n"
+" "
+msgstr ""
+
+#: corehq/apps/users/templates/users/partials/location_edit_warnings.html
+#, python-format
+msgid ""
+"\n"
+" WARNING: %(user_type)s \"%(couch_username)s\" must have at "
+"least one location assigned.\n"
+" They won't be able to log in otherwise.\n"
+" "
+msgstr ""
+
#: corehq/apps/users/templates/users/partials/manage_phone_numbers.html
msgid ""
"Phone numbers can only contain digits and we were unable to convert yours "
@@ -42141,10 +42578,8 @@ msgid ""
msgstr ""
#: corehq/messaging/scheduling/forms.py
-#, fuzzy
-#| msgid "Add Filter"
msgid "Filter on"
-msgstr "Relatorio Semanal aos Coordinadores do Distrito e os NEDs"
+msgstr ""
#: corehq/messaging/scheduling/forms.py
msgid "User data filter: whole json"
@@ -45411,7 +45846,7 @@ msgid "User Management"
msgstr "Manejo de Casos"
#: corehq/reports.py
-msgid "Case Mapping"
+msgid "Microplanning"
msgstr ""
#: corehq/tabs/tabclasses.py corehq/tabs/utils.py
@@ -45435,7 +45870,7 @@ msgid "Data Manipulation"
msgstr ""
#: corehq/tabs/tabclasses.py
-msgid "Configure Geospatial Settings"
+msgid "Configure Microplanning Settings"
msgstr ""
#: corehq/tabs/tabclasses.py
diff --git a/locale/sw/LC_MESSAGES/djangojs.po b/locale/sw/LC_MESSAGES/djangojs.po
index a8c348a3c31d..2971308064eb 100644
--- a/locale/sw/LC_MESSAGES/djangojs.po
+++ b/locale/sw/LC_MESSAGES/djangojs.po
@@ -1170,7 +1170,7 @@ msgid "no formatting"
msgstr ""
#: corehq/apps/app_manager/static/app_manager/js/vellum/src/main-components.js
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Custom"
msgstr ""
@@ -3090,24 +3090,28 @@ msgstr ""
msgid "Sorry, it looks like the upload failed."
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Payment"
msgstr ""
-#: corehq/apps/domain/static/domain/js/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/billing_statements.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/billing_statements.js
msgid "Submit Invoice Request"
msgstr ""
-#: corehq/apps/domain/static/domain/js/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap3/case_search.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/case_search.js
msgid "You have unchanged settings"
msgstr ""
-#: corehq/apps/domain/static/domain/js/current_subscription.js
-msgid "Buy Credits"
+#: corehq/apps/domain/static/domain/js/bootstrap3/info_basic.js
+#: corehq/apps/domain/static/domain/js/bootstrap5/info_basic.js
+msgid "Select a Timezone..."
msgstr ""
-#: corehq/apps/domain/static/domain/js/info_basic.js
-msgid "Select a Timezone..."
+#: corehq/apps/domain/static/domain/js/current_subscription.js
+msgid "Buy Credits"
msgstr ""
#: corehq/apps/domain/static/domain/js/internal_settings.js
@@ -3153,42 +3157,42 @@ msgid ""
"the project space as a member in order to override your timezone."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
+msgid ""
+"Do not allow new users to sign up on commcarehq.org. This may take up to an "
+"hour to take effect. This will affect users with email addresses from "
+"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
+msgstr ""
+
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Last 30 Days"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
#: corehq/apps/hqwebapp/static/hqwebapp/js/tempus_dominus.js
msgid "Previous Month"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "Spans <%- startDate %> to <%- endDate %> (UTC)"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error updating display total, please try again or report an issue if this "
"persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid "??"
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_dashboard.js
+#: corehq/apps/enterprise/static/enterprise/js/project_dashboard.js
msgid ""
"Error sending email, please try again or report an issue if this persists."
msgstr ""
-#: corehq/apps/enterprise/static/enterprise/js/enterprise_settings.js
-msgid ""
-"Do not allow new users to sign up on commcarehq.org. This may take up to an "
-"hour to take effect. This will affect users with email addresses from "
-"the following domains: <%- domains %> Contact '><%- email %> to change the list of domains."
-msgstr ""
-
#: corehq/apps/events/static/events/js/event_attendees.js
msgid "Disable Mobile Worker Attendees"
msgstr ""
@@ -3341,6 +3345,10 @@ msgstr ""
msgid "Sensitive Date"
msgstr ""
+#: corehq/apps/fixtures/static/fixtures/js/lookup-manage.js
+msgid "Can not create table with ID '<%= tag %>'. Table IDs should be unique."
+msgstr ""
+
#: corehq/apps/geospatial/static/geospatial/js/case_grouping_map.js
msgid "No group"
msgstr ""
@@ -4093,35 +4101,6 @@ msgstr ""
msgid "label-info-light"
msgstr ""
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Keywords to copy"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-msgid "Search keywords"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/users/static/users/js/roles.js
-msgid "Linked Project Spaces"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Projects to copy to"
-msgstr ""
-
-#: corehq/apps/reminders/static/reminders/js/keywords_list.js
-#: corehq/apps/userreports/static/userreports/js/configure_report.js
-#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
-msgid "Search projects"
-msgstr ""
-
#: corehq/apps/reports/static/reports/js/bootstrap3/base.js
#: corehq/apps/reports/static/reports/js/bootstrap5/base.js
#: corehq/apps/userreports/static/userreports/js/configurable_report.js
@@ -4443,11 +4422,11 @@ msgstr ""
msgid "(filtered from _MAX_ total contacts)"
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "There was an error fetching the SMS rate."
msgstr ""
-#: corehq/apps/smsbillables/static/smsbillables/js/smsbillables.rate_calc.js
+#: corehq/apps/smsbillables/static/smsbillables/js/rate_calc.js
msgid "Please Select a Country Code"
msgstr ""
@@ -4606,6 +4585,16 @@ msgstr ""
msgid "Linked projects"
msgstr ""
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Projects to copy to"
+msgstr ""
+
+#: corehq/apps/userreports/static/userreports/js/configure_report.js
+#: corehq/apps/userreports/static/userreports/js/edit_report_config.js
+msgid "Search projects"
+msgstr ""
+
#: corehq/apps/userreports/static/userreports/js/expression_evaluator.js
msgid "Unknown error"
msgstr ""
@@ -4909,6 +4898,10 @@ msgstr ""
msgid "Multi-Environment Release Management"
msgstr ""
+#: corehq/apps/users/static/users/js/roles.js
+msgid "Linked Project Spaces"
+msgstr ""
+
#: corehq/apps/users/static/users/js/roles.js
msgid "Allow role to configure linked project spaces"
msgstr ""
diff --git a/settings.py b/settings.py
index c0336440d5ef..4babe68eba4d 100755
--- a/settings.py
+++ b/settings.py
@@ -1971,6 +1971,7 @@ def _pkce_required(client_id):
'kenya-vca': 'custom.abt',
'pmievolve-ethiopia-1': 'custom.abt',
'pmievolve-ghana': 'custom.abt',
+ 'pmievolve-kenya': 'custom.abt',
'pmievolve-madagascar': 'custom.abt',
'pmievolve-malawi': 'custom.abt',
'pmievolve-mozambique': 'custom.abt',