| Index: options.js |
| =================================================================== |
| --- a/options.js |
| +++ b/options.js |
| @@ -432,17 +432,17 @@ |
| if (downloadStatus in map) |
| lastUpdate.textContent = i18n.getMessage(map[downloadStatus]); |
| else |
| lastUpdate.textContent = downloadStatus; |
| lastUpdate.classList.add("error"); |
| } |
| else if (subscription.lastDownload > 0) |
| { |
| - let timeDate = i18n_timeDateStrings(subscription.lastDownload * 1000); |
| + let timeDate = i18nTimeDateStrings(subscription.lastDownload * 1000); |
| let messageID = (timeDate[1] ? "last_updated_at" : "last_updated_at_today"); |
| lastUpdate.textContent = i18n.getMessage(messageID, timeDate); |
| } |
| } |
| function onSubscriptionMessage(action, subscription) |
| { |
| let element = findSubscriptionElement(subscription); |