81 lines
3.1 KiB
PHP
Raw Normal View History

<?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
// 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";
$lang["pointof"] = "Point %d of %d"; // e.g. Point 3 of 10
$lang["summary"] = "Trip summary";
$lang["suser"] = "select user";
2017-04-07 19:13:39 +02:00
$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";
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";
$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)
?>