diff options
| author | 2014-10-05 18:03:32 +0200 | |
|---|---|---|
| committer | 2014-10-05 18:03:32 +0200 | |
| commit | 3831961b2e515ff7d8d352c0f7b6a15b3a613c25 (patch) | |
| tree | 4706eb32333fd6a3cc9f4fa5be5cd78353abb4d3 | |
| parent | fe1fa98127916936c7f30cb61badf89418db1c66 (diff) | |
Fix bug of i18n in JavaScript
See https://github.com/marienfressinaud/FreshRSS/issues/655
| -rw-r--r-- | p/scripts/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p/scripts/main.js b/p/scripts/main.js index ad33f6c57..b01a3a34d 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -849,7 +849,7 @@ function notifs_html5_show(nb) { var notification = new window.Notification(i18n['notif_title_articles'], { icon: "../themes/icons/favicon-256.png", - body: i18n['notif_body_articles.replace("\d", nb)'], + body: i18n['notif_body_articles'].replace("\d", nb), tag: "freshRssNewArticles" }); |
