Move widgets into separate file
This commit is contained in:
@@ -105,35 +105,4 @@ return [
|
|||||||
'users' => [
|
'users' => [
|
||||||
'location' => 'Location',
|
'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',
|
|
||||||
],
|
|
||||||
],
|
|
||||||
];
|
];
|
||||||
|
|||||||
35
resources/lang/en/widgets.php
Normal file
35
resources/lang/en/widgets.php
Normal 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',
|
||||||
|
],
|
||||||
|
];
|
||||||
Reference in New Issue
Block a user