Skip to content

Commit

Permalink
l18n enablement
Browse files Browse the repository at this point in the history
  • Loading branch information
2000me committed Feb 2, 2019
1 parent d750ea9 commit 9909a28
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
22 changes: 22 additions & 0 deletions _locales/en/messages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"extensionName": {
"message": "VirusTotal Scan"
},
"extensionDescription": {
"message": "Scan URL with VirusTotal"
},
"notifyQueuedAndPolling": {
"message": "VirusTotal Scan queued.\nPolling every $POLL_INTERVAL_SECONDS$ seconds for the results...",
"placeholders": {
"POLL_INTERVAL_SECONDS": {
"content": "$1"
}
}
},
"notifyStillQueuedStoppedPolling": {
"message": "VirusTotal Scan still queued. Stopped polling for the results.\nPlease select VirusTotal Scan again in a minute or later."
},
"notifyUnexpectedResponse": {
"message": "Received unexpected response. Please retry."
}
}
8 changes: 5 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@
"background": {
"page": "b.html"
},
"description": "Scan URL with VirusTotal",
"default_locale": "en",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://www.github.com/2000me/vtscan",
"icons": {
"16": "i.svg"
},
"manifest_version": 2,
"name": "VirusTotal Scan",
"name": "__MSG_extensionName__",
"permissions": [
"contextMenus",
"notifications",
"https://www.virustotal.com/*"
],
"version": "0.5.4"
"version": "0.6.0"
}

0 comments on commit 9909a28

Please sign in to comment.