diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-09-08 10:43:09 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-09-08 10:43:09 +0000 |
commit | daf9c7dfd544ff65eb038b0d9aab97bff9aff45e (patch) | |
tree | a3089d42b2c3dc4a128a2af4ed2daef801fe14c4 | |
parent | b8a00eb11c817edcea1d4148f2675e69a1db5805 (diff) | |
download | elgg-daf9c7dfd544ff65eb038b0d9aab97bff9aff45e.tar.gz elgg-daf9c7dfd544ff65eb038b0d9aab97bff9aff45e.tar.bz2 |
Closes #320: Filled in missing translations
git-svn-id: https://code.elgg.org/elgg/trunk@2059 36083f99-b078-4883-b0ff-0f9b5a30f544
-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);
|