81 lines
3.1 KiB
PHP
81 lines
3.1 KiB
PHP
<?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/>.
|
|
*/
|
|
|
|
// 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";
|
|
$lang["tdistance"] = "Total distance";
|
|
$lang["pointof"] = "Point %d of %d"; // e.g. Point 3 of 10
|
|
$lang["summary"] = "Trip summary";
|
|
$lang["suser"] = "select user";
|
|
$lang["logout"] = "Log out";
|
|
$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";
|
|
$lang["gps"] = "GPS";
|
|
$lang["network"] = "Network";
|
|
$lang["deluser"] = "Remove user";
|
|
$lang["edituser"] = "Edit user";
|
|
$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";
|
|
$lang["deletewarn"] = "Warning!\n\nYou are going to permanently delete user %s, together with all their routes and positions.\n\nAre you sure?"; // substitutes user login
|
|
$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)
|
|
|
|
?>
|