This repository has been archived by the owner on Apr 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into acceptHandling
Conflicts: library/Zend/Mvc/Controller/RestfulController.php
- Loading branch information
72 parents
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
+
b8d6e5f
+
cf90e76
+
a38e673
+
ddc5b11
+
203f4f2
+
f755a1b
+
7b4bdc5
+
9e19c9d
+
1645624
+
0f36602
+
32da7d8
+
9cd65f3
commit 1392a56
Showing
7 changed files
with
50 additions
and
91 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,17 @@ | ||
language: php | ||
|
||
php: | ||
- 5.3.3 | ||
- 5.3 | ||
- 5.4 | ||
|
||
before_install: cp tests/TravisTestConfiguration.php tests/TestConfiguration.php | ||
before_install: | ||
- cp tests/TestConfiguration.php.travis tests/TestConfiguration.php | ||
- curl -s http://getcomposer.org/installer | php | ||
- php composer.phar install --dev | ||
|
||
script: ./.travis/run-tests.sh | ||
script: | ||
- php ./tests/run-tests.php | ||
|
||
notifications: | ||
irc: "irc.freenode.org#zftalk.2" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php | ||
/** | ||
* Zend Framework | ||
* | ||
* LICENSE | ||
* | ||
* This source file is subject to the new BSD license that is bundled | ||
* with this package in the file LICENSE.txt. | ||
* It is also available through the world-wide-web at this URL: | ||
* http://framework.zend.com/license/new-bsd | ||
* If you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to license@zend.com so we can send you a copy immediately. | ||
* | ||
* @category Zend | ||
* @package Zend_Translate | ||
* @subpackage Resource | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
*/ | ||
|
||
/** | ||
* EN-Revision: 30.Jul.2011 | ||
*/ | ||
return array( | ||
// Zend_Captcha_ReCaptcha | ||
"Missing captcha fields" => "Campi captcha mancanti", | ||
"Failed to validate captcha" => "Validazione del captcha fallito", | ||
"Captcha value is wrong: %value%" => "Il valore del Captcha è sbagliato: %value%", | ||
|
||
// Zend_Captcha_Word | ||
"Empty captcha value" => "Valore del captcha vuoto", | ||
"Captcha ID field is missing" => "Manca il campo Captcha ID", | ||
"Captcha value is wrong" => "Il valore del Captcha è sbagliato", | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters