diff options
Diffstat (limited to 'views/default')
| -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';  | 
