summaryrefslogtreecommitdiff
path: root/fxjs/js_resources.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fxjs/js_resources.cpp')
-rw-r--r--fxjs/js_resources.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/fxjs/js_resources.cpp b/fxjs/js_resources.cpp
index bfffbc3714..ec20b1e9b5 100644
--- a/fxjs/js_resources.cpp
+++ b/fxjs/js_resources.cpp
@@ -49,8 +49,14 @@ WideString JSGetStringFromID(JSMessage msg) {
return L"Permission denied.";
case JSMessage::kBadObjectError:
return L"Object no longer exists.";
+ case JSMessage::kObjectTypeError:
+ return L"Object is of the wrong type.";
case JSMessage::kTooManyOccurances:
- return L"Too many occurances";
+ return L"Too many occurances.";
+ case JSMessage::kUnknownProperty:
+ return L"Unknown property.";
+ case JSMessage::kUnknownMethod:
+ return L"Unknown method.";
}
NOTREACHED();
return L"";