Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorMatthias Held <ilovemilk@wusa.io>2018-09-26 21:07:16 +0300
committerMatthias Held <ilovemilk@wusa.io>2018-09-26 21:07:16 +0300
commit130522e395cff0444baa02a538d7cb9e75d690d1 (patch)
treeaa598cebb4f7ac811682d54c35394cf6cb78a616 /js
parent3df04bbf354c7762578df38b451354635646e551 (diff)
Chane display name from ransomware detection to ransomware recovery
Signed-off-by: Matthias Held <matthias.held@uni-konstanz.de>
Diffstat (limited to 'js')
-rw-r--r--js/app.js8
-rw-r--r--js/filelist.js2
-rw-r--r--js/scan.js2
3 files changed, 6 insertions, 6 deletions
diff --git a/js/app.js b/js/app.js
index ef07ed8..f5733dc 100644
--- a/js/app.js
+++ b/js/app.js
@@ -24,7 +24,7 @@
if (!OCA.RansomwareDetection) {
/**
- * Namespace for the ransomware detection app
+ * Namespace for the ransomware recovery app
* @namespace OCA.RansomwareDetection
*/
OCA.RansomwareDetection = {};
@@ -36,20 +36,20 @@
OCA.RansomwareDetection.App = {
utils: null,
/**
- * File list for the "Ransomware detection" section
+ * File list for the "Ransomware recovery" section
*
* @member {OCA.RansomwareDetection.FileList}
*/
fileList: null,
/**
- * Scan for the "Ransomware detection" section
+ * Scan for the "Ransomware recovery" section
*
* @member {OCA.RansomwareDetection.Scan}
*/
scan: null,
/**
- * Initializes the ransomware detection app
+ * Initializes the ransomware recovery app
*/
initialize: function() {
if (typeof OCA.RansomwareDetection.Utils != 'undefined') {
diff --git a/js/filelist.js b/js/filelist.js
index 8c9dc98..9f1de28 100644
--- a/js/filelist.js
+++ b/js/filelist.js
@@ -35,7 +35,7 @@
*/
FileList.prototype = {
id: 'ransomware_detection',
- appName: t('ransomware_detection', 'Ransomware Detection'),
+ appName: t('ransomware_detection', 'Ransomware Recovery'),
$el: null,
$container: null,
$wrapper: null,
diff --git a/js/scan.js b/js/scan.js
index af9cfeb..8275897 100644
--- a/js/scan.js
+++ b/js/scan.js
@@ -35,7 +35,7 @@
*/
Scan.prototype = {
id: 'ransomware_detection',
- appName: t('ransomware_detection', 'Ransomware Detection'),
+ appName: t('ransomware_detection', 'Ransomware Recovery'),
$el: null,
$section: null,
$table: null,