diff options
author | bfabiszewski <github@ushuaia.pl> | 2013-06-19 13:27:14 +0200 |
---|---|---|
committer | bfabiszewski <github@ushuaia.pl> | 2013-06-19 13:27:14 +0200 |
commit | 2c15d1d2344fe32f549f755de24b973822631181 (patch) | |
tree | 5a5051b36c140d54b51039a85721fe73aac46944 /lang.php | |
parent | eeabf5e5a5070084472c2af62b60820595d686f1 (diff) | |
download | RunnerUpLive-2c15d1d2344fe32f549f755de24b973822631181.zip |
phpTrackme 1.0
Diffstat (limited to 'lang.php')
-rwxr-xr-x | lang.php | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/lang.php b/lang.php new file mode 100755 index 0000000..bd508c9 --- /dev/null +++ b/lang.php @@ -0,0 +1,82 @@ +<?php +/* phpTrackme + * + * Copyright(C) 2013 Bartek Fabiszewski (www.fabiszewski.net) + * + * This is free software; you can redistribute it and/or modify it under + * the terms of the GNU Library General Public License as published by + * the Free Software Foundation; either version 2 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 Library General Public + * License along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ +switch($lang) { + default: + case "en": + $lang_title = "fabiszewski.net • geolocation"; + $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_altitude = "Altitude"; + $lang_ttime = "Total time"; + $lang_aspeed = "Average speed"; + $lang_tdistance = "Total dist."; + $lang_point = "Point"; //Point x of y + $lang_of = "of"; + $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)"; + break; + + case "pl": + $lang_title = "fabiszewski.net • geolocation"; + $lang_private = "Aby się zalogować musisz podać login i hasło"; + $lang_authfail = "błędny login lub hasło"; + $lang_user = "Użytkownik"; + $lang_track = "Trasa"; + $lang_latest = "ostatnia pozycja"; + $lang_autoreload = "odświeżaj"; + $lang_reload = "Odśwież teraz"; + $lang_download = "Pobierz dane"; + $lang_chart = "Wykres przewyższeń"; + $lang_close = "zamknij"; + $lang_time = "Czas"; + $lang_speed = "Prędkość"; + $lang_altitude = "Wysokość"; + $lang_ttime = "Czas podróży"; + $lang_aspeed = "Średnia prędkość"; + $lang_tdistance = "Odległość"; + $lang_suser = "wybierz login"; + $lang_point = "Punkt"; + $lang_of = "z"; + $lang_summary = "Podsumowanie"; + $lang_logout = "wyloguj"; + $lang_login = "zaloguj"; + $lang_username = "Login"; + $lang_password = "Hasło"; + $lang_language = "Język"; + $lang_newinterval = "Podaj częstotliwość odświeżania (w sekundach)"; + break; +} +?> |