mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Better context for language strings.
This commit is contained in:
parent
26f196a067
commit
c60ee14b86
@ -819,8 +819,8 @@ return [
|
|||||||
'inactive' => 'Inactive',
|
'inactive' => 'Inactive',
|
||||||
'active' => 'Active',
|
'active' => 'Active',
|
||||||
'difference' => 'Difference',
|
'difference' => 'Difference',
|
||||||
'in' => 'In',
|
'money_flowing_in' => 'In',
|
||||||
'out' => 'Out',
|
'money_flowing_out' => 'Out',
|
||||||
'topX' => 'top :number',
|
'topX' => 'top :number',
|
||||||
'show_full_list' => 'Show entire list',
|
'show_full_list' => 'Show entire list',
|
||||||
'show_only_top' => 'Show only top :number',
|
'show_only_top' => 'Show only top :number',
|
||||||
@ -980,8 +980,7 @@ return [
|
|||||||
'total_size' => 'total size',
|
'total_size' => 'total size',
|
||||||
'budget_or_budgets' => 'budget(s)',
|
'budget_or_budgets' => 'budget(s)',
|
||||||
'budgets_with_limits' => 'budget(s) with configured amount',
|
'budgets_with_limits' => 'budget(s) with configured amount',
|
||||||
'rule_or_rules' => 'rule(s)',
|
'nr_of_rules_in_total_groups' => ':count_rules rule(s) in :count_groups rule group(s)',
|
||||||
'rulegroup_or_groups' => 'rule group(s)',
|
|
||||||
'tag_or_tags' => 'tag(s)',
|
'tag_or_tags' => 'tag(s)',
|
||||||
'configuration_updated' => 'The configuration has been updated',
|
'configuration_updated' => 'The configuration has been updated',
|
||||||
'setting_is_demo_site' => 'Demo site',
|
'setting_is_demo_site' => 'Demo site',
|
||||||
|
@ -115,9 +115,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>{{ trans('list.rule_and_groups_count') }}</td>
|
<td>{{ trans('list.rule_and_groups_count') }}</td>
|
||||||
<td>
|
<td>
|
||||||
{{ information.rules }} {{ 'rule_or_rules'|_ }} {{ 'in'|_ }} {{ information.rule_groups }}
|
{{ trans('firefly.nr_of_rules_in_total_groups', {count_rules: information.rules, count_groups: information.rule_groups}) }}
|
||||||
|
|
||||||
{{ 'rulegroup_or_groups'|_ }}
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ 'in'|_ }}</td>
|
<td>{{ 'money_flowing_in'|_ }}</td>
|
||||||
<td style="text-align: right;">{{ incomeSum|formatAmount }}</td>
|
<td style="text-align: right;">{{ incomeSum|formatAmount }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ 'out'|_ }}</td>
|
<td>{{ 'money_flowing_out'|_ }}</td>
|
||||||
<td style="text-align: right;">{{ expensesSum|formatAmount }}</td>
|
<td style="text-align: right;">{{ expensesSum|formatAmount }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user