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

This commit is contained in:
ZwF
2024-01-24 15:43:43 +01:00
committed by GitHub
parent a4926ba9ba
commit d73d527ffc
3 changed files with 3 additions and 3 deletions
+1 -1
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;
}
}