Use translation strings
This commit is contained in:
parent
3ab84ba6f4
commit
4514cca021
@ -15,10 +15,24 @@
|
|||||||
<span v-on:click="props.toggle">{{ item_name }}</span>
|
<span v-on:click="props.toggle">{{ item_name }}</span>
|
||||||
|
|
||||||
<template v-if="props.isVisible">
|
<template v-if="props.isVisible">
|
||||||
{{ ToggleItem("Hide", item_type, length, "caret_up") }}
|
{{
|
||||||
|
ToggleItem(
|
||||||
|
("common.hide" | translate),
|
||||||
|
item_type,
|
||||||
|
length,
|
||||||
|
"caret_up",
|
||||||
|
)
|
||||||
|
}}
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
{{ ToggleItem("Show", item_type, length, "caret_down") }}
|
{{
|
||||||
|
ToggleItem(
|
||||||
|
("common.show" | translate),
|
||||||
|
item_type,
|
||||||
|
length,
|
||||||
|
"caret_down",
|
||||||
|
)
|
||||||
|
}}
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
<div v-show="props.isVisible">
|
<div v-show="props.isVisible">
|
||||||
|
@ -29,6 +29,8 @@ flash:
|
|||||||
new_ppoc_title: Primary point of contact updated
|
new_ppoc_title: Primary point of contact updated
|
||||||
new_ppoc_message: You have successfully added {ppoc_name} as the primary point of contact. You are no longer the PPoC.
|
new_ppoc_message: You have successfully added {ppoc_name} as the primary point of contact. You are no longer the PPoC.
|
||||||
common:
|
common:
|
||||||
|
hide: Hide
|
||||||
|
show: Show
|
||||||
back: Back
|
back: Back
|
||||||
cancel: Cancel
|
cancel: Cancel
|
||||||
confirm: Confirm
|
confirm: Confirm
|
||||||
|
Loading…
x
Reference in New Issue
Block a user