Mercurial > pub > Impl
view Lib/IMPL/Resources.pm @ 376:a54a2faf2f7e
added localizable string maps
author | cin |
---|---|
date | Mon, 13 Jan 2014 17:52:04 +0400 |
parents | 39842eedd923 |
children | 2eed076cb944 |
line wrap: on
line source
package IMPL::Resources; use strict; our $CurrentLocale ||= 'default'; sub currentLocale { $CurrentLocale; } sub SetLocale { my ($self,$locale) = @_; $locale =~ tr/\-/_/; $CurrentLocale = $locale; } sub InvokeInLocale { my ($this,$locale,$code) = @_; local $CurrentLocale; $this->SetLocale($locale); eval { &$code() if $code; }; die $@ if $@; } 1;