mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 09:52:20 +00:00
Fix #1216
This commit is contained in:
@@ -1131,6 +1131,13 @@ return [
|
|||||||
'destination_transaction' => 'Destination transaction',
|
'destination_transaction' => 'Destination transaction',
|
||||||
'delete_journal_link' => 'Delete the link between <a href=":source_link">:source</a> and <a href=":destination_link">:destination</a>',
|
'delete_journal_link' => 'Delete the link between <a href=":source_link">:source</a> and <a href=":destination_link">:destination</a>',
|
||||||
'deleted_link' => 'Deleted link',
|
'deleted_link' => 'Deleted link',
|
||||||
|
'link_is (partially) paid for by' => 'is (partially) paid for by',
|
||||||
|
'link_(partially) pays for' => '(partially) pays for',
|
||||||
|
'link_is (partially) refunded by' => 'is (partially) refunded by',
|
||||||
|
'link_(partially) refunds' => '(partially) refunds',
|
||||||
|
'link_is (partially) reimbursed by' => 'is (partially) reimbursed by',
|
||||||
|
'link_(partially) reimburses' => '(partially) reimburses',
|
||||||
|
'link_relates to' => 'relates to',
|
||||||
|
|
||||||
// link translations:
|
// link translations:
|
||||||
'relates to_inward' => 'relates to',
|
'relates to_inward' => 'relates to',
|
||||||
|
|||||||
@@ -426,8 +426,8 @@
|
|||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<select id="link_type" class="form-control" name="link_type">
|
<select id="link_type" class="form-control" name="link_type">
|
||||||
{% for linkType in linkTypes %}
|
{% for linkType in linkTypes %}
|
||||||
<option label="{{ linkType.inward }}" value="{{ linkType.id }}_inward">{{ linkType.inward }}</option>
|
<option label="{{ trans('firefly.link_'~linkType.inward) }}" value="{{ linkType.id }}_inward">{{ trans('firefly.link_'~linkType.inward) }}</option>
|
||||||
<option label="{{ linkType.outward }}" value="{{ linkType.id }}_outward">{{ linkType.outward }}</option>
|
<option label="{{ trans('firefly.link_'~linkType.outward) }}" value="{{ linkType.id }}_outward">{{ trans('firefly.link_'~linkType.outward) }}</option>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user