Ignore:
Timestamp:
Mar 2, 2010, 3:54:22 PM (14 years ago)
Author:
nikrou
Message:

Feature 1451 : localization with gettext
Use php-gettext (developpement version rev43, because of php5.3) as fallback
Use native language (english) instead of key for translation
Keep directory en_UK for english customization
Need some refactoring for plurals

Todo : managing plugins in the same way

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/identification.php

    r5014 r5021  
    4040  if ( is_a_guest() )
    4141  {
    42     array_push($errors, l10n('access_forbiden'));
     42    array_push($errors, l10n('You are not authorized to access the requested page'));
    4343  }
    4444}
     
    6363    else
    6464    {
    65       array_push( $errors, l10n('invalid_pwd') );
     65      array_push( $errors, l10n('Invalid password!') );
    6666    }
    6767  }
     
    7272// Start output of page
    7373//
    74 $title = l10n('identification');
     74$title = l10n('Identification');
    7575$page['body_id'] = 'theIdentificationPage';
    7676include(PHPWG_ROOT_PATH.'include/page_header.php');
Note: See TracChangeset for help on using the changeset viewer.