X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=bin%2Fpopulate-msgcat;h=b50fc7ec365c3b2ff601c07a26702f90f35d3d46;hb=88ad98c9bc5150a130c6df53132760152aa6a437;hp=51f04c10f0ee289ac914fe04bc0e452f36bc7bf4;hpb=44e3eff0aa6e7bdb7f4ecd9ee1ddf141e1b68af3;p=freeside.git diff --git a/bin/populate-msgcat b/bin/populate-msgcat index 51f04c10f..b50fc7ec3 100755 --- a/bin/populate-msgcat +++ b/bin/populate-msgcat @@ -27,6 +27,8 @@ foreach my $msgcode ( keys %messages ) { } } +print "Message catalog initialized sucessfully\n"; + sub messages { # 'msgcode' => { @@ -51,6 +53,59 @@ sub messages { 'en_US' => 'Not a ', }, + 'empty_password' => { + 'en_US' => 'Empty password', + }, + + 'no_access_number_selected' => { + 'en_US' => 'No access number selected', + }, + + 'illegal_text' => { + 'en_US' => 'Illegal (text)', + #'en_US' => 'Only letters, numbers, spaces, and the following punctuation symbols are permitted: ! @ # $ % & ( ) - + ; : \' " , . ? / in field', + }, + + 'illegal_or_empty_text' => { + 'en_US' => 'Illegal or empty (text)', + #'en_US' => 'Only letters, numbers, spaces, and the following punctuation symbols are permitted: ! @ # $ % & ( ) - + ; : \' " , . ? / in required field', + }, + + 'illegal_username' => { + 'en_US' => 'Illegal username', + }, + + 'illegal_password' => { + 'en_US' => 'Illegal password', + }, + + 'username_in_use' => { + 'en_US' => 'Username in use', + }, + + 'illegal_email_invoice_address' => { + 'en_US' => 'Illegal email invoice address', + }, + + 'illegal_name' => { + 'en_US' => 'Illegal (name)', + #'en_US' => 'Only letters, numbers, spaces and the following punctuation symbols are permitted: , . - \' in field', + }, + + 'illegal_phone' => { + 'en_US' => 'Illegal (phone)', + #'en_US' => '', + }, + + 'illegal_zip' => { + 'en_US' => 'Illegal (zip)', + #'en_US' => '', + }, + + 'expired_card' => { + 'en_US' => 'Expired card', + }, + ); }