13 lines
374 B
Perl
13 lines
374 B
Perl
package WebGUI::i18n::English::Form_HTMLArea; ##Be sure to change the package name to match the filename
|
|
use strict;
|
|
|
|
our $I18N = { ##hashref of hashes
|
|
'rich editor load error' => {
|
|
message => q|Can't instanciate rich editor.|,
|
|
lastUpdated => 0,
|
|
context => q|Error message letting the user know that loading the rich editor has failed for some reason.|
|
|
},
|
|
|
|
};
|
|
|
|
1;
|