Changeset 3264 for trunk/system/i18n
- Timestamp:
- 08/05/2008 02:03:14 PM (4 months ago)
- Location:
- trunk/system/i18n
- Files:
-
- 7 modified
-
en_US/image.php (modified) (1 diff)
-
en_US/upload.php (modified) (1 diff)
-
nl_NL/captcha.php (modified) (1 diff)
-
nl_NL/core.php (modified) (1 diff)
-
nl_NL/encrypt.php (modified) (1 diff)
-
nl_NL/image.php (modified) (1 diff)
-
nl_NL/orm.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/i18n/en_US/image.php
r2870 r3264 12 12 'invalid_master' => 'The master dimension specified is not valid.', 13 13 'invalid_flip' => 'The flip direction specified is not valid.', 14 15 14 'directory_unwritable' => 'The specified directory, %s, is not writable.', 16 15 -
trunk/system/i18n/en_US/upload.php
r1955 r3264 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 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/nl_NL/captcha.php
r2760 r3264 5 5 'file_not_found' => 'Het opgegeven bestand, %s, werd niet gevonden. Controleer met file_exists() of bestanden bestaan, voordat je ze gebruikt.', 6 6 'requires_GD2' => 'De Captcha library vereist GD2 met FreeType ondersteuning. Zie http://php.net/gd_info voor meer informatie.', 7 8 // Words of varying length for the Captcha_Word_Driver to pick from 9 // Note: use only alphanumeric characters 10 'words' => array 11 ( 12 'cd', 'tv', 'ok', 'pc', 'nu', 'ik', 13 'zon', 'kar', 'kat', 'bed', 'tof', 'hoi', 14 'puin', 'hoop', 'mens', 'roof', 'auto', 'haar', 15 'water', 'beter', 'aarde', 'appel', 'mango', 'liter', 16 'ananas', 'bakker', 'wekker', 'kroket', 'zingen', 'dansen', 17 'fietsen', 'zwemmen', 'kolonel', 'potlood', 'kookpot', 'voetbal', 18 'barbecue', 'computer', 'generaal', 'koelkast', 'fietsers', 'spelling', 19 'appelmoes', 'president', 'kangoeroe', 'frankrijk', 'luxemburg', 'apartheid', 20 ), 21 22 // Riddles for the Captcha_Riddle_Driver to pick from 23 // Note: use only alphanumeric characters 24 'riddles' => array 25 ( 26 array('Haat jij spam? (ja of nee)', 'ja'), 27 array('Ben jij een robot? (ja of nee)', 'nee'), 28 array('Vuur is... (heet of koud)', 'heet'), 29 array('Het seizoen na herfst is...', 'winter'), 30 array('Welke dag van de week is het vandaag?', strftime('%A')), 31 array('In welke maand van het jaar zijn we?', strftime('%B')), 32 ), 7 33 ); -
trunk/system/i18n/nl_NL/core.php
r3023 r3264 25 25 26 26 // Resource names 27 'config' => 'configuratiebestand', 27 28 'controller' => 'controller', 28 29 'helper' => 'helper', -
trunk/system/i18n/nl_NL/encrypt.php
r2760 r3264 3 3 $lang = array 4 4 ( 5 'undefined_group' => 'De %s groep is niet gedefinieerd in je configuratie.', 5 6 'requires_mcrypt' => 'Om de Encrypt library te gebruiken, moet mcrypt ingeschakeld zijn in je PHP installatie.', 6 7 'no_encryption_key' => 'Om de Encrypt library te gebruiken, moet je een encryption key zetten in je config bestand.', -
trunk/system/i18n/nl_NL/image.php
r2760 r3264 12 12 'invalid_master' => 'De master afmeting die je opgaf, is ongeldig.', 13 13 'invalid_flip' => 'De spiegelrichting die je opgaf, is ongeldig.', 14 'directory_unwritable' => 'De opgegeven directory, %s, is niet schrijfbaar.', 14 15 15 16 // ImageMagick specific messages -
trunk/system/i18n/nl_NL/orm.php
r2612 r3264 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 3 $lang[' method_not_implemented'] = 'De %s method is niet geïmplementeerd in het %s ORM model.';3 $lang['query_methods_not_allowed'] = 'Query methods kunnen niet gebruikt worden via ORM';
