You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<spanclass="label-tooltip"data-toggle="tooltip"title="{l s='The price is the price you paid for the product. Do not include the tax.'}">{if!$country_display_tax_label||$tax_exclude_taxe_option}{l s='Wholesale price'}{else}{l s='Pre-tax wholesale price'}{/if}</span>
119
+
<spanclass="label-tooltip"data-toggle="tooltip"title="{l s='The price is the price you paid for the service. Do not include the tax.'}">{if!$country_display_tax_label||$tax_exclude_taxe_option}{l s='Rack rate'}{else}{l s='Pre-tax rack rate'}{/if}</span>
{if isset($pack) &&$pack->isPack($product->id)}<pclass="help-block">{l s='The sum of wholesale prices of the product in the pack is %s%s%s'sprintf=[$currency->prefix,{toolsConvertPrice price=$pack->noPackWholesalePrice($product->id)|string_format:$priceDisplayPrecisionFormat},$currency->suffix]}</p>{/if}
126
+
{if isset($pack) &&$pack->isPack($product->id)}<pclass="help-block">{l s='The sum of rack rates of the service in the pack is %s%s%s'sprintf=[$currency->prefix,{toolsConvertPrice price=$pack->noPackWholesalePrice($product->id)|string_format:$priceDisplayPrecisionFormat},$currency->suffix]}</p>{/if}
<spanclass="label-tooltip"data-toggle="tooltip"title="{l s='The pre-tax retail price is the price for which you intend sell this product to your customers. It should be higher than the pre-tax wholesale price: the difference between the two will be your margin.'}">{if!$country_display_tax_label||$tax_exclude_taxe_option}{l s='Retail price'}{else}{l s='Pre-tax retail price'}{/if}</span>
132
+
<spanclass="label-tooltip"data-toggle="tooltip"title="{l s='The pre-tax retail price is the price for which you intend sell this service to your customers. It should be higher than the pre-tax rack rate: the difference between the two will be your margin.'}">{if!$country_display_tax_label||$tax_exclude_taxe_option}{l s='Retail price'}{else}{l s='Pre-tax retail price'}{/if}</span>
Copy file name to clipboardexpand all lines: controllers/admin/AdminPreferencesController.php
+4-4
Original file line number
Diff line number
Diff line change
@@ -95,8 +95,8 @@ public function __construct()
95
95
$fields = array(
96
96
'PS_SSL_ENABLED' => array(
97
97
'title' => $this->l('Enable SSL'),
98
-
'desc' => $this->l('If you own an SSL certificate for your shop\'s domain name, you can activate SSL encryption (https://) for customer account identification and order processing.'),
99
-
'hint' => $this->l('If you want to enable SSL on all the pages of your shop, activate the "Enable on all the pages" option below.'),
98
+
'desc' => $this->l('If you own an SSL certificate for your website\'s domain name, you can activate SSL encryption (https://) for customer account identification and order processing.'),
99
+
'hint' => $this->l('If you want to enable SSL on all the pages of your website, activate the "Enable on all the pages" option below.'),
100
100
'validation' => 'isBool',
101
101
'cast' => 'intval',
102
102
'type' => 'bool',
@@ -106,7 +106,7 @@ public function __construct()
106
106
107
107
$fields['PS_SSL_ENABLED_EVERYWHERE'] = array(
108
108
'title' => $this->l('Enable SSL on all pages'),
109
-
'desc' => $this->l('When enabled, all the pages of your shop will be SSL-secured.'),
109
+
'desc' => $this->l('When enabled, all the pages of your website will be SSL-secured.'),
110
110
'validation' => 'isBool',
111
111
'cast' => 'intval',
112
112
'type' => 'bool',
@@ -221,7 +221,7 @@ public function __construct()
221
221
if (!Tools::usingSecureMode() && !Configuration::get('PS_SSL_ENABLED')) {
<labelclass="control-label col-sm-3 required"for="maximum_booking_date">{l s='Maximum Date to book a room :'mod='hotelreservationsystem'}</label>
363
+
<labelclass="control-label col-sm-3 required"for="maximum_booking_date">{l s='Maximum Check-out Date to book a room :'mod='hotelreservationsystem'}</label>
0 commit comments