Changeset 3032 for trunk/system/i18n

Show
Ignore:
Timestamp:
07/10/2008 11:31:35 AM (5 months ago)
Author:
Geert
Message:

Pulling riddles from i18n file now. Inverted basic style to generate dark text on a light background. Clear difference from alpha style now.

Files:
1 modified

Legend:

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

    r3028 r3032  
    1919                'architect', 'president', 'cockroach', 'encounter', 'terrorism', 'cylinders', 
    2020        ), 
     21 
     22        // Riddles for the Captcha_Riddle_Driver to pick from 
     23        // Note: use only alphanumeric characters 
     24        'riddles' => array 
     25        ( 
     26                array('Do you hate spam? (yes or no)', 'yes'), 
     27                array('Are you a robot? (yes or no)', 'no'), 
     28                array('Fire is... (hot or cold)', 'hot'), 
     29                array('The season after fall is...', 'winter'), 
     30                array('Which day of the week is it today?', strftime('%A')), 
     31                array('Which month of the year are we in?', strftime('%B')), 
     32        ), 
    2133);