Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/translations-cz' into releases/2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/CreditCard.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class CreditCard extends AbstractValidator
self::LENGTH => "The input contains an invalid amount of digits",
self::PREFIX => "The input is not from an allowed institute",
self::SERVICE => "The input seems to be an invalid creditcard number",
self::SERVICEFAILURE => "An exception has been raised while validating the input.",
self::SERVICEFAILURE => "An exception has been raised while validating the input",
);

/**
Expand Down
2 changes: 1 addition & 1 deletion src/DateStep.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class DateStep extends AbstractValidator
protected $messageTemplates = array(
self::INVALID => "Invalid type given. String, integer, array or DateTime expected",
self::INVALID_DATE => "The input does not appear to be a valid date",
self::NOT_STEP => "The input is not a valid step."
self::NOT_STEP => "The input is not a valid step"
);

/**
Expand Down
4 changes: 2 additions & 2 deletions src/Step.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ class Step extends AbstractValidator
* @var array
*/
protected $messageTemplates = array(
self::INVALID => "Invalid value given. Scalar expected.",
self::NOT_STEP => "The input is not a valid step."
self::INVALID => "Invalid value given. Scalar expected",
self::NOT_STEP => "The input is not a valid step"
);

/**
Expand Down

0 comments on commit b02b602

Please sign in to comment.