mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Some cleaning up courtesy of PHPStorm.
This commit is contained in:
@@ -282,7 +282,7 @@ return [
|
||||
'csv_specifix_RabobankDescription' => 'Select this when you\'re importing Rabobank CSV export files.',
|
||||
'csv_specifix_Dummy' => 'Checking this has no effect whatsoever.',
|
||||
'csv_import_account_help' => 'If your CSV file does NOT contain information about your asset account(s), use this dropdown to select to which account the transactions in the CSV belong to.',
|
||||
'csv_delimiter_help' => 'Choose the field delimiter that is used in your input file. If not sure, comma is the safest option.',
|
||||
'csv_delimiter_help' => 'Choose the field delimiter that is used in your input file. If not sure, comma is the safest option.',
|
||||
'csv_date_parse_error' => 'Could not parse a valid date from ":value", using the format ":format". Are you sure your CSV is correct?',
|
||||
|
||||
// create new stuff:
|
||||
|
@@ -17,6 +17,6 @@ return [
|
||||
"token" => "This password reset token is invalid.",
|
||||
"sent" => "We have e-mailed your password reset link!",
|
||||
"reset" => "Your password has been reset!",
|
||||
'blocked' => 'Nice try though.'
|
||||
'blocked' => 'Nice try though.',
|
||||
|
||||
];
|
||||
|
@@ -282,7 +282,7 @@ return [
|
||||
'csv_specifix_RabobankDescription' => 'Select this when you\'re importing Rabobank CSV export files.',
|
||||
'csv_specifix_Dummy' => 'Checking this has no effect whatsoever.',
|
||||
'csv_import_account_help' => 'If your CSV file does NOT contain information about your asset account(s), use this dropdown to select to which account the transactions in the CSV belong to.',
|
||||
'csv_delimiter_help' => 'Choose the field delimiter that is used in your input file. If not sure, comma is the safest option.',
|
||||
'csv_delimiter_help' => 'Choose the field delimiter that is used in your input file. If not sure, comma is the safest option.',
|
||||
'csv_date_parse_error' => 'Could not parse a valid date from ":value", using the format ":format". Are you sure your CSV is correct?',
|
||||
|
||||
// create new stuff:
|
||||
|
@@ -17,6 +17,6 @@ return [
|
||||
"token" => "Le jeton de réinitialisation de mot de passe est invalide.",
|
||||
"sent" => "Nous avons envoyé votre lien de réinitialisation de mot de passe!",
|
||||
"reset" => "Le mot de passe a été réinitialisé!",
|
||||
'blocked' => 'Nice try though.'
|
||||
'blocked' => 'Nice try though.',
|
||||
|
||||
];
|
||||
|
@@ -282,7 +282,7 @@ return [
|
||||
'csv_specifix_RabobankDescription' => 'Vink dit aan als je Rabobank bestanden importeert.',
|
||||
'csv_specifix_Dummy' => 'Dit vinkje doet niks (dummy).',
|
||||
'csv_import_account_help' => 'Als jouw CSV bestand geen referenties bevat naar jouw rekening(en), geef dan hier aan om welke rekening het gaat.',
|
||||
'csv_delimiter_help' => 'Kies het veldscheidingsteken dat in het invoerbestand is gebruikt. Bij twijfel is de komma de veiligste optie.',
|
||||
'csv_delimiter_help' => 'Kies het veldscheidingsteken dat in het invoerbestand is gebruikt. Bij twijfel is de komma de veiligste optie.',
|
||||
'csv_date_parse_error' => 'Firefly kan van ":value" geen datum maken, gegeven het formaat ":format". Weet je zeker dat je CSV goed is?',
|
||||
|
||||
// create new stuff:
|
||||
|
@@ -17,6 +17,6 @@ return [
|
||||
"token" => "Ongeldig token! Sorry",
|
||||
"sent" => "Je krijgt een mailtje met een linkje om je wachtwoord te herstellen!",
|
||||
"reset" => "Je wachtwoord is hersteld!",
|
||||
'blocked' => 'Leuk geprobeerd wel.'
|
||||
'blocked' => 'Leuk geprobeerd wel.',
|
||||
|
||||
];
|
||||
|
@@ -282,7 +282,7 @@ return [
|
||||
'csv_specifix_RabobankDescription' => 'Select this when you\'re importing Rabobank CSV export files.',
|
||||
'csv_specifix_Dummy' => 'Checking this has no effect whatsoever.',
|
||||
'csv_import_account_help' => 'If your CSV file does NOT contain information about your asset account(s), use this dropdown to select to which account the transactions in the CSV belong to.',
|
||||
'csv_delimiter_help' => 'Choose the field delimiter that is used in your input file. If not sure, comma is the safest option.',
|
||||
'csv_delimiter_help' => 'Choose the field delimiter that is used in your input file. If not sure, comma is the safest option.',
|
||||
'csv_date_parse_error' => 'Could not parse a valid date from ":value", using the format ":format". Are you sure your CSV is correct?',
|
||||
|
||||
// create new stuff:
|
||||
|
@@ -17,6 +17,6 @@ return [
|
||||
"token" => "Este token de redefinição de senha é inválido.",
|
||||
"sent" => "Nós te enviamos um email com um link para trocar a senha!",
|
||||
"reset" => "Sua senha foi redefinida!",
|
||||
'blocked' => 'Nice try though.'
|
||||
'blocked' => 'Nice try though.',
|
||||
|
||||
];
|
||||
|
@@ -62,6 +62,7 @@
|
||||
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
@@ -23,9 +23,9 @@
|
||||
<input type="text" value="{{ oldValue }}" name="rule-trigger-value[{{ count }}]"
|
||||
class="form-control">
|
||||
{% if errors.has(('rule-trigger-value.'~count)) %}
|
||||
<p class="text-danger">
|
||||
{{ errors.first('rule-trigger-value.'~count) }}
|
||||
</p>
|
||||
<p class="text-danger">
|
||||
{{ errors.first('rule-trigger-value.'~count) }}
|
||||
</p>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td style="width:20%;">
|
||||
|
@@ -1,4 +1,3 @@
|
||||
|
||||
{% extends "./layout/default.twig" %}
|
||||
|
||||
{% block breadcrumbs %}
|
||||
|
Reference in New Issue
Block a user