From 76fa718b15d832d4635bbcd4328a4d38cc8105a1 Mon Sep 17 00:00:00 2001 From: icewing Date: Fri, 6 Jun 2008 12:09:30 +0000 Subject: Marcus Povey * More internationalisation git-svn-id: https://code.elgg.org/elgg/trunk@821 36083f99-b078-4883-b0ff-0f9b5a30f544 --- languages/en.php | 2 ++ views/default/export/entity.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/languages/en.php b/languages/en.php index 86136a574..374e59340 100644 --- a/languages/en.php +++ b/languages/en.php @@ -84,6 +84,8 @@ 'DatabaseException:UnspecifiedQueryType' => "Unrecognised or unspecified query type.", 'DatabaseException:NoTablesSpecified' => "No tables specified for query.", 'DatabaseException:NoACL' => "No access control was provided on query", + + 'InvalidParameterException:NoEntityFound' => "No entity found, it either doesn't exist or you don't have access to it.", /** * User details diff --git a/views/default/export/entity.php b/views/default/export/entity.php index 1ddde4b78..43189d693 100644 --- a/views/default/export/entity.php +++ b/views/default/export/entity.php @@ -12,7 +12,7 @@ */ $entity = $vars['entity']; - if (!$entity) throw new InvalidParameterException("No entity found, it either doesn't exist or you don't have access to it."); + if (!$entity) throw new InvalidParameterException(elgg_echo('InvalidParameterException:NoEntityFound')); $metadata = get_metadata_for_entity($entity->guid); $annotations = get_annotations($entity->guid); -- cgit v1.2.3