Index: openacs-4/packages/dotlrn-ecommerce/catalog/dotlrn-ecommerce.en_US.ISO-8859-1.xml =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-ecommerce/catalog/dotlrn-ecommerce.en_US.ISO-8859-1.xml,v diff -u -r1.25 -r1.26 --- openacs-4/packages/dotlrn-ecommerce/catalog/dotlrn-ecommerce.en_US.ISO-8859-1.xml 5 Aug 2005 05:57:02 -0000 1.25 +++ openacs-4/packages/dotlrn-ecommerce/catalog/dotlrn-ecommerce.en_US.ISO-8859-1.xml 5 Aug 2005 12:03:08 -0000 1.26 @@ -9,6 +9,7 @@ register for course Administer Public Pages Administrative Setup + Amount to be Paid Application Application approved (application pending) @@ -39,6 +40,7 @@ Course Quick Jump Courses: Credit Card + Credit card number Currently Selected delete Display All Orders @@ -54,6 +56,7 @@ Email templates Expense Tracking Expenses + Expires For PreReq Approval Gift Certificate: Go to My Account @@ -76,6 +79,7 @@ List Users 1. Please review your order list for accuracy. 2. Complete this information. + A full credit card expiration date (month and year) is required A space has opened up in %community_name%. A space has opened up in %community_name%. Please register via the website or call to get registered via phone. Added to waiting list for %community_name% @@ -96,6 +100,7 @@ Continue Registration. Continue Registration Create a Participant Account + Credit card information eCommerce Administration Edit Section Information for %first_names% %last_name% (if you're not %first_names% %last_name% @@ -106,6 +111,7 @@ I am a returning customer: if you prefer using some of your other addresses on file with us. I'm participating in this course + Internal account number Manage Category Trees Manage Course Attributes Manage Registration Assessment @@ -121,10 +127,13 @@ Orders in the Last 7 Days Participant pays for course %patron_name% also pays for the course + Please enter a credit card number Please enter a name for the group Please enter a search string Please enter a value greater than 1 + Please enter an internal account code Please enter the number of attendees + Please select a credit card type Please select a section from the list Please select a section under this course Process Purchase for %section_name% @@ -140,6 +149,7 @@ Return to course catalog Return to main course registration administration Section Prerequisites + Select a payment method Select another purchaser Sessions and Attendance Thank you for your application. @@ -162,6 +172,7 @@ (You are number @course_list.waiting_list_number@ on the wait list) You have no applications You may continue with the purchase + You may only enter up to the amount You may wish to continue and go on the waiting list for confirmation. Your application to join %community_name% was approved. Your application to join %community_name% was rejected. @@ -189,10 +200,12 @@ Paid By Participant Participants + Payment Information Payment Method Payment method Per User Phone Number + Please select one PreReq Approval List Price/Item Proceed @@ -222,6 +235,7 @@ Section Information Section Name Section Quick Jump + a payment method Shopping Cart Special Needs subject @@ -234,6 +248,7 @@ Total: Total Total Amount + Type Type of Request User has no email User Info @@ -254,4 +269,6 @@ Your Applications Your Order History Your Relationship + Zone + Zones Index: openacs-4/packages/dotlrn-ecommerce/www/admin/ecommerce/invoice-payment.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn-ecommerce/www/admin/ecommerce/invoice-payment.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/dotlrn-ecommerce/www/admin/ecommerce/invoice-payment.tcl 3 Aug 2005 22:45:46 -0000 1.1 +++ openacs-4/packages/dotlrn-ecommerce/www/admin/ecommerce/invoice-payment.tcl 5 Aug 2005 12:03:07 -0000 1.2 @@ -73,32 +73,32 @@ switch $payment_method { internal_account { - lappend method_options [list "Internal account number" internal_account] + lappend method_options [list "[_ dotlrn-ecommerce.lt_Internal_account_numb]" internal_account] lappend validate {internal_account { [exists_and_not_null internal_account] || [template::element::get_value checkout method] != "internal_account" } - "Please enter an internal account code" + "[_ dotlrn-ecommerce.lt_Please_enter_an_inter]" } } check { - lappend method_options [list "User sends in a check" check] + lappend method_options [list "[_ dotlrn-ecommerce.Check]" check] } cc { - lappend method_options [list "Pay via credit card" cc] + lappend method_options [list "[_ dotlrn-ecommerce.Credit_Card]" cc] lappend validate {creditcard_number { [template::element::get_value checkout method] != "cc" || [exists_and_not_null creditcard_number] } - "Please enter a credit card number" + "[_ dotlrn-ecommerce.lt_Please_enter_a_credit]" } lappend validate {creditcard_type { [template::element::get_value checkout method] != "cc" || [exists_and_not_null creditcard_type] } - "Please select a credit card type" + "[_ dotlrn-ecommerce.lt_Please_select_a_credi]" } lappend validate {creditcard_expires { [template::element::get_value checkout method] != "cc" || ([exists_and_not_null creditcard_expire_1] && [exists_and_not_null creditcard_expire_2]) } - "A full credit card expiration date (month and year) is required" + "[_ dotlrn-ecommerce.lt_A_full_credit_card_ex]" } } cash { - lappend method_options [list "User pays cash" cash] + lappend method_options [list "[_ dotlrn-ecommerce.Cash]" cash] } } incr method_count @@ -107,19 +107,19 @@ # Build the form ad_form -name checkout -export { order_id } -form { - {-section "Amount to be Paid"} - {amount:float {label "Amount to be Paid"} {html {size 10}}} + {-section "[_ dotlrn-ecommerce.Amount_to_be_Paid]"} + {amount:float {label "[_ dotlrn-ecommerce.Amount_to_be_Paid]"} {html {size 10}}} } if { $method_count > 1 } { ad_form -extend -name checkout -form { - {-section "Payment Information"} - {method:text(radio) {label "Select a payment method"} {options {$method_options}}} + {-section "[_ dotlrn-ecommerce.Payment_Information]"} + {method:text(radio) {label "[_ dotlrn-ecommerce.lt_Select_a_payment_meth]"} {options {$method_options}}} } if { [exists_and_equal internal_account_p 1] } { ad_form -extend -name checkout -form { - {internal_account:text,optional {label "Internal Account"}} + {internal_account:text,optional {label "[_ dotlrn-ecommerce.Internal_Account]"}} } } } elseif { $method_count == 1 } { @@ -156,17 +156,17 @@ # The creditcard_expires field is a hack, improve it # retrieve a saved address ad_form -extend -name checkout -form { - {-section "Credit card information"} - {creditcard_number:text {label "Credit card number"}} - {creditcard_type:text(select) {label Type} {options {{"Please select one" ""} {VISA v} {MasterCard m} {"American Express" a}}}} - {creditcard_expires:text(inform) {label "Expires *"} {value $ec_expires_widget}} + {-section "[_ dotlrn-ecommerce.lt_Credit_card_informati]"} + {creditcard_number:text {label "[_ dotlrn-ecommerce.Credit_card_number]"}} + {creditcard_type:text(select) {label Type} {options {{"[_ dotlrn-ecommerce.Please_select_one]" ""} {VISA v} {MasterCard m} {"American Express" a}}}} + {creditcard_expires:text(inform) {label "[_ dotlrn-ecommerce.Expires] *"} {value $ec_expires_widget}} } } else { ad_form -extend -name checkout -form { - {-section "Credit card information"} - {creditcard_number:text,optional {label "Credit card number"}} - {creditcard_type:text(select),optional {label Type} {options {{"Please select one" ""} {VISA v} {MasterCard m} {"American Express" a}}}} - {creditcard_expires:text(inform),optional {label "Expires"} {value $ec_expires_widget}} + {-section "[_ dotlrn-ecommerce.lt_Credit_card_informati]"} + {creditcard_number:text,optional {label "[_ dotlrn-ecommerce.Credit_card_number]"}} + {creditcard_type:text(select),optional {label Type} {options {{"[_ dotlrn-ecommerce.Please_select_one]" ""} {VISA v} {MasterCard m} {"American Express" a}}}} + {creditcard_expires:text(inform),optional {label "[_ dotlrn-ecommerce.Expires]"} {value $ec_expires_widget}} } } } @@ -182,7 +182,7 @@ lappend validate {amount { $amount > 0 && $amount <= ($total_price - $invoice_payments_sum) } - "You may only enter up to the amount [ec_pretty_price [expr $total_price - $invoice_payments_sum]]" + "[_ dotlrn-ecommerce.lt_You_may_only_enter_up] [ec_pretty_price [expr $total_price - $invoice_payments_sum]]" } ad_form -extend -name checkout -validate $validate -form {} -on_request { @@ -286,8 +286,6 @@ where transaction_id = :transaction_id" } - ns_log notice "DEBUG:: $result" - if { [string equal $result "authorized"] || [string equal $result "no_recommendation"] } { ad_returnredirect [export_vars -base one { order_id }] ad_script_abort