Initial Kohana install
[speedfreak] / Server / system / i18n / en_US / core.php
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2
3 $lang = array
4 (
5         'there_can_be_only_one' => 'There can be only one instance of Kohana per page request',
6         'uncaught_exception'    => 'Uncaught %s: %s in file %s on line %s',
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',
14         'no_controller'         => 'Kohana was not able to determine a controller to process this request: %s',
15         'page_not_found'        => 'The page you requested, %s, could not be found.',
16         'stats_footer'          => 'Loaded in {execution_time} seconds, using {memory_usage} of memory. Generated by Kohana v{kohana_version}.',
17         'error_file_line'       => '<tt>%s <strong>[%s]:</strong></tt>',
18         'stack_trace'           => 'Stack Trace',
19         'generic_error'         => 'Unable to Complete Request',
20         'errors_disabled'       => 'You can go to the <a href="%s">home page</a> or <a href="%s">try again</a>.',
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
26         // Resource names
27         'config'                => 'config file',
28         'controller'            => 'controller',
29         'helper'                => 'helper',
30         'library'               => 'library',
31         'driver'                => 'driver',
32         'model'                 => 'model',
33         'view'                  => 'view',
34 );