diff --git a/templates/backOffice/default/admin-layout.tpl b/templates/backOffice/default/admin-layout.tpl index e45fad512..42dcaed72 100644 --- a/templates/backOffice/default/admin-layout.tpl +++ b/templates/backOffice/default/admin-layout.tpl @@ -162,9 +162,9 @@ {loop name="order-status-list" type="order-status"} {assign "orderStatusLabel" "order_$CODE"}
  • - + {$TITLE} - {count type="order" customer="*" backend_context="1" status=$ID} + {count type="order" customer="*" backend_context="1" status={$ID}}
  • {/loop} diff --git a/templates/backOffice/default/administrators.html b/templates/backOffice/default/administrators.html index 9c5b414c0..649501c79 100644 --- a/templates/backOffice/default/administrators.html +++ b/templates/backOffice/default/administrators.html @@ -67,7 +67,7 @@ {$LOCALE} {if $PROFILE} - {loop type="profile" name="admin-profile" id=$PROFILE} + {loop type="profile" name="admin-profile" id={$PROFILE}} {$TITLE} {/loop} {else} @@ -125,21 +125,21 @@ {form_field form=$form field='login'}
    - +
    {/form_field} {form_field form=$form field='firstname'}
    - +
    {/form_field} {form_field form=$form field='lastname'}
    - +
    {/form_field} @@ -150,21 +150,21 @@ {form_field form=$form field='password'}
    - +
    {/form_field} {form_field form=$form field='password_confirm'}
    - +
    {/form_field} {form_field form=$form field='locale'}
    - + {foreach $choices as $choice} @@ -229,21 +229,21 @@ {form_field form=$form field='login'}
    - +
    {/form_field} {form_field form=$form field='firstname'}
    - +
    {/form_field} {form_field form=$form field='lastname'}
    - +
    {/form_field} @@ -254,21 +254,21 @@ {form_field form=$form field='password'}
    - +
    {/form_field} {form_field form=$form field='password_confirm'}
    - +
    {/form_field} {form_field form=$form field='locale'}
    - + {foreach $choices as $choice} diff --git a/templates/backOffice/default/ajax/product-related-tab.html b/templates/backOffice/default/ajax/product-related-tab.html index edaa101a9..8367e7f71 100644 --- a/templates/backOffice/default/ajax/product-related-tab.html +++ b/templates/backOffice/default/ajax/product-related-tab.html @@ -266,7 +266,7 @@

    {intl l='Additional categories'}

    {intl l='A product could be attached to more than one category. Select here the additional categories for this product.'} {loop name="default_category" type="category" id=$DEFAULT_CATEGORY} - {intl l='You can change the default category (%title) in the "General" tab.' title=$TITLE} + {intl l='You can change the default category (%title) in the "General" tab.' title={$TITLE}} {/loop} {$exclude_from_tree = "-1"} diff --git a/templates/backOffice/default/attribute-edit.html b/templates/backOffice/default/attribute-edit.html index e8058983b..a057fdd26 100644 --- a/templates/backOffice/default/attribute-edit.html +++ b/templates/backOffice/default/attribute-edit.html @@ -16,7 +16,7 @@

  • {intl l="Home"}
  • {intl l="Configuration"}
  • {intl l="Attributes"}
  • -
  • {intl l='Editing attribute "%name"' name=$TITLE}
  • +
  • {intl l='Editing attribute "%name"' name={$TITLE}}
  • @@ -24,7 +24,7 @@
    - {intl l='Edit attribute "%name"' name=$TITLE} + {intl l='Edit attribute "%name"' name={$TITLE}}
    @@ -186,7 +186,7 @@
    - {intl l="Sorry, attribute ID=%id was not found." id=$attribute_id} + {intl l="Sorry, attribute ID=%id was not found." id={$attribute_id}}
    @@ -223,10 +223,10 @@ {loop type="lang" name="current-edit-lang" id="$edit_language_id"}
    - {intl l=$TITLE} + {intl l={$TITLE}}
    -
    {intl l="Enter here the value in the current edit language (%title)" title=$TITLE}
    +
    {intl l="Enter here the value in the current edit language (%title)" title={$TITLE}}
    {form_field form=$form field='locale'} diff --git a/templates/backOffice/default/attributes.html b/templates/backOffice/default/attributes.html index 1994c2e76..984dad6d5 100644 --- a/templates/backOffice/default/attributes.html +++ b/templates/backOffice/default/attributes.html @@ -166,10 +166,10 @@ {loop type="lang" name="default-lang" default_only="1"}
    - {intl l=$TITLE} + {$TITLE}
    -
    {intl l="Enter here the attribute name in the default language (%language_name)" language_name=$TITLE}
    +
    {intl l="Enter here the attribute name in the default language (%language_name)" language_name={$TITLE}}
    {* Switch edition to the current locale *} diff --git a/templates/backOffice/default/categories.html b/templates/backOffice/default/categories.html index 4d4952f8e..3cf007adf 100644 --- a/templates/backOffice/default/categories.html +++ b/templates/backOffice/default/categories.html @@ -22,7 +22,7 @@ {* display parent category name, and get current cat ID *} {loop name="category_title" type="category" visible="*" id=$category_id} - {intl l="Categories in %cat" cat=$TITLE} + {intl l="Categories in %cat" cat={$TITLE}} {$cat_id = $ID} {/loop} {elseloop rel="category_title"} @@ -192,7 +192,7 @@ {* display parent category name *} {loop name="category_title" type="category" visible="*" id=$category_id} - {intl l="Products in %cat" cat=$TITLE} + {intl l="Products in %cat" cat={$TITLE}} {/loop} {elseloop rel="category_title"} @@ -505,7 +505,7 @@
    -
    {intl l='Enter here the product price in %title' title=$NAME}
    +
    {intl l='Enter here the product price in %title' title={$NAME}}
    {form_field form=$form field='currency'} @@ -529,7 +529,7 @@
    -
    {intl l='Enter here the product tax price in %title' title=$NAME}
    +
    {intl l='Enter here the product tax price in %title' title={$NAME}}
    {/loop}
    {/form_field} diff --git a/templates/backOffice/default/category-edit.html b/templates/backOffice/default/category-edit.html index 4d9682d7a..b245ecc04 100644 --- a/templates/backOffice/default/category-edit.html +++ b/templates/backOffice/default/category-edit.html @@ -26,7 +26,7 @@
    - {intl l='Edit category %title' title=$TITLE} + {intl l='Edit category %title' title={$TITLE}}
    diff --git a/templates/backOffice/default/content-edit.html b/templates/backOffice/default/content-edit.html index 1dad037c3..c30dac683 100644 --- a/templates/backOffice/default/content-edit.html +++ b/templates/backOffice/default/content-edit.html @@ -16,7 +16,7 @@
    - {intl l='Edit content %title' title=$TITLE} + {intl l='Edit content %title' title={$TITLE}}
    diff --git a/templates/backOffice/default/countries.html b/templates/backOffice/default/countries.html index 35c6e37a8..87aeaed22 100644 --- a/templates/backOffice/default/countries.html +++ b/templates/backOffice/default/countries.html @@ -132,9 +132,9 @@
    - {intl l=$TITLE} + {$TITLE}
    -
    {intl l="Enter here the value in the default language (%title)" title=$TITLE}
    +
    {intl l="Enter here the value in the default language (%title)" title={$TITLE}}
    {/form_field} diff --git a/templates/backOffice/default/country-edit.html b/templates/backOffice/default/country-edit.html index b3177a1ee..4a513ff23 100644 --- a/templates/backOffice/default/country-edit.html +++ b/templates/backOffice/default/country-edit.html @@ -122,7 +122,7 @@
    - {intl l="Sorry, country ID=%id was not found." id=$country_id} + {intl l="Sorry, country ID=%id was not found." id={$country_id}}
    diff --git a/templates/backOffice/default/coupon/form.html b/templates/backOffice/default/coupon/form.html index 4f1650bca..f6d4365c0 100644 --- a/templates/backOffice/default/coupon/form.html +++ b/templates/backOffice/default/coupon/form.html @@ -5,7 +5,7 @@
    - {intl l='Edit %title' title=$couponCode} + {intl l='Edit %title' title={$couponCode}}
    diff --git a/templates/backOffice/default/currencies.html b/templates/backOffice/default/currencies.html index 98790333b..475aac143 100644 --- a/templates/backOffice/default/currencies.html +++ b/templates/backOffice/default/currencies.html @@ -219,10 +219,10 @@ {loop type="lang" name="default-lang" default_only="1"}
    - {intl l=$TITLE} + {$TITLE}
    -
    {intl l="Enter here the currency name in the default language (%title)" title=$TITLE}
    +
    {intl l="Enter here the currency name in the default language (%title)" title={$TITLE}}
    {* Switch edition to the current locale *} diff --git a/templates/backOffice/default/currency-edit.html b/templates/backOffice/default/currency-edit.html index 92ff36649..4d59e0fee 100644 --- a/templates/backOffice/default/currency-edit.html +++ b/templates/backOffice/default/currency-edit.html @@ -24,7 +24,7 @@
    - {intl l='Edit currency "%name"' name=$NAME} + {intl l='Edit currency "%name"' name={$NAME}}
    @@ -115,7 +115,7 @@
    - {intl l="Sorry, currency ID=%id was not found." id=$currency_id} + {intl l="Sorry, currency ID=%id was not found." id={$currency_id}}
    diff --git a/templates/backOffice/default/customer-edit.html b/templates/backOffice/default/customer-edit.html index ff0a4a490..ade8e8741 100644 --- a/templates/backOffice/default/customer-edit.html +++ b/templates/backOffice/default/customer-edit.html @@ -14,7 +14,7 @@
    @@ -22,7 +22,7 @@
    - {intl l="Edit customer %firstname %lastname" firstname=$FIRSTNAME lastname=$LASTNAME} + {intl l="Edit customer %firstname %lastname" firstname={$FIRSTNAME} lastname={$LASTNAME}}
    diff --git a/templates/backOffice/default/document-edit.html b/templates/backOffice/default/document-edit.html index 68d4bb85d..5206250b3 100644 --- a/templates/backOffice/default/document-edit.html +++ b/templates/backOffice/default/document-edit.html @@ -132,7 +132,7 @@
    - {intl l="Sorry, document ID=%id was not found." id=$documentId} + {intl l="Sorry, document ID=%id was not found." id={$documentId}}
    diff --git a/templates/backOffice/default/feature-edit.html b/templates/backOffice/default/feature-edit.html index 8c19ed761..31c01edac 100644 --- a/templates/backOffice/default/feature-edit.html +++ b/templates/backOffice/default/feature-edit.html @@ -16,7 +16,7 @@
  • {intl l="Home"}
  • {intl l="Configuration"}
  • {intl l="Features"}
  • -
  • {intl l='Editing feature "%name"' name=$TITLE}
  • +
  • {intl l='Editing feature "%name"' name={$TITLE}}
  • @@ -24,7 +24,7 @@
    - {intl l='Edit feature "%name"' name=$TITLE} + {intl l='Edit feature "%name"' name={$TITLE}}
    @@ -186,7 +186,7 @@
    - {intl l="Sorry, feature ID=%id was not found." id=$feature_id} + {intl l="Sorry, feature ID=%id was not found." id={$feature_id}}
    @@ -223,10 +223,10 @@ {loop type="lang" name="current-edit-lang" id="$edit_language_id"}
    - {intl l=$TITLE} + {$TITLE}
    -
    {intl l="Enter here the value in the current edit language (%language_name)" language_name=$TITLE}
    +
    {intl l="Enter here the value in the current edit language (%language_name)" language_name={$TITLE}}
    {form_field form=$form field='locale'} diff --git a/templates/backOffice/default/features.html b/templates/backOffice/default/features.html index b44679348..6e5c18b91 100644 --- a/templates/backOffice/default/features.html +++ b/templates/backOffice/default/features.html @@ -166,10 +166,10 @@ {loop type="lang" name="default-lang" default_only="1"}
    - {intl l=$TITLE} + {$TITLE}
    -
    {intl l="Enter here the feature name in the default language (%title)" title=$TITLE}
    +
    {intl l="Enter here the feature name in the default language (%title)" title={$TITLE}}
    {* Switch edition to the current locale *} diff --git a/templates/backOffice/default/folder-edit.html b/templates/backOffice/default/folder-edit.html index 2eb4350b3..2a22d3741 100644 --- a/templates/backOffice/default/folder-edit.html +++ b/templates/backOffice/default/folder-edit.html @@ -20,7 +20,7 @@
    - {intl l='Edit folder %title' title=$TITLE} + {intl l='Edit folder %title' title={$TITLE}}
    diff --git a/templates/backOffice/default/folders.html b/templates/backOffice/default/folders.html index 0557d79ac..1b96fd9b7 100644 --- a/templates/backOffice/default/folders.html +++ b/templates/backOffice/default/folders.html @@ -22,7 +22,7 @@ {* display parent folder name, and get current folder ID *} {loop name="folder_title" type="folder" visible="*" id=$parent} - {intl l="Folders in %fold" fold=$TITLE} + {intl l="Folders in %fold" fold={$TITLE}} {$fold_id = $ID} {/loop} {elseloop rel="folder_title"} @@ -191,7 +191,7 @@ {* display parent folder name *} {loop name="folder_title" type="folder" visible="*" id=$parent} - {intl l="Contents in %fold" fold=$TITLE} + {intl l="Contents in %fold" fold={$TITLE}} {/loop} {elseloop rel="folder_title"} diff --git a/templates/backOffice/default/image-edit.html b/templates/backOffice/default/image-edit.html index b65c6707d..f9cdc29ce 100644 --- a/templates/backOffice/default/image-edit.html +++ b/templates/backOffice/default/image-edit.html @@ -14,7 +14,7 @@
    @@ -22,7 +22,7 @@
    - {intl l='Edit image "%name"' name=$TITLE} + {intl l='Edit image "%name"' name={$TITLE}}
    @@ -137,7 +137,7 @@
    - {intl l="Sorry, image ID=%id was not found." id=$imageId} + {intl l="Sorry, image ID=%id was not found." id={$imageId}}
    diff --git a/templates/backOffice/default/includes/content-folder-management.html b/templates/backOffice/default/includes/content-folder-management.html index 6f1b3566b..4bd8c16b7 100644 --- a/templates/backOffice/default/includes/content-folder-management.html +++ b/templates/backOffice/default/includes/content-folder-management.html @@ -9,7 +9,7 @@

    {intl l='Additional Folders'}

    {intl l='A content could be attached to more than one folder. Select here the additional folders for this content.'} {loop name="default_folder" type="folder" id=$DEFAULT_FOLDER} - {intl l='You can change the default folder (%title) in the "General" tab.' title=$TITLE} + {intl l='You can change the default folder (%title) in the "General" tab.' title={$TITLE}} {/loop} {$exclude_from_tree = "-1"} diff --git a/templates/backOffice/default/includes/document-upload-list-ajax.html b/templates/backOffice/default/includes/document-upload-list-ajax.html index 768129554..c081c64d2 100644 --- a/templates/backOffice/default/includes/document-upload-list-ajax.html +++ b/templates/backOffice/default/includes/document-upload-list-ajax.html @@ -29,5 +29,5 @@ Parameters: {/ifloop} {elseloop rel="document"} -

    {intl l='There is no documents attached to this %type.' type=$documentType}
    +
    {intl l='There is no documents attached to this %type.' type={$documentType}}
    {/elseloop} diff --git a/templates/backOffice/default/includes/image-upload-list-ajax.html b/templates/backOffice/default/includes/image-upload-list-ajax.html index 937aca1a5..185baa092 100644 --- a/templates/backOffice/default/includes/image-upload-list-ajax.html +++ b/templates/backOffice/default/includes/image-upload-list-ajax.html @@ -30,5 +30,5 @@ Parameters: {/ifloop} {elseloop rel="image"} -
    {intl l='There is no images attached to this %type.' type=$imageType}
    +
    {intl l='There is no images attached to this %type.' type={$imageType}}
    {/elseloop} \ No newline at end of file diff --git a/templates/backOffice/default/includes/inner-form-toolbar.html b/templates/backOffice/default/includes/inner-form-toolbar.html index 92bee1af8..ed0cf3b3c 100644 --- a/templates/backOffice/default/includes/inner-form-toolbar.html +++ b/templates/backOffice/default/includes/inner-form-toolbar.html @@ -21,7 +21,7 @@ Parameters: {else} {$lang_url = {url path={$page_url|default:$current_url nofilter} edit_language_id=$ID}} {/if} - + {$TITLE} @@ -36,7 +36,7 @@ Parameters:
    {loop name="currency_list" type="currency"} - + {$SYMBOL} {/loop} diff --git a/templates/backOffice/default/includes/module-block.html b/templates/backOffice/default/includes/module-block.html index 6ea8fcda5..36983c4ba 100644 --- a/templates/backOffice/default/includes/module-block.html +++ b/templates/backOffice/default/includes/module-block.html @@ -91,9 +91,9 @@
    diff --git a/templates/backOffice/default/includes/product-prices-tab.html b/templates/backOffice/default/includes/product-prices-tab.html index 3e93352d7..8c55d0fc3 100644 --- a/templates/backOffice/default/includes/product-prices-tab.html +++ b/templates/backOffice/default/includes/product-prices-tab.html @@ -350,14 +350,14 @@ {intl l='Reference'} {intl l='EAN Code'} {intl l='Stock'} - {intl l='Price
    w/o taxes (%currency)' currency=$currency_symbol} - {intl l='Price
    w/ taxes (%currency)' currency=$currency_symbol} + {intl l='Price
    w/o taxes (%currency)' currency={$currency_symbol}} + {intl l='Price
    w/ taxes (%currency)' currency={$currency_symbol}} {intl l='Weight
    (Kg)'} {intl l='Default'} {intl l='Sale'} {intl l='New'} - {intl l='Sale price
    w/o taxes (%currency)' currency=$currency_symbol} - {intl l='Sale price
    w/ taxes (%currency)' currency=$currency_symbol} + {intl l='Sale price
    w/o taxes (%currency)' currency={$currency_symbol}} + {intl l='Sale price
    w/ taxes (%currency)' currency={$currency_symbol}}   diff --git a/templates/backOffice/default/message-edit.html b/templates/backOffice/default/message-edit.html index 6de72a897..5eeff56ce 100644 --- a/templates/backOffice/default/message-edit.html +++ b/templates/backOffice/default/message-edit.html @@ -16,7 +16,7 @@
  • {intl l="Home"}
  • {intl l="Configuration"}
  • {intl l="Mailing templates"}
  • -
  • {intl l='Editing mailing template "%name"' name=$NAME}
  • +
  • {intl l='Editing mailing template "%name"' name={$NAME}}
  • @@ -24,7 +24,7 @@
    - {intl l='Edit mailing template "%name"' name=$NAME} + {intl l='Edit mailing template "%name"' name={$NAME}}
    @@ -209,7 +209,7 @@
    - {intl l="Sorry, message ID=%id was not found." id=$message_id} + {intl l="Sorry, message ID=%id was not found." id={$message_id}}
    diff --git a/templates/backOffice/default/messages.html b/templates/backOffice/default/messages.html index 6344aa45b..c299942da 100644 --- a/templates/backOffice/default/messages.html +++ b/templates/backOffice/default/messages.html @@ -143,10 +143,10 @@
    - {intl l=$TITLE} + {$TITLE}
    -
    {intl l="Enter here the mailing template purpose in the default language (%title)" title=$TITLE}
    +
    {intl l="Enter here the mailing template purpose in the default language (%title)" title={$TITLE}}
    {form_field form=$form field='locale'} diff --git a/templates/backOffice/default/order-edit.html b/templates/backOffice/default/order-edit.html index 11f576fa9..238938e7a 100644 --- a/templates/backOffice/default/order-edit.html +++ b/templates/backOffice/default/order-edit.html @@ -36,7 +36,7 @@
    - {intl l='Order %ref - ID %id' id=$ID ref=$REF} + {intl l='Order %ref - ID %id' id={$ID} ref={$REF}}
    @@ -69,7 +69,7 @@
    @@ -388,14 +388,14 @@ {form_field form=$form field='company'}
    - - + +
    {/form_field} {form_field form=$form field='title'}
    - + + +
    {/form_field} {form_field form=$form field='lastname'}
    - - + +
    {/form_field} {form_field form=$form field='address1'}
    - - + +
    {form_field form=$form field='address2'} - + {/form_field}
    {form_field form=$form field='address3'} - + {/form_field}
    {/form_field} {form_field form=$form field='zipcode'}
    - - + +
    {/form_field} {form_field form=$form field='city'}
    - - + +
    {/form_field} {form_field form=$form field='country'}
    - + + +
    {/form_field} diff --git a/templates/backOffice/default/product-edit.html b/templates/backOffice/default/product-edit.html index 1612c54b5..11369ed17 100644 --- a/templates/backOffice/default/product-edit.html +++ b/templates/backOffice/default/product-edit.html @@ -22,7 +22,7 @@
    - {intl l='Edit product %title' title=$TITLE} + {intl l='Edit product %title' title={$TITLE}}
    diff --git a/templates/backOffice/default/profile-edit.html b/templates/backOffice/default/profile-edit.html index 7a5bed341..fde3ad01a 100644 --- a/templates/backOffice/default/profile-edit.html +++ b/templates/backOffice/default/profile-edit.html @@ -69,14 +69,14 @@ {form_field form=$form field='title'}
    - +
    {/form_field} {form_field form=$form field='chapo'}
    - +
    {/form_field} @@ -84,7 +84,7 @@ {form_field form=$form field='description'}
    @@ -94,7 +94,7 @@ {form_field form=$form field='postscriptum'}
    - +
    {/form_field} diff --git a/templates/backOffice/default/profiles.html b/templates/backOffice/default/profiles.html index f6127cf6f..a7d9d701c 100644 --- a/templates/backOffice/default/profiles.html +++ b/templates/backOffice/default/profiles.html @@ -118,8 +118,8 @@ {loop type="lang" name="current-edit-lang" default_only="1"}
    - {intl l=$TITLE} - {intl l="Enter information in the default language (%title)" title=$TITLE} + {$TITLE} + {intl l="Enter information in the default language (%title)" title={$TITLE}}
    {form_field form=$form field='locale'} @@ -129,21 +129,21 @@ {form_field form=$form field='code'}
    - +
    {/form_field} {form_field form=$form field='title'}
    - +
    {/form_field} {form_field form=$form field='chapo'}
    - +
    {/form_field} @@ -151,7 +151,7 @@ {form_field form=$form field='description'}
    @@ -161,7 +161,7 @@ {form_field form=$form field='postscriptum'}
    - +
    {/form_field} diff --git a/templates/backOffice/default/shipping-configuration-edit.html b/templates/backOffice/default/shipping-configuration-edit.html index ded4cf07d..773794b1b 100644 --- a/templates/backOffice/default/shipping-configuration-edit.html +++ b/templates/backOffice/default/shipping-configuration-edit.html @@ -24,7 +24,7 @@
    - {intl l='Shipping zone "%title"' title=$NAME} + {intl l='Shipping zone "%title"' title={$NAME}}
    {intl l='Close'} diff --git a/templates/backOffice/default/shipping-configuration.html b/templates/backOffice/default/shipping-configuration.html index 629856db5..ae662816f 100644 --- a/templates/backOffice/default/shipping-configuration.html +++ b/templates/backOffice/default/shipping-configuration.html @@ -59,7 +59,7 @@ {/loop} {$countries = ltrim($countries, ', ')} - {intl l="%count more..." count=$ctry_count} + {intl l="%count more..." count={$ctry_count}} {/ifloop} diff --git a/templates/backOffice/default/shipping-zones-edit.html b/templates/backOffice/default/shipping-zones-edit.html index 4d75908fd..72e824af9 100644 --- a/templates/backOffice/default/shipping-zones-edit.html +++ b/templates/backOffice/default/shipping-zones-edit.html @@ -26,7 +26,7 @@
    - {intl l='Shipping configuration of delivery module "%title"' title=$TITLE} + {intl l='Shipping configuration of delivery module "%title"' title={$TITLE}}
    {intl l='Close'} diff --git a/templates/backOffice/default/system-logs.html b/templates/backOffice/default/system-logs.html index 9cf7f64fe..4bf8a1f60 100644 --- a/templates/backOffice/default/system-logs.html +++ b/templates/backOffice/default/system-logs.html @@ -129,7 +129,7 @@
    {intl l='Enter one or more IP V4 addresses separated by ";". Leave empty to display logs for all IP addresses'} - {intl l='Your current IP address is %ip' ip=$ip_address} + {intl l='Your current IP address is %ip' ip={$ip_address}}
    {/form_field} diff --git a/templates/backOffice/default/tax-edit.html b/templates/backOffice/default/tax-edit.html index de2d39d1b..31ff9ccd9 100644 --- a/templates/backOffice/default/tax-edit.html +++ b/templates/backOffice/default/tax-edit.html @@ -54,7 +54,7 @@ {form_field form=$form field='title'}
    - +
    {/form_field} @@ -62,7 +62,7 @@ {form_field form=$form field='description'}
    @@ -73,7 +73,7 @@ {form_field form=$form field='type'}
    @@ -91,7 +91,7 @@ {form_tagged_fields form=$form tag='requirements'}
    {if $formType == 'choice'}
    {/form_field} @@ -73,7 +73,7 @@ {form_field form=$form field='description'}
    diff --git a/templates/backOffice/default/taxes-rules.html b/templates/backOffice/default/taxes-rules.html index e9d80efed..2d8d6c118 100644 --- a/templates/backOffice/default/taxes-rules.html +++ b/templates/backOffice/default/taxes-rules.html @@ -167,7 +167,7 @@ {form_field form=$form field='title'}
    - +
    {/form_field} @@ -175,7 +175,7 @@ {form_field form=$form field='description'}
    @@ -186,7 +186,7 @@ {form_field form=$form field='type'}
    @@ -206,7 +206,7 @@ {form_tagged_fields form=$form tag='requirements'}
    {if $formType == 'choice'}
    {/form_field} @@ -290,7 +290,7 @@ form_content = {$smarty.capture.tax_delete_dialog nofilter} {form_field form=$form field='description'}
    diff --git a/templates/backOffice/default/template-edit.html b/templates/backOffice/default/template-edit.html index 5c0fc8114..a41cf8b26 100644 --- a/templates/backOffice/default/template-edit.html +++ b/templates/backOffice/default/template-edit.html @@ -16,7 +16,7 @@
  • {intl l="Home"}
  • {intl l="Configuration"}
  • {intl l="Templates"}
  • -
  • {intl l='Editing template "%name"' name=$NAME}
  • +
  • {intl l='Editing template "%name"' name={$NAME}}
  • @@ -97,7 +97,7 @@
    - {intl l="Sorry, template ID=%id was not found." id=$template_id} + {intl l="Sorry, template ID=%id was not found." id={$template_id}}
    diff --git a/templates/backOffice/default/templates.html b/templates/backOffice/default/templates.html index 2fa5d61b9..0e9370b25 100644 --- a/templates/backOffice/default/templates.html +++ b/templates/backOffice/default/templates.html @@ -138,10 +138,10 @@ {loop type="lang" name="default-lang" default_only="1"}
    - {intl l=$TITLE} + {$TITLE}
    -
    {intl l="Enter here the template name in the default language (%title)" title=$TITLE}
    +
    {intl l="Enter here the template name in the default language (%title)" title={$TITLE}}
    {* Switch edition to the current locale *} diff --git a/templates/backOffice/default/variable-edit.html b/templates/backOffice/default/variable-edit.html index e5c801ee5..05d831e6f 100644 --- a/templates/backOffice/default/variable-edit.html +++ b/templates/backOffice/default/variable-edit.html @@ -16,7 +16,7 @@
  • {intl l="Home"}
  • {intl l="Configuration"}
  • {intl l="System variables"}
  • -
  • {intl l='Editing variable "%name"' name=$NAME}
  • +
  • {intl l='Editing variable "%name"' name={$NAME}}
  • @@ -24,7 +24,7 @@
    - {intl l="Edit variable %name" name=$NAME} + {intl l="Edit variable %name" name={$NAME}}
    @@ -106,7 +106,7 @@
    - {intl l="Sorry, variable ID=%id was not found." id=$variable_id} + {intl l="Sorry, variable ID=%id was not found." id={$variable_id}}
    diff --git a/templates/backOffice/default/variables.html b/templates/backOffice/default/variables.html index a6433a023..a31dababa 100644 --- a/templates/backOffice/default/variables.html +++ b/templates/backOffice/default/variables.html @@ -186,10 +186,10 @@
    - {intl l=$TITLE} + {$TITLE}
    -
    {intl l='Enter here the category name in the default language (%title)' title="$TITLE"}
    +
    {intl l='Enter here the category name in the default language (%title)' title={$TITLE}}
    {form_field form=$form field='locale'} diff --git a/templates/frontOffice/default/order-invoice.html b/templates/frontOffice/default/order-invoice.html index 32d5408b8..be3cd229f 100644 --- a/templates/frontOffice/default/order-invoice.html +++ b/templates/frontOffice/default/order-invoice.html @@ -271,11 +271,11 @@ {loop type="image" name="paymentspicture" source="module" source_id=$ID force_return="true" width="100" height="72"} - {intl l= + {intl l= {/loop} {elseloop rel="paymentspicture"} - {intl l="Pay with %module_title" module_title=$TITLE} + {intl l="Pay with %module_title" module_title={$TITLE}} {/elseloop}
    - {intl l='Cart - Prices in %currency' currency=$orderCurrency} + {intl l='Cart - Prices in %currency' currency={$orderCurrency}}