Move widgets into separate file

This commit is contained in:
Nabeel Shahzad 2018-05-18 14:56:37 -05:00
parent bd84877f0e
commit 33ef3dd252
2 changed files with 35 additions and 31 deletions

View File

@ -105,35 +105,4 @@ return [
'users' => [
'location' => 'Location',
],
'widgets' => [
'latestnews' => [
'news' => 'News',
'nonewsfound' => 'No News Found',
],
'livemap' => [
'groundspeed' => 'Ground Speed',
'altitude' => 'Altitude',
'heading' => 'Heading',
'noflights' => 'There are no flights.',
'gs' => 'GS',
],
'weather' => [
'metarnotretrieved' => 'METAR/TAF data could not be retrieved',
'conditions' => 'Conditions',
'visibility' => 'visibility',
'humidity' => 'humidity',
'dewpoint' => 'dew point',
'barometer' => 'Barometer',
'clouds' => 'Clouds',
'wind' => 'Wind',
'remarks' => 'Remarks',
'guststo' => 'gusts to',
'updated' => 'Updated',
'hrago' => 'hr ago|hrs ago',
'minago' => 'min ago|mins ago',
],
],
];

View File

@ -0,0 +1,35 @@
<?php
/**
*
*/
return [
'latestnews' => [
'news' => 'News',
'nonewsfound' => 'No News Found',
],
'livemap' => [
'groundspeed' => 'Ground Speed',
'altitude' => 'Altitude',
'heading' => 'Heading',
'noflights' => 'There are no flights.',
'gs' => 'GS',
],
'weather' => [
'metarnotretrieved' => 'METAR/TAF data could not be retrieved',
'conditions' => 'Conditions',
'visibility' => 'visibility',
'humidity' => 'humidity',
'dewpoint' => 'dew point',
'barometer' => 'Barometer',
'clouds' => 'Clouds',
'wind' => 'Wind',
'remarks' => 'Remarks',
'guststo' => 'gusts to',
'updated' => 'Updated',
'hrago' => 'hr ago|hrs ago',
'minago' => 'min ago|mins ago',
],
];