diff options
-rw-r--r-- | languages/en.php | 2 | ||||
-rw-r--r-- | mod/groups/actions/forums/edittopic.php | 2 | ||||
-rw-r--r-- | mod/groups/languages/en.php | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/languages/en.php b/languages/en.php index 3609a6f80..b48fa3e6c 100644 --- a/languages/en.php +++ b/languages/en.php @@ -555,6 +555,8 @@ To remove a widget drag it back to the <b>Widget gallery</b>.", 'content:latest' => 'Latest activity', 'content:latest:blurb' => 'Alternatively, click here to view the latest content from across the site.', + 'link:text' => 'view link', + /** * Generic data words */ diff --git a/mod/groups/actions/forums/edittopic.php b/mod/groups/actions/forums/edittopic.php index 865af2173..bff8dbe53 100644 --- a/mod/groups/actions/forums/edittopic.php +++ b/mod/groups/actions/forums/edittopic.php @@ -69,7 +69,7 @@ }
// Success message
- system_message(elgg_echo("forumtopic:edited"));
+ system_message(elgg_echo("groups:forumtopic:edited"));
}
}
diff --git a/mod/groups/languages/en.php b/mod/groups/languages/en.php index 1077966af..802aa9148 100644 --- a/mod/groups/languages/en.php +++ b/mod/groups/languages/en.php @@ -134,7 +134,8 @@ or click below to confirm request: 'groups:widgets:entities:description' => "List the objects saved in this group",
'groups:widgets:entities:label:displaynum' => 'List the objects of a group.',
'groups:widgets:entities:label:pleaseedit' => 'Please configure this widget.',
-
+ + 'groups:forumtopic:edited' => 'Forum topic successfully edited.',
);
add_translation("en",$english);
|