diff --git a/src/registrar/templates/application_current_sites.html b/src/registrar/templates/application_current_sites.html index 2d858353f..22e40f31f 100644 --- a/src/registrar/templates/application_current_sites.html +++ b/src/registrar/templates/application_current_sites.html @@ -10,7 +10,7 @@ {{ forms.0.management_form }} {# TODO: aria-describedby to associate these instructions with the input! #}

- Enter your organization’s public website, if you have one. For example, www.city.com. + Enter your organization’s current public website, if you have one. For example, www.city.com.

{% for form in forms.0 %} {% input_with_errors form.website %} diff --git a/src/registrar/templates/includes/ao_example.html b/src/registrar/templates/includes/ao_example.html index 4d6b5a301..fee5cfa24 100644 --- a/src/registrar/templates/includes/ao_example.html +++ b/src/registrar/templates/includes/ao_example.html @@ -44,6 +44,7 @@

Domain requests from state legislatures and courts must be authorized by an agency’s Chief Information Officer or highest-ranking executive.

{% elif organization_type == 'tribal' %} -

Domain requests from federally-recognized tribal governments must be authorized by the leader of the tribe, as recognized by the as noted by the Bureau of Indian Affairs.

+

Domain requests from federally-recognized tribal governments must be authorized by the leader of the tribe, as recognized by the Bureau of Indian Affairs.

+

Domain requests from state-recognized tribal governments must be authorized by the leader of the tribe, as determined by the state’s tribal recognition initiative.

{% endif %} diff --git a/src/registrar/views/application.py b/src/registrar/views/application.py index 401171842..5a1058e7a 100644 --- a/src/registrar/views/application.py +++ b/src/registrar/views/application.py @@ -70,10 +70,10 @@ class ApplicationWizard(LoginRequiredMixin, TemplateView): TITLES = { Step.ORGANIZATION_TYPE: _("Type of organization"), Step.TRIBAL_GOVERNMENT: _("Tribal government"), - Step.ORGANIZATION_FEDERAL: _("Type of organization — Federal"), - Step.ORGANIZATION_ELECTION: _("Type of organization — Election board"), + Step.ORGANIZATION_FEDERAL: _("Type of organization: Federal"), + Step.ORGANIZATION_ELECTION: _("Type of organization: Election office"), Step.ORGANIZATION_CONTACT: _("Organization name and mailing address"), - Step.TYPE_OF_WORK: _("Type of Work"), + Step.TYPE_OF_WORK: _("Type of work"), Step.AUTHORIZING_OFFICIAL: _("Authorizing official"), Step.CURRENT_SITES: _("Organization website"), Step.DOTGOV_DOMAIN: _(".gov domain"),