diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-16 12:40:48 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-16 12:40:48 +0000 |
commit | 9fb0a7a7a32d9f7e8b8a591ca9053168068da16d (patch) | |
tree | f1e7d7caa331b752b77a2c27c0de7e54eba3c02b /languages/en.php | |
parent | b1655a9ac5b0ef8f275ac5a9a99393a1b99a5e8f (diff) | |
download | elgg-9fb0a7a7a32d9f7e8b8a591ca9053168068da16d.tar.gz elgg-9fb0a7a7a32d9f7e8b8a591ca9053168068da16d.tar.bz2 |
CLOSED - #14: XML-RPC handler
http://trac.elgg.org/elgg/ticket/14
git-svn-id: https://code.elgg.org/elgg/trunk@930 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'languages/en.php')
-rw-r--r-- | languages/en.php | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/languages/en.php b/languages/en.php index b8a60d9a9..fcaeafd10 100644 --- a/languages/en.php +++ b/languages/en.php @@ -127,7 +127,11 @@ 'APIException:MissingContentType' => "Missing content type for post data",
'SecurityException:InvalidPostHash' => "POST data hash is invalid - Expected %s but got %s.",
'SecurityException:DupePacket' => "Packet signature already seen.",
- 'SecurityException:InvalidAPIKey' => "Invalid or missing API Key.",
+ 'SecurityException:InvalidAPIKey' => "Invalid or missing API Key.", + + 'NotImplementedException:XMLRPCMethodNotImplemented' => "XML-RPC method call '%s' not implemented.", + 'InvalidParameterException:UnexpectedReturnFormat' => "Call to method '%s' returned an unexpected result.", + 'CallException:NotRPCCall' => "Call does not appear to be a valid XML-RPC call",
/**
* User details
@@ -313,7 +317,13 @@ */
'welcome' => "Welcome %s",
- 'welcome_message' => "Welcome to this Elgg installation.",
+ 'welcome_message' => "Welcome to this Elgg installation.", + + + /** + * XML-RPC + */ + 'xmlrpc:noinputdata' => "Input data missing",
);
|