Changeset 3264 for trunk/system/i18n

Show
Ignore:
Timestamp:
08/05/2008 02:03:14 PM (4 months ago)
Author:
Geert
Message:

nl_NL ready for 2.2
Removed unused upload i18n entries (CI remains)

Location:
trunk/system/i18n
Files:
7 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/i18n/en_US/image.php

    r2870 r3264  
    1212        'invalid_master'          => 'The master dimension specified is not valid.', 
    1313        'invalid_flip'            => 'The flip direction specified is not valid.', 
    14  
    1514        'directory_unwritable'    => 'The specified directory, %s, is not writable.', 
    1615 
  • trunk/system/i18n/en_US/upload.php

    r1955 r3264  
    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 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/nl_NL/captcha.php

    r2760 r3264  
    55        'file_not_found' => 'Het opgegeven bestand, %s, werd niet gevonden. Controleer met file_exists() of bestanden bestaan, voordat je ze gebruikt.', 
    66        '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        ), 
    733); 
  • trunk/system/i18n/nl_NL/core.php

    r3023 r3264  
    2525 
    2626        // Resource names 
     27        'config'                => 'configuratiebestand', 
    2728        'controller'            => 'controller', 
    2829        'helper'                => 'helper', 
  • trunk/system/i18n/nl_NL/encrypt.php

    r2760 r3264  
    33$lang = array 
    44( 
     5        'undefined_group'   => 'De %s groep is niet gedefinieerd in je configuratie.', 
    56        'requires_mcrypt'   => 'Om de Encrypt library te gebruiken, moet mcrypt ingeschakeld zijn in je PHP installatie.', 
    67        '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  
    1212        'invalid_master'          => 'De master afmeting die je opgaf, is ongeldig.', 
    1313        'invalid_flip'            => 'De spiegelrichting die je opgaf, is ongeldig.', 
     14        'directory_unwritable'    => 'De opgegeven directory, %s, is niet schrijfbaar.', 
    1415 
    1516        // ImageMagick specific messages 
  • trunk/system/i18n/nl_NL/orm.php

    r2612 r3264  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22 
    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';