
Locale::Framework::wxLocale, a WxPerl backend for Locale::Framework

use Locale::Framework;
use Locale::Framework::wxLocale;
my $wxloc=new Locale::Framework::wxLocale();
Locale::Framework::language("en");
print _T("This is a test");
Locale::Framework::language("nl");
print _T("This is a test");

This module provides a Wx::Locale backend for the Locale::Framework internationalization module.

new() --> Locale::Framework::wxLocaleInstantiates a new backend object.
translate(language,text) --> stringThis function looks up a translation for the tuple (language, text) via Wx::Locale.
set_translation(language,text,translation) --> booleanThis function returns false for this backend, because Wx::Locale does not support dynamic updating.
clear_cache() --> voidThis function is a noop for this backend.

Locale::Framework, http://wxperl.sf.net.

Hans Oesterholt-Dijkema <oesterhol@cpan.org>

This library is free software; you can redistribute it and/or modify it under LGPL terms.