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

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
Promote develop to master, becoming the next stable release.
  • Loading branch information
weierophinney committed Mar 12, 2014
188 parents 97bdfb2 + 230d179 + 4b3564f + b544f2c + 7e095bb + 2e09fbd + 385463e + 493e8bf + 8accc42 + c0d425a + 278e5fc + f2f9883 + ee610ed + ef00595 + 546ed4b + 1e282f1 + 5a0e97e + 9b1b995 + 1f178dc + 19afffe + 3b1a256 + a01e488 + 6bd5417 + 7884984 + d7ead03 + ad447f0 + 30abd77 + 886c7dd + 0426e59 + 41bb0b6 + 48830b0 + d6e3cec + 3f64575 + 47056cf + 93da274 + 41ff6ee + 4d95164 + b49f56a + d9ca3c4 + eff94af + baa6f68 + b8d6e5f + cf90e76 + a38e673 + ddc5b11 + 203f4f2 + f755a1b + 7b4bdc5 + de1dabc + cffd7da + e68b46a + 6a4a61e + a495238 + 22ee4fd + 7c48789 + 88fc985 + 33867a8 + 72cc708 + 1253b9d + b527198 + 9f385cb + 9681d38 + 9ff4ea7 + 9dcc02b + a3b5a44 + 49aa6e1 + 785d144 + 6cb9145 + 98ba294 + 1a26005 + 6a37670 + 53069e2 + cdc28f8 + 7ed9b6d + 6aa8b3f + b08f0db + c6ffcad + 2e788ed + 5fa8668 + 331098b + 11a5300 + d15662e + a652577 + 113da58 + ac8c434 + 51dd55f + b8f65f9 + 5ab3ccd + 3c9d616 + 34eee47 + 1fc6a29 + 0f06888 + 781c1e1 + bfb1248 + adb0888 + 20476b6 + f0f3028 + fd934a8 + 039bd26 + 70f3e5a + 3d9849b + 118afdb + 029c839 + 31a4435 + fa239e0 + 18c2969 + 28b9d7b + 34e166a + 9e19c9d + 1645624 + 0f36602 + 32da7d8 + 9cd65f3 + 10a2ceb + f8a3f38 + 7b59c4b + 281109c + e15b4b2 + 00a7ba9 + d3f35c0 + e89516e + cbf495f + 89118d6 + 4f9b8b7 + d51ad32 + bdfd7d8 + 0dc32e4 + ca27a0e + b0b5deb + 8f5f165 + e85eb90 + 8f6f830 + 6a31d61 + 54ae670 + 1cad3f0 + beb876e + d725de0 + bf57c7d + 822964a + 669aa66 + 76422ec + 62cdf38 + cbe43a2 + 6b3919c + 832c96f + 72e3bd6 + 5cfa5d3 + f012f21 + 49e3436 + 465b2ed + 91cc8bb + 86b4350 + e32c680 + d82c755 + b9aa141 + ab2eabe + dc44bfd + b6b709b + a532720 + da21aec + c5778b9 + 0c4bddf + 2949069 + 32cca05 + 351e176 + ae57563 + aaa4dad + 8002f21 + 8609d03 + 81091aa + 1abecc5 + 99e065a + be2b2d8 + 4043721 + 4b52b1f + adf262d + 1c20c0f + f380ca1 + a14332b + ccca4d8 + 0db0a30 + ba85cb6 + 276f386 + cad56d4 + 39a0907 + 274bf4b + 46e1399 + 32a5624 commit 9eea463
Show file tree
Hide file tree
Showing 10 changed files with 675 additions and 314 deletions.
1 change: 1 addition & 0 deletions .coveralls.yml
@@ -0,0 +1 @@
src_dir: library
7 changes: 6 additions & 1 deletion .php_cs
@@ -1,8 +1,13 @@
<?php
$finder = Symfony\CS\Finder\DefaultFinder::create()
->notName('TestSampleClass10.php')
->exclude('demos')
->exclude('resources')
->notPath('tests/ZendTest/Code/Reflection/FunctionReflectionTest.php')
->notPath('tests/ZendTest/Code/Reflection/MethodReflectionTest.php')
->notPath('tests/ZendTest/Code/Reflection/TestAsset/closures.php')
->notPath('tests/ZendTest/Code/Reflection/TestAsset/functions.php')
->notPath('tests/ZendTest/Code/Reflection/TestAsset/TestSampleClass10.php')
->notPath('tests/ZendTest/Code/Reflection/TestAsset/TestSampleClass11.php')
->notPath('tests/ZendTest/Code/TestAsset')
->notPath('tests/ZendTest/Validator/_files')
->notPath('tests/ZendTest/Loader/_files')
Expand Down
21 changes: 17 additions & 4 deletions .travis.yml
@@ -1,17 +1,29 @@
language: php

