mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Change "we keep" to "The organizer keeps" to avoid confusion
This commit is contained in:
@@ -314,7 +314,7 @@ $(function () {
|
||||
return;
|
||||
}
|
||||
$("#cancel-fee-keep").text(interpolate(
|
||||
gettext("We keep %(currency)s %(amount)s"),
|
||||
gettext("The organizer keeps %(currency)s %(amount)s"),
|
||||
{
|
||||
'currency': $("body").attr("data-currency"),
|
||||
'amount': floatformat(cancel_fee_slider.getValue(), 2)
|
||||
@@ -338,7 +338,7 @@ $(function () {
|
||||
cancel_fee_slider_update();
|
||||
$("#cancel-fee-custom").click(function () {
|
||||
try {
|
||||
var newinp = parseFloat(prompt(gettext("Please enter the amount we can keep."), cancel_fee_slider.getValue().toString()).replace(',', '.'));
|
||||
var newinp = parseFloat(prompt(gettext("Please enter the amount the organizer can keep."), cancel_fee_slider.getValue().toString()).replace(',', '.'));
|
||||
cancel_fee_slider.setValue(newinp);
|
||||
cancel_fee_slider_update();
|
||||
} catch {
|
||||
|
||||
Reference in New Issue
Block a user