Move text from TO builder into translations file
This commit is contained in:
parent
99edf3df90
commit
44da196ee2
@ -14,10 +14,14 @@
|
|||||||
|
|
||||||
{% call Modal(name='cancel', dismissable=True) %}
|
{% call Modal(name='cancel', dismissable=True) %}
|
||||||
<div class="task-order__modal-cancel">
|
<div class="task-order__modal-cancel">
|
||||||
<h1>Do you want to save this draft?</h1>
|
<h1>{{ 'task_orders.form.builder_base.cancel_modal' | translate }}</h1>
|
||||||
<div class="action-group">
|
<div class="action-group">
|
||||||
<button formaction="{{ cancel_discard_url }}" class="usa-button usa-button-primary" type="submit">No, delete it</button>
|
<button formaction="{{ cancel_discard_url }}" class="usa-button usa-button-primary" type="submit">
|
||||||
<button formaction="{{ cancel_save_url }}" class="usa-button usa-button-primary" type="submit">Yes, save for later</button>
|
{{ "task_orders.form.builder_base.delete_draft" | translate }}
|
||||||
|
</button>
|
||||||
|
<button formaction="{{ cancel_save_url }}" class="usa-button usa-button-primary" type="submit">
|
||||||
|
{{ "task_orders.form.builder_base.save_draft" | translate }}
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endcall %}
|
{% endcall %}
|
||||||
@ -44,13 +48,13 @@
|
|||||||
type="submit"
|
type="submit"
|
||||||
class="usa-button usa-button-secondary"
|
class="usa-button usa-button-secondary"
|
||||||
formaction="{{ previous_button_link }}">
|
formaction="{{ previous_button_link }}">
|
||||||
Previous
|
{{ "common.previous" | translate }}
|
||||||
</button>
|
</button>
|
||||||
{% else -%}
|
{% else -%}
|
||||||
<a
|
<a
|
||||||
class="usa-button usa-button-secondary"
|
class="usa-button usa-button-secondary"
|
||||||
href="{{ previous_button_link }}">
|
href="{{ previous_button_link }}">
|
||||||
Previous
|
{{ "common.previous" | translate }}
|
||||||
</a>
|
</a>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
{%- endif %}
|
{%- endif %}
|
||||||
{% if to_number %}
|
{% if to_number %}
|
||||||
<p>
|
<p>
|
||||||
<strong>Task Order Number:</strong> {{ to_number }}
|
{{ "task_orders.form.builder_base.to_number" | translate({ "number": to_number }) | safe }}
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if description %}
|
{% if description %}
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
{% set action = url_for("task_orders.submit_form_step_one_add_pdf", portfolio_id=portfolio.id) %}
|
{% set action = url_for("task_orders.submit_form_step_one_add_pdf", portfolio_id=portfolio.id) %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% set next_button_text = "Next: Add TO Number" %}
|
{% set next_button_text = "task_orders.form.step_1.next_button" | translate %}
|
||||||
{% set step = "1" %}
|
{% set step = "1" %}
|
||||||
{% set sticky_cta_text = 'task_orders.form.sticky_header_text' | translate %}
|
{% set sticky_cta_text = 'task_orders.form.sticky_header_text' | translate %}
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
{% from "task_orders/form_header.html" import TOFormStepHeader %}
|
{% from "task_orders/form_header.html" import TOFormStepHeader %}
|
||||||
|
|
||||||
{% set action = url_for("task_orders.submit_form_step_two_add_number", task_order_id=task_order_id) %}
|
{% set action = url_for("task_orders.submit_form_step_two_add_number", task_order_id=task_order_id) %}
|
||||||
{% set next_button_text = "Next: Add Base CLIN" %}
|
{% set next_button_text = "task_orders.form.step_2.next_button" | translate %}
|
||||||
{% set previous_button_link = url_for("task_orders.submit_form_step_two_add_number", task_order_id=task_order_id, previous=True) %}
|
{% set previous_button_link = url_for("task_orders.submit_form_step_two_add_number", task_order_id=task_order_id, previous=True) %}
|
||||||
{% set step = "2" %}
|
{% set step = "2" %}
|
||||||
{% set sticky_cta_text = 'task_orders.form.sticky_header_text' | translate %}
|
{% set sticky_cta_text = 'task_orders.form.sticky_header_text' | translate %}
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<a
|
<a
|
||||||
href="{{ action }}"
|
href="{{ action }}"
|
||||||
class="usa-button usa-button-primary">
|
class="usa-button usa-button-primary">
|
||||||
Next: Confirm
|
{{ "task_orders.form.step_4.next_button" | translate }}
|
||||||
</a>
|
</a>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -514,6 +514,11 @@ task_orders:
|
|||||||
add_clin: Add Another CLIN
|
add_clin: Add Another CLIN
|
||||||
add_to_header: Enter the Task Order number
|
add_to_header: Enter the Task Order number
|
||||||
add_to_description: Please input your 13-digit Task Order number. This number may be listed under "Order Number" if your Contracting Officer used form 1149, or "Delivery Order/Call No." if form 1155 was used. Moving forward, this portion of funding will be referenced by the recorded Task Order number.
|
add_to_description: Please input your 13-digit Task Order number. This number may be listed under "Order Number" if your Contracting Officer used form 1149, or "Delivery Order/Call No." if form 1155 was used. Moving forward, this portion of funding will be referenced by the recorded Task Order number.
|
||||||
|
builder_base:
|
||||||
|
cancel_modal: Do you want to save this draft?
|
||||||
|
delete_draft: No, delete it
|
||||||
|
save_draft: Yes, save for later
|
||||||
|
to_number: "<strong>Task Order Number:</strong> {number}"
|
||||||
clin_title: Enter Contract Line Items
|
clin_title: Enter Contract Line Items
|
||||||
clin_description: "Refer to your task order to locate your Contract Line Item Numbers (CLINs)."
|
clin_description: "Refer to your task order to locate your Contract Line Item Numbers (CLINs)."
|
||||||
clin_details: CLIN Details
|
clin_details: CLIN Details
|
||||||
@ -536,12 +541,16 @@ task_orders:
|
|||||||
step_1:
|
step_1:
|
||||||
title: Upload your approved Task Order (TO)
|
title: Upload your approved Task Order (TO)
|
||||||
description: Upload your approved Task Order here. You are required to confirm you have the appropriate signature. You will have the ability to add additional approved Task Orders with more funding to this Portfolio in the future.
|
description: Upload your approved Task Order here. You are required to confirm you have the appropriate signature. You will have the ability to add additional approved Task Orders with more funding to this Portfolio in the future.
|
||||||
|
next_button: "Next: Add TO Number"
|
||||||
|
step_2:
|
||||||
|
next_button: "Next: Add Base CLIN"
|
||||||
step_3:
|
step_3:
|
||||||
next_button: "Next: Review Task Order"
|
next_button: "Next: Review Task Order"
|
||||||
percent_obligated: "% of Funds Obligated"
|
percent_obligated: "% of Funds Obligated"
|
||||||
step_4:
|
step_4:
|
||||||
documents: Documents
|
documents: Documents
|
||||||
clins: CLIN Summary
|
clins: CLIN Summary
|
||||||
|
next_button: "Next: Confirm"
|
||||||
step_5:
|
step_5:
|
||||||
cta_text: Verify Your Information
|
cta_text: Verify Your Information
|
||||||
description: Prior to submitting the Task Order, you must acknowledge, by marking the appropriate box below, that the uploaded Task Order is signed by an appropriate, duly warranted Contracting Officer who has the authority to execute the uploaded Task Order on your Agency’s behalf and has authorized you to upload the Task Order in accordance with Agency policy and procedures. You must further acknowledge, by marking the appropriate box below, that all information entered herein matches that of the submitted Task Order.
|
description: Prior to submitting the Task Order, you must acknowledge, by marking the appropriate box below, that the uploaded Task Order is signed by an appropriate, duly warranted Contracting Officer who has the authority to execute the uploaded Task Order on your Agency’s behalf and has authorized you to upload the Task Order in accordance with Agency policy and procedures. You must further acknowledge, by marking the appropriate box below, that all information entered herein matches that of the submitted Task Order.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user