Changeset 2667
- Timestamp:
- 05/13/08 03:23:53 (2 months ago)
- Files:
-
- trunk/system/i18n/en_US/archive.php (modified) (1 diff)
- trunk/system/i18n/en_US/cache.php (modified) (1 diff)
- trunk/system/i18n/en_US/database.php (modified) (1 diff)
- trunk/system/i18n/en_US/image.php (modified) (1 diff)
- trunk/system/i18n/en_US/payment.php (modified) (1 diff)
- trunk/system/i18n/en_US/session.php (modified) (1 diff)
- trunk/system/i18n/nl_NL/archive.php (modified) (1 diff)
- trunk/system/i18n/nl_NL/cache.php (modified) (1 diff)
- trunk/system/i18n/nl_NL/core.php (modified) (2 diffs)
- trunk/system/i18n/nl_NL/database.php (modified) (1 diff)
- trunk/system/i18n/nl_NL/image.php (modified) (1 diff)
- trunk/system/i18n/nl_NL/payment.php (modified) (1 diff)
- trunk/system/i18n/nl_NL/session.php (modified) (1 diff)
- trunk/system/libraries/Archive.php (modified) (2 diffs)
- trunk/system/libraries/Cache.php (modified) (2 diffs)
- trunk/system/libraries/Database.php (modified) (2 diffs)
- trunk/system/libraries/Image.php (modified) (1 diff)
- trunk/system/libraries/Payment.php (modified) (2 diffs)
- trunk/system/libraries/Session.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/system/i18n/en_US/archive.php
r1772 r2667 3 3 $lang = array 4 4 ( 5 'driver_not_supported' => 'The requested Archive driver, %s, was not found.',6 'driver_implements' => 'The requested Archive driver, %s, does not implement Archive_Driver.',7 5 'directory_unwritable' => 'The directory you requested to save the file in, %s, is unwritable. Please correct the permissions and try again.', 8 6 'filename_conflict' => 'The requested archive filename, %s, already exists and is not writable. Please remove the conflicting file and try again.' trunk/system/i18n/en_US/cache.php
r2377 r2667 4 4 ( 5 5 'undefined_group' => 'The %s group is not defined in your configuration.', 6 'driver_not_supported' => 'The requested Cache driver, %s, was not found.',7 'driver_implements' => 'The requested Cache driver, %s, does not implement Cache_Driver.',8 6 'extension_not_loaded' => 'The %s PHP extension must be loaded to use this driver.', 9 7 'unwritable' => 'The configured storage location, <tt>%s</tt>, is not writable.', trunk/system/i18n/en_US/database.php
r2413 r2667 6 6 'error' => 'There was an SQL error: %s', 7 7 'connection' => 'There was an error connecting to the database: %s', 8 'driver_not_supported' => 'The requested Database driver, %s, was not found.',9 8 'invalid_dsn' => 'The DSN you supplied is not valid: %s', 10 9 'must_use_set' => 'You must set a SET clause for your query.', trunk/system/i18n/en_US/image.php
r1921 r2667 4 4 ( 5 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.',7 6 'unsupported_method' => 'Your configured driver does not support the %s image transformation.', 8 7 'file_not_found' => 'The specified image, %s, was not found. Please verify that images exist by using <tt>file_exists</tt> before manipulating them.', trunk/system/i18n/en_US/payment.php
r1952 r2667 3 3 $lang = array 4 4 ( 5 'driver_not_supported' => 'The requested Payment driver, %s, was not found.',6 'driver_implements' => 'The requested Payment driver, %s, does not implement Payment_Driver.',7 5 'required' => 'Some required fields were not supplied: %s', 8 6 'gateway_connection_error' => 'An error occured connecting to the payment gateway. Please contact the webmaster if this problem persists.', trunk/system/i18n/en_US/session.php
r1866 r2667 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 5 'invalid_session_name' => 'The session_name, %s, is invalid. It should contain only alphanumeric characters and at least one letter should be present.', 8 6 ); trunk/system/i18n/nl_NL/archive.php
r1866 r2667 3 3 $lang = array 4 4 ( 5 'driver_not_supported' => 'De %s Archive driver werd niet gevonden.',6 'driver_implements' => 'De %s Archive driver implementeert de Archive_Driver interface niet.',7 5 'directory_unwritable' => 'De directory die je opgaf om het bestand in op te slaan, %s, is niet schrijfbaar. Stel de correcte permissies in en probeer opnieuw.', 8 6 'filename_conflict' => 'De bestandsnaam die je opgaf voor het archief, %s, bestaat al en is niet schrijfbaar. Verwijder dat bestand en probeer opnieuw.' trunk/system/i18n/nl_NL/cache.php
r2377 r2667 4 4 ( 5 5 'undefined_group' => 'De %s groep is niet gedefinieerd in uw configuratie.', 6 'driver_not_supported' => 'De %s Cache driver werd niet gevonden.',7 'driver_implements' => 'De %s Cache driver implementeert de Cache_Driver interface niet.',8 6 'extension_not_loaded' => 'De %s PHP extensie moet geladen zijn om deze driver te gebruiken.', 9 7 'unwritable' => 'De geconfigureerde opslaglocatie, <tt>%s</tt>, is niet schrijfbaar.', trunk/system/i18n/nl_NL/core.php
r2325 r2667 9 9 'resource_not_found' => 'De opgevraagde %s, <tt>%s</tt>, kon niet gevonden worden.', 10 10 'invalid_filetype' => 'Het opgevraagde bestandstype, <tt>.%s</tt>, wordt niet toegestaan door het view configuratiebestand.', 11 'view_set_filename' => 'Je moet de view bestandsnaam opgeven voordat je render aanroept.', 11 12 'no_default_route' => 'Zet een default route in <tt>config/routes.php</tt>.', 12 13 'no_controller' => 'Kohana kon geen controller aanduiden om deze pagina te verwerken: %s', … … 18 19 'errors_disabled' => 'Ga naar de <a href="%s">homepage</a> of <a href="%s">probeer opnieuw</a>.', 19 20 21 // Drivers 22 'driver_implements' => 'De %s driver voor de %s library moet de %s interface implementeren.', 23 'driver_not_found' => 'De %s driver voor de %s library werd niet gevonden.', 24 20 25 // Resource names 21 26 'controller' => 'controller', trunk/system/i18n/nl_NL/database.php
r2428 r2667 6 6 'error' => 'Er was een SQL fout: %s', 7 7 'connection' => 'Fout bij het verbinden met de database: %s', 8 'driver_not_supported' => 'De %s database driver werd niet gevonden.',9 8 'invalid_dsn' => 'De DSN die je opgaf is ongeldig: %s', 10 9 'must_use_set' => 'Je moet een SET clause opgeven voor je query.', trunk/system/i18n/nl_NL/image.php
r1921 r2667 4 4 ( 5 5 'getimagesize_missing' => 'De Image library vereist de <tt>getimagesize</tt> PHP functie en die is niet beschikbaar op dit systeem.', 6 'driver_not_supported' => 'De %s Image driver werd niet gevonden.',7 6 'unsupported_method' => 'De huidige Image driver ondersteunt volgende transformatie niet: %s.', 8 7 'file_not_found' => 'De opgegeven afbeelding, %s, werd niet gevonden. Controleer a.u.b. eerst of afbeeldingen bestaan via de <tt>file_exists</tt> functie voordat je ze begint te bewerken.', trunk/system/i18n/nl_NL/payment.php
r1952 r2667 3 3 $lang = array 4 4 ( 5 'driver_not_supported' => 'De %s Payment driver werd niet gevonden.',6 'driver_implements' => 'De %s Payment driver implementeert de Payment_Driver interface niet.',7 5 'required' => 'Sommige verplichte velden werden niet ingevuld: %s', 8 6 'gateway_connection_error' => 'Er ging iets mis bij het verbinden met de payment gateway. Contacteer a.u.b. de webmaster als dit probleem aanhoudt.', trunk/system/i18n/nl_NL/session.php
r1866 r2667 3 3 $lang = array 4 4 ( 5 'driver_not_supported' => 'De %s Session driver werd niet gevonden.',6 'driver_implements' => 'De %s Session driver implementeert de Session_Driver interface niet.',7 5 'invalid_session_name' => 'De sessie naam, %s, is ongeldig. Hij mag alleen maar bestaan uit alfanumerieke karakters en moet minstens één letter bevatten.', 8 6 ); trunk/system/libraries/Archive.php
r2016 r2667 34 34 // Load the driver 35 35 if ( ! Kohana::auto_load($driver)) 36 throw new Kohana_Exception(' archive.driver_not_supported', $type);36 throw new Kohana_Exception('core.driver_not_found', $type, get_class($this)); 37 37 38 38 // Initialize the driver … … 41 41 // Validate the driver 42 42 if ( ! ($this->driver instanceof Archive_Driver)) 43 throw new Kohana_Exception(' archive.driver_implements', $type);43 throw new Kohana_Exception('core.driver_implements', $type, get_class($this), 'Archive_Driver'); 44 44 45 45 Log::add('debug', 'Archive Library initialized'); trunk/system/libraries/Cache.php
r2593 r2667 69 69 // Load the driver 70 70 if ( ! Kohana::auto_load($driver)) 71 throw new Kohana_Exception('c ache.driver_not_supported', $this->config['driver']);71 throw new Kohana_Exception('core.driver_not_found', $this->config['driver'], get_class($this)); 72 72 73 73 // Initialize the driver … … 76 76 // Validate the driver 77 77 if ( ! ($this->driver instanceof Cache_Driver)) 78 throw new Kohana_Exception('c ache.driver_implements', $this->config['driver']);78 throw new Kohana_Exception('core.driver_implements', $this->config['driver'], get_class($this), 'Cache_Driver'); 79 79 80 80 Log::add('debug', 'Cache Library initialized'); trunk/system/libraries/Database.php
r2593 r2667 179 179 // Load the driver 180 180 if ( ! Kohana::auto_load($driver)) 181 throw new Kohana_Database_Exception(' database.driver_not_supported', $this->config['connection']['type']);181 throw new Kohana_Database_Exception('core.driver_not_found', $this->config['connection']['type'], get_class($this)); 182 182 183 183 // Initialize the driver … … 186 186 // Validate the driver 187 187 if ( ! ($this->driver instanceof Database_Driver)) 188 throw new Kohana_Database_Exception(' database.driver_not_supported', 'Database drivers must use the Database_Driver interface.');188 throw new Kohana_Database_Exception('core.driver_implements', $this->config['connection']['type'], get_class($this), 'Database_Driver'); 189 189 190 190 Log::add('debug', 'Database Library initialized'); trunk/system/libraries/Image.php
r2593 r2667 111 111 // Load the driver 112 112 if ( ! Kohana::auto_load($driver)) 113 throw new Kohana_Exception(' image.driver_not_supported', $this->config['driver']);113 throw new Kohana_Exception('core.driver_not_found', $this->config['driver'], get_class($this)); 114 114 115 115 // Initialize the driver 116 116 $this->driver = new $driver($this->config['params']); 117 117 118 // Validate the driver 118 119 if ( ! ($this->driver instanceof Image_Driver)) 119 throw new Kohana_Exception(' image.invalid_driver', $driver);120 throw new Kohana_Exception('core.driver_implements', $this->config['driver'], get_class($this), 'Image_Driver'); 120 121 } 121 122 trunk/system/libraries/Payment.php
r2209 r2667 75 75 // Load the driver 76 76 if ( ! Kohana::auto_load($driver)) 77 throw new Kohana_Exception(' payment.driver_not_supported', $this->config['driver']);77 throw new Kohana_Exception('core.driver_not_found', $this->config['driver'], get_class($this)); 78 78 79 79 // Get the driver specific settings … … 85 85 // Validate the driver 86 86 if ( ! ($this->driver instanceof Payment_Driver)) 87 throw new Kohana_Exception(' payment.driver_implements', $this->config['driver']);87 throw new Kohana_Exception('core.driver_implements', $this->config['driver'], get_class($this), 'Payment_Driver'); 88 88 } 89 89 trunk/system/libraries/Session.php
r2649 r2667 62 62 // Load the driver 63 63 if ( ! Kohana::auto_load($driver)) 64 throw new Kohana_Exception(' session.driver_not_supported', self::$config['driver']);64 throw new Kohana_Exception('core.driver_not_found', self::$config['driver'], get_class($this)); 65 65 66 66 // Initialize the driver … … 69 69 // Validate the driver 70 70 if ( ! (self::$driver instanceof Session_Driver)) 71 throw new Kohana_Exception(' session.driver_implements', self::$config['driver']);71 throw new Kohana_Exception('core.driver_implements', self::$config['driver'], get_class($this), 'Session_Driver'); 72 72 73 73 // Register non-native driver as the session handler