php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm

before_install:
- cp tests/TestConfiguration.php.travis tests/TestConfiguration.php
install:
- sudo apt-get install parallel
- composer install --dev --prefer-source

before_script:
- mkdir -p build/coverage
- cp tests/TestConfiguration.php.travis tests/TestConfiguration.php

script:
- ant travis -keep-going
- bin/check-cs.sh
# Run tests for the various components in parallel
- ls -d tests/ZendTest/* | parallel --gnu --keep-order 'echo "Running {} tests"; ./vendor/bin/phpunit -c tests/phpunit.xml.dist --coverage-php build/coverage/coverage-{/.}.cov {};' || exit 1

after_script:
# Merges the individual clover reports of each component into a single clover.xml
- php vendor/bin/phpcov.php --merge --clover build/logs/clover.xml --whitelist library build/coverage
- php vendor/bin/coveralls

notifications:
irc: "irc.freenode.org#zftalk.dev"
Expand All @@ -21,3 +33,4 @@ matrix:
fast_finish: true
allow_failures:
- php: 5.6
- php: hhvm
4 changes: 2 additions & 2 deletions languages/bg/Zend_Captcha.php
Expand Up @@ -11,12 +11,12 @@
* EN-Revision: 30.Jul.2011
*/
return array(
// Zend_Captcha_ReCaptcha
// Zend\Captcha\ReCaptcha
"Missing captcha fields" => "Непопълнена стойност на капча",
"Failed to validate captcha" => "Не може да валидира капча",
"Captcha value is wrong: %value%" => "Стойността на капча е грешна: %value%",

// Zend_Captcha_Word
// Zend\Captcha\Word
"Empty captcha value" => "Непопълнена стойност на капча",
"Captcha ID field is missing" => "Липсващо капча ID поле",
"Captcha value is wrong" => "Стойността на капча е грешна",
Expand Down
224 changes: 123 additions & 101 deletions languages/bg/Zend_Validate.php

Large diffs are not rendered by default.

11 changes: 10 additions & 1 deletion languages/ca/Zend_Validate.php
Expand Up @@ -8,7 +8,7 @@
*/

/**
* EN-Revision: 04.Apr.2013
* EN-Revision: 16.Jul.2013
*/
return array(
// Zend\I18n\Validator\Alnum
Expand All @@ -21,6 +21,10 @@
"The input contains non alphabetic characters" => "L'entrada conté caràcters no alfabètics",
"The input is an empty string" => "L'entrada és una cadena buida",

// Zend\I18n\Validator\DateTime
"Invalid type given. String expected" => "Tipus no vàlid donat. S'espera una cadena de text",
"The input does not appear to be a valid datetime" => "L'entrada no sembla ser un datetime vàlid",

// Zend\I18n\Validator\Float
"Invalid type given. String, integer or float expected" => "Tipus no vàlid donat. S'espera una cadena de text, un enter o un nombre de precisió simple",
"The input does not appear to be a float" => "L'entrada no sembla ser un nombre de precisió simple",
Expand All @@ -29,6 +33,11 @@
"Invalid type given. String or integer expected" => "Tipus no vàlid donat. S'espera una cadena de text o un enter",
"The input does not appear to be an integer" => "L'entrada no sembla ser un nombre enter",

// Zend\I18n\Validator\PhoneNumber
"The input does not match a phone number format" => "L'entrada no coincideix amb un format de número de telèfon",
"The country provided is currently unsupported" => "El país proporcionat no està suportat",
"Invalid type given. String expected" => "Tipus no vàlid donat. S'espera una cadena de text",

// Zend\I18n\Validator\PostCode
"Invalid type given. String or integer expected" => "Tipus no vàlid donat. S'espera una cadena de text o un enter",
"The input does not appear to be a postal code" => "L'entrada no sembla ser un codi postal",
Expand Down
443 changes: 240 additions & 203 deletions languages/es/Zend_Validate.php

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions languages/id/Zend_Captcha.php
@@ -0,0 +1,23 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

/**
* ID-Revision: 08.Dec.2013
*/
return array(
// Zend\Captcha\ReCaptcha
"Missing captcha fields" => "Tidak ada bidang captcha",
"Failed to validate captcha" => "Gagal memvalidasi captcha",
"Captcha value is wrong: %value%" => "Nilai captcha salah: %value%",

// Zend\Captcha\AbstractWord
"Empty captcha value" => "Nilai captcha kosong",
"Captcha ID field is missing" => "Bidang Captcha ID tidak ada",
"Captcha value is wrong" => "Nilai Captcha salah",
);

0 comments on commit 9eea463

Please sign in to comment.