Update language strings.

This commit is contained in:
James Cole
2020-03-16 06:47:06 +01:00
parent fbd88d03c5
commit b631adbbf2
58 changed files with 563 additions and 31 deletions

View File

@@ -218,6 +218,8 @@ return [
'unpaid_in_currency' => 'Obetalad i :currency',
'is_alpha_warning' => 'You are running an ALPHA version. Be wary of bugs and issues.',
'is_beta_warning' => 'You are running an BETA version. Be wary of bugs and issues.',
'all_destination_accounts' => 'Destination accounts',
'all_source_accounts' => 'Source accounts',
// check for updates:
'update_check_title' => 'Sök uppdateringar',
@@ -305,6 +307,9 @@ return [
'created_new_rule_group' => 'Ny regelgrupp ":title" sparad!',
'updated_rule_group' => 'Lyckades uppdatera regelgrupp ":title".',
'edit_rule_group' => 'Ändra regelgrupp ":title"',
'duplicate_rule' => 'Duplicate rule ":title"',
'rule_copy_of' => 'Copy of ":title"',
'duplicated_rule' => 'Duplicated rule ":title" into ":newTitle"',
'delete_rule_group' => 'Ta bort regelgrupp ":title"',
'deleted_rule_group' => 'Tog bort regelgrupp ":title"',
'update_rule_group' => 'Uppdatera regelgrupp',
@@ -783,6 +788,18 @@ return [
'over_budget_warn' => '<i class="fa fa-money"></i>Vanligen budgeterar du :amount per dag. Nu är det :over_amount per dag. Är du säker?',
'transferred_in' => 'Överfört (in)',
'transferred_away' => 'Överfört (bort)',
'auto_budget_none' => 'No auto-budget',
'auto_budget_reset' => 'Set a fixed amount every period',
'auto_budget_rollover' => 'Add an amount every period',
'auto_budget_period_daily' => 'Daily',
'auto_budget_period_weekly' => 'Weekly',
'auto_budget_period_monthly' => 'Monthly',
'auto_budget_period_quarterly' => 'Quarterly',
'auto_budget_period_half_year' => 'Every half year',
'auto_budget_period_yearly' => 'Yearly',
'auto_budget_help' => 'You can read more about this feature in the help. Click the top-right (?) icon.',
'auto_budget_reset_icon' => 'This budget will be set periodically',
'auto_budget_rollover_icon' => 'The budget amount will increase periodically',
// bills:
'match_between_amounts' => 'Nota matchar transaktioner mellan :low och :high.',

View File

@@ -43,6 +43,7 @@ return [
'journal_currency_id' => 'Valuta',
'currency_id' => 'Valuta',
'transaction_currency_id' => 'Valuta',
'auto_budget_currency_id' => 'Currency',
'external_ip' => 'Din servers externa IP',
'attachments' => 'Bilagor',
'journal_amount' => 'Belopp',
@@ -260,4 +261,9 @@ return [
'expected_on' => 'Förväntad',
'paid' => 'Betald',
'auto_budget_type' => 'Auto-budget',
'auto_budget_amount' => 'Auto-budget amount',
'auto_budget_period' => 'Auto-budget period',
];

View File

@@ -130,6 +130,7 @@ return [
'amount_zero' => 'Totala värdet kan inte vara noll.',
'current_target_amount' => 'Det nuvarande beloppet måste vara mindre än målbeloppet.',
'unique_piggy_bank_for_user' => 'Namnet på spargrisen måste vara unikt.',
'secure_password' => 'Detta lösenord är inte säkert. Vänligen försök igen. För mer info se https://bit.ly/FF3-password-security',
'valid_recurrence_rep_type' => 'Ogiltig repetitionstyp får återkommande transaktioner.',
'valid_recurrence_rep_moment' => 'Ogiltig repetitionsmoment för denna typ av repetition.',
@@ -200,4 +201,8 @@ return [
'gte.file' => 'The :attribute must be greater than or equal to :value kilobytes.',
'gte.string' => 'The :attribute must be greater than or equal to :value characters.',
'gte.array' => 'The :attribute must have :value items or more.',
'amount_required_for_auto_budget' => 'The amount is required.',
'auto_budget_amount_positive' => 'The amount must be more than zero.',
'auto_budget_period_mandatory' => 'The auto budget period is a mandatory field.',
];