Skip to content

Commit

Permalink
Fix misc typos introduce in the multi-language feature (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
devzwf authored Jan 24, 2024
1 parent a4926ba commit d73d527
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion includes/i18n/en.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"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",
Expand Down
2 changes: 1 addition & 1 deletion includes/i18n/fr.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"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",
Expand Down
2 changes: 1 addition & 1 deletion includes/list_subscriptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function getBillingCycle($cycle, $frequency, $i18n) {
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;
}
}
Expand Down

0 comments on commit d73d527

Please sign in to comment.