Преглед на файлове

[Form] Replace `an` with `is`

Manuel de Ruiter преди 13 години
родител
ревизия
970e2a2608
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToArrayTransformer.php

+ 3 - 3
src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToArrayTransformer.php

@@ -143,15 +143,15 @@ class DateTimeToArrayTransformer extends BaseDateTimeTransformer
         }
 
         if (isset($value['month']) && !ctype_digit($value['month'])) {
-            throw new TransformationFailedException('This month an invalid');
+            throw new TransformationFailedException('This month is invalid');
         }
 
         if (isset($value['day']) && !ctype_digit($value['day'])) {
-            throw new TransformationFailedException('This day an invalid');
+            throw new TransformationFailedException('This day is invalid');
         }
 
         if (isset($value['year']) && !ctype_digit($value['year'])) {
-            throw new TransformationFailedException('This year an invalid');
+            throw new TransformationFailedException('This year is invalid');
         }
 
         if (!empty($value['month']) && !empty($value['day']) && !empty($value['year']) && false === checkdate($value['month'], $value['day'], $value['year'])) {