dziudek wrote:Hi,
You can change it directly in the gk.scripts.js file in this fragment:
- Code: Select all
var dtext = this.element.get('data-daystext') || "days";
var htext = this.element.get('data-hourstext') || "hours";
var mtext = this.element.get('data-mintext') || "min.";
var stext = this.element.get('data-sectext') || "sec.";
or you can specify in the counter element the data-* attributes which will override these values (as you can see in the code - data-daystext="YOUR TEXT" will change the "days" text etc.).
Perfect.. but... what happens when there is onnly one day left? will it still display "days" Many languages have that - day and days, hour and hours and i'd love to see that added.. is that possible?
ANd also - what about a multi language site? how will that work.. cuz i'm creating an english russian site..
Thank you so much.