diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-12-15 09:34:54 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-15 09:34:54 +0000 |
commit | 7b5713d485b5e9cfb0537e66a365998ef3775e57 (patch) | |
tree | 2ed5d04a0533c121e14b577d2452554249563a15 | |
parent | 0567334c62c9fe4da7f68d37fd5f833f198bba7e (diff) |
(merge of vendor/kohana/modified r19221) Remove captcha, swift and pagination message catalogs; we don't need those
-rw-r--r-- | kohana/i18n/en_US/captcha.php | 33 | ||||
-rw-r--r-- | kohana/i18n/en_US/pagination.php | 15 | ||||
-rw-r--r-- | kohana/i18n/en_US/swift.php | 6 |
3 files changed, 0 insertions, 54 deletions
diff --git a/kohana/i18n/en_US/captcha.php b/kohana/i18n/en_US/captcha.php deleted file mode 100644 index 60404711..00000000 --- a/kohana/i18n/en_US/captcha.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php defined('SYSPATH') OR die('No direct access allowed.'); - -$lang = array -( - 'file_not_found' => 'The specified file, %s, was not found. Please verify that files exist by using file_exists() before using them.', - 'requires_GD2' => 'The Captcha library requires GD2 with FreeType support. Please see http://php.net/gd_info for more information.', - - // Words of varying length for the Captcha_Word_Driver to pick from - // Note: use only alphanumeric characters - 'words' => array - ( - 'cd', 'tv', 'it', 'to', 'be', 'or', - 'sun', 'car', 'dog', 'bed', 'kid', 'egg', - 'bike', 'tree', 'bath', 'roof', 'road', 'hair', - 'hello', 'world', 'earth', 'beard', 'chess', 'water', - 'barber', 'bakery', 'banana', 'market', 'purple', 'writer', - 'america', 'release', 'playing', 'working', 'foreign', 'general', - 'aircraft', 'computer', 'laughter', 'alphabet', 'kangaroo', 'spelling', - 'architect', 'president', 'cockroach', 'encounter', 'terrorism', 'cylinders', - ), - - // Riddles for the Captcha_Riddle_Driver to pick from - // Note: use only alphanumeric characters - 'riddles' => array - ( - array('Do you hate spam? (yes or no)', 'yes'), - array('Are you a robot? (yes or no)', 'no'), - array('Fire is... (hot or cold)', 'hot'), - array('The season after fall is...', 'winter'), - array('Which day of the week is it today?', strftime('%A')), - array('Which month of the year are we in?', strftime('%B')), - ), -); diff --git a/kohana/i18n/en_US/pagination.php b/kohana/i18n/en_US/pagination.php deleted file mode 100644 index 26d65615..00000000 --- a/kohana/i18n/en_US/pagination.php +++ /dev/null @@ -1,15 +0,0 @@ -<?php defined('SYSPATH') OR die('No direct access allowed.'); - -$lang = array -( - 'undefined_group' => 'The %s group is not defined in your pagination configuration.', - 'page' => 'page', - 'pages' => 'pages', - 'item' => 'item', - 'items' => 'items', - 'of' => 'of', - 'first' => 'first', - 'last' => 'last', - 'previous' => 'previous', - 'next' => 'next', -); diff --git a/kohana/i18n/en_US/swift.php b/kohana/i18n/en_US/swift.php deleted file mode 100644 index 249c4a85..00000000 --- a/kohana/i18n/en_US/swift.php +++ /dev/null @@ -1,6 +0,0 @@ -<?php defined('SYSPATH') OR die('No direct access allowed.'); - -$lang = array -( - 'general_error' => 'An error occurred while sending the email message.' -);
\ No newline at end of file |