Fix misc typos introduce in the multi-language feature (#88)

This commit is contained in:
ZwF 2024-01-24 09:43:43 -05:00 committed by GitHub
parent a4926ba9ba
commit d73d527ffc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ $i18n = [
"add_first_subscription" => "Add first subscription",
'new_subscription' => "New Subscription",
'sort' => "Sort",
'name' => "Nome",
'name' => "Name",
'last_added' => "Last Added",
'price' => "Price",
'next_payment' => "Next Payment",

View File

@ -10,7 +10,7 @@ $i18n = [
"main_currency" => "Devise principale",
"language" => "Langue",
"passwords_dont_match" => "Les mots de passe ne correspondent pas",
"registration_failed" => "L'inscription a échouée, veuillez réessayer.",
"registration_failed" => "L'inscription a échoué, veuillez réessayer.",
"register" => "S'inscrire",
// Page de connexion
'please_login' => "Veuillez vous connecter",

View File

@ -14,7 +14,7 @@
return $frequency == 1 ? translate('Monthly', $i18n) : $frequency . " " . translate('months', $i18n);
break;
case 4:
return $frequency == 1 ? translate('YEarly', $i18n) : $frequency . " " . translate('years', $i18n);
return $frequency == 1 ? translate('Yearly', $i18n) : $frequency . " " . translate('years', $i18n);
break;
}
}