Fix trans
This commit is contained in:
parent
7526cb3b8b
commit
4939cc9911
@ -125,7 +125,7 @@ BoothLocationFee = Booth location for the event : '%s' occurring from %s to %s
|
|||||||
EventType = Event type
|
EventType = Event type
|
||||||
LabelOfBooth=Booth label
|
LabelOfBooth=Booth label
|
||||||
LabelOfconference=Conference label
|
LabelOfconference=Conference label
|
||||||
ConferenceIsNotConfirmed=Subcription not available, conference is not confirmed yet
|
ConferenceIsNotConfirmed=Registration not available, conference is not confirmed yet
|
||||||
DateMustBeBeforeThan=%s must be before %s
|
DateMustBeBeforeThan=%s must be before %s
|
||||||
DateMustBeAfterThan=%s must be after %s
|
DateMustBeAfterThan=%s must be after %s
|
||||||
|
|
||||||
@ -145,11 +145,11 @@ VoteError = An error has occurred during the vote, please try again.
|
|||||||
#
|
#
|
||||||
# SubscriptionOk page
|
# SubscriptionOk page
|
||||||
#
|
#
|
||||||
SubscriptionOk = Your subscription to this conference has been validated
|
SubscriptionOk = Your subscription has been validated
|
||||||
#
|
#
|
||||||
# Subscription validation mail
|
# Subscription validation mail
|
||||||
#
|
#
|
||||||
ConfAttendeeSubscriptionConfirmation = Confirmation of your subscription to a conference
|
ConfAttendeeSubscriptionConfirmation = Confirmation of your subscription to an event
|
||||||
#
|
#
|
||||||
# Payment page
|
# Payment page
|
||||||
#
|
#
|
||||||
|
|||||||
@ -206,7 +206,7 @@ VATToUseForSubscriptions=VAT rate to use for contributionss
|
|||||||
NoVatOnSubscription=No VAT for contributions
|
NoVatOnSubscription=No VAT for contributions
|
||||||
ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS=Product used for contribution line into invoice: %s
|
ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS=Product used for contribution line into invoice: %s
|
||||||
NameOrCompany=Name or company
|
NameOrCompany=Name or company
|
||||||
SubscriptionRecorded=Subscription recorded
|
SubscriptionRecorded=Contribution recorded
|
||||||
NoEmailSentToMember=No email sent to member
|
NoEmailSentToMember=No email sent to member
|
||||||
EmailSentToMember=Email sent to member at %s
|
EmailSentToMember=Email sent to member at %s
|
||||||
SendReminderForExpiredSubscriptionTitle=Send reminder by email for expired contributions
|
SendReminderForExpiredSubscriptionTitle=Send reminder by email for expired contributions
|
||||||
|
|||||||
@ -12,9 +12,9 @@ AddWarehouse=Create warehouse
|
|||||||
AddOne=Add one
|
AddOne=Add one
|
||||||
DefaultWarehouse=Default warehouse
|
DefaultWarehouse=Default warehouse
|
||||||
WarehouseTarget=Target warehouse
|
WarehouseTarget=Target warehouse
|
||||||
ValidateSending=Confirm sending
|
ValidateSending=Confirm shipment
|
||||||
CancelSending=Cancel sending
|
CancelSending=Cancel shipment
|
||||||
DeleteSending=Delete sending
|
DeleteSending=Delete shipment
|
||||||
Stock=Stock
|
Stock=Stock
|
||||||
Stocks=Stocks
|
Stocks=Stocks
|
||||||
MissingStocks=Missing stocks
|
MissingStocks=Missing stocks
|
||||||
|
|||||||
@ -724,7 +724,7 @@ if (!empty($conf->global->MEMBER_NEWFORM_AMOUNT) || !empty($conf->global->MEMBER
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!empty($conf->global->MEMBER_NEWFORM_PAYONLINE)) {
|
if (!empty($conf->global->MEMBER_NEWFORM_PAYONLINE)) {
|
||||||
$amount = $amount ? $amount : (GETPOST('amount') ? GETPOST('amount') : $conf->global->MEMBER_NEWFORM_AMOUNT);
|
$amount = $amount ? $amount : (GETPOST('amount') ? price2num(GETPOST('amount'), 'MT', 2) : $conf->global->MEMBER_NEWFORM_AMOUNT);
|
||||||
}
|
}
|
||||||
|
|
||||||
$amount = price2num($amount);
|
$amount = price2num($amount);
|
||||||
@ -732,10 +732,10 @@ if (!empty($conf->global->MEMBER_NEWFORM_AMOUNT) || !empty($conf->global->MEMBER
|
|||||||
// $conf->global->MEMBER_NEWFORM_PAYONLINE is 'paypal', 'paybox' or 'stripe'
|
// $conf->global->MEMBER_NEWFORM_PAYONLINE is 'paypal', 'paybox' or 'stripe'
|
||||||
print '<tr><td>'.$langs->trans("Subscription").'</td><td class="nowrap">';
|
print '<tr><td>'.$langs->trans("Subscription").'</td><td class="nowrap">';
|
||||||
if (!empty($conf->global->MEMBER_NEWFORM_EDITAMOUNT)) {
|
if (!empty($conf->global->MEMBER_NEWFORM_EDITAMOUNT)) {
|
||||||
print '<input type="text" name="amount" id="amount" class="flat amount" size="6" value="'.$amount.'">';
|
print '<input type="text" name="amount" id="amount" class="flat amount width50" value="'.$amount.'">';
|
||||||
} else {
|
} else {
|
||||||
print '<input type="text" name="amount" id="amounthidden" class="flat amount" disabled size="6" value="'.$amount.'">';
|
print '<input type="text" name="amount" id="amounthidden" class="flat amount width50" disabled value="'.$amount.'">';
|
||||||
print '<input type="hidden" name="amount" id="amount" class="flat amount" size="6" value="'.$amount.'">';
|
print '<input type="hidden" name="amount" id="amount" class="flat amount" value="'.$amount.'">';
|
||||||
}
|
}
|
||||||
print ' '.$langs->trans("Currency".$conf->currency);
|
print ' '.$langs->trans("Currency".$conf->currency);
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user