diff --git a/jquery.timeago.js b/jquery.timeago.js index 9fcf4811..1ac1b908 100644 --- a/jquery.timeago.js +++ b/jquery.timeago.js @@ -36,15 +36,15 @@ suffixFromNow: "from now", seconds: "less than a minute", minute: "about a minute", - minutes: "%d minutes", + minutes: "%d minutes", hour: "about an hour", - hours: "about %d hours", + hours: "about %d hours", day: "a day", - days: "%d days", + days: "%d days", month: "about a month", - months: "%d months", + months: "%d months", year: "about a year", - years: "%d years", + years: "%d years", numbers: [] } }, @@ -116,7 +116,7 @@ function refresh() { var data = prepareData(this); if (!isNaN(data.datetime)) { - $(this).text(inWords(data.datetime)); + $(this).html(inWords(data.datetime)); } return this; }