summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2010-02-06 11:59:06 +0100
committerYorhel <git@yorhel.nl>2010-02-06 11:59:06 +0100
commit6684f559ede54899697fa54d25e2347d6c31bf7a (patch)
tree9a49a335453f2dd98eeed914af431e9194d1bd70
parentd8f52504b79193119fbca8a1052bcf3261d5ab8b (diff)
JS: Fixed warning about wrong VN relation input box format
-rw-r--r--data/script.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/script.js b/data/script.js
index 07dd1581..f12e9481 100644
--- a/data/script.js
+++ b/data/script.js
@@ -856,7 +856,7 @@ function vnrFormAdd() {
var input = txt.value;
if(!input.match(/^v[0-9]+/)) {
- alert('_vnedit_rel_findformat');
+ alert(mt('_vnedit_rel_findformat'));
return false;
}