Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
trasher committed Apr 10, 2024
1 parent 8c22526 commit e90ff8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions galette/lib/Galette/Core/Preferences.php
Expand Up @@ -712,12 +712,12 @@ public function validateValue(string $fieldname, $value)
break;
case 'pref_card_vsize':
if (!is_numeric($value) || $value < 40 || $value > 55) {
$this->errors[] = _T("- The card height have to be integer and beetwin 40 and 55!");
$this->errors[] = _T("- The card height have to be an integer between 40 and 55!");
}
break;
case 'pref_card_hsize':
if (!is_numeric($value) || $value < 70 || $value > 95) {
$this->errors[] = _T("- The card width have to be integer and beetwin 75 and 95!");
$this->errors[] = _T("- The card width have to be an integer between 75 and 95!");
}
break;
case 'pref_card_tcol':
Expand Down

0 comments on commit e90ff8f

Please sign in to comment.