Add i18n for Tax, for the UI.

Begin to flesh out the DataTable JS for www_view.  Add a method to slurp all the
tax data out of the db at once.
Add a test for the slurp method, and stop using the private sub that used to
do it in the tests.
This commit is contained in:
Colin Kuskie 2008-03-10 04:25:36 +00:00
parent 1bbf5a3c7c
commit f40bed7ef3
3 changed files with 112 additions and 20 deletions

View file

@ -0,0 +1,32 @@
package WebGUI::i18n::English::Tax;
use strict;
our $I18N = {
'country' => {
message => q|Country|,
lastUpdated => 1205120607,
context => q|The name of a country, such as Portugal or Canada.|,
},
'state' => {
message => q|State|,
lastUpdated => 1205120615,
context => q|A political subdivision of a country, such as California.|,
},
'city' => {
message => q|City|,
lastUpdated => 1205120661,
},
'code' => {
message => q|Code|,
lastUpdated => 1205120660,
context => q|A postal code, or zip code.|,
},
};
1;