X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=bin%2Fpopulate-msgcat;h=5d6e85aea3cb024d7481c73929e1ecc91a911b43;hb=0b65ce59c7d2ee712389c27954382274ddf718a5;hp=51f04c10f0ee289ac914fe04bc0e452f36bc7bf4;hpb=fd597aef277c522889a849d78dc7dcae67d00d95;p=freeside.git diff --git a/bin/populate-msgcat b/bin/populate-msgcat index 51f04c10f..5d6e85aea 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,55 @@ 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' => '', + }, + ); }