Ready for 7.10.29 development.

This commit is contained in:
Colin Kuskie 2013-03-20 21:38:23 -07:00
commit c806f99b7b
4236 changed files with 1217679 additions and 0 deletions

View file

@ -0,0 +1,19 @@
package WebGUI::i18n::English;
use strict;
our $LANGUAGE = {
label => 'English',
toolbar => 'bullet',
languageAbbreviation => 'en', # used by plugins such as javascript helpers and third-party perl modules
locale => 'US', # same as above
};
sub makeUrlCompliant {
my $url = shift;
return $url;
}
1;