Jeżeli mamy 1 produkt na stanie lub więcej niż dwa prdukty, przypisane są do tego dwa różne tłumaczenia. Chciałbym dodać jeszcze 3 tłumaczenie:
Kod wygląda tak dla product.js
if (quantityAvailable < 2) // we have 1 or less product in stock and need to show "item" instead of "items"
{
$('#quantityAvailableTxt').show();
$('#quantityAvailableTxtMultiple').hide();
}
else
{
$('#quantityAvailableTxt').hide();
$('#quantityAvailableTxtMultiple').show();
}
po modyfikacji wygląda tak:
if (quantityAvailable < 2) // we have 1 or less product in stock and need to show "item" instead of "items"
{
$('#quantityAvailableTxt').show();
$('#quantityAvailableTxtMultiple').hide();
$('#quantityAvailableTxtMultipley').show();
}
else if (quantityAvailable < 5 && quantityAvailable > 1)
{
$('#quantityAvailableTxt').hide();
$('#quantityAvailableTxtMultiple').hide();
$('#quantityAvailableTxtMultipley').show();
}
else
{
$('#quantityAvailableTxt').hide();
$('#quantityAvailableTxtMultipley').show();
$('#quantityAvailableTxtMultiple').show();
}
Question
mentalspot
Próbuję i próbuję i pewnie coś źle robię ...
Jeżeli mamy 1 produkt na stanie lub więcej niż dwa prdukty, przypisane są do tego dwa różne tłumaczenia. Chciałbym dodać jeszcze 3 tłumaczenie:
Kod wygląda tak dla product.js
po modyfikacji wygląda tak:
W product.tpl jest :
po modyfikacji:
Zakładam, że o czymś nie wiem ?
Próbowałem jeszcze kilka innych kombinacji, ale nie działają.
Link to comment
Share on other sites
9 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now