From 76b87e89d83786f2cd341bab5cdc1c2135fe771c Mon Sep 17 00:00:00 2001
From: leo <the_guardian2@hotmail.com>
Date: Sun, 25 Nov 2018 13:17:09 +0100
Subject: [PATCH 1/2] Update e_dashboard.php

Localisation explaining text, using existing LAN Def from English/lan_userclass php
---
 e107_plugins/user/e_dashboard.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/e107_plugins/user/e_dashboard.php b/e107_plugins/user/e_dashboard.php
index 3c4b8f807..96c7e16d4 100644
--- a/e107_plugins/user/e_dashboard.php
+++ b/e107_plugins/user/e_dashboard.php
@@ -331,7 +331,7 @@ class user_dashboard // plugin-folder + '_url'
 		
 	//	$this->title = 'Registered '.date('M Y',$month_start).' ('.$sum.')';
 
-		$this->title = 'New Users ('.$sum.')';
+		$this->title = ''.UC_LAN_9.' ('.$sum.')';
 	
 		$totalDays = date('t', $month_start);
 	
@@ -348,7 +348,7 @@ class user_dashboard // plugin-folder + '_url'
 		$options = array(
 			'chartArea'	=>array('left'=>'60', 'width'=>'90%', 'top'=>'25'),
 			'legend'	=> array('position'=> 'none', 'alignment'=>'center', 'textStyle' => array('fontSize' => 14, 'color' => '#ccc')),
-			'vAxis'		=> array('title'=>'New Users', 'minValue'=>0, 'maxValue'=>10, 'titleFontSize'=>16, 'titleTextStyle'=>array('color' => '#ccc'), 'gridlines'=>array('color'=>'#696969', 'count'=>5), 'format'=>'', 'textStyle'=>array('color' => '#ccc') ),
+			'vAxis'		=> array('title'=>''.UC_LAN_9.'', 'minValue'=>0, 'maxValue'=>10, 'titleFontSize'=>16, 'titleTextStyle'=>array('color' => '#ccc'), 'gridlines'=>array('color'=>'#696969', 'count'=>5), 'format'=>'', 'textStyle'=>array('color' => '#ccc') ),
 			'hAxis'		=> array('title'=>date('M Y', $month_start), 'slantedText'=>true, 'slantedTextAngle'=>60, 'ticks'=>$ticks, 'titleFontSize'=>14, 'titleTextStyle'=>array('color' => '#ccc'), 'gridlines' => array('color'=>'transparent'), 'textStyle'=>array('color' => '#ccc') ),
 			'colors'	=> array('#77acd9','#EDA0B6', '#EE8D21', '#5CB85C'),
 			'animation'	=> array('duration'=>1000, 'easing' => 'out'), 
@@ -503,4 +503,4 @@ class user_dashboard // plugin-folder + '_url'
 
 
 	
-}
\ No newline at end of file
+}

From d442064b385abab8635994112c80c4a37096ec3e Mon Sep 17 00:00:00 2001
From: leo <the_guardian2@hotmail.com>
Date: Mon, 26 Nov 2018 11:33:59 +0100
Subject: [PATCH 2/2] Update e_dashboard.php

removed surrounding commas
---
 e107_plugins/user/e_dashboard.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/e107_plugins/user/e_dashboard.php b/e107_plugins/user/e_dashboard.php
index 96c7e16d4..f4376b288 100644
--- a/e107_plugins/user/e_dashboard.php
+++ b/e107_plugins/user/e_dashboard.php
@@ -348,7 +348,7 @@ class user_dashboard // plugin-folder + '_url'
 		$options = array(
 			'chartArea'	=>array('left'=>'60', 'width'=>'90%', 'top'=>'25'),
 			'legend'	=> array('position'=> 'none', 'alignment'=>'center', 'textStyle' => array('fontSize' => 14, 'color' => '#ccc')),
-			'vAxis'		=> array('title'=>''.UC_LAN_9.'', 'minValue'=>0, 'maxValue'=>10, 'titleFontSize'=>16, 'titleTextStyle'=>array('color' => '#ccc'), 'gridlines'=>array('color'=>'#696969', 'count'=>5), 'format'=>'', 'textStyle'=>array('color' => '#ccc') ),
+			'vAxis'		=> array('title'=> UC_LAN_9, 'minValue'=>0, 'maxValue'=>10, 'titleFontSize'=>16, 'titleTextStyle'=>array('color' => '#ccc'), 'gridlines'=>array('color'=>'#696969', 'count'=>5), 'format'=>'', 'textStyle'=>array('color' => '#ccc') ),
 			'hAxis'		=> array('title'=>date('M Y', $month_start), 'slantedText'=>true, 'slantedTextAngle'=>60, 'ticks'=>$ticks, 'titleFontSize'=>14, 'titleTextStyle'=>array('color' => '#ccc'), 'gridlines' => array('color'=>'transparent'), 'textStyle'=>array('color' => '#ccc') ),
 			'colors'	=> array('#77acd9','#EDA0B6', '#EE8D21', '#5CB85C'),
 			'animation'	=> array('duration'=>1000, 'easing' => 'out'),