Changeset 286

Show
Ignore:
Timestamp:
04/16/08 00:17:49 (9 months ago)
Author:
shupp
Message:

Added Dutch and Portuguese translations, added CREDITS file, added missing gettext call in Accounts_Modify, added bind_textdomain_charset() to the requset parser

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r284 r286  
     10.0.3 -  4/15/2008 
     2    * Force character set with bind_textdomain_charset() 
     3    * Added Dutch translation (thanks Harm von Tilburg) 
     4    * Added Portuguese BR translation (thanks Carlos Cesario) 
    150.0.2 -  4/13/2008 
    26    * Added turkish translation (thanks Metin KAYA) 
  • trunk/Framework/Module/Accounts/Modify.php

    r274 r286  
    116116        $form->addElement('password', 'password', _("Password")); 
    117117        $form->addElement('password', 'password2', _("Re-Type Password")); 
    118         $form->addElement('radio', 'routing', 'Mail Routing'
     118        $form->addElement('radio', 'routing', _('Mail Routing')
    119119            _('Standard (No Forwarding)'), 'routing_standard'); 
    120120        $form->addElement('radio', 'routing', '', 
  • trunk/Framework/Request/ToasterAdmin.php

    r281 r286  
    4949        I18Nv2::setLocale($this->locale); 
    5050        bindtextdomain("messages", $baseLocaleDir); 
     51        bind_textdomain_codeset("messages", 'UTF-8'); 
    5152        textdomain("messages"); 
    5253    }