2017-04-07 18:37:17 +02:00
< ? php
/* μlogger
*
* Copyright ( C ) 2017 Bartek Fabiszewski ( www . fabiszewski . net )
*
* This is free software ; you can redistribute it and / or modify it under
* the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful , but
* WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , see < http :// www . gnu . org / licenses />.
*/
2017-04-09 23:35:55 +02:00
2017-04-07 18:37:17 +02:00
// default language for translations
$lang [ " title " ] = " • μlogger • " ;
$lang [ " private " ] = " You need login and password to access this page. " ;
$lang [ " authfail " ] = " Wrong username or password " ;
$lang [ " user " ] = " User " ;
$lang [ " track " ] = " Track " ;
$lang [ " latest " ] = " latest position " ;
$lang [ " autoreload " ] = " autoreload " ;
$lang [ " reload " ] = " Reload now " ;
$lang [ " download " ] = " Download data " ;
$lang [ " chart " ] = " Altitudes chart " ;
$lang [ " close " ] = " close " ;
$lang [ " time " ] = " Time " ;
$lang [ " speed " ] = " Speed " ;
$lang [ " accuracy " ] = " Accuracy " ;
$lang [ " altitude " ] = " Altitude " ;
$lang [ " ttime " ] = " Total time " ;
$lang [ " aspeed " ] = " Average speed " ;
2017-04-09 14:03:43 +02:00
$lang [ " tdistance " ] = " Total distance " ;
2017-04-12 21:48:40 +02:00
$lang [ " pointof " ] = " Point %d of %d " ; // e.g. Point 3 of 10
2017-04-07 18:37:17 +02:00
$lang [ " summary " ] = " Trip summary " ;
$lang [ " suser " ] = " select user " ;
2017-04-07 19:13:39 +02:00
$lang [ " logout " ] = " Log out " ;
2017-04-07 18:37:17 +02:00
$lang [ " login " ] = " Log in " ;
$lang [ " username " ] = " Username " ;
$lang [ " password " ] = " Password " ;
$lang [ " language " ] = " Language " ;
$lang [ " newinterval " ] = " Enter new interval value (seconds) " ;
$lang [ " api " ] = " Map API " ;
$lang [ " language " ] = " Language " ;
$lang [ " units " ] = " Units " ;
$lang [ " metric " ] = " Metric " ;
$lang [ " imperial " ] = " Imperial/US " ;
$lang [ " adminmenu " ] = " Administration " ;
$lang [ " passwordrepeat " ] = " Repeat password " ;
$lang [ " passwordenter " ] = " Enter password " ;
$lang [ " usernameenter " ] = " Enter username " ;
$lang [ " adduser " ] = " Add user " ;
$lang [ " userexists " ] = " User exists " ;
$lang [ " cancel " ] = " Cancel " ;
$lang [ " submit " ] = " Submit " ;
$lang [ " oldpassword " ] = " Old password " ;
$lang [ " newpassword " ] = " New password " ;
$lang [ " newpasswordrepeat " ] = " Repeat new password " ;
$lang [ " changepass " ] = " Change password " ;
2017-04-09 14:03:43 +02:00
$lang [ " gps " ] = " GPS " ;
$lang [ " network " ] = " Network " ;
2017-04-12 20:16:39 +02:00
$lang [ " deluser " ] = " Remove user " ;
$lang [ " edituser " ] = " Edit user " ;
2017-04-12 22:42:23 +02:00
$lang [ " servererror " ] = " Server error " ;
$lang [ " allrequired " ] = " All fields are required " ;
$lang [ " passnotmatch " ] = " Passwords don't match " ;
$lang [ " actionsuccess " ] = " Action completed successfully " ;
$lang [ " actionfailure " ] = " Something went wrong " ;
2017-04-14 17:24:09 +02:00
$lang [ " userdelwarn " ] = " Warning! \n \n You are going to permanently delete user %s, together with all their routes and positions. \n \n Are you sure? " ; // substitutes user login
2017-04-12 22:42:23 +02:00
$lang [ " editinguser " ] = " You are editing user %s " ; // substitutes user login
$lang [ " selfeditwarn " ] = " Your can't edit your own user with this tool " ;
$lang [ " apifailure " ] = " Sorry, can't load %s API " ; // substitures api name (gmaps or openlayers)
2017-04-14 17:24:09 +02:00
$lang [ " trackdelwarn " ] = " Warning! \n \n You are going to permanently delete track %s and all its positions. \n \n Are you sure? " ; // substitutes track name
$lang [ " editingtrack " ] = " You are editing track %s " ; // substitutes track name
$lang [ " deltrack " ] = " Remove track " ;
$lang [ " trackname " ] = " Track name " ;
$lang [ " edittrack " ] = " Edit track " ;
2017-04-14 15:55:00 +02:00
$lang [ " passlenmin " ] = " Password must be at least %d characters " ; // substitutes password minimum length
2017-04-14 17:24:09 +02:00
$lang [ " passrules " ][ 1 ] = " It should contain at least one lower case letter, one upper case letter " ;
$lang [ " passrules " ][ 2 ] = " It should contain at least one lower case letter, one upper case letter and one digit " ;
$lang [ " passrules " ][ 3 ] = " It should contain at least one lower case letter, one upper case letter, one digit and one non-alphanumeric character " ;
$lang [ " owntrackswarn " ] = " Your can only edit your own tracks " ;
2017-04-07 18:37:17 +02:00
?>