Use translations file
This commit is contained in:
parent
aa7dbc2699
commit
cfd73fec78
@ -55,7 +55,7 @@
|
|||||||
{% set resend_invite_modal = "resend_invite-{}".format(member.role_id) %}
|
{% set resend_invite_modal = "resend_invite-{}".format(member.role_id) %}
|
||||||
{% call Modal(resend_invite_modal, classes="form-content--app-mem") %}
|
{% call Modal(resend_invite_modal, classes="form-content--app-mem") %}
|
||||||
<div class="modal__form--header">
|
<div class="modal__form--header">
|
||||||
<h1>Verify Member Information</h1>
|
<h1>{{ "portfolios.applications.members.new.verify" | translate }}</h1>
|
||||||
<hr>
|
<hr>
|
||||||
</div>
|
</div>
|
||||||
<base-form inline-template :enable-save="true">
|
<base-form inline-template :enable-save="true">
|
||||||
@ -95,9 +95,9 @@
|
|||||||
<table class="atat-table">
|
<table class="atat-table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th>{{ "common.name" | translate }}</th>
|
||||||
<th>Application Permissions</th>
|
<th>{{ "portfolios.applications.members.form.app_perms.title" | translate }}</th>
|
||||||
<th class="env_role--th">Environment Access</th>
|
<th class="env_role--th">{{ 'portfolios.applications.members.form.env_access.table_header' | translate }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -148,13 +148,15 @@
|
|||||||
{% call ToggleSection(section_name=section, classes="app-member-menu__toggle") %}
|
{% call ToggleSection(section_name=section, classes="app-member-menu__toggle") %}
|
||||||
{% if user_can(permissions.EDIT_APPLICATION_MEMBER) -%}
|
{% if user_can(permissions.EDIT_APPLICATION_MEMBER) -%}
|
||||||
<a v-on:click="openModal('{{ perms_modal }}')">
|
<a v-on:click="openModal('{{ perms_modal }}')">
|
||||||
Edit Roles and Permissions
|
{{ "portfolios.applications.members.menu.edit" | translate }}
|
||||||
</a>
|
</a>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
{% if member.role_status == 'pending' -%}
|
{% if member.role_status == 'pending' -%}
|
||||||
{% set revoke_invite_modal = "revoke_invite_{}".format(member.role_id) %}
|
{% set revoke_invite_modal = "revoke_invite_{}".format(member.role_id) %}
|
||||||
{% set resend_invite_modal = "resend_invite-{}".format(member.role_id) %}
|
{% set resend_invite_modal = "resend_invite-{}".format(member.role_id) %}
|
||||||
<a v-on:click='openModal("{{ resend_invite_modal }}")'>Resend Invite</a>
|
<a v-on:click='openModal("{{ resend_invite_modal }}")'>
|
||||||
|
{{ "portfolios.applications.members.menu.resend" | translate }}
|
||||||
|
</a>
|
||||||
{% if user_can(permissions.DELETE_APPLICATION_MEMBER) -%}
|
{% if user_can(permissions.DELETE_APPLICATION_MEMBER) -%}
|
||||||
<a v-on:click='openModal("{{ revoke_invite_modal }}")'>{{ 'invites.revoke' | translate }}</a>
|
<a v-on:click='openModal("{{ revoke_invite_modal }}")'>{{ 'invites.revoke' | translate }}</a>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
@ -403,12 +403,16 @@ portfolios:
|
|||||||
description: Delete this application.
|
description: Delete this application.
|
||||||
env_access:
|
env_access:
|
||||||
title: Environment Roles
|
title: Environment Roles
|
||||||
|
table_header: Environment Access
|
||||||
description: Additional role controls are available in the CSP console. <a href="#"> Learn More </a>
|
description: Additional role controls are available in the CSP console. <a href="#"> Learn More </a>
|
||||||
next_button: "Next: Permissions"
|
next_button: "Next: Permissions"
|
||||||
app_perms:
|
app_perms:
|
||||||
title: Application Permissions
|
title: Application Permissions
|
||||||
description: Application permissions allow users to provision and modify applications and teams. <a href="#"> Learn More </a>
|
description: Application permissions allow users to provision and modify applications and teams. <a href="#"> Learn More </a>
|
||||||
add_member: Add Member
|
add_member: Add Member
|
||||||
|
menu:
|
||||||
|
edit: Edit Roles and Permissions
|
||||||
|
resend: Resend Invite
|
||||||
new:
|
new:
|
||||||
assign_roles: Assign Member Environments and Roles
|
assign_roles: Assign Member Environments and Roles
|
||||||
learn_more: Learn more about these roles
|
learn_more: Learn more about these roles
|
||||||
@ -416,6 +420,7 @@ portfolios:
|
|||||||
manage_envs: 'Allow member to <strong>add</strong> and <strong>rename environments</strong> within the application.'
|
manage_envs: 'Allow member to <strong>add</strong> and <strong>rename environments</strong> within the application.'
|
||||||
delete_envs: 'Allow member to <strong>delete environments</strong> within the application.'
|
delete_envs: 'Allow member to <strong>delete environments</strong> within the application.'
|
||||||
manage_team: 'Allow member to <strong>add, update,</strong> and <strong>remove members</strong> from the application team.'
|
manage_team: 'Allow member to <strong>add, update,</strong> and <strong>remove members</strong> from the application team.'
|
||||||
|
verify: Verify Member Information
|
||||||
perms_team_mgmt:
|
perms_team_mgmt:
|
||||||
'False': View Team
|
'False': View Team
|
||||||
'True': Edit Team
|
'True': Edit Team
|
||||||
|
Loading…
x
Reference in New Issue
Block a user