diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-06-30 06:33:50 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-06-30 06:33:50 -0400 |
commit | 3b6e176b58655a6a5f46f3a93e4c70512eb6010e (patch) | |
tree | c55c2b3ad38136637e70b79ccbff9937a6c57034 /views | |
parent | bdc0777d9de30d7e541b3bf3c4d86012e018afcf (diff) | |
download | elgg-3b6e176b58655a6a5f46f3a93e4c70512eb6010e.tar.gz elgg-3b6e176b58655a6a5f46f3a93e4c70512eb6010e.tar.bz2 |
Fixes #3635 added strings for activate and deactivate
Diffstat (limited to 'views')
-rw-r--r-- | views/default/object/plugin/advanced.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/object/plugin/advanced.php b/views/default/object/plugin/advanced.php index 9fdbc99ee..08da89c01 100644 --- a/views/default/object/plugin/advanced.php +++ b/views/default/object/plugin/advanced.php @@ -98,7 +98,7 @@ $options = array( if ($active) { $active_class = 'elgg-state-active'; $action = 'deactivate'; - $options['text'] = elgg_echo('deactivate'); + $options['text'] = elgg_echo('admin:plugins:deactivate'); $options['class'] = "elgg-button elgg-button-cancel"; if (!$can_activate) { @@ -108,7 +108,7 @@ if ($active) { } else if ($can_activate) { $active_class = 'elgg-state-inactive'; $action = 'activate'; - $options['text'] = elgg_echo('activate'); + $options['text'] = elgg_echo('admin:plugins:activate'); $options['class'] = "elgg-button elgg-button-submit"; } else { $active_class = 'elgg-state-inactive'; |