Changeset 3299 for trunk/system/i18n

Show
Ignore:
Timestamp:
08/08/2008 05:59:56 AM (4 months ago)
Author:
edam
Message:

en_GB ready for 2.2

Location:
trunk/system/i18n/en_GB
Files:
3 added
8 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/i18n/en_GB/cache.php

    r1954 r3299  
    33$lang = array 
    44( 
    5         'driver_not_supported' => 'The requested Cache driver, %s, was not found.', 
     5        'undefined_group'      => 'The %s group is not defined in your configuration.', 
    66        '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.', 
    88        'resources'            => 'Caching of resources is impossible, because resources cannot be serialised.', 
    99        'driver_error'         => '%s', 
  • trunk/system/i18n/en_GB/core.php

    r2760 r3299  
    33$lang = array 
    44( 
    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', 
    66        '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', 
    1214        '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.', 
    1416        '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>', 
    1618        'stack_trace'           => 'Stack Trace', 
    1719        'generic_error'         => 'Unable to Complete Request', 
    1820        'errors_disabled'       => 'You can go to the <a href="%s">home page</a> or <a href="%s">try again</a>.', 
    1921 
     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 
    2026        // Resource names 
     27        'config'                => 'config file', 
    2128        'controller'            => 'controller', 
    2229        'helper'                => 'helper', 
  • trunk/system/i18n/en_GB/encrypt.php

    r1954 r3299  
    33$lang = array 
    44( 
    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' 
    78); 
  • trunk/system/i18n/en_GB/image.php

    r1954 r3299  
    33$lang = array 
    44( 
    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.', 
    76        '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.', 
    98        'type_not_allowed'        => 'The specified image, %s, is not an allowed image type.', 
    109        'invalid_width'           => 'The width you specified, %s, is not valid.', 
     
    1312        'invalid_master'          => 'The master dimension specified is not valid.', 
    1413        'invalid_flip'            => 'The flip direction specified is not valid.', 
     14        'directory_unwritable'    => 'The specified directory, %s, is not writable.', 
    1515 
    1616        // ImageMagick specific messages 
  • trunk/system/i18n/en_GB/pagination.php

    r1954 r3299  
    33$lang = array 
    44( 
     5        'undefined_group' => 'The %s group is not defined in your pagination configuration.', 
    56        'page'     => 'page', 
    67        'pages'    => 'pages', 
  • trunk/system/i18n/en_GB/session.php

    r1954 r3299  
    33$lang = array 
    44( 
    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.', 
    86); 
  • trunk/system/i18n/en_GB/upload.php

    r1954 r3299  
    33$lang = array 
    44( 
    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.', 
    236); 
  • trunk/system/i18n/en_GB/validation.php

    r2798 r3299  
    44( 
    55        // Class errors 
    6         'error_format'  => 'Your error message string must contain the string {message} .', 
    76        'invalid_rule'  => 'Invalid validation rule used: %s', 
    87