From 3d731180922e2abca49a2dda0f8e62d64dc2ee1b Mon Sep 17 00:00:00 2001 From: touffies Date: Tue, 12 Nov 2013 14:01:34 +0100 Subject: [PATCH] ISSUE 100 : Information has no plural (Fix front) --- templates/default/I18n/en_US.php | 4 ++-- templates/default/I18n/es_ES.php | 4 ++-- templates/default/I18n/fr_FR.php | 3 +-- templates/default/I18n/it_IT.php | 4 ++-- templates/default/account-update.html | 2 +- templates/default/account.html | 2 +- templates/default/assets/js/script.js | 2 +- templates/default/assets/less/thelia/product.less | 2 +- templates/default/product.html | 2 +- templates/default/register.html | 4 ++-- 10 files changed, 14 insertions(+), 15 deletions(-) diff --git a/templates/default/I18n/en_US.php b/templates/default/I18n/en_US.php index c83aff515..acf88a5ed 100755 --- a/templates/default/I18n/en_US.php +++ b/templates/default/I18n/en_US.php @@ -44,7 +44,7 @@ return array( 'Date' => 'Date', 'Delete address' => 'Delete address', 'Delivery address' => 'Delivery address', - 'Delivery Informations' => 'Delivery Informations', + 'Delivery Information' => 'Delivery Information', 'Demo product description' => 'Demo product description', 'Demo product title' => 'Demo product title', 'Description' => 'Description', @@ -105,7 +105,7 @@ return array( 'Password Forgotten' => 'Password Forgotten', 'Password' => 'Password', 'per page' => 'per page', - 'Personal Informations' => 'Personal Informations', + 'Personal Information' => 'Personal Information', 'Placeholder address label' => 'Home, Work office, other', 'Placeholder address1' => '76 Ninth Avenue', 'Placeholder address2' => 'Address', diff --git a/templates/default/I18n/es_ES.php b/templates/default/I18n/es_ES.php index e96407fea..410d328b4 100755 --- a/templates/default/I18n/es_ES.php +++ b/templates/default/I18n/es_ES.php @@ -44,7 +44,7 @@ return array( 'Date' => '', 'Delete address' => '', 'Delivery address' => '', - 'Delivery Informations' => '', + 'Delivery Information' => '', 'Demo product description' => '', 'Demo product title' => '', 'Description' => '', @@ -105,7 +105,7 @@ return array( 'Password Forgotten' => '', 'Password' => '', 'per page' => '', - 'Personal Informations' => '', + 'Personal Information' => '', 'Placeholder address label' => '', 'Placeholder address1' => '', 'Placeholder address2' => '', diff --git a/templates/default/I18n/fr_FR.php b/templates/default/I18n/fr_FR.php index 82a4581c4..5137cfcdd 100755 --- a/templates/default/I18n/fr_FR.php +++ b/templates/default/I18n/fr_FR.php @@ -44,7 +44,7 @@ return array( 'Date' => 'Date', 'Delete address' => 'Supprimer cette adresse', 'Delivery address' => 'Adresse de livraison', - 'Delivery Informations' => 'Informations de livraison', + 'Delivery Information' => 'Informations de livraison', 'Demo product description' => 'Example de description de produit', 'Demo product title' => 'Example de titre', 'Description' => 'Description', @@ -108,7 +108,6 @@ return array( 'Password' => 'Mot de passe', 'per page' => 'par page', 'Personal Information' => 'Informations personnelles', - 'Personal Informations' => 'Informations personnelles', 'Placeholder address label' => 'Maison, Domicile, Travail...', 'Placeholder address1' => 'Adresse', 'Placeholder address2' => '', diff --git a/templates/default/I18n/it_IT.php b/templates/default/I18n/it_IT.php index e96407fea..410d328b4 100755 --- a/templates/default/I18n/it_IT.php +++ b/templates/default/I18n/it_IT.php @@ -44,7 +44,7 @@ return array( 'Date' => '', 'Delete address' => '', 'Delivery address' => '', - 'Delivery Informations' => '', + 'Delivery Information' => '', 'Demo product description' => '', 'Demo product title' => '', 'Description' => '', @@ -105,7 +105,7 @@ return array( 'Password Forgotten' => '', 'Password' => '', 'per page' => '', - 'Personal Informations' => '', + 'Personal Information' => '', 'Placeholder address label' => '', 'Placeholder address1' => '', 'Placeholder address2' => '', diff --git a/templates/default/account-update.html b/templates/default/account-update.html index d4ba0fadb..467d586f6 100644 --- a/templates/default/account-update.html +++ b/templates/default/account-update.html @@ -35,7 +35,7 @@
- {intl l="Personal Informations"} + {intl l="Personal Information"}
diff --git a/templates/default/account.html b/templates/default/account.html index 9904760f9..b5453d673 100644 --- a/templates/default/account.html +++ b/templates/default/account.html @@ -26,7 +26,7 @@ diff --git a/templates/default/assets/js/script.js b/templates/default/assets/js/script.js index c9ecf99ab..c96d25ca1 100644 --- a/templates/default/assets/js/script.js +++ b/templates/default/assets/js/script.js @@ -229,7 +229,7 @@ var $btnAddToCart = $(".btn_add_to_cart", $("#form-product-details")); - var $productMeta = $("#stockInformations"); + var $productMeta = $("#stock-information"); var $inStock = $(".in",$productMeta); var $outOfStock = $(".out",$productMeta); diff --git a/templates/default/assets/less/thelia/product.less b/templates/default/assets/less/thelia/product.less index 44965ed2a..b62a1a10b 100755 --- a/templates/default/assets/less/thelia/product.less +++ b/templates/default/assets/less/thelia/product.less @@ -31,7 +31,7 @@ text-transform: uppercase; } - #stockInformations{ + #stock-information { } } diff --git a/templates/default/product.html b/templates/default/product.html index abce5751e..097d40a4b 100644 --- a/templates/default/product.html +++ b/templates/default/product.html @@ -113,7 +113,7 @@
{intl l="Availability"}: - + {intl l='In Stock'}{intl l='Out of Stock'}
diff --git a/templates/default/register.html b/templates/default/register.html index 29d5879de..73d7f5f20 100644 --- a/templates/default/register.html +++ b/templates/default/register.html @@ -27,7 +27,7 @@ {if $form_error}
{$form_error_message}
{/if}
- 1. {intl l="Personal Informations"} + 1. {intl l="Personal Information"}
@@ -116,7 +116,7 @@
- 2. {intl l="Delivery Informations"} + 2. {intl l="Delivery Information"}