mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
New translations
This commit is contained in:
parent
f74e8e9cb7
commit
6b4785ae32
@ -73,6 +73,7 @@ return [
|
|||||||
'field_supports_markdown' => 'This field supports <a href="https://en.support.wordpress.com/markdown-quick-reference/">Markdown</a>.',
|
'field_supports_markdown' => 'This field supports <a href="https://en.support.wordpress.com/markdown-quick-reference/">Markdown</a>.',
|
||||||
|
|
||||||
// repeat frequencies:
|
// repeat frequencies:
|
||||||
|
'repeat_freq_yearly' => 'yearly',
|
||||||
'repeat_freq_monthly' => 'monthly',
|
'repeat_freq_monthly' => 'monthly',
|
||||||
'weekly' => 'weekly',
|
'weekly' => 'weekly',
|
||||||
'quarterly' => 'quarterly',
|
'quarterly' => 'quarterly',
|
||||||
@ -99,7 +100,6 @@ return [
|
|||||||
'export_format_csv' => 'Comma separated values (CSV file)',
|
'export_format_csv' => 'Comma separated values (CSV file)',
|
||||||
'export_format_mt940' => 'MT940 compatible format',
|
'export_format_mt940' => 'MT940 compatible format',
|
||||||
'export_included_accounts' => 'Export transactions from these accounts',
|
'export_included_accounts' => 'Export transactions from these accounts',
|
||||||
'include_config_help' => 'For easy re-import into Firefly III',
|
|
||||||
'include_old_uploads_help' => 'Firefly III does not throw away the original CSV files you have imported in the past. You can include them in your export.',
|
'include_old_uploads_help' => 'Firefly III does not throw away the original CSV files you have imported in the past. You can include them in your export.',
|
||||||
'do_export' => 'Export',
|
'do_export' => 'Export',
|
||||||
'export_status_never_started' => 'The export has not started yet',
|
'export_status_never_started' => 'The export has not started yet',
|
||||||
@ -238,6 +238,10 @@ return [
|
|||||||
'rule_action_set_description_choice' => 'Set description to..',
|
'rule_action_set_description_choice' => 'Set description to..',
|
||||||
'rule_action_append_description_choice' => 'Append description with..',
|
'rule_action_append_description_choice' => 'Append description with..',
|
||||||
'rule_action_prepend_description_choice' => 'Prepend description with..',
|
'rule_action_prepend_description_choice' => 'Prepend description with..',
|
||||||
|
'rule_action_set_source_account_choice' => 'Set source account to...',
|
||||||
|
'rule_action_set_source_account' => 'Set source account to :action_value',
|
||||||
|
'rule_action_set_destination_account_choice' => 'Set destination account to...',
|
||||||
|
'rule_action_set_destination_account' => 'Set destination account to :action_value',
|
||||||
|
|
||||||
// tags
|
// tags
|
||||||
'store_new_tag' => 'Store new tag',
|
'store_new_tag' => 'Store new tag',
|
||||||
@ -349,6 +353,41 @@ return [
|
|||||||
'title_transfer' => 'Transfers',
|
'title_transfer' => 'Transfers',
|
||||||
'title_transfers' => 'Transfers',
|
'title_transfers' => 'Transfers',
|
||||||
|
|
||||||
|
// convert stuff:
|
||||||
|
'convert_is_already_type_Withdrawal' => 'This transaction is already a withdrawal',
|
||||||
|
'convert_is_already_type_Deposit' => 'This transaction is already a deposit',
|
||||||
|
'convert_is_already_type_Transfer' => 'This transaction is already a transfer',
|
||||||
|
'convert_to_Withdrawal' => 'Convert ":description" to a withdrawal',
|
||||||
|
'convert_to_Deposit' => 'Convert ":description" to a deposit',
|
||||||
|
'convert_to_Transfer' => 'Convert ":description" to a transfer',
|
||||||
|
'convert_options_WithdrawalDeposit' => 'Convert a withdrawal into a deposit',
|
||||||
|
'convert_options_WithdrawalTransfer' => 'Convert a withdrawal into a transfer',
|
||||||
|
'convert_options_DepositTransfer' => 'Convert a deposit into a transfer',
|
||||||
|
'convert_options_DepositWithdrawal' => 'Convert a deposit into a withdrawal',
|
||||||
|
'convert_options_TransferWithdrawal' => 'Convert a transfer into a withdrawal',
|
||||||
|
'convert_options_TransferDeposit' => 'Convert a transfer into a deposit',
|
||||||
|
'transaction_journal_convert_options' => 'Convert this transaction',
|
||||||
|
'convert_Withdrawal_to_deposit' => 'Convert this withdrawal to a deposit',
|
||||||
|
'convert_Withdrawal_to_transfer' => 'Convert this withdrawal to a transfer',
|
||||||
|
'convert_Deposit_to_withdrawal' => 'Convert this deposit to a withdrawal',
|
||||||
|
'convert_Deposit_to_transfer' => 'Convert this deposit to a transfer',
|
||||||
|
'convert_Transfer_to_deposit' => 'Convert this transfer to a deposit',
|
||||||
|
'convert_Transfer_to_withdrawal' => 'Convert this transfer to a withdrawal',
|
||||||
|
'convert_please_set_revenue_source' => 'Please pick the revenue account where the money will come from.',
|
||||||
|
'convert_please_set_asset_destination' => 'Please pick the asset account where the money will go to.',
|
||||||
|
'convert_please_set_expense_destination' => 'Please pick the expense account where the money will go to.',
|
||||||
|
'convert_please_set_asset_source' => 'Please pick the asset account where the money will come from.',
|
||||||
|
'convert_explanation_withdrawal_deposit' => 'If you convert this withdrawal into a deposit, :amount will be deposited into <a href=":sourceRoute">:sourceName</a> instead of taken from it.',
|
||||||
|
'convert_explanation_withdrawal_transfer' => 'If you convert this withdrawal into a transfer, :amount will be transferred from <a href=":sourceRoute">:sourceName</a> to a new asset account, instead of being paid to <a href=":destinationRoute">:destinationName</a>.',
|
||||||
|
'convert_explanation_deposit_withdrawal' => 'If you convert this deposit into a withdrawal, :amount will be removed from <a href=":destinationRoute">:destinationName</a> instead of added to it.',
|
||||||
|
'convert_explanation_deposit_transfer' => 'If you convert this deposit into a transfer, :amount will be transferred from an asset account of your choice into <a href=":destinationRoute">:destinationName</a>.',
|
||||||
|
'convert_explanation_transfer_withdrawal' => 'If you convert this transfer into a withdrawal, :amount will go from <a href=":sourceRoute">:sourceName</a> to a new destination as an expense, instead of to <a href=":destinationRoute">:destinationName</a> as a transfer.',
|
||||||
|
'convert_explanation_transfer_deposit' => 'If you convert this transfer into a deposit, :amount will be deposited into account <a href=":destinationRoute">:destinationName</a> instead of being transferred there.',
|
||||||
|
'converted_to_Withdrawal' => 'The transaction has been converted to a withdrawal',
|
||||||
|
'converted_to_Deposit' => 'The transaction has been converted to a deposit',
|
||||||
|
'converted_to_Transfer' => 'The transaction has been converted to a transfer',
|
||||||
|
|
||||||
|
|
||||||
// create new stuff:
|
// create new stuff:
|
||||||
'create_new_withdrawal' => 'Create new withdrawal',
|
'create_new_withdrawal' => 'Create new withdrawal',
|
||||||
'create_new_deposit' => 'Create new deposit',
|
'create_new_deposit' => 'Create new deposit',
|
||||||
@ -426,10 +465,10 @@ return [
|
|||||||
'stored_new_bill' => 'Stored new bill ":name"',
|
'stored_new_bill' => 'Stored new bill ":name"',
|
||||||
'cannot_scan_inactive_bill' => 'Inactive bills cannot be scanned.',
|
'cannot_scan_inactive_bill' => 'Inactive bills cannot be scanned.',
|
||||||
'rescanned_bill' => 'Rescanned everything.',
|
'rescanned_bill' => 'Rescanned everything.',
|
||||||
'bill_date_little_relevance' => 'The only part of this date used by Firefly is the day. It is only useful when your bill arrives at exactly the same date every month. If the payment date of your bills varies, simply use the first of the month.',
|
|
||||||
'average_bill_amount_year' => 'Average bill amount (:year)',
|
'average_bill_amount_year' => 'Average bill amount (:year)',
|
||||||
'average_bill_amount_overall' => 'Average bill amount (overall)',
|
'average_bill_amount_overall' => 'Average bill amount (overall)',
|
||||||
|
'not_or_not_yet' => 'Not (yet)',
|
||||||
|
'not_expected_period' => 'Not expected this period',
|
||||||
// accounts:
|
// accounts:
|
||||||
'details_for_asset' => 'Details for asset account ":name"',
|
'details_for_asset' => 'Details for asset account ":name"',
|
||||||
'details_for_expense' => 'Details for expense account ":name"',
|
'details_for_expense' => 'Details for expense account ":name"',
|
||||||
@ -604,8 +643,8 @@ return [
|
|||||||
'in' => 'In',
|
'in' => 'In',
|
||||||
'out' => 'Out',
|
'out' => 'Out',
|
||||||
'topX' => 'top :number',
|
'topX' => 'top :number',
|
||||||
'showTheRest' => 'Show everything',
|
'show_full_list' => 'Show entire list',
|
||||||
'hideTheRest' => 'Show only the top :number',
|
'show_only_top' => 'Show only top :number',
|
||||||
'sum_of_year' => 'Sum of year',
|
'sum_of_year' => 'Sum of year',
|
||||||
'sum_of_years' => 'Sum of years',
|
'sum_of_years' => 'Sum of years',
|
||||||
'average_of_year' => 'Average of year',
|
'average_of_year' => 'Average of year',
|
||||||
@ -619,7 +658,6 @@ return [
|
|||||||
'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.',
|
'more_info_help' => 'More information about these types of reports can be found in the help pages. Press the (?) icon in the top right corner.',
|
||||||
'report_included_accounts' => 'Included accounts',
|
'report_included_accounts' => 'Included accounts',
|
||||||
'report_date_range' => 'Date range',
|
'report_date_range' => 'Date range',
|
||||||
'report_include_help' => 'In all cases, transfers to shared accounts count as expenses, and transfers from shared accounts count as income.',
|
|
||||||
'report_preset_ranges' => 'Pre-set ranges',
|
'report_preset_ranges' => 'Pre-set ranges',
|
||||||
'shared' => 'Shared',
|
'shared' => 'Shared',
|
||||||
'fiscal_year' => 'Fiscal year',
|
'fiscal_year' => 'Fiscal year',
|
||||||
@ -630,6 +668,9 @@ return [
|
|||||||
'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end',
|
'balance_amount' => 'Expenses in budget ":budget" paid from account ":account" between :start and :end',
|
||||||
'no_audit_activity' => 'No activity was recorded on account <a href=":url" title=":account_name">:account_name</a> between :start and :end.',
|
'no_audit_activity' => 'No activity was recorded on account <a href=":url" title=":account_name">:account_name</a> between :start and :end.',
|
||||||
'audit_end_balance' => 'Account balance of <a href=":url" title=":account_name">:account_name</a> at the end of :end was: :balance',
|
'audit_end_balance' => 'Account balance of <a href=":url" title=":account_name">:account_name</a> at the end of :end was: :balance',
|
||||||
|
'reports_extra_options' => 'Extra options',
|
||||||
|
'report_has_no_extra_options' => 'This report has no extra options',
|
||||||
|
'reports_submit' => 'View report',
|
||||||
|
|
||||||
// charts:
|
// charts:
|
||||||
'chart' => 'Chart',
|
'chart' => 'Chart',
|
||||||
|
Loading…
Reference in New Issue
Block a user