removed Error: from error messages
This commit is contained in:
parent
0b61568170
commit
c753cd3232
8
prefs.js
8
prefs.js
|
@ -69,7 +69,7 @@ function addFeed() {
|
||||||
var link = document.getElementById("fadd_link");
|
var link = document.getElementById("fadd_link");
|
||||||
|
|
||||||
if (link.value.length == 0) {
|
if (link.value.length == 0) {
|
||||||
notify("Error: Missing feed URL.");
|
notify("Missing feed URL.");
|
||||||
} else {
|
} else {
|
||||||
notify("Adding feed...");
|
notify("Adding feed...");
|
||||||
|
|
||||||
|
@ -126,7 +126,7 @@ function readSelectedFeeds() {
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
notify("Error: Please select some feeds first.");
|
notify("Please select some feeds first.");
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -146,7 +146,7 @@ function unreadSelectedFeeds() {
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
notify("Error: Please select some feeds first.");
|
notify("Please select some feeds first.");
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -166,7 +166,7 @@ function removeSelectedFeeds() {
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
notify("Error: Please select some feeds first.");
|
notify("Please select some feeds first.");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue