New strings for translation.

This commit is contained in:
James Cole
2019-11-25 18:41:40 +01:00
parent 709411e7b4
commit e485f8ca66
25 changed files with 226 additions and 238 deletions

View File

@@ -19,44 +19,32 @@
<p>
{# ONE: WITHDRAWAL TO DEPOSIT #}
{% if sourceType.type == 'Withdrawal' and destinationType.type == 'Deposit' %}
When converting from a withdrawal to a deposit, the money will be deposited into the
displayed destination account(s), instead of being withdrawn from them. To complete the conversion,
please set the new source account(s) below.
{{ 'convert_expl_w_d'|_ }}
{% endif %}
{# TWO: WITHDRAWAL TO TRANSFER #}
{% if sourceType.type == 'Withdrawal' and destinationType.type == 'Transfer' %}
When converting a withdrawal into a transfer, the money will be transferred away from the source
account(s) into other asset or liability account(s) instead of being spent on the original
expense accounts. To complete the conversion, please select new destination account(s).
{{ 'convert_expl_w_t'|_ }}
{% endif %}
{# THREE: DEPOSIT TO WITHDRAWAL #}
{% if sourceType.type == 'Deposit' and destinationType.type == 'Withdrawal' %}
When converting a deposit into a withdrawal, the money will be withdrawn from the
displayed source account(s), instead of being deposited into them. To complete the conversion,
please select new destination accounts.
{{ 'convert_expl_d_w'|_ }}
{% endif %}
{# FOUR: DEPOSIT TO TRANSFER#}
{% if sourceType.type == 'Deposit' and destinationType.type == 'Transfer' %}
When you convert a deposit into a transfer, the money will be deposited into
the listed destination account(s) from any of your asset or liability account(s).
Please select the new source account(s) to complete the conversion.
{{ 'convert_expl_d_t'|_ }}
{% endif %}
{# FIVE: TRANSFER TO WITHDRAWAL #}
{% if sourceType.type == 'Transfer' and destinationType.type == 'Withdrawal' %}
When you convert a transfer into a withdrawal, the money will be spent
on the destination account(s) you set here, instead of being transferred away.
Please select the new destination account(s) to complete the conversion.
{{ 'convert_expl_t_w'|_ }}
{% endif %}
{# SIX: TRANSFER TO DEPOSIT #}
{% if sourceType.type == 'Transfer' and destinationType.type == 'Deposit' %}
When you convert a transfer into a deposit, the money will be deposited
into the destination account(s) you see here, instead of being transferred into them.
Please select the new source account(s) to complete the conversion.
{{ 'convert_expl_t_d'|_ }}
{% endif %}
</p>