Mercurial > pub > Impl
annotate lib/IMPL/Resources.pm @ 427:09e0086a82a7 ref20150831 tip
Merge
| author | cin |
|---|---|
| date | Tue, 15 May 2018 00:51:33 +0300 |
| parents | c6e90e02dd17 |
| children |
| rev | line source |
|---|---|
| 407 | 1 package IMPL::Resources; |
| 2 use strict; | |
| 3 | |
| 4 our $CurrentLocale ||= 'default'; | |
| 5 | |
| 6 sub currentLocale { | |
| 7 $CurrentLocale; | |
| 8 } | |
| 9 | |
| 10 sub SetLocale { | |
| 11 my ($self,$locale) = @_; | |
| 12 | |
| 13 $locale =~ tr/\-/_/; | |
| 14 | |
| 15 $CurrentLocale = $locale; | |
| 16 } | |
| 17 | |
| 18 sub InvokeInLocale { | |
| 19 my ($this,$locale,$code) = @_; | |
| 20 | |
| 21 local $CurrentLocale; | |
| 22 $this->SetLocale($locale); | |
| 23 | |
| 24 &$code() | |
| 25 if $code; | |
| 26 } | |
| 27 | |
| 28 1; |
