Changeset 3299 for trunk/system/i18n
- Timestamp:
- 08/08/2008 05:59:56 AM (4 months ago)
- Location:
- trunk/system/i18n/en_GB
- Files:
-
- 3 added
- 8 modified
-
cache.php (modified) (1 diff)
-
captcha.php (added)
-
core.php (modified) (1 diff)
-
encrypt.php (modified) (1 diff)
-
event.php (added)
-
image.php (modified) (2 diffs)
-
orm.php (added)
-
pagination.php (modified) (1 diff)
-
session.php (modified) (1 diff)
-
upload.php (modified) (1 diff)
-
validation.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/i18n/en_GB/cache.php
r1954 r3299 3 3 $lang = array 4 4 ( 5 ' driver_not_supported' => 'The requested Cache driver, %s, was not found.',5 'undefined_group' => 'The %s group is not defined in your configuration.', 6 6 'extension_not_loaded' => 'The %s PHP extension must be loaded to use this driver.', 7 'unwritable' => 'The configured storage location, <tt>%s</tt>, is not writable.',7 'unwritable' => 'The configured storage location, %s, is not writable.', 8 8 'resources' => 'Caching of resources is impossible, because resources cannot be serialised.', 9 9 'driver_error' => '%s', -
trunk/system/i18n/en_GB/core.php
r2760 r3299 3 3 $lang = array 4 4 ( 5 'there_can_be_only_one' => 'There can be only one instance of Kohana per page request .',5 'there_can_be_only_one' => 'There can be only one instance of Kohana per page request', 6 6 'uncaught_exception' => 'Uncaught %s: %s in file %s on line %s', 7 'invalid_method' => 'Invalid method <tt>%s</tt> called in <tt>%s</tt>.', 8 'log_dir_unwritable' => 'Your log.directory config setting does not point to a writable directory.', 9 'resource_not_found' => 'The requested %s, <tt>%s</tt>, could not be found.', 10 'invalid_filetype' => 'The requested filetype, <tt>.%s</tt>, is not allowed in your view configuration file.', 11 'no_default_route' => 'Please set a default route in <tt>config/routes.php</tt>.', 7 'invalid_method' => 'Invalid method %s called in %s', 8 'invalid_property' => 'The %s property does not exist in the %s class.', 9 'log_dir_unwritable' => 'The log directory is not writable: %s', 10 'resource_not_found' => 'The requested %s, %s, could not be found', 11 'invalid_filetype' => 'The requested filetype, .%s, is not allowed in your view configuration file', 12 'view_set_filename' => 'You must set the the view filename before calling render', 13 'no_default_route' => 'Please set a default route in config/routes.php', 12 14 'no_controller' => 'Kohana was not able to determine a controller to process this request: %s', 13 'page_not_found' => 'The page you requested, <tt>%s</tt>, could not be found.',15 'page_not_found' => 'The page you requested, %s, could not be found.', 14 16 'stats_footer' => 'Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Kohana v{kohana_version}.', 15 'error_ message' => 'Error occurred at <strong>line %s</strong> of <strong>%s</strong>.',17 'error_file_line' => '<tt>%s <strong>[%s]:</strong></tt>', 16 18 'stack_trace' => 'Stack Trace', 17 19 'generic_error' => 'Unable to Complete Request', 18 20 'errors_disabled' => 'You can go to the <a href="%s">home page</a> or <a href="%s">try again</a>.', 19 21 22 // Drivers 23 'driver_implements' => 'The %s driver for the %s library must implement the %s interface', 24 'driver_not_found' => 'The %s driver for the %s library could not be found', 25 20 26 // Resource names 27 'config' => 'config file', 21 28 'controller' => 'controller', 22 29 'helper' => 'helper', -
trunk/system/i18n/en_GB/encrypt.php
r1954 r3299 3 3 $lang = array 4 4 ( 5 'requires_mcrypt' => 'To use the Encrypt library, mcrypt must be enabled.', 6 'no_encryption_key' => 'To use the Encrypt library, you need to set an encryption key in your config file.' 5 'undefined_group' => 'The %s group is not defined in your configuration.', 6 'requires_mcrypt' => 'To use the Encrypt library, mcrypt must be enabled in your PHP installation', 7 'no_encryption_key' => 'To use the Encrypt library, you must set an encryption key in your config file' 7 8 ); -
trunk/system/i18n/en_GB/image.php
r1954 r3299 3 3 $lang = array 4 4 ( 5 'getimagesize_missing' => 'The Image library requires the <tt>getimagesize</tt> PHP function, which is not available in your installation.', 6 'driver_not_supported' => 'The requested Image driver, %s, was not found.', 5 'getimagesize_missing' => 'The Image library requires the getimagesize() PHP function, which is not available in your installation.', 7 6 'unsupported_method' => 'Your configured driver does not support the %s image transformation.', 8 'file_not_found' => 'The specified image, %s, was not found. Please verify that images exist by using <tt>file_exists</tt>before manipulating them.',7 'file_not_found' => 'The specified image, %s, was not found. Please verify that images exist by using file_exists() before manipulating them.', 9 8 'type_not_allowed' => 'The specified image, %s, is not an allowed image type.', 10 9 'invalid_width' => 'The width you specified, %s, is not valid.', … … 13 12 'invalid_master' => 'The master dimension specified is not valid.', 14 13 'invalid_flip' => 'The flip direction specified is not valid.', 14 'directory_unwritable' => 'The specified directory, %s, is not writable.', 15 15 16 16 // ImageMagick specific messages -
trunk/system/i18n/en_GB/pagination.php
r1954 r3299 3 3 $lang = array 4 4 ( 5 'undefined_group' => 'The %s group is not defined in your pagination configuration.', 5 6 'page' => 'page', 6 7 'pages' => 'pages', -
trunk/system/i18n/en_GB/session.php
r1954 r3299 3 3 $lang = array 4 4 ( 5 'driver_not_supported' => 'The requested Session driver, %s, was not found.', 6 'driver_implements' => 'The requested Session driver, %s, does not implement Session_Driver.', 7 'invalid_session_name' => 'The session_name, %s, is invalid. It should contain only alphanumeric characters and at least one letter should be present.', 5 'invalid_session_name' => 'The session_name, %s, is invalid. It must contain only alphanumeric characters and underscores. Also at least one letter must be present.', 8 6 ); -
trunk/system/i18n/en_GB/upload.php
r1954 r3299 3 3 $lang = array 4 4 ( 5 'userfile_not_set' => 'Unable to find a post variable called %s.', 6 'file_exceeds_limit' => 'The uploaded file exceeds the maximum allowed size in your PHP configuration file', 7 'file_partial' => 'The file was only partially uploaded', 8 'no_file_selected' => 'You did not select a file to upload', 9 'invalid_filetype' => 'The file type you are attempting to upload is not allowed.', 10 'invalid_filesize' => 'The file you are attempting to upload is larger than the permitted size (%s)', 11 'invalid_dimensions' => 'The image you are attempting to upload exceedes the maximum height or width (%s)', 12 'destination_error' => 'A problem was encountered while attempting to move the uploaded file to the final destination.', 13 'no_filepath' => 'The upload path does not appear to be valid.', 14 'no_file_types' => 'You have not specified any allowed file types.', 15 'bad_filename' => 'The file name you submitted already exists on the server.', 16 'not_writable' => 'The upload destination folder, %s, does not appear to be writable.', 17 'error_on_file' => 'Error uploading %s:', 18 // Error code responses 19 'set_allowed' => 'For security, you must set the types of files that are allowed to be uploaded.', 20 'max_file_size' => 'For security, please do not use MAX_FILE_SIZE to control the maximum upload size.', 21 'no_tmp_dir' => 'Could not find a temporary directory to write to.', 22 'tmp_unwritable' => 'Could not create or write to the configured upload directory, %s.' 5 'not_writable' => 'The upload destination folder, %s, does not appear to be writable.', 23 6 ); -
trunk/system/i18n/en_GB/validation.php
r2798 r3299 4 4 ( 5 5 // Class errors 6 'error_format' => 'Your error message string must contain the string {message} .',7 6 'invalid_rule' => 'Invalid validation rule used: %s', 8 7
