Sku's. Update all the templates to display this URL. The new url takes the user back to the view method with no extra variables set (like hasAddedToCart).
104 lines
2.8 KiB
Perl
104 lines
2.8 KiB
Perl
package WebGUI::i18n::English::Asset_Donation;
|
|
|
|
use strict;
|
|
|
|
our $I18N = {
|
|
'donation template help' => {
|
|
message => q|Donation Template|,
|
|
lastUpdated => 0,
|
|
context => q|a help label|
|
|
},
|
|
|
|
'donateButton' => {
|
|
message => q|The button for the donation form.|,
|
|
lastUpdated => 0,
|
|
context => q|template variable|
|
|
},
|
|
|
|
'formHeader' => {
|
|
message => q|The top of the donation form.|,
|
|
lastUpdated => 0,
|
|
context => q|template variable|
|
|
},
|
|
|
|
'formFooter' => {
|
|
message => q|The bottom of the donation form.|,
|
|
lastUpdated => 0,
|
|
context => q|template variable|
|
|
},
|
|
|
|
'priceField' => {
|
|
message => q|The field in the donation form that the user types in what they wish to donate.|,
|
|
lastUpdated => 0,
|
|
context => q|template variable|
|
|
},
|
|
|
|
'hasAddedToCart' => {
|
|
message => q|A condition indicating that the user has added the donation to their cart, so we can display the thank you message.|,
|
|
lastUpdated => 0,
|
|
context => q|template variable|
|
|
},
|
|
|
|
'donate button' => {
|
|
message => q|Add Donation To Cart|,
|
|
lastUpdated => 0,
|
|
context => q|the text that will appear on the donation button|
|
|
},
|
|
|
|
'default thank you message' => {
|
|
message => q|Thank you for your kind donation.|,
|
|
lastUpdated => 0,
|
|
context => q|the default message that will go in the thank you message field|
|
|
},
|
|
|
|
'thank you message' => {
|
|
message => q|Thank You Message|,
|
|
lastUpdated => 0,
|
|
context => q|the label for the field where you type in a message thanking the user for their donation|
|
|
},
|
|
|
|
'thank you message help' => {
|
|
message => q|Write a thank you message to your user for donating. Be sincere. Remember they've just put the donation in the cart at this point, they haven't checked out yet.|,
|
|
lastUpdated => 0,
|
|
context => q|help for default price field|
|
|
},
|
|
|
|
'donate template' => {
|
|
message => q|Donation Template|,
|
|
lastUpdated => 0,
|
|
context => q|the label for the field where you select the template for this asset|
|
|
},
|
|
|
|
'donate template help' => {
|
|
message => q|Choose a template that should be used to display the donation.|,
|
|
lastUpdated => 0,
|
|
context => q|help for default price field|
|
|
},
|
|
|
|
'default price' => {
|
|
message => q|Default Price|,
|
|
lastUpdated => 0,
|
|
context => q|the label for the field that asks what the default donation amount should be.|
|
|
},
|
|
|
|
'default price help' => {
|
|
message => q|How much money are you asking for per user? Note that they can type in any amount they wish, this is just a suggestion.|,
|
|
lastUpdated => 0,
|
|
context => q|help for default price field|
|
|
},
|
|
|
|
'continueShoppingUrl' => {
|
|
message => q|A URL to reset the Product so that the user can continue shopping.|,
|
|
lastUpdated => 0,
|
|
context => q|template variable|
|
|
},
|
|
|
|
'assetName' => {
|
|
message => q|Donation|,
|
|
lastUpdated => 0,
|
|
context => "The name of this asset. Used to contribute money."
|
|
},
|
|
|
|
};
|
|
|
|
1;
|