Merge branch 'master' into mapsforge

mapsforge
Georg Lukas 2018-10-23 09:16:09 +02:00
commit 1114ded258
63 zmienionych plików z 1284 dodań i 360 usunięć

Wyświetl plik

@ -145,6 +145,7 @@
<action android:name="org.aprsdroid.app.ONCE" />
<action android:name="org.aprsdroid.app.SEND_PACKET" />
<action android:name="org.aprsdroid.app.SERVICE_STOP" />
<action android:name="org.aprsdroid.app.FREQUENCY" />
</intent-filter>
</service>
<!-- start the service if applicable on boot -->

Wyświetl plik

@ -22,6 +22,8 @@ Intents ("actions"):
* `ONCE` - send one position packet and stop
* `SERVICE_STOP` - stop APRSdroid's tracking service
* `SEND_PACKET` - send a (raw) APRS packet
* `FREQUENCY` - change the frequency announced in position packets (requires
APRSdroid 1.4.1)
All uppercase strings mentioned in this document are suffixes to
`"org.aprsdroid.app."` and need to be concatenated for the effective
@ -185,7 +187,7 @@ the packet payload needs to be configured, APRSdroid will automatically
complete the header (your callsign and the ARPS path) from its
configuration.
Intent extras:
Intent extras (do not use `setData()`, it doesn't work!):
* `data` (String): raw packet payload
@ -196,6 +198,29 @@ Example for sending a raw status packet:
i.putExtra("data", ">third-party APRS status app");
startService(i);
### FREQUENCY (APRSdroid 1.4.1)
Update the [frequency field](http://www.aprs.org/info/freqspec.txt) in the
position reports sent by APRSdroid. If the APRSdroid service is running, this
will immediately generate a position packet with the new frequency.
Intent extras:
* `frequency` (String): the new frequency value, e.g. "438.750MHz", "145.500"
or "" to disable, decimal separator must be a dot (".")
Example for updating the frequency:
// send raw status packet
Intent i = new Intent("org.aprsdroid.app.FREQUENCY").setPackage("org.aprsdroid.app");
i.putExtra("frequency", "438.750");
startService(i);
Invocation from the adb shell:
am startservice -a org.aprsdroid.app.FREQUENCY -e frequency "438.750"
## (In-)Security
Currently, APRSdroid exposes the following personal information via

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -17,6 +17,7 @@
android:singleLine="true"
android:inputType="textCapCharacters"
android:digits="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-"
android:maxLength="9"
android:hint="@string/p_callsign"
/>
<EditText

Wyświetl plik

@ -74,7 +74,7 @@
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -131,6 +131,8 @@
<string name="quit">Quit</string>
<string name="preferences">Preferences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amateur Radio</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
@ -179,7 +181,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -238,7 +239,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -396,7 +396,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -74,7 +74,7 @@
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -131,6 +131,8 @@
<string name="quit">Quit</string>
<string name="preferences">Preferences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amateur Radio</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
@ -179,7 +181,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -238,7 +239,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -398,7 +398,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Относно APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -112,6 +112,8 @@
<string name="quit">Изход</string>
<string name="preferences">Настройки</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Любителско радио</string>
<string name="p_callsign">Инициал</string>
<string name="p_callsign_nossid">Инициал (без SSID)</string>
@ -160,7 +162,6 @@
<string name="p_link">Вид на връзката</string>
<string name="p_link_entry">Изберете видът на връзката</string>
<string name="p_connsetup">Настройки на връзката</string>
<string name="p_connsetup_summary">Конфигуриране на връзката</string>
<string name="p_connlog">Логване на връзката</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -219,7 +220,6 @@
<string name="p_locsource">Източник за местоположението</string>
<string name="p_locsource_summary">Ръчно, Периодично или SmartBeaconing™</string>
<string name="p__location">Настройки на местоположението</string>
<string name="p__location_summary">Конфигурация за изпращане на рапорти за позиция</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ помощ</string>
@ -379,7 +379,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -74,7 +74,7 @@
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -131,6 +131,8 @@
<string name="quit">Quit</string>
<string name="preferences">Preferences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amateur Radio</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
@ -179,7 +181,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -238,7 +239,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -397,7 +397,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -74,7 +74,7 @@
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -131,6 +131,8 @@
<string name="quit">Quit</string>
<string name="preferences">Preferences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amateur Radio</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
@ -179,7 +181,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -238,7 +239,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -398,7 +398,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">O APRSdroid v%s</string>
<string name="ad_copyright">Všechna práva vyhrazena © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® je registrovaná značka Boba Bruninga (WB4APR)</string>
<string name="ad_copyright">Všechna práva vyhrazena © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® je registrovaná značka Boba Bruninga (WB4APR)</string>
<string name="ad_gpl">Tento program je svobodný software; můžete jej šířit, a / nebo modifikovat podle podmínek GNU General Public License, vydávané Free Software Foundation; a to buď verze 2 této licence, nebo (podle vlastního uvážení) kterékoli pozdější verze. \ N \ n Tento program je rozšiřován v naději, že bude užitečný, ale BEZ JAKÉKOLIV ZÁRUKY; dokonce i bez předpokládané záruky PRODEJNOSTI nebo VHODNOSTI PRO KONKRÉTNÍ ÚČEL. Podívejte se na GNU General Public License pro další podrobnosti. \ N \ n Měli byste obdržet kopii GNU General Public License spolu s tímto programem; pokud ne, napište Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ N \ n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">Poděkování:</string>
<string name="ad_thanks_0">Moje YL ♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">Ukončit</string>
<string name="preferences">Možnosti</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amatérské rádio</string>
<string name="p_callsign">Volací značka</string>
<string name="p_callsign_nossid">Volací značka (bez SSID)</string>
@ -156,7 +158,6 @@
<string name="p_link">Typ připojení</string>
<string name="p_link_entry">Vyberte typ připojení</string>
<string name="p_connsetup">Předvolby připojení</string>
<string name="p_connsetup_summary">Konfigurace připojení</string>
<string name="p_connlog">Logovaní připojení</string>
<string name="p_connlog_summary">Záznam stavu v logu</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">Zdroj polohových dat</string>
<string name="p_locsource_summary">Manuální, pravidelné nebo SmartBeaconing™</string>
<string name="p__location">Nastavení polohy</string>
<string name="p__location_summary">Nastavení pro odesílání oznámení polohy</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">Nápověda SmartBeaconing™</string>
@ -317,15 +317,15 @@
<string name="p_sotimeout_summary">Čas před obnovením připojení</string>
<string name="p_sotimeout_entry">Čas prodlevy v sekundách (0 = zakázat)</string>
<string name="p_mapfile">Map file name</string>
<string name="p_mapfile_summary">MapsForge map file for APRSdroid</string>
<string name="p_mapfile_choose">Choose map file</string>
<string name="mapfile_error">Error loading map file %s!</string>
<string name="p_mapfile">Jméno mapového souboru</string>
<string name="p_mapfile_summary">Mapový soubor MapsForge pro APRSdroid</string>
<string name="p_mapfile_choose">Zvolit mapový soubor</string>
<string name="mapfile_error">Chyba při nahrávání mapového souboru %s!</string>
<string name="p_themefile">Theme file name</string>
<string name="p_themefile_summary">MapsForge rendering theme (XML)</string>
<string name="p_themefile_choose">Choose theme file</string>
<string name="themefile_error">Error loading theme file %s!</string>
<string name="p_themefile">Název souboru motivu</string>
<string name="p_themefile_summary">Motiv vykreslování MapsForge</string>
<string name="p_themefile_choose">Zvolit soubor motivu</string>
<string name="themefile_error">Chyba při nahrávání souboru motivu %s!</string>
<string name="translator_credits">Launchpad Contributions:
Bronek OK2JIB https://launchpad.net/~bronajz
@ -378,7 +378,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -23,7 +23,7 @@
<!-- Maps activity -->
<string name="sta_lastreport">%s Sidste Rapport</string>
<string name="map_track_call">Sporing %s...</string>
<string name="map_track_unknown">Position for %s unknown!</string>
<string name="map_track_unknown">Positionen for %s er ukendt</string>
<string name="map_select">Vælg station</string>
<string name="map_loading">Indlæser...</string>
@ -32,7 +32,7 @@
<string name="sta_ssids">Stations SSID\'er</string>
<string name="sta_history">Stations Log</string>
<string name="sta_map">Kort</string>
<string name="sta_extmap">External Map</string>
<string name="sta_extmap">Externt kort</string>
<string name="sta_aprsfi">aprs.fi</string>
<string name="sta_qrzcom">QRZ.com</string>
@ -70,11 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Om APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® er et registreret varemærke der tilhører Bob Bruninga (WB4APR)</string>
<string name="ad_gpl">This program 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 2 of the License, or (at your option) any later version. \n\n 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. \n\n You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \n\n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">Tak til:</string>
<string name="ad_thanks_0">Min YL ♥♥♥</string>
@ -106,12 +102,14 @@
<string name="show_hub">Vis Hub</string>
<string name="show_map">Vis kort</string>
<string name="show_log">Vis Log</string>
<string name="export_log">Export Log</string>
<string name="export_empty">Nothing to export</string>
<string name="export_log">Exporter log</string>
<string name="export_empty">Intet at eksportere</string>
<string name="clear_log">Ryd log</string>
<string name="quit">Afslut</string>
<string name="preferences">Indstillinger</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amatørradio</string>
<string name="p_callsign">Kaldesignal</string>
<string name="p_callsign_nossid">Kaldesignal (uden SSID)</string>
@ -147,33 +145,32 @@
</string-array>
<string name="p_symbol">APRS symbol</string>
<string name="p_symbol_summary">Din symbol for kortvisning</string>
<string name="p_symbol_overlay">Overlay:</string>
<string name="p_symbol_result">Result:</string>
<string name="p_frequency">Voice frequency</string>
<string name="p_frequency_summary">Your voice frequency [MHz]</string>
<string name="p_symbol_overlay">Lag:</string>
<string name="p_symbol_result">Resultat:</string>
<string name="p_frequency">Voice frekvens</string>
<string name="p_frequency_summary">Din voice frekvens [MHz]</string>
<string name="p_status">Kommentarfelt</string>
<string name="p_status_summary">Tekst som kommer efter dine koordinater</string>
<string name="p_status_entry">Indtast din beacon kommentar</string>
<string name="p__connection">APRS Forbindelse</string>
<string name="p_conntype">Forbindelses-protokol</string>
<string name="p_conntype_entry">Vælg forbindelses-protokol</string>
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_link">Forbindelsestype</string>
<string name="p_link_entry">Vælg forbindelses type</string>
<string name="p_connsetup">Indstillinger af forbindelse</string>
<string name="p_connsetup_summary">Konfiguration af forbindelse</string>
<string name="p_connlog">Forbindelses logning</string>
<string name="p_connlog_summary">Detaljeret status output til log</string>
<!-- array of connection types -->
<string name="p_conn_aprsis">Internet (APRS-IS)</string>
<string name="p_conn_afsk">Audio (AFSK)</string>
<string name="p_conn_afsk">Lyd (AFSK)</string>
<string name="p_conn_kiss">TNC (KISS)</string>
<string name="p_conn_tnc2">TNC (plaintext TNC2)</string>
<string name="p_conn_kwd">Kenwood (NMEA waypoint)</string>
<string name="p_conn_kwd_info">Kenwood setup help</string>
<string name="p_conn_kwd_gps">Use Android GPS</string>
<string name="p_conn_kwd_gps_summary">Forward NMEA sentences to radio</string>
<string name="p_conn_kwd_gps_debug">Display GPS in log</string>
<string name="p_conn_kwd_gps_debug_summary">Show raw NMEA in APRSdroid</string>
<string name="p_conn_kwd_info">Kenwood indstillings hjælp</string>
<string name="p_conn_kwd_gps">Brug Android GPS</string>
<string name="p_conn_kwd_gps_summary">Videregiv NMEA beskeder til radioen</string>
<string name="p_conn_kwd_gps_debug">Vis GPS i loggen</string>
<string name="p_conn_kwd_gps_debug_summary">Vis rå NMEA datea i APRSdroid</string>
<!-- array of APRS-IS protocols -->
<string name="p_aprsis_tcp">TCP forbindelse</string>
<string name="p_aprsis_http">HTTP POST (sending, ingen modtagelse)</string>
@ -181,7 +178,7 @@
<!-- array of TNC link types -->
<string name="p_link_bt">Bluetooth SPP</string>
<string name="p_link_tcpip">TCP/IP</string>
<string name="p_link_usb">USB Serial</string>
<string name="p_link_usb">USB Seriel</string>
<!-- array of location sources -->
<string name="p_source_manual">Manuel Position</string>
<string name="p_source_periodic">Periodisk GPS/netværks position</string>
@ -219,7 +216,6 @@
<string name="p_locsource">Positions kilde</string>
<string name="p_locsource_summary">Manuel, Periodisk eller SmartBeaconing™</string>
<string name="p__location">Positionsindstillinger</string>
<string name="p__location_summary">Konfiguration af afsending af positions rapporter</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ hjælp</string>
@ -281,8 +277,8 @@
<string name="p_dgp_ring_summary">Lyd ved digipeatede pakker</string>
<string name="got_digipeated">Digipeated af %1$s: %2$s</string>
<string name="status_linkoff">Error: %s</string>
<string name="status_linkon">Connected: %s</string>
<string name="status_linkoff">Fejl: %s</string>
<string name="status_linkon">Forbundet: %s</string>
<!-- AFSK settings -->
<string name="p_aprs_path">APRS digi path</string>
@ -321,15 +317,15 @@
<string name="p_sotimeout_summary">Tid før nulstilling af forbindelsen</string>
<string name="p_sotimeout_entry">Timeout værdi i sekunder (0 = slået fra)</string>
<string name="p_mapfile">Map file name</string>
<string name="p_mapfile_summary">MapsForge map file for APRSdroid</string>
<string name="p_mapfile_choose">Choose map file</string>
<string name="mapfile_error">Error loading map file %s!</string>
<string name="p_mapfile">Kortfil navn</string>
<string name="p_mapfile_summary">Mapforge kortfil til APRSdroid</string>
<string name="p_mapfile_choose">Vælg kortfil</string>
<string name="mapfile_error">Fejl ved indlæsning af kortfil %s!</string>
<string name="p_themefile">Theme file name</string>
<string name="p_themefile_summary">MapsForge rendering theme (XML)</string>
<string name="p_themefile_choose">Choose theme file</string>
<string name="themefile_error">Error loading theme file %s!</string>
<string name="p_themefile">Tema filnavn</string>
<string name="p_themefile_summary">MapsForge renderings tema (XML)</string>
<string name="p_themefile_choose">Vælg tema fil</string>
<string name="themefile_error">Fejl ved indlæsning af tema fil %s!</string>
<string name="translator_credits">Launchpad Contributions:
Alexandru Csete https://launchpad.net/~alexc
@ -348,8 +344,8 @@
<string name="p_bt_channel_entry">Angiv kanal (oftest: "1"; tomt ved SPP)</string>
<string name="p_tnc_init">TNC initialiserings streng</string>
<string name="p_tnc_init_summary">Initialization commands for TNC (URL-encoded, Esc=%%1B, "%%"=%%25)</string>
<string name="p_tnc_init_msg" formatted="false">URL-encoded string (Esc=%1B, \"%\"=%25), delay after each line:</string>
<string name="p_tnc_init_summary">Initialiserings kommandoer til TNC (URL-encodet, Esc=%%1B, "%%"=%%25)</string>
<string name="p_tnc_init_msg" formatted="false">URL-encodet streng (Esc=%1B, \"%\"=%25), pause efter hver linje:</string>
<string name="p_tnc_delay">TNC initialiseringsforsinkelse</string>
<string name="p_tnc_delay_summary">Tid der skal ventes efter hver linje</string>
@ -361,7 +357,7 @@
<string name="bt_error_unsupported">Bluetooth er ikke understøttet!</string>
<string name="bt_error_disabled">Slå Bluetooth til!</string>
<string name="bt_error_no_tnc">Konfigurer et Bluetooth TNC!</string>
<string name="bt_error_connect">Could not connect to %s! Please turn on the device and close other Bluetooth connections.</string>
<string name="bt_error_connect">Kunne ikke forbinde til %s! Tænd for enheden og afbryd andre Bluetooth forbindelser.</string>
<string name="afsk_info_sco_req">Opretter Bluetooth SCO forbindelse...</string>
<string name="afsk_info_sco_est">Bluetooth SCO forbindelse oprettet.</string>
@ -373,22 +369,22 @@
<!-- SSL strings -->
<string name="ssl_import_activity">SSL certifikat import</string>
<string name="ssl_import_password">Indtast certifikat import kodeordet:</string>
<string name="ssl_no_keyfile">No certificate for %s! Using passcode authentication.</string>
<string name="ssl_no_keyfile">Intet certifikat for %s! Benytter kodeords autentificering..</string>
<string name="ssl_import_ok">Importeret certifikat for %s.</string>
<string name="ssl_import_error">Fejl ved import af certifikat: %s!</string>
<string name="ssl_expired">Dit certifikat er udløbet!</string>
<string name="ssl_expire_in">Dit certifikat vil udløbe om %d dage!</string>
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<string name="profile_import_activity">Profil import</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Fejl ved import af profil: %s!</string>
<!-- (USB) Serial TNC settings -->
<string name="p_serial_baudrate">Baud Rate</string>
<string name="p_serial_baudrate_summary">Data rate of the serial port</string>
<string name="p_serial_baudrate">Baud-hastighed</string>
<string name="p_serial_baudrate_summary">Overførselshastighed på serielport</string>
<!-- (USB) Serial Errors -->
<string name="p_serial_unsupported">Unsupported serial port!</string>
<string name="p_serial_noperm">No permission for USB device!</string>
<string name="p_serial_notfound">No USB device found!</string>
<string name="p_serial_unsupported">Ikke-understøttet serielport</string>
<string name="p_serial_noperm">Ingen tilladelse til USB enheden!</string>
<string name="p_serial_notfound">Ingen USB enhed fundet!</string>
</resources>

Wyświetl plik

@ -72,7 +72,7 @@ Drücken Sie den \"Menü\"-Knopf, um eine Positionsmeldung abzusetzen oder das T
<!-- about dialog -->
<string name="ad_title">Über APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® is a registered trademark of Bob Bruninga (WB4APR)</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® is a registered trademark of Bob Bruninga (WB4APR)</string>
<string name="ad_gpl">Dieses Programm ist freie Software. Sie können es unter den Bedingungen der GNU General Public License, wie von der Free Software Foundation veröffentlicht, weitergeben und/oder modifizieren, entweder gemäß Version 2 der Lizenz oder (nach Ihrer Option) jeder späteren Version.
\n\n
Die Veröffentlichung dieses Programms erfolgt in der Hoffnung, daß es Ihnen von Nutzen sein wird, aber OHNE IRGENDEINE GARANTIE, sogar ohne die implizite Garantie der MARKTREIFE oder der VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK. Details finden Sie in der GNU General Public License.
@ -116,6 +116,8 @@ http://www.gnu.de/documents/gpl-2.0.de.html</string>
<string name="quit">Beenden</string>
<string name="preferences">Einstellungen</string>
<!-- preferences -->
<string name="profile_load">Profil laden...</string>
<string name="profile_export">Profil exportieren...</string>
<string name="p__ham">Amateurfunk</string>
<string name="p_callsign">Rufzeichen</string>
<string name="p_callsign_nossid">Rufzeichen (ohne SSID)</string>
@ -164,7 +166,6 @@ http://www.gnu.de/documents/gpl-2.0.de.html</string>
<string name="p_link">Verbindungstyp</string>
<string name="p_link_entry">Art der Verbindung auswählen</string>
<string name="p_connsetup">Verbindungseinstellungen</string>
<string name="p_connsetup_summary">Konfiguration der Verbindung</string>
<string name="p_connlog">Verbindungsprotokollierung</string>
<string name="p_connlog_summary">Zusätzliche Ausgaben im Protokoll</string>
<!-- array of connection types -->
@ -223,7 +224,6 @@ http://www.gnu.de/documents/gpl-2.0.de.html</string>
<string name="p_locsource">Standort-Quelle</string>
<string name="p_locsource_summary">Manuell, periodisch oder SmartBeaconing™</string>
<string name="p__location">Standorteinstellungen</string>
<string name="p__location_summary">Einstellungen für den Versand der eigenen Position</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™-Hilfe</string>
@ -384,7 +384,7 @@ http://www.gnu.de/documents/gpl-2.0.de.html</string>
<!-- Config import -->
<string name="profile_import_activity">Profil-Import</string>
<string name="profile_import_done">Import erfolgreich!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Fehler beim Profil-Import: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Σχετικά με APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® is a registered trademark of Bob Bruninga (WB4APR)</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® is a registered trademark of Bob Bruninga (WB4APR)</string>
<string name="ad_gpl">Αυτό το πρόγραμμα είναι ελεύθερο λογισμικό; Μπορείτε να το αναδιανέμετε ή/και να το τροποποιήσετε υπό τους όρους της GNU General Public License όπως αυτή δημοσιεύεται από το Ίδρυμα Ελεύθερου Λογισμικού; είτε της έκδοσης 2 της Άδειας, είτε (κατ\'επιλογή σας) οποιαδήποτε μεταγενέστερη έκδοση. \n\n Αυτό το πρόγραμμα διανέμεται με την ελπίδα ότι θα είναι χρήσιμο, αλλά ΧΩΡΙΣ ΚΑΜΙΑ ΕΓΓΥΗΣΗ; χωρίς καν την υπονοούμενη εγγύηση της ΕΜΠΟΡΕΥΣΙΜΟΤΗΤΑΣ ή ΚΑΤΑΛΛΗΛΟΤΗΤΑΣ ΓΙΑ ΣΥΓΚΕΚΡΙΜΕΝΟ ΣΚΟΠΟ. Δείτε την GNU Γενική Άδεια Δημόσιας Χρήσης για περισσότερες λεπτομέρειες. \n\n Θα πρέπει να έχετε λάβει ένα αντίγραφο της GNU General Public License μαζί με αυτό το πρόγραμμα; αν όχι, γράψτε στο Ίδρυμα Ελεύθερου Λογισμικού, Inc, 51 Franklin Street, πέμπτο όροφο, Boston, MA 02110-1301, ΗΠΑ. \n\n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">Ευχαριστίες σε:</string>
<string name="ad_thanks_0">Η YL μου ♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">Έξοδος</string>
<string name="preferences">Προτιμήσεις</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Ραδιοερασιτεχνισμός</string>
<string name="p_callsign">Διακριτικό Κλήσης</string>
<string name="p_callsign_nossid">Διακριτικό Κλήσης (χωρίς SSID)</string>
@ -156,7 +158,6 @@
<string name="p_link">Τύπος σύνδεσης</string>
<string name="p_link_entry">Διαλέξτε τύπο ζεύξης</string>
<string name="p_connsetup">Προτιμήσεις Σύνδεσης</string>
<string name="p_connsetup_summary">Ρυθμίσεις Σύνδεσης</string>
<string name="p_connlog">Σύνδεση Καταγραφής</string>
<string name="p_connlog_summary">Λεπτομερής κατάσταση εξόδου στο Μητρώο</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">Προέλευση Τοποθεσίας</string>
<string name="p_locsource_summary">Χειροκίνητο, Περιοδικό ή SmartBeaconing™</string>
<string name="p__location">Ρυθμίσεις Τοποθεσίας</string>
<string name="p__location_summary">Ρύθμιση για την αποστολή των αναφορών τοποθεσίας</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ βοήθεια</string>
@ -317,13 +317,13 @@
<string name="p_sotimeout_summary">Χρόνος πριν την επαναφορά της σύνδεσης</string>
<string name="p_sotimeout_entry">Τιμή χρονικού ορίου σε δευτερόλεπτα (0 = απενεργοποίηση)</string>
<string name="p_mapfile">Map file name</string>
<string name="p_mapfile_summary">MapsForge map file for APRSdroid</string>
<string name="p_mapfile">Όνομα αρχείου χάρτη</string>
<string name="p_mapfile_summary">Αρχείο χάρτη MapsForge για το APRSdroid</string>
<string name="p_mapfile_choose">Διαλέξτε αρχείο χάρτου</string>
<string name="mapfile_error">Σφάλμα φόρτωσης χάρτου %s!</string>
<string name="p_themefile">Theme file name</string>
<string name="p_themefile_summary">MapsForge rendering theme (XML)</string>
<string name="p_themefile">Όνομα αρχείου θέματος</string>
<string name="p_themefile_summary">Θέμα rendering MapsForge (XML)</string>
<string name="p_themefile_choose">Διαλέξτε αρχείο θέματος</string>
<string name="themefile_error">Σφάλμα φόρτωσης αρχείου θέματος %s!</string>
@ -376,9 +376,9 @@
<string name="ssl_expire_in">Το πιστοποιητικό σας θα λήξει σε %d ημέρες:</string>
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<string name="profile_import_activity">Εισαγωγή προφίλ</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Σφάλμα κατά την εισαγωγή προφίλ: %s!</string>
<!-- (USB) Serial TNC settings -->
<string name="p_serial_baudrate">Ρυθμός μετάδοσης</string>

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -112,6 +112,8 @@
<string name="quit">Quit</string>
<string name="preferences">Preferences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amateur Radio</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
@ -160,7 +162,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -219,7 +220,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -379,7 +379,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Sobre APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® es marca registrada de Bob Bruninga (WB4APR)</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® es marca registrada de Bob Bruninga (WB4APR)</string>
<string name="ad_gpl">Este programa es software libre, puede redistribuirlo y / o modificarlo bajo los términos de la Licencia Pública General GNU publicada por la Free Software Foundation, versión 2 de la Licencia, o (a su elección) cualquier versión posterior. \ n \ n Este programa se distribuye con la esperanza de que sea útil, pero SIN NINGUNA GARANTÍA, incluso sin la garantía implícita de COMERCIALIZACIÓN o IDONEIDAD PARA UN PROPÓSITO PARTICULAR. Vea la Licencia Pública General de GNU para más detalles. \ n \ n Usted debe haber recibido una copia de la Licencia Pública General de GNU junto con este programa, si no, escriba a la Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, EE.UU.. \ n \ n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">Gracias a:</string>
<string name="ad_thanks_0">Mi novia ♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">Salir</string>
<string name="preferences">Preferencias</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Radioaficionado</string>
<string name="p_callsign">Distintivo de llamada</string>
<string name="p_callsign_nossid">Distintivo de llamada (sin SSID)</string>
@ -156,7 +158,6 @@
<string name="p_link">Tipo de conexión</string>
<string name="p_link_entry">Escoja el tipo de enlace</string>
<string name="p_connsetup">Preferencias de conexión</string>
<string name="p_connsetup_summary">Configuración de la conexión</string>
<string name="p_connlog">Registro de conexiones</string>
<string name="p_connlog_summary">Estado detallado en logs</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">Fuente de localización</string>
<string name="p_locsource_summary">Manual, Periódico o SmartBeaconing™</string>
<string name="p__location">Preferencias de la ubicación</string>
<string name="p__location_summary">Configuración para enviar los reportes de posición</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">Ayuda de SmartBeaconing[tm]</string>
@ -384,7 +384,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Info APRSdroid v%s kohta</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -127,6 +127,8 @@
<string name="quit">Välju</string>
<string name="preferences">Seaded</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amatöörraadio</string>
<string name="p_callsign">Kutsung</string>
<string name="p_callsign_nossid">Kutsung (ilma SSIDita)</string>
@ -175,7 +177,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Ühenduse seadistused</string>
<string name="p_connsetup_summary">Ühenduse konfigureerimine</string>
<string name="p_connlog">Ühenduse logimine</string>
<string name="p_connlog_summary">Loetavam staatus logisse</string>
<!-- array of connection types -->
@ -234,7 +235,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Käsitsi, perioodiline või SmartBeaconing™</string>
<string name="p__location">Asukoha seadistused</string>
<string name="p__location_summary">Positsioneerimise raportite configureerimine</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -394,7 +394,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Tietoja APRSdroid v%s:sta</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® on Bob Bruningan (WB4APR) rekisteröimä tavaramerkki</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® on Bob Bruningan (WB4APR) rekisteröimä tavaramerkki</string>
<string name="ad_gpl">Tämä ohjelmisto on vapaa; voit jakaa sitä ja/tai muokata sitä Free Software Foundationin julkaiseman GNU General Public License ehtojen mukaisesti; joko Lisenssin 2-version tai myöhemmän version mukaisesti. \n\n Tätä ohjelmaa jaetaan siten, että siitä olisi jotain hyötyä, mutta EHDOTTOMASTI ILMAN MITÄÄN TAKUUTA; ilman vähäisintäkään takuuta KAUPALLISUUDESTA tai SOPIVUUDESTA ERITYISIIN TARKOITUKSIIN. Katso GNU General Public License tarkemista yksityiskohdista. \n\n Olet saanut kopion GNU General Public License:stä tämän ohjelman mukana; jos et, niin otayhteyttä Free Software Foundation:iin , Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \n\n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">Kiitokset:</string>
<string name="ad_thanks_0">Oma YL:ni ♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">Poistu</string>
<string name="preferences">Asetukset</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amatööriradio</string>
<string name="p_callsign">Kutsumerkki</string>
<string name="p_callsign_nossid">Kutsumerkki (ilman SSID:tä)</string>
@ -156,7 +158,6 @@
<string name="p_link">Yhteystyyppi</string>
<string name="p_link_entry">Valitse yhteyden tyyppi</string>
<string name="p_connsetup">Yhteysasetukset</string>
<string name="p_connsetup_summary">Yhteyden asetukset</string>
<string name="p_connlog">Yhteyden kirjaus lokiin</string>
<string name="p_connlog_summary">Laajemmat tilatiedot lokiin</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">Sijainnin lähde</string>
<string name="p_locsource_summary">Manuaalinen, Jaksottainen tai SmartBeaconing™</string>
<string name="p__location">Sijaintiasetukset</string>
<string name="p__location_summary">Sijaintiraportin lähetyksen asetukset</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ ohje</string>
@ -381,7 +381,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">À propos d\'APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -112,6 +112,8 @@
<string name="quit">Quitter</string>
<string name="preferences">Préférences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Radioamateur</string>
<string name="p_callsign">Indicatif d\'appel</string>
<string name="p_callsign_nossid">Indicatif d\'appel (sans SSID)</string>
@ -160,7 +162,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Préférences de connexion</string>
<string name="p_connsetup_summary">Configuration de la connexion</string>
<string name="p_connlog">Historique des connexions</string>
<string name="p_connlog_summary">Écriture des statuts dans l\'historique</string>
<!-- array of connection types -->
@ -219,7 +220,6 @@
<string name="p_locsource">Source de la localisation</string>
<string name="p_locsource_summary">Manuel, Périodique ou SmartBeaconing™</string>
<string name="p__location">Paramètres de localisation</string>
<string name="p__location_summary">Configuration des rapports de position envoyés</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">Assistant SmartBeaconing™</string>
@ -378,7 +378,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">À propos d\'APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® is a registered trademark of Bob Bruninga (WB4APR)</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® is a registered trademark of Bob Bruninga (WB4APR)</string>
<string name="ad_gpl">Ce programme est un logiciel libre ; vous pouvez le redistribuer et/ou le modifier selon les termes de la Licence Publique Générale GNU publiée par la Free Software Foundation ; soit la version 2 de la Licence, ou (à votre choix) toute version ultérieure. \n\n Ce programme est distribué dans l\'espoir qu\'il sera utile, mais SANS AUCUNE GARANTIE : sans même la garantie implicite de COMMERCIALISATION ou D\'ADAPTATION À UN USAGE PARTICULIER. Voir la Licence Publique Générale GNU pour plus de détails. \n\n Vous devriez avoir reçu un exemplaire de la Licence Publique Générale GNU avec ce programme, sinon, écrivez à la Free Software Foundation, Inc, 51 rue Franklin, Fifth Floor, Boston, MA 02110-1301, USA. \n\n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">Merci à :</string>
<string name="ad_thanks_0">Ma femme ♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">Quitter</string>
<string name="preferences">Préférences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Radioamateur</string>
<string name="p_callsign">Indicatif</string>
<string name="p_callsign_nossid">Indicatif (sans SSID)</string>
@ -156,7 +158,6 @@
<string name="p_link">Type de connexion</string>
<string name="p_link_entry">Sélectionner le type de lien</string>
<string name="p_connsetup">Préférences de connexion</string>
<string name="p_connsetup_summary">Configuration de la connexion</string>
<string name="p_connlog">Historique des connexions</string>
<string name="p_connlog_summary">Écriture des statuts dans l\'historique</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">Source de la localisation</string>
<string name="p_locsource_summary">Manuel, périodique ou SmartBeaconing™</string>
<string name="p__location">Paramètres de localisation</string>
<string name="p__location_summary">Configuration des Envois de position</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">Assistant SmartBeaconing™</string>
@ -317,15 +317,15 @@
<string name="p_sotimeout_summary">Temps avant de réinitialiser la connexion</string>
<string name="p_sotimeout_entry">Valeur d\'expiration en secondes (0 = désactiver)</string>
<string name="p_mapfile">Map file name</string>
<string name="p_mapfile_summary">MapsForge map file for APRSdroid</string>
<string name="p_mapfile_choose">Choose map file</string>
<string name="mapfile_error">Error loading map file %s!</string>
<string name="p_mapfile">Chemin vers la carte</string>
<string name="p_mapfile_summary">Fichier MapsForge pour APRSdroid</string>
<string name="p_mapfile_choose">Selectionner fichier carte</string>
<string name="mapfile_error">Erreur de chargement de la carte %s!</string>
<string name="p_themefile">Theme file name</string>
<string name="p_themefile_summary">MapsForge rendering theme (XML)</string>
<string name="p_themefile_choose">Choose theme file</string>
<string name="themefile_error">Error loading theme file %s!</string>
<string name="p_themefile">Nom du fichier de thème</string>
<string name="p_themefile_summary">Theme de rendu MapsForge (XML)</string>
<string name="p_themefile_choose">Choisir le fichier de thème</string>
<string name="themefile_error">Erreur de chargement du fichier de thème %s!</string>
<string name="translator_credits">Launchpad Contributions:
Ath. Bouliakoudis https://launchpad.net/~sv2ctv
@ -389,7 +389,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -74,7 +74,7 @@
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -131,6 +131,8 @@
<string name="quit">Quit</string>
<string name="preferences">Preferences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amateur Radio</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
@ -179,7 +181,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -238,7 +239,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -397,7 +397,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -0,0 +1,410 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- APRSdroid strings.xml - this file contains strings which need to be translated -->
<resources>
<string name="app_name">APRSdroid</string>
<string name="app_prefs">APRSdroid Preferences</string>
<string name="app_map">APRSdroid Map</string>
<string name="app_hub">APRSdroid Hub</string>
<string name="app_log">APRSdroid Log</string>
<string name="app_sta">Station Info</string>
<string name="app_messages">संदेश</string>
<string name="app_messages_clear">Clear Messages</string>
<!-- APRSdroid activity -->
<string name="firstrun">You need to configure APRSdroid with your callsign and passcode!</string>
<string name="wrongpasscode">Your passcode does not match your callsign!</string>
<string name="anon_warning">Without a passcode, your reports will not be propagated!</string>
<string name="mininterval">Minimum update time is 1 minute!</string>
<string name="singlelog">Send Position</string>
<string name="startlog">Start Tracking</string>
<string name="stoplog">अनुपालन बंद करें</string>
<string name="empty_logview">You have not yet sent or received any packets.\n\n
Press the \"Menu\" button to send a single report or to start tracking your position.\n\n
You can also change the application preferences from the menu.</string>
<!-- Maps activity -->
<string name="sta_lastreport">%s Last Report</string>
<string name="map_track_call">Tracking %s...</string>
<string name="map_track_unknown">Position for %s unknown!</string>
<string name="map_select">Select station</string>
<string name="map_loading">Loading...</string>
<!-- StationInfo activity -->
<string name="sta_ssids">Station SSIDs</string>
<string name="sta_history">Station History</string>
<string name="sta_map">Map</string>
<string name="sta_extmap">External Map</string>
<string name="sta_aprsfi">aprs.fi</string>
<string name="sta_qrzcom">QRZ.com</string>
<!-- Conversations activity -->
<string name="msg_send_new">Send message to...</string>
<string name="msg_message_text">Message text</string>
<string name="msg_empty_list">There are no stored conversations.</string>
<string name="msg_stored_offline">The message will be sent as soon as you start tracking.</string>
<!-- Message activity -->
<string name="msg_from">Message from %s</string>
<string name="msg_to">Message to %s</string>
<string name="msg_abort">Abort transmission</string>
<string name="msg_restart">Restart transmission</string>
<string name="msg_type_rejected">rejected</string>
<string name="msg_type_aborted">aborted</string>
<!-- AprsService -->
<string name="aprsservice">APRSdroid Service</string>
<string name="service_once">APRS Service single shot: %1$s, %2$s.</string>
<string name="service_start">APRS Service started: %1$s, %2$s.</string>
<string name="service_stop">APRS Service stopped.</string>
<string name="service_no_location">You need to enable either GPS or Network Location for APRSdroid to work properly!</string>
<string name="service_sm_no_gps">SmartBeaconing™ requires GPS!</string>
<!-- service result codes -->
<string name="post_error">Error</string>
<string name="post_incmg">received</string>
<string name="post_info"/>
<string name="post_connecting">Connecting to %1$s:%2$d...</string>
<string name="post_reconnect">Connection lost. Reconnect in %d seconds...</string>
<!-- first run dialog -->
<string name="fr_title">Welcome to APRSdroid!</string>
<string name="fr_text">This software may only be used by licensed amateur radio
operators!</string>
<string name="fr_text2">You need to enter your callsign to use this software.
To forward your packets, an APRS-IS passcode is required as well.</string>
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
</string>
<string name="ad_gpl">This program 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 2
of the License, or (at your option) any later version.
\n\n
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.
\n\n
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
\n\n
http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
</string>
<string name="ad_thanks">Thanks to:</string>
<string name="ad_thanks_0">My YL ♥♥♥</string>
<string name="ad_thanks_1">Michael, DO3BOX: idea</string>
<string name="ad_thanks_2">Dirk, DB5OY: motivation and support</string>
<string name="ad_thanks_3">Bastian, DB1BM: AFSK implementation</string>
<string name="ad_thanks_4">Matti, OH2MQK and John, AB0OO: Java APRS</string>
<string name="ad_thanks_5">Sivan, 4X6IZ: AFSK demodulator, https://github.com/sivantoledo/javAX25</string>
<string name="ad_thanks_6">SmartBeaconing™ by HamHUD Nichetronix, LLC, http://hamhud.net</string>
<string name="ad_trans">\n\nTranslation:</string>
<string name="ad_homepage">Home Page</string>
<!-- map view -->
<string name="map_overlays">Overlays</string>
<string name="map_satellite">Satellite</string>
<string name="map_objects">APRS Objects</string>
<!-- map view -->
<string name="age">Show last...</string>
<string name="age_30">30 minutes</string>
<string name="age_2h">2 hours</string>
<string name="age_12h">12 hours</string>
<string name="age_1d">1 day</string>
<string name="age_2d">2 days</string>
<!-- options menu -->
<string name="about">About</string>
<string name="show_hub">Show Hub</string>
<string name="show_map">Show Map</string>
<string name="show_log">Show Log</string>
<string name="export_log">Export Log</string>
<string name="export_empty">Nothing to export</string>
<string name="clear_log">Clear Log</string>
<string name="quit">Quit</string>
<string name="preferences">Preferences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amateur Radio</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
<string name="p_callsign_summary">Your HAM radio callsign</string>
<string name="p_callsign_entry">Enter your callsign</string>
<string name="p_passcode">APRS-IS Passcode</string>
<string name="p_passcode_summary">APRS-IS validation passcode</string>
<string name="p_passcode_entry">Enter the passcode for your call</string>
<string name="p_passreq">Request Passcode</string>
<string name="p_passreq_summary">Request APRS-IS passcode online</string>
<string name="p__aprs">APRS Settings</string>
<string name="p_ssid">SSID</string>
<string name="p_ssid_summary">Station type (1..15; 9=Mobile, 10=APRS-IS)</string>
<string name="p_ssid_entry">Enter the SSID for your station</string>
<!-- array of station types (SSID) -->
<string-array name="p_ssid_e">
<item>(none) Primary Station</item>
<item>1: Generic additional station</item>
<item>2: Generic additional station</item>
<item>3: Generic additional station</item>
<item>4: Generic additional station</item>
<item>5: Other network (D-Star, 3G)</item>
<item>6: Satellite</item>
<item>7: Handheld radio</item>
<item>8: Boat / ship</item>
<item>9: Mobile station</item>
<item>10: APRS-IS (no radio)</item>
<item>11: Balloon, aircraft, spacecraft</item>
<item>12: APRStt, DTMF, ... (one way)</item>
<item>13: Weather station</item>
<item>14: Freight vehicle</item>
<item>15: Generic additional station</item>
</string-array>
<string name="p_symbol">APRS symbol</string>
<string name="p_symbol_summary">Your symbol for map display</string>
<string name="p_symbol_overlay">Overlay:</string>
<string name="p_symbol_result">Result:</string>
<string name="p_frequency">Voice frequency</string>
<string name="p_frequency_summary">Your voice frequency [MHz]</string>
<string name="p_status">Comment field</string>
<string name="p_status_summary">The text after your coordinates</string>
<string name="p_status_entry">Enter your beacon comment</string>
<string name="p__connection">APRS Connection</string>
<string name="p_conntype">Connection Protocol</string>
<string name="p_conntype_entry">Choose the connection protocol</string>
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
<string name="p_conn_aprsis">Internet (APRS-IS)</string>
<string name="p_conn_afsk">Audio (AFSK)</string>
<string name="p_conn_kiss">TNC (KISS)</string>
<string name="p_conn_tnc2">TNC (plaintext TNC2)</string>
<string name="p_conn_kwd">Kenwood (NMEA waypoint)</string>
<string name="p_conn_kwd_info">Kenwood setup help</string>
<string name="p_conn_kwd_gps">Use Android GPS</string>
<string name="p_conn_kwd_gps_summary">Forward NMEA sentences to radio</string>
<string name="p_conn_kwd_gps_debug">Display GPS in log</string>
<string name="p_conn_kwd_gps_debug_summary">Show raw NMEA in APRSdroid</string>
<!-- array of APRS-IS protocols -->
<string name="p_aprsis_tcp">TCP connection</string>
<string name="p_aprsis_http">HTTP POST (send only)</string>
<string name="p_aprsis_udp">UDP (send only)</string>
<!-- array of TNC link types -->
<string name="p_link_bt">Bluetooth SPP</string>
<string name="p_link_tcpip">TCP/IP</string>
<string name="p_link_usb">USB Serial</string>
<!-- array of location sources -->
<string name="p_source_manual">Manual Position</string>
<string name="p_source_periodic">Periodic GPS/Network Position</string>
<string name="p_source_smart">SmartBeaconing™ Position</string>
<!-- manual position -->
<string name="p_source_lat">Latitude</string>
<string name="p_source_lon">Longitude</string>
<string name="p_source_coord">Coordinate</string>
<string name="p_source_get_last">Use last GPS position</string>
<string name="p_source_auto">Automatic Posting</string>
<string name="p_source_auto_summary">Perform periodic position posting</string>
<!-- privacy settings -->
<string name="p_privacy">Position privacy</string>
<string name="p_privacy_summary">Position ambiguity and more</string>
<string name="p_priv_ambiguity">Position Ambiguity</string>
<string name="p_priv_ambiguity_summary">Reduced precision for own position reports</string>
<string name="p_ambiguity_off">Off (DD° MM.mm\')</string>
<string name="p_ambiguity_ddmmm">1 (DD° MM.m\')</string>
<string name="p_ambiguity_ddmm">2 (DD° MM\')</string>
<string name="p_ambiguity_ddm">3 (DD° Mx\')</string>
<string name="p_ambiguity_dd">4 (DD°)</string>
<string name="p_priv_spdbear">Send Speed &amp; Bearing</string>
<string name="p_priv_spdbear_summary">Include speed and bearing in position reports</string>
<string name="p_priv_altitude">Send Altitude</string>
<string name="p_priv_altitude_summary">Include altitude in position reports</string>
<!-- connection type properties -->
<string name="p_host">Server</string>
<string name="p_host_summary">APRS-IS server (port 8080) to send beacons</string>
<string name="p_host_entry">Enter the APRS-IS server hostname</string>
<string name="p_host_hint">host:port</string>
<string name="p__position">Position Reports</string>
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
<string name="p_sb_fast_speed">Fast Speed [km/h]</string>
<string name="p_sb_fast_speed_summary">Minium speed for fast position updates</string>
<string name="p_sb_fast_rate">Fast Rate [s]</string>
<string name="p_sb_fast_rate_summary">Beacon rate at fast speed</string>
<string name="p_sb_slow_speed">Slow Speed [km/h]</string>
<string name="p_sb_slow_speed_summary">Maximum speed for slow position updates</string>
<string name="p_sb_slow_rate">Slow Rate [s]</string>
<string name="p_sb_slow_rate_summary">Beacon rate at slow speed</string>
<!-- corner pegging should not be translated -->
<string name="p_corner_pegging">Corner Pegging</string>
<string name="p_cp_turn_time">Min Turn Time [s]</string>
<string name="p_cp_turn_time_summary">Minimum beacon rate when changing direction</string>
<string name="p_cp_turn_angle">Min Turn Angle [°]</string>
<string name="p_cp_turn_angle_summary">Minimum angle at high speed</string>
<string name="p_cp_turn_slope">Turn Slope</string>
<string name="p_cp_turn_slope_summary">Influence of speed on the minimum angle</string>
<string name="p_interval">Minimum update time</string>
<string name="p_interval_summary">Minutes between beacon transmissions</string>
<string name="p_interval_entry">Enter the update interval [min]</string>
<string name="p_distance">Minimum update distance</string>
<string name="p_distance_summary">Kilometers before beacon transmission (set to 0 for time-only)</string>
<string name="p_distance_entry">Enter the update distance [km]</string>
<string name="p_speedbrg">Await speed &amp; bearing</string>
<string name="p_speedbrg_summary">Keep GPS on longer to get more precise data</string>
<string name="p_netloc">Use network location</string>
<string name="p_netloc_summary">Acquire position from the cellular network</string>
<string name="p_gps">GPS Precision</string>
<string name="p_gps_summary">Battery usage vs. position quality</string>
<string name="p_gps_entry">Please set the GPS Precision</string>
<!-- array of GPS precisions -->
<string name="p_gps_always">High (Always on)</string>
<string name="p_gps_med">Medium</string>
<string name="p_gps_low">Low</string>
<string name="p_keepscreen">Keep screen awake</string>
<string name="p_keepscreen_summary">Do not turn off screen when APRSdroid is in the foreground</string>
<!-- messaging -->
<string name="p__display">Display and Notifications</string>
<string name="p__notification">Notifications</string>
<string name="p__notification_summary">Alert for messages and position reports</string>
<string name="p_msg">Incoming Messages</string>
<string name="p_msg_led">Blinking LED</string>
<string name="p_msg_led_on">LED notifications are on</string>
<string name="p_msg_led_off">LED notifications are off</string>
<string name="p_msg_vibr">Vibration</string>
<string name="p_msg_vibr_on">Vibration notifications are on</string>
<string name="p_msg_vibr_off">Vibration notification are off</string>
<string name="p_msg_ring">Ringtone</string>
<string name="p_msg_ring_summary">Tone for incoming messages</string>
<string name="p_pos">Own Position Reports</string>
<string name="p_pos_ring">Ringtone</string>
<string name="p_pos_ring_summary">Tone for sent position reports</string>
<string name="p_dgp">Digipeated Own Packets</string>
<string name="p_dgp_ring">Ringtone</string>
<string name="p_dgp_ring_summary">Tone for digipeated packets</string>
<string name="got_digipeated">Digipeated by %1$s: %2$s</string>
<string name="status_linkoff">Error: %s</string>
<string name="status_linkon">Connected: %s</string>
<!-- AFSK settings -->
<string name="p_aprs_path">APRS digi path</string>
<string name="p_aprs_path_hint">hop 1, hop 2, ...</string>
<string name="p_aprs_path_summary">Sequence of digipeaters</string>
<string name="p_aprs_path_entry">Enter the comma separated digi path</string>
<string name="p_afsk_prefix">Frame Sync Prefix</string>
<string name="p_afsk_prefix_summary">No-Op Preamble (e.g. for VOX control)</string>
<string name="p_afsk_prefix_entry">Enter the prefix time [ms]</string>
<string name="p_afsk_hqdemod">High-Quality Demodulator</string>
<string name="p_afsk_hqdemod_summary">javAX25lib: 800 MHz CPU required</string>
<string name="p_afsk_btsco">Bluetooth Headset</string>
<string name="p_afsk_btsco_summary">Use Bluetooth (SCO) headset for AFSK</string>
<string name="p_afsk_output">Audio Output</string>
<string-array name="p_afsk_out_e">
<item>Voice Call</item>
<item>Ringtone</item>
<item>Music</item>
<item>Alarm</item>
</string-array>
<!-- TCP server settings -->
<string name="p_tcp_server_summary">APRS-IS TCP server (port 14580) to contact</string>
<string name="p_filterdist">Neighbor radius</string>
<string name="p_filterdist_summary">Receive packets from stations in this radius</string>
<string name="p_filterdist_entry">Radius around you to monitor for packets [km]</string>
<string name="p_filter">Packet filter</string>
<string name="p_filter_hint">b/BUDDY o/OBJECT ...</string>
<string name="p_filter_summary">Filter for incoming packets</string>
<string name="p_filter_entry">Enter a filter for incoming packets</string>
<string name="p_filterhelp">Message filter help</string>
<string name="p_filterhelp_summary">Online reference for APRS-IS filters</string>
<string name="p_sotimeout">TCP socket timeout</string>
<string name="p_sotimeout_summary">Time before resetting the connection</string>
<string name="p_sotimeout_entry">Timeout value in seconds (0 = disable)</string>
<string name="p_mapfile">Map file name</string>
<string name="p_mapfile_summary">MapsForge map file for APRSdroid</string>
<string name="p_mapfile_choose">Choose map file</string>
<string name="mapfile_error">Error loading map file %s!</string>
<string name="p_themefile">Theme file name</string>
<string name="p_themefile_summary">MapsForge rendering theme (XML)</string>
<string name="p_themefile_choose">Choose theme file</string>
<string name="themefile_error">Error loading theme file %s!</string>
<string name="translator_credits">Launchpad Contributions:
Manmohan Bhagat https://launchpad.net/~vu3ybh</string>
<!-- Bluetooth TNC settings -->
<string name="p_bt_client">Client Mode</string>
<string name="p_bt_client_summary">APRSdroid establishes the connection (Keep this on!)</string>
<string name="p_bt_tnc_device">TNC Bluetooth Device</string>
<string name="p_bt_tnc_device_summary">Choose your TNC from paired devices</string>
<string name="p_bt_tnc_device_entry">Choose device</string>
<string name="p_bt_channel">Channel</string>
<string name="p_bt_channel_summary">Bluetooth channel on the TNC</string>
<string name="p_bt_channel_entry">Enter channel (most often: "1"; empty for SPP)</string>
<string name="p_tnc_init">TNC init string</string>
<string name="p_tnc_init_summary">Initialization commands for TNC (URL-encoded, Esc=%%1B, "%%"=%%25)</string>
<string name="p_tnc_init_msg" formatted="false">URL-encoded string (Esc=%1B, \"%\"=%25), delay after each line:</string>
<string name="p_tnc_delay">TNC init delay</string>
<string name="p_tnc_delay_summary">Time to wait after each line</string>
<string name="p_tnc_delay_entry">TNC init delay [ms]</string>
<string name="p_bt_prefs">Bluetooth settings</string>
<string name="p_bt_prefs_summary">Enable Bluetooth, pair devices...</string>
<string name="bt_error_unsupported">Bluetooth is not supported!</string>
<string name="bt_error_disabled">Please enable Bluetooth!</string>
<string name="bt_error_no_tnc">Please configure a Bluetooth TNC!</string>
<string name="bt_error_connect">Could not connect to %s! Please turn on the device and close other Bluetooth connections.</string>
<string name="afsk_info_sco_req">Requesting bluetooth SCO link...</string>
<string name="afsk_info_sco_est">Bluetooth SCO link established.</string>
<!-- TCP/IP TNC settings -->
<string name="p_tcptnc_server_summary">KISS TCP server to contact</string>
<string name="p_tcptnc_entry">Enter the KISS server hostname</string>
<!-- SSL strings -->
<string name="ssl_import_activity">SSL certificate import</string>
<string name="ssl_import_password">Please enter the certificate import password:</string>
<string name="ssl_no_keyfile">No certificate for %s! Using passcode authentication.</string>
<string name="ssl_import_ok">Imported certificate for %s.</string>
<string name="ssl_import_error">Error importing certificate: %s!</string>
<string name="ssl_expired">Your certificate has expired!</string>
<string name="ssl_expire_in">Your certificate will expire in %d days!</string>
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->
<string name="p_serial_baudrate">Baud Rate</string>
<string name="p_serial_baudrate_summary">Data rate of the serial port</string>
<!-- (USB) Serial Errors -->
<string name="p_serial_unsupported">Unsupported serial port!</string>
<string name="p_serial_noperm">No permission for USB device!</string>
<string name="p_serial_notfound">No USB device found!</string>
</resources>

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">O programu APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -112,6 +112,8 @@
<string name="quit">Izađi</string>
<string name="preferences">Postavke</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amaterski radio</string>
<string name="p_callsign">Pozivna oznaka</string>
<string name="p_callsign_nossid">Pozivna oznaka (bez SSID)</string>
@ -160,7 +162,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Postavke povezivanja</string>
<string name="p_connsetup_summary">Konfiguracija veze</string>
<string name="p_connlog">Praćenje povezivanja</string>
<string name="p_connlog_summary">Verbalni ispis u dnevniku</string>
<!-- array of connection types -->
@ -219,7 +220,6 @@
<string name="p_locsource">Izvor lokacija</string>
<string name="p_locsource_summary">Ručno, povremeno ili SmartBeaconing™</string>
<string name="p__location">Postavke lokacija</string>
<string name="p__location_summary">Konfiguracija za slanje izvješća lokacije</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ pomoć</string>
@ -379,7 +379,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -74,7 +74,7 @@
<!-- about dialog -->
<string name="ad_title">Az APRSdroid v%s-ról</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -131,6 +131,8 @@
<string name="quit">Kilépés</string>
<string name="preferences">Beállítások</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amatőr rádió</string>
<string name="p_callsign">Hívójel</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
@ -179,7 +181,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -238,7 +239,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Helymeghatározás</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -399,7 +399,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Re APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® is a registered trademark of Bob Bruninga (WB4APR) Traduction in interlingua per Carmelo Serraino</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® is a registered trademark of Bob Bruninga (WB4APR) Traduction in interlingua per Carmelo Serraino</string>
<string name="ad_gpl">This program 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 2 of the License, or (at your option) any later version. \n\n 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. \n\n You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \n\n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">Gratias a:</string>
<string name="ad_thanks_0">My YL ♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">Quitar</string>
<string name="preferences">Preferentias</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Radio amateur</string>
<string name="p_callsign">Firma de appello</string>
<string name="p_callsign_nossid">Firma de appello (sin SSID)</string>
@ -156,7 +158,6 @@
<string name="p_link">Typo de connexion</string>
<string name="p_link_entry">Eliger le typo de ligamine</string>
<string name="p_connsetup">Preferentias de connexion</string>
<string name="p_connsetup_summary">Configuration del connexion</string>
<string name="p_connlog">Aperture del connexion</string>
<string name="p_connlog_summary">Emission verbose del stato in le Registro</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">Fonte del location</string>
<string name="p_locsource_summary">Manual, Periodic r SmartBeaconing™</string>
<string name="p__location">Preferentias de location</string>
<string name="p__location_summary">Configuration pro inviar le reportos de position</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">Adjuta de SmartBeaconing™</string>
@ -374,7 +374,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Tentang APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -127,6 +127,8 @@
<string name="quit">Keluar</string>
<string name="preferences">Pengaturan</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Radio Amatir</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (tanpa SSID)</string>
@ -175,7 +177,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -234,7 +235,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -395,7 +395,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -72,7 +72,7 @@
<!-- about dialog -->
<string name="ad_title">Um APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -129,6 +129,8 @@
<string name="quit">Hætta</string>
<string name="preferences">Valmöguleikar</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amatör Radíó</string>
<string name="p_callsign">Kallmerki</string>
<string name="p_callsign_nossid">Kallmerki (án SSID)</string>
@ -177,7 +179,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Eiginleikar tengingar</string>
<string name="p_connsetup_summary">Stillingar á Tengingu</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -236,7 +237,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Staðarstillingar</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -397,7 +397,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Informazioni programma APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® è un marchio registrato di Bob Bruninga (WB4APR)</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® è un marchio registrato di Bob Bruninga (WB4APR)</string>
<string name="ad_gpl">Questo programma è software libero; è possibile ridistribuirlo e/o modificarlo sotto i termini della GNU General Public License come pubblicata dalla Free Software Foundation; versione 2 della Licenza o (a propria discrezione) qualsiasi versione successiva. \N \N Questo programma è distribuito nella speranza che possa essere utile, ma SENZA ALCUNA GARANZIA; senza persino la garanzia implicita di COMMERCIABILITÀ o IDONEITÀ PER UNO SCOPO PARTICOLARE. Vedere la GNU General Public License per maggiori dettagli. \N \N Tu dovresti avere ricevuto una copia della Licenza Pubblica Generica GNU insieme a questo programma; in caso contrario, scrivi alla Free Software Foundation, Inc. , 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \N \N http://www.gnu.org/licenses/old-licenses/gpl-2.0.htm</string>
<string name="ad_thanks">Si ringrazia:</string>
<string name="ad_thanks_0">La mia compagna♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">Termina</string>
<string name="preferences">Impostazioni</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Radio Amatore</string>
<string name="p_callsign">Nominativo</string>
<string name="p_callsign_nossid">Nominativo (senza SSID)</string>
@ -156,7 +158,6 @@
<string name="p_link">Tipo Connessione</string>
<string name="p_link_entry">Seleziona il tipo di link</string>
<string name="p_connsetup">Preferenze delle connessioni</string>
<string name="p_connsetup_summary">Configurazione della Connessione</string>
<string name="p_connlog">Accredidamento</string>
<string name="p_connlog_summary">Troppe parole nel registro di uscita</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">Località di trasmissione</string>
<string name="p_locsource_summary">Manuale,Periodico o SmartBeaconing™</string>
<string name="p__location">Impostazioni Località di trasmissione</string>
<string name="p__location_summary">Configurazione per l\'invio dei rapporti di posizione</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">Guida SmartBeaconing™</string>
@ -317,15 +317,15 @@
<string name="p_sotimeout_summary">Tempo prima di resettare la connessione</string>
<string name="p_sotimeout_entry">Tempo sconnessione , valore in secondi (0 = disabilita)</string>
<string name="p_mapfile">Map file name</string>
<string name="p_mapfile_summary">MapsForge map file for APRSdroid</string>
<string name="p_mapfile_choose">Choose map file</string>
<string name="mapfile_error">Error loading map file %s!</string>
<string name="p_mapfile">Nome del file Mappa (map)</string>
<string name="p_mapfile_summary">MapsForge map fiLE per APRSdroid</string>
<string name="p_mapfile_choose">Scegli il file .map</string>
<string name="mapfile_error">Errore caricando il file .map %s</string>
<string name="p_themefile">Theme file name</string>
<string name="p_themefile_summary">MapsForge rendering theme (XML)</string>
<string name="p_themefile_choose">Choose theme file</string>
<string name="themefile_error">Error loading theme file %s!</string>
<string name="p_themefile">Il nome del file del tema principale (presentazione)</string>
<string name="p_themefile_summary">MapsForge tema tridimensionale della mappa (XML)</string>
<string name="p_themefile_choose">Scegli il tema del file</string>
<string name="themefile_error">Errore caricando il tema del file %s!</string>
<string name="translator_credits">Launchpad Contributions:
IK2RXU https://launchpad.net/~gilandin
@ -380,7 +380,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -73,7 +73,7 @@
<!-- about dialog -->
<string name="ad_title">אודות APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -115,6 +115,8 @@
<string name="quit">יציאה</string>
<string name="preferences">העדפות</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">רדיו חובבני</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (ללא SSID)</string>
@ -163,7 +165,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">העדפות חיבור</string>
<string name="p_connsetup_summary">הגדרה של חיבור</string>
<string name="p_connlog">רשימת חיבור</string>
<string name="p_connlog_summary">פלט מצב מגובב בתוך יומן</string>
<!-- array of connection types -->
@ -222,7 +223,6 @@
<string name="p_locsource">מקור מיקום</string>
<string name="p_locsource_summary">ידני, ארעי או ™SmartBeaconing</string>
<string name="p__location">הגדרות מיקום</string>
<string name="p__location_summary">תצוורה לשם שליחת דיווחי עמדה</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">עזרה ™SmartBeaconing</string>
@ -381,7 +381,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">APRSdroidについて v%s</string>
<string name="ad_copyright">著作権 © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS®はBob BruningaWB4APRの登録商標です。</string>
<string name="ad_copyright">著作権 © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS®はBob BruningaWB4APRの登録商標です。</string>
<string name="ad_gpl">このプログラムはフリー・ソフトウェアです。; 再分配あるいはフリー・ソフトウェア・ファウンデーションによって公表されるようなGNU一般ライセンスの条件下で修正する事が出来ます。ライセンスver.2あるいは(貴方のオプションで)以降のバージョンの何れか。\n\n このプログラムは有用であることを願い,しかし一切の保証なしに提供されています。;特定の目的に対する商品性もしくは適合性についての暗黙の保証すらありません。 詳細についてはGNU一般ライセンスを参照してください。 \n\n あなたはこのプログラムと共にGNU一般公衆利用許諾契約書のコピーを受け取り承諾しているはずです。; そうでなければ、フリー・ソフトウェア財団に手紙を書いてください。, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \n\n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">協力:</string>
<string name="ad_thanks_0">私の彼女♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">終了</string>
<string name="preferences">設定</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">無線局情報設定</string>
<string name="p_callsign">コールサイン</string>
<string name="p_callsign_nossid">コールサイン (SSID抜き)</string>
@ -156,7 +158,6 @@
<string name="p_link">接続タイプ</string>
<string name="p_link_entry">接続タイプを選択</string>
<string name="p_connsetup">接続詳細設定</string>
<string name="p_connsetup_summary">接続に関する設定</string>
<string name="p_connlog">接続情報を記録</string>
<string name="p_connlog_summary">冗長状態をログに出力する(デバック)</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">測位方法の選択</string>
<string name="p_locsource_summary">固定,周期的 又は SmartBeaconing™</string>
<string name="p__location">位置情報設定</string>
<string name="p__location_summary">測位方法の詳細設定</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ヘルプ</string>
@ -375,7 +375,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -74,7 +74,7 @@
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -131,6 +131,8 @@
<string name="quit">Quit</string>
<string name="preferences">Preferences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amateur Radio</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
@ -179,7 +181,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -238,7 +239,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -398,7 +398,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -74,7 +74,7 @@
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -131,6 +131,8 @@
<string name="quit">Quit</string>
<string name="preferences">Preferences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amateur Radio</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
@ -179,7 +181,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -238,7 +239,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -397,7 +397,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Iwwer APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® ass eng registréiert Mark vum Bob Bruninga (WB4APR)</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® ass eng registréiert Mark vum Bob Bruninga (WB4APR)</string>
<string name="ad_gpl">Dëst ass eng fräi Software; du kanns se ënnert den Konditiounen vun der GNU General Public License wéi se vun der Free Software Foundation publizéiert ginn ass virun verdeelen an/oder modifizéieren; entweder ënnert der Versioun 2 vun der Lizenz, oder (als deng Optioun) ënnert enger méi spéiderer Versioun. \n\n Dësen Programm gëtt an der Hoffnung verdeelt, dass en nëtzlech ass, mee OUNI IRGENDENG GARANTIE; och ouni di implizéiert Garantie fir MARKTGÄNGEGKEET oder FITNESS FIR EN BESONNESCHEN ZWECK. Kuck an der GNU General Public License fir weider Detailer. \n\n Du miss eng Kopie vun der GNU General Public License mat dësem Programm kritt hunn; wann net, dann schreif un d\'Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \n\n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">E Merci un:</string>
<string name="ad_thanks_0">Meng YL ♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">Verloossen</string>
<string name="preferences">Astellungen</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Funkamateur</string>
<string name="p_callsign">Rufzeechen</string>
<string name="p_callsign_nossid">Rufzeechen (ouni SSID)</string>
@ -156,7 +158,6 @@
<string name="p_link">Connectiouns-Typ</string>
<string name="p_link_entry">Wiel den Linktyp</string>
<string name="p_connsetup">Verbindungsastellungen</string>
<string name="p_connsetup_summary">Verbindungskonfiguratioun</string>
<string name="p_connlog">Verbindungslog</string>
<string name="p_connlog_summary">Detailléiert Statusausgab am Log</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">Standuert Source</string>
<string name="p_locsource_summary">Manuell, Periodesch oder SmartBeaconing™</string>
<string name="p__location">Standuert Astellungen</string>
<string name="p__location_summary">Konfiguratioun fir d\'Positiounsaussendung</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ Hëllef</string>
@ -374,7 +374,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Informasuin de APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -112,6 +112,8 @@
<string name="quit">Lassa u programma</string>
<string name="preferences">Preferié</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Stasiun de Radio Amatur</string>
<string name="p_callsign">Nominativu</string>
<string name="p_callsign_nossid">Nominativu sensa u SSID</string>
@ -160,7 +162,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Preferensia de connessiun</string>
<string name="p_connsetup_summary">Configurasiun de connessiun</string>
<string name="p_connlog">Registrasiun de la connessiun</string>
<string name="p_connlog_summary">Troppe parolle in tu registru</string>
<!-- array of connection types -->
@ -219,7 +220,6 @@
<string name="p_locsource">Localité de trasmisiun</string>
<string name="p_locsource_summary">Manuel, Periodica o SmartBeaconing™</string>
<string name="p__location">coordiné de la localité</string>
<string name="p__location_summary">Configurasiun pa envié u rapportu de posisiun</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">Aggiuttu pe SmartBeaconing™</string>
@ -378,7 +378,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -72,7 +72,7 @@
<!-- about dialog -->
<string name="ad_title">Mengenai APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -114,6 +114,8 @@
<string name="quit">Keluar</string>
<string name="preferences">Keutamaan</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Radio Amatur</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Isyarat Panggilan (tanpa SSID)</string>
@ -162,7 +164,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -221,7 +222,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -380,7 +380,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">关于 APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -112,6 +112,8 @@
<string name="quit">退出</string>
<string name="preferences">偏好设定</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">業餘無線電愛好者</string>
<string name="p_callsign">呼号</string>
<string name="p_callsign_nossid">呼號(無子辨識符)</string>
@ -160,7 +162,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">连接首选项</string>
<string name="p_connsetup_summary">连接配置</string>
<string name="p_connlog">连接记录中</string>
<string name="p_connlog_summary">記錄詳細登入登出日誌</string>
<!-- array of connection types -->
@ -219,7 +220,6 @@
<string name="p_locsource">定位源</string>
<string name="p_locsource_summary">手动,定时或智能信标™</string>
<string name="p__location">位置设置</string>
<string name="p__location_summary">位置报告配置</string>
<string name="p_smartbeaconing">SmartBeaconing™(智能信標™)</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -378,7 +378,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Om APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -112,6 +112,8 @@
<string name="quit">Avslutt</string>
<string name="preferences">Brukervalg</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amatørradio</string>
<string name="p_callsign">Kallesignal</string>
<string name="p_callsign_nossid">Kallesignal (uten SSID)</string>
@ -160,7 +162,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Brukervalg for tilkobling</string>
<string name="p_connsetup_summary">Tilkoblingskonfigurasjon</string>
<string name="p_connlog">Tilkoblingslogg</string>
<string name="p_connlog_summary">Rikelige statusmeldinger til logg</string>
<!-- array of connection types -->
@ -219,7 +220,6 @@
<string name="p_locsource">Lokaliseringskilde</string>
<string name="p_locsource_summary">Manuell, periodisk eller SmartBeaconing™</string>
<string name="p__location">Stedsinnstillinger</string>
<string name="p__location_summary">Konfigurasjon for sending av possisjonsrapporter</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -380,7 +380,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -5,7 +5,7 @@
<string name="app_prefs">एपिआरएस ड्रोएड प्राथमिकताहरू</string>
<string name="app_map">एपिआरएस ड्रोएड नक्सा</string>
<string name="app_hub">एपिआरएस ड्रोएड हब</string>
<string name="app_log">APRSdroid Log</string>
<string name="app_log">एपिआरएस ड्रोइड लग</string>
<string name="app_sta">स्टेशन जानकारी</string>
<string name="app_messages">सन्देशहरू</string>
<string name="app_messages_clear">सन्देश हटाउनुस</string>
@ -42,17 +42,17 @@
<string name="msg_empty_list">कुनै कुराकानीको भण्डारण छैन।</string>
<string name="msg_stored_offline">तपाईँले ट्रयाकिङ सुरु गर्ने बितिकै सन्देश पठाइने छ।</string>
<!-- Message activity -->
<string name="msg_from">Message from %s</string>
<string name="msg_to">Message to %s</string>
<string name="msg_abort">Abort transmission</string>
<string name="msg_restart">Restart transmission</string>
<string name="msg_type_rejected">rejected</string>
<string name="msg_type_aborted">aborted</string>
<string name="msg_from">%s बाट सन्देश</string>
<string name="msg_to">%s लाई सन्देश</string>
<string name="msg_abort">प्रशारण रद्द गर्नुहोस्</string>
<string name="msg_restart">प्रशारण पुन सुरु गर्नुहोस</string>
<string name="msg_type_rejected">अस्वीकार गरिएको</string>
<string name="msg_type_aborted">रद्द गरियो</string>
<!-- AprsService -->
<string name="aprsservice">APRSdroid Service</string>
<string name="service_once">APRS Service single shot: %1$s, %2$s.</string>
<string name="service_start">APRS Service started: %1$s, %2$s.</string>
<string name="aprsservice">एपिआरएस ड्रोइड सेवा</string>
<string name="service_once">एपिआरएस सेवा एकल शट: %1$s, %2$s.</string>
<string name="service_start">एपिआरएस सेवा सुरु भयो: %1$s, %2$s.</string>
<string name="service_stop">APRS Service stopped.</string>
<string name="service_no_location">You need to enable either GPS or Network Location for APRSdroid to work properly!</string>
<string name="service_sm_no_gps">SmartBeaconing™ requires GPS!</string>
@ -72,7 +72,7 @@
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -129,6 +129,8 @@
<string name="quit">Quit</string>
<string name="preferences">Preferences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amateur Radio</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
@ -177,7 +179,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -236,7 +237,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -395,7 +395,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -14,7 +14,7 @@
<string name="wrongpasscode">Je passcode komt niet overeen met je callsign!</string>
<string name="anon_warning">Zonder een wachtwoord zullen uw rapporten niet verzonden worden</string>
<string name="mininterval">Minimum update tijd is 1 minuut!</string>
<string name="singlelog">Send Position</string>
<string name="singlelog">Stuur locatie</string>
<string name="startlog">Tracking starten</string>
<string name="stoplog">Tracking stoppen</string>
@ -25,7 +25,7 @@ Je kan ook je voorkeuren aanpassen via het menu.</string>
<!-- Maps activity -->
<string name="sta_lastreport">%s Laatst ontvangen pakket</string>
<string name="map_track_call">Tracking %s...</string>
<string name="map_track_unknown">Position for %s unknown!</string>
<string name="map_track_unknown">Geen positie voor %s bekend!</string>
<string name="map_select">Station selecteren</string>
<string name="map_loading">Bezig met laden...</string>
@ -34,7 +34,7 @@ Je kan ook je voorkeuren aanpassen via het menu.</string>
<string name="sta_ssids">Station SSIDs</string>
<string name="sta_history">Station historiek</string>
<string name="sta_map">Kaart</string>
<string name="sta_extmap">External Map</string>
<string name="sta_extmap">Externe kaart</string>
<string name="sta_aprsfi">aprs.fi</string>
<string name="sta_qrzcom">QRZ.com</string>
@ -72,7 +72,7 @@ Je kan ook je voorkeuren aanpassen via het menu.</string>
<!-- about dialog -->
<string name="ad_title">Over APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -108,12 +108,14 @@ Je kan ook je voorkeuren aanpassen via het menu.</string>
<string name="show_hub">Hub weergeven</string>
<string name="show_map">Toon kaart</string>
<string name="show_log">Toon logbestand</string>
<string name="export_log">Export Log</string>
<string name="export_empty">Nothing to export</string>
<string name="export_log">Exporteer logbestand</string>
<string name="export_empty">Niets te exporteren</string>
<string name="clear_log">Logbestand wissen</string>
<string name="quit">afsluiten</string>
<string name="preferences">Voorkeuren</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amateur Radio</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (zonder SSID)</string>
@ -150,7 +152,7 @@ Je kan ook je voorkeuren aanpassen via het menu.</string>
<string name="p_symbol">APRS symbool</string>
<string name="p_symbol_summary">Jouw symbool voor map weergave</string>
<string name="p_symbol_overlay">Overlay:</string>
<string name="p_symbol_result">Result:</string>
<string name="p_symbol_result">Resultaat:</string>
<string name="p_frequency">Voice frequency</string>
<string name="p_frequency_summary">Your voice frequency [MHz]</string>
<string name="p_status">Commentaar venster</string>
@ -162,7 +164,6 @@ Je kan ook je voorkeuren aanpassen via het menu.</string>
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Verbindingsinstellingen</string>
<string name="p_connsetup_summary">Verbindingsconfiguratie</string>
<string name="p_connlog">Verbindingslog</string>
<string name="p_connlog_summary">Status weeergave in de Log</string>
<!-- array of connection types -->
@ -221,7 +222,6 @@ Je kan ook je voorkeuren aanpassen via het menu.</string>
<string name="p_locsource">Bron van de locatie</string>
<string name="p_locsource_summary">Manueel, Periodiek of SmartBeaconing™</string>
<string name="p__location">Lokatie instellingen</string>
<string name="p__location_summary">Instellingen voor het verzenden van rapporten</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -337,6 +337,7 @@ Je kan ook je voorkeuren aanpassen via het menu.</string>
Eddy Vaesen https://launchpad.net/~a-eddy-n
Georg Lukas https://launchpad.net/~ge0rg
H.F.P. Pit https://launchpad.net/~pd5dp
Jeroen https://launchpad.net/~pd1ode
Robbie De Lise https://launchpad.net/~robbie-delise
Selly https://launchpad.net/~salpatxot
doomer https://launchpad.net/~doomer
@ -386,7 +387,7 @@ Je kan ook je voorkeuren aanpassen via het menu.</string>
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->
@ -395,5 +396,5 @@ Je kan ook je voorkeuren aanpassen via het menu.</string>
<!-- (USB) Serial Errors -->
<string name="p_serial_unsupported">Unsupported serial port!</string>
<string name="p_serial_noperm">No permission for USB device!</string>
<string name="p_serial_notfound">No USB device found!</string>
<string name="p_serial_notfound">Geen USB-apparaat gevonden!</string>
</resources>

Wyświetl plik

@ -74,7 +74,7 @@
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -131,6 +131,8 @@
<string name="quit">Quitar</string>
<string name="preferences">Preferéncias</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Radioamator</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
@ -179,7 +181,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Preferéncias de connexion</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -238,7 +239,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -397,7 +397,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">O APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® is a registered trademark of Bob Bruninga (WB4APR)</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® is a registered trademark of Bob Bruninga (WB4APR)</string>
<string name="ad_gpl">Niniejszy program jest wolnym oprogramowaniem; możesz go rozprowadzać dalej i/lub modyfikować na warunkach Powszechnej Licencji Publicznej GNU, wydanej przez Fundację Wolnego Oprogramowania - według wersji 2-giej tej Licencji lub którejś
z późniejszych wersji. \n\n Niniejszy program rozpowszechniany jest z nadzieją, iż będzie on użyteczny - jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji PRZYDATNOŚCI HANDLOWEJ albo PRZYDATNOŚCI DO OKREŚLONYCH ZASTOSOWAŃ. W celu uzyskania bliższych informacji - Powszechna Licencja Publiczna GNU. \n\n Z pewnością wraz z niniejszym programem otrzymałeś też egzemplarz Powszechnej Licencji Publicznej GNU (GNU General Public License); jeśli nie - napisz do Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \n\n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">Podziękowania dla:</string>
@ -109,6 +109,8 @@ z późniejszych wersji. \n\n Niniejszy program rozpowszechniany jest z nadziej
<string name="quit">Zakończ</string>
<string name="preferences">Ustawienia</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Krótkofalarstwo</string>
<string name="p_callsign">Znak wywoławczy</string>
<string name="p_callsign_nossid">Znak wywoławczy (bez SSID)</string>
@ -157,7 +159,6 @@ z późniejszych wersji. \n\n Niniejszy program rozpowszechniany jest z nadziej
<string name="p_link">Rodzaj połączenia</string>
<string name="p_link_entry">Wybierz typ połączenia</string>
<string name="p_connsetup">Ustawienia połączenia</string>
<string name="p_connsetup_summary">Konfiguracja połączenia</string>
<string name="p_connlog">Logowanie połączenia</string>
<string name="p_connlog_summary">Wyświetlaj status w Logu</string>
<!-- array of connection types -->
@ -216,7 +217,6 @@ z późniejszych wersji. \n\n Niniejszy program rozpowszechniany jest z nadziej
<string name="p_locsource">Źródło współrzędnych</string>
<string name="p_locsource_summary">Manualna, okresowa lub SmartBeaconing™</string>
<string name="p__location">Ustawienia lokalizacji</string>
<string name="p__location_summary">Konfiguracja wysyłania raportów położenia</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">Pomoc SmartBeaconing™</string>
@ -318,19 +318,20 @@ z późniejszych wersji. \n\n Niniejszy program rozpowszechniany jest z nadziej
<string name="p_sotimeout_summary">Czas przed zresetowaniem połączenia</string>
<string name="p_sotimeout_entry">Timeout w sec. (0 = wył.)</string>
<string name="p_mapfile">Map file name</string>
<string name="p_mapfile_summary">MapsForge map file for APRSdroid</string>
<string name="p_mapfile_choose">Choose map file</string>
<string name="mapfile_error">Error loading map file %s!</string>
<string name="p_mapfile">Nazwa pliku mapy</string>
<string name="p_mapfile_summary">Plik mapy MapsForge</string>
<string name="p_mapfile_choose">Wybierz plik mapy</string>
<string name="mapfile_error">Błąd ładowania pliku mapy: %s!</string>
<string name="p_themefile">Theme file name</string>
<string name="p_themefile_summary">MapsForge rendering theme (XML)</string>
<string name="p_themefile_choose">Choose theme file</string>
<string name="themefile_error">Error loading theme file %s!</string>
<string name="p_themefile">Nazwa pliku motywu</string>
<string name="p_themefile_summary">Motyw renderowania MapsForge (XML)</string>
<string name="p_themefile_choose">Wybierz plik motywu</string>
<string name="themefile_error">Błąd ładowania pliku motywu %s!</string>
<string name="translator_credits">Launchpad Contributions:
Adam Czabara https://launchpad.net/~adam-czabara
Georg Lukas https://launchpad.net/~ge0rg
Michal SQ2MO https://launchpad.net/~sq2mo
Michał Czarniecki https://launchpad.net/~sq9mcs
Paweł https://launchpad.net/~pawel-4
Phitherek_ https://launchpad.net/~phitherek
@ -383,9 +384,9 @@ z późniejszych wersji. \n\n Niniejszy program rozpowszechniany jest z nadziej
<string name="ssl_expire_in">Twój certyfikat wygaśnie za %d dni!</string>
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<string name="profile_import_activity">Importowanie profilu</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Błąd przy importowaniu profilu: %s!</string>
<!-- (USB) Serial TNC settings -->
<string name="p_serial_baudrate">Prędkość transmisji (baudrate)</string>

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Sobre o APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® é uma marca registrada de Bob Bruninga (WB4APR)</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® é uma marca registrada de Bob Bruninga (WB4APR)</string>
<string name="ad_gpl">Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo nos termos da Licença Pública Geral (GPL) da GNU como publicado pela Free Software Foundation; seja a versão 2 da licença, ou (por sua opção) qualquer versão mais recente. \n\n Este programa é distribuído na esperança de que será útil, mas SEM QUALQUER GARANTIA; nem mesmo a garantia implícita de COMERCIALIZAÇÃO ou ATENDIMENTO A PROPÓSITO PARTICULAR. Veja a GNU General Public License para mais detalhes. \n\n Você deve ter recebido uma cópia da GNU General Public License junto com esse programa; se não, escreva para a Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \n\n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">Agradecimentos a:</string>
<string name="ad_thanks_0">Minha jovem senhorita ♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">Sair</string>
<string name="preferences">Preferências</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Radioamador</string>
<string name="p_callsign">Indicativo de chamada</string>
<string name="p_callsign_nossid">Indicativo (sem SSID)</string>
@ -156,7 +158,6 @@
<string name="p_link">Tipo de Conexão</string>
<string name="p_link_entry">Escola o tipo de link</string>
<string name="p_connsetup">Preferências de Conexão</string>
<string name="p_connsetup_summary">Configuração da Conexão</string>
<string name="p_connlog">Log da Conexão</string>
<string name="p_connlog_summary">Saída detalhada de status no Log</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">Fonte de Localização</string>
<string name="p_locsource_summary">Manual, Periódico ou SmartBeaconing™</string>
<string name="p__location">Configurações de Localização</string>
<string name="p__location_summary">Configuração para envio de relatórios de posicionamento</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">Ajuda do SmartBeaconing™</string>
@ -378,7 +378,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Sobre o APRSdroid v%s</string>
<string name="ad_copyright">Copia protegida © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® é uma marca registada de Bob Bruninga (WB4APR)</string>
<string name="ad_copyright">Copia protegida © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® é uma marca registada de Bob Bruninga (WB4APR)</string>
<string name="ad_gpl">Este programa é software livre, você pode redistribuí-lo e / ou modificá-lo sob os termos da GNU General Public License conforme publicada pela Free Software Foundation, tanto a versão 2 da Licença, ou (a seu critério) qualquer versão posterior. \ n \ n Este programa é distribuído na esperança que será útil, mas SEM QUALQUER GARANTIA, sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou ADEQUAÇÃO PARA UM DETERMINADO PROPÓSITO. Veja a GNU General Public License para mais detalhes. \ n \ n Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este programa, se não, escreva para a Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, EUA. \ n \ n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">Agradecimentos a:</string>
<string name="ad_thanks_0">Minha YL ♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">Sair.</string>
<string name="preferences">Preferências</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Radioamador.</string>
<string name="p_callsign">Indicativo</string>
<string name="p_callsign_nossid">Callsign (sem SSID)</string>
@ -156,7 +158,6 @@
<string name="p_link">Tipo de Ligação</string>
<string name="p_link_entry">Escolha o tipo de ligação</string>
<string name="p_connsetup">Preferências de Ligação</string>
<string name="p_connsetup_summary">Configuração da ligação</string>
<string name="p_connlog">Registo de ligação</string>
<string name="p_connlog_summary">Registo detalhado de saída no LOG</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">Fonte localizada</string>
<string name="p_locsource_summary">Manual, periódica ou SmartBeaconing™</string>
<string name="p__location">Configurações da localização</string>
<string name="p__location_summary">Configuração de envio de pacotes de localização</string>
<string name="p_smartbeaconing">Copy text SmartBeaconing™</string>
<string name="p_sb_help">Ajuda do SmartBeaconing</string>
@ -381,7 +381,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -71,7 +71,7 @@
<!-- about dialog -->
<string name="ad_title">Despre APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -128,6 +128,8 @@
<string name="quit">Închide</string>
<string name="preferences">Configurare</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Radioamator</string>
<string name="p_callsign">Indicativ</string>
<string name="p_callsign_nossid">Indicativ (fara SSID)</string>
@ -176,7 +178,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -235,7 +236,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -396,7 +396,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Об APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® is a registered trademark of Bob Bruninga (WB4APR)</string>
<string name="ad_copyright">Права защищены © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS® - это зарегистрированный торговый знак, принадлежащей Бобу Браунингу (Bob Bruninga, WB4APR).</string>
<string name="ad_gpl">Эта программа является свободным программным обеспечением, вы можете распространять и/или модифицировать его на условиях GNU General Public License, опубликованной Free Software Foundation; либо 2-ой версией лицензии, либо (по вашему выбору) любой более поздней версией. \n\n Эта программа распространяется в надежде, что она будет полезной, но БЕЗ ВСЯКИХ ГАРАНТИЙ. Совершенно не подразумевается гарантия КОММЕРЧЕСКОЙ ЦЕННОСТИ или ПРИГОДНОСТИ ДЛЯ КОНКРЕТНЫХ ЦЕЛЕЙ. Смотрите общественную лицензию GNU General для получения более подробной информации.\n\n Вы должны были получить копию GNU General Public License вместе с этой программой. Если в не получили копии, напишите письмо по адресу Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \n\n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">Благодарности:</string>
<string name="ad_thanks_0">Моей YL ♥♥♥</string>
@ -81,15 +81,15 @@
<string name="ad_thanks_5">Sivan, 4X6IZ: AFSK демодулятор, https://github.com/sivantoledo/javAX25</string>
<string name="ad_thanks_6">SmartBeaconing™ с помощью HamHUD Nichetronix, LLC, http://hamhud.net</string>
<string name="ad_trans">\n\nПеревод:</string>
<string name="ad_homepage">Домашняя страница</string>
<string name="ad_homepage">Вебсайт проекта</string>
<!-- map view -->
<string name="map_overlays">Виды карт</string>
<string name="map_satellite">Спутник</string>
<string name="map_objects">APRS Объекты</string>
<string name="map_overlays">Слои данных карты</string>
<string name="map_satellite">Космосники</string>
<string name="map_objects">Объекты APRS</string>
<!-- map view -->
<string name="age">Показать последние ...</string>
<string name="age">История объектов за :</string>
<string name="age_30">30 минут</string>
<string name="age_2h">2 часа</string>
<string name="age_12h">12 часов</string>
@ -108,6 +108,8 @@
<string name="quit">Выход</string>
<string name="preferences">Параметры</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Любительское радио</string>
<string name="p_callsign">Позывной</string>
<string name="p_callsign_nossid">Позывной (без SSID)</string>
@ -156,7 +158,6 @@
<string name="p_link">Тип соединения</string>
<string name="p_link_entry">Выбор типа связи</string>
<string name="p_connsetup">Параметры подключения</string>
<string name="p_connsetup_summary">Конфигурация подключения</string>
<string name="p_connlog">Протоколирование соединения</string>
<string name="p_connlog_summary">Подробная информация в журнале</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">Источник координат</string>
<string name="p_locsource_summary">Вручную, периодически или с SmartBeaconing™</string>
<string name="p__location">Установки местоположения</string>
<string name="p__location_summary">Конфигурация для отправки сообщения о местоположении</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ помощь</string>
@ -317,15 +317,15 @@
<string name="p_sotimeout_summary">Время до сброса соединения</string>
<string name="p_sotimeout_entry">Тайм-аут в секундах (0 = отключить)</string>
<string name="p_mapfile">Map file name</string>
<string name="p_mapfile_summary">MapsForge map file for APRSdroid</string>
<string name="p_mapfile_choose">Choose map file</string>
<string name="mapfile_error">Error loading map file %s!</string>
<string name="p_mapfile">Имя файла карты</string>
<string name="p_mapfile_summary">MapsForge файл карты для APRSdroid</string>
<string name="p_mapfile_choose">Выбор файла карты</string>
<string name="mapfile_error">Ошибка загрузки файла карты</string>
<string name="p_themefile">Theme file name</string>
<string name="p_themefile_summary">MapsForge rendering theme (XML)</string>
<string name="p_themefile_choose">Choose theme file</string>
<string name="themefile_error">Error loading theme file %s!</string>
<string name="p_themefile">Имя файла темы</string>
<string name="p_themefile_summary">Тема рендера MapsForge (XML)</string>
<string name="p_themefile_choose">Выбор файла темы</string>
<string name="themefile_error">Ошибка загрузки файла темы %s!</string>
<string name="translator_credits">Launchpad Contributions:
Aleksey Kabanov https://launchpad.net/~ak099
@ -379,9 +379,9 @@
<string name="ssl_expire_in">Ваш сертификат заканчивается через %d дней!</string>
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<string name="profile_import_activity">Настройки импорта</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Ошибка при импорте профиля: %s!</string>
<!-- (USB) Serial TNC settings -->
<string name="p_serial_baudrate">Скорость в бодах</string>

Wyświetl plik

@ -5,7 +5,7 @@
<string name="app_prefs">APRSdroid možnosti</string>
<string name="app_map">APRSdroid zemljevid</string>
<string name="app_hub">APRSdroid vozlišče</string>
<string name="app_log">APRSdroid Log</string>
<string name="app_log">APRSdroid dnevnik</string>
<string name="app_sta">Info postaje</string>
<string name="app_messages">Sporočila</string>
<string name="app_messages_clear">Počisti sporočila</string>
@ -14,7 +14,7 @@
<string name="wrongpasscode">Vaše geslo se ne ujema z pozivnim znakom</string>
<string name="anon_warning">Brez gesla vaša sporočila ne bodo vidna</string>
<string name="mininterval">Najmanjši čas posodobitve</string>
<string name="singlelog">Send Position</string>
<string name="singlelog">Pošlji lokacijo</string>
<string name="startlog">Začetek sledenja</string>
<string name="stoplog">Konec sledenja</string>
@ -23,7 +23,7 @@
<!-- Maps activity -->
<string name="sta_lastreport">%s Zadnje poročilo</string>
<string name="map_track_call">Sledenje %s...</string>
<string name="map_track_unknown">Position for %s unknown!</string>
<string name="map_track_unknown">Lokacija za %s ni znana!</string>
<string name="map_select">Izberi postajo</string>
<string name="map_loading">Nalaganje …</string>
@ -32,7 +32,7 @@
<string name="sta_ssids">SSID postaje</string>
<string name="sta_history">Zgodovina postaje</string>
<string name="sta_map">Zemljevid</string>
<string name="sta_extmap">External Map</string>
<string name="sta_extmap">Zunanji zemljevid</string>
<string name="sta_aprsfi">aprs.fi</string>
<string name="sta_qrzcom">QRZ.com</string>
@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">APRSdroid vizitka v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -104,14 +104,16 @@
<!-- options menu -->
<string name="about">Vizitka</string>
<string name="show_hub">Prikaži vozel</string>
<string name="show_map">Show Map</string>
<string name="show_map">Pokaži zemljevid</string>
<string name="show_log">Prikaži dnevnik datoteko</string>
<string name="export_log">Export Log</string>
<string name="export_empty">Nothing to export</string>
<string name="export_log">Izvozi dnevnik</string>
<string name="export_empty">Ni podatkov za izvoz</string>
<string name="clear_log">Počisti dnevnik</string>
<string name="quit">Končaj</string>
<string name="preferences">Možnosti</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Radioamaterstvo</string>
<string name="p_callsign">Pozivni znak</string>
<string name="p_callsign_nossid">Pozivni znak(brez SSID)</string>
@ -129,8 +131,8 @@
<!-- array of station types (SSID) -->
<string-array name="p_ssid_e">
<item>(brez) Osnovna postaja</item>
<item>1: Generic additional station</item>
<item>2: Generic additional station</item>
<item>1: Generična dodatna postaja</item>
<item>2: Generična dodatna postaja</item>
<item>Originalna dodatna postaja</item>
<item>Originalna dodatna postaja</item>
<item>Ostala omrežja(D-Star, 3G)</item>
@ -148,7 +150,7 @@
<string name="p_symbol">APRS simbol</string>
<string name="p_symbol_summary">Vaš simbol za prikaz na zemljevidu</string>
<string name="p_symbol_overlay">Overlay:</string>
<string name="p_symbol_result">Result:</string>
<string name="p_symbol_result">Rezultat:</string>
<string name="p_frequency">Voice frequency</string>
<string name="p_frequency_summary">Your voice frequency [MHz]</string>
<string name="p_status">Polje za komentar</string>
@ -157,22 +159,21 @@
<string name="p__connection">APRS povezava</string>
<string name="p_conntype">Protkol povezave</string>
<string name="p_conntype_entry">Izberite protkol povezave</string>
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_link">Vrsta povezave</string>
<string name="p_link_entry">Izberite vrsto povezave</string>
<string name="p_connsetup">Možnosti povezave</string>
<string name="p_connsetup_summary">Nastavitve povezave</string>
<string name="p_connlog">Dnevnik povezave</string>
<string name="p_connlog_summary">Detajlni izhodni dnevnik</string>
<!-- array of connection types -->
<string name="p_conn_aprsis">Internet (APRS-IS)</string>
<string name="p_conn_afsk">Audio (AFSK)</string>
<string name="p_conn_afsk">Zvok (AFSK)</string>
<string name="p_conn_kiss">TNC (KISS)</string>
<string name="p_conn_tnc2">TNC (plaintext TNC2)</string>
<string name="p_conn_kwd">Kenwood (NMEA waypoint)</string>
<string name="p_conn_kwd_info">Kenwood setup help</string>
<string name="p_conn_kwd_gps">Use Android GPS</string>
<string name="p_conn_kwd_info">Pomoč pri nastativah Kenwood</string>
<string name="p_conn_kwd_gps">Uporabi Android GPS</string>
<string name="p_conn_kwd_gps_summary">Forward NMEA sentences to radio</string>
<string name="p_conn_kwd_gps_debug">Display GPS in log</string>
<string name="p_conn_kwd_gps_debug">Prikaži GPS v dnevniku</string>
<string name="p_conn_kwd_gps_debug_summary">Show raw NMEA in APRSdroid</string>
<!-- array of APRS-IS protocols -->
<string name="p_aprsis_tcp">niz tipov povezave</string>
@ -219,7 +220,6 @@
<string name="p_locsource">Lokacijski izvor</string>
<string name="p_locsource_summary">Ročni, Periodični ali SmartBeaconing™</string>
<string name="p__location">Nastavitve lokacije</string>
<string name="p__location_summary">Nastavitve za pošiljanje lokacijskih poročil</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ pomoč</string>
@ -332,7 +332,8 @@
<string name="themefile_error">Error loading theme file %s!</string>
<string name="translator_credits">Launchpad Contributions:
Joško Horvat https://launchpad.net/~joze-horvat</string>
Joško Horvat https://launchpad.net/~joze-horvat
Matic Gradišer https://launchpad.net/~0micky</string>
<!-- Bluetooth TNC settings -->
<string name="p_bt_client">Client Mode</string>
@ -378,7 +379,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">O aplikaciji APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -112,6 +112,8 @@
<string name="quit">Zatvori</string>
<string name="preferences">Podešavanja</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">amaterski radio</string>
<string name="p_callsign">Pozivni znak</string>
<string name="p_callsign_nossid">Pozivni znak (bez SSID)</string>
@ -160,7 +162,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Postavke povezivanja</string>
<string name="p_connsetup_summary">Konfiguracija povezivanja</string>
<string name="p_connlog">Logovanje povezanosti</string>
<string name="p_connlog_summary">Opširni statusi u log fajlu</string>
<!-- array of connection types -->
@ -219,7 +220,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -379,7 +379,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">Om APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -112,6 +112,8 @@
<string name="quit">Avsluta</string>
<string name="preferences">Egenskaper</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amatörradio</string>
<string name="p_callsign">Anropssignal</string>
<string name="p_callsign_nossid">Anropssignal (utan SSID)</string>
@ -160,7 +162,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Egenskaper för anslutningen</string>
<string name="p_connsetup_summary">Konfiguration för anslutningen</string>
<string name="p_connlog">Loggför anslutning</string>
<string name="p_connlog_summary">Utförlig statusutdata i loggen</string>
<!-- array of connection types -->
@ -219,7 +220,6 @@
<string name="p_locsource">Platskälla</string>
<string name="p_locsource_summary">Manuell, periodisk, eller SmartBeaconing™</string>
<string name="p__location">Platsinställningar</string>
<string name="p__location_summary">Inställningar för att skicka positionsrapporter</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -380,7 +380,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">เกี่ยวกับ APRSdroid% v s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -127,6 +127,8 @@
<string name="quit">ออก</string>
<string name="preferences">ตั้งค่าใช้งาน</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">วิทยุสมัครเล่น</string>
<string name="p_callsign">นามเรียกขาน</string>
<string name="p_callsign_nossid">นามเรียกขาน (ไม่มี SSID)</string>
@ -175,7 +177,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">ปรับแต่งการเชื่อมต่อ</string>
<string name="p_connsetup_summary">ตั้งค่าการเชื่อมต่อ</string>
<string name="p_connlog">การเชื่อมต่อ การเข้าสู่ระบบ</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -234,7 +235,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">ตั้งค่าที่ตั้ง</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -396,7 +396,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">APRSdroid hakkında v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS®, Bob Bruninga\'nın (WB4APR) kayıtlı ticari markasıdır.</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS®, Bob Bruninga\'nın (WB4APR) kayıtlı ticari markasıdır.</string>
<string name="ad_gpl">Bu program ücretsizdir; Free Software Foundation tarafından yayımlanan GNU General Public License 2. sürüm ya da (tercih ederseniz) daha sonraki sürümde yer alan şartlar altında dağıtabilir ve değiştirebilirsiniz. \n\n Bu program kullanıcıya faydalı olması beklentisiyle, HERHANGİ BİR GARANTİ olmaksızın; hatta SATILABİLİRLİK ya da BELİRLİ BİR AMACA UYGUNLUK imasında bulunulmaksızın dağıtılmaktadır. Daha fazla detay için GNU General Public License dokümanına bakınız. \n\n Bu programla birlikte tarafınıza GNU General Public License dokümanının bir kopyası iletilmiş olmalıdır; aksi takdirde durumu, Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA adresine yazılı olarak bildiriniz. \n\n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">Teşekkürler:</string>
<string name="ad_thanks_0">YL\'me ♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">Çıkış</string>
<string name="preferences">Tercihler</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amatör Telsiz</string>
<string name="p_callsign">Çağrı işareti</string>
<string name="p_callsign_nossid">Çağrı işareti (SSID olmadan)</string>
@ -156,7 +158,6 @@
<string name="p_link">Bağlantı Türü</string>
<string name="p_link_entry">Link türünü seçin</string>
<string name="p_connsetup">Bağlantı Tercihleri</string>
<string name="p_connsetup_summary">Bağlantı yapılandırması</string>
<string name="p_connlog">Bağlantı kaydı</string>
<string name="p_connlog_summary">Durum çıktısı detaylarını kaydet</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">Konum Bilgi Kaynağı</string>
<string name="p_locsource_summary">El ile, Periyodik veya SmartBeaconing™</string>
<string name="p__location">Konum Ayarları</string>
<string name="p__location_summary">Konum bildirimleri gönderme için ayar</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ Yardım</string>
@ -331,7 +331,7 @@
Alp Sarıca https://launchpad.net/~alpsarica
Hüseyin Odabaş https://launchpad.net/~ta1df
Kudret EMRE https://launchpad.net/~kudretemre
Ozgur Karatas https://launchpad.net/~okaratas
Ozgur https://launchpad.net/~toorq
Recep Aydin Gulec https://launchpad.net/~ragulec
Uygar Demir Koç https://launchpad.net/~uygardemirkoc
zeugma https://launchpad.net/~sunder67</string>
@ -379,9 +379,9 @@
<string name="ssl_expire_in">Sertifikanızın %d gün içinde süresi dolacak!</string>
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<string name="profile_import_activity">Profil içe aktarma</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">İçe aktarmada hata: %s!</string>
<!-- (USB) Serial TNC settings -->
<string name="p_serial_baudrate">Baud Rate</string>

Wyświetl plik

@ -0,0 +1,407 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- APRSdroid strings.xml - this file contains strings which need to be translated -->
<resources>
<string name="app_name">APRSdroid</string>
<string name="app_prefs">Параметри APRSdroid</string>
<string name="app_map">Карта APRSdroid</string>
<string name="app_hub">Вузол APRSdroid</string>
<string name="app_log">Лог APRSdroid</string>
<string name="app_sta">Інформація про станцію</string>
<string name="app_messages">Повідомлення</string>
<string name="app_messages_clear">Очистити повідомлення</string>
<!-- APRSdroid activity -->
<string name="firstrun">Вам потрібно налаштувати APRSdroid за допомогою вашого позивного і пароля!</string>
<string name="wrongpasscode">Ваш пароль не збігається з вашим позивним!</string>
<string name="anon_warning">Без пароля ваші звіти не будуть розповсюджені!</string>
<string name="mininterval">Мінімальний час оновлення - 1 хвилина!</string>
<string name="singlelog">Надіслати позицію</string>
<string name="startlog">Почати відстеження</string>
<string name="stoplog">Закінчити відстеження</string>
<string name="empty_logview">Ви ще не надіслали та не отримали жодних пакетів.\n\n Натисніть кнопку \"Меню\", щоб надіслати один звіт або почати відстежувати вашу позицію.\n\n Ви також можете змінити параметри програми в меню.</string>
<!-- Maps activity -->
<string name="sta_lastreport">останній звіт %s</string>
<string name="map_track_call">Відстеження %s...</string>
<string name="map_track_unknown">Невідома позиція для %s!</string>
<string name="map_select">Виберіть станцію</string>
<string name="map_loading">Завантаження...</string>
<!-- StationInfo activity -->
<string name="sta_ssids">SSID станції</string>
<string name="sta_history">Історія станції</string>
<string name="sta_map">Карта</string>
<string name="sta_extmap">Зовнішня карта</string>
<string name="sta_aprsfi">aprs.fi</string>
<string name="sta_qrzcom">QRZ.com</string>
<!-- Conversations activity -->
<string name="msg_send_new">Надіслати повідомлення до...</string>
<string name="msg_message_text">Текст повідомлення</string>
<string name="msg_empty_list">Немає збережених розмов.</string>
<string name="msg_stored_offline">Повідомлення буде надіслано відразу після початку відстеження.</string>
<!-- Message activity -->
<string name="msg_from">Повідомлення від %s</string>
<string name="msg_to">Повідомлення дo %s</string>
<string name="msg_abort">Скасувати передачу</string>
<string name="msg_restart">Перезапустити передачу</string>
<string name="msg_type_rejected">відхилено</string>
<string name="msg_type_aborted">перервано</string>
<!-- AprsService -->
<string name="aprsservice">Послуга APRSdroid</string>
<string name="service_once">Одноразова послуга APRS: %1$s, %2$s.</string>
<string name="service_start">Розпочато послугу APRS: %1$s, %2$s.</string>
<string name="service_stop">Зупинено послугу APRS.</string>
<string name="service_no_location">Для правильної праці APRSdroid, потрібно ввімкнути GPS або мережеве місцезнаходження!</string>
<string name="service_sm_no_gps">SmartBeaconing™ вимагає GPS!</string>
<!-- service result codes -->
<string name="post_error">Помилка</string>
<string name="post_incmg">отримано</string>
<string name="post_info"/>
<string name="post_connecting">Підключення до %1$s:%2$d...</string>
<string name="post_reconnect">Зв\'язок втрачений. Повторне під\'єднання через %d секунд...</string>
<!-- first run dialog -->
<string name="fr_title">Ласкаво просимо до APRSdroid!</string>
<string name="fr_text">Це програмне забезпечення може використовуватися лише ліцензованими радіооператорами!</string>
<string name="fr_text2">You need to enter your callsign to use this software.
To forward your packets, an APRS-IS passcode is required as well.</string>
<!-- about dialog -->
<string name="ad_title">Про APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
</string>
<string name="ad_gpl">This program 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 2
of the License, or (at your option) any later version.
\n\n
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.
\n\n
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
\n\n
http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
</string>
<string name="ad_thanks">Подяка:</string>
<string name="ad_thanks_0">My YL ♥♥♥</string>
<string name="ad_thanks_1">Michael, DO3BOX: idea</string>
<string name="ad_thanks_2">Dirk, DB5OY: motivation and support</string>
<string name="ad_thanks_3">Bastian, DB1BM: AFSK implementation</string>
<string name="ad_thanks_4">Matti, OH2MQK and John, AB0OO: Java APRS</string>
<string name="ad_thanks_5">Sivan, 4X6IZ: AFSK demodulator, https://github.com/sivantoledo/javAX25</string>
<string name="ad_thanks_6">SmartBeaconing™ by HamHUD Nichetronix, LLC, http://hamhud.net</string>
<string name="ad_trans">\n\nПереклад:</string>
<string name="ad_homepage">Домашня сторінка</string>
<!-- map view -->
<string name="map_overlays">Накладки</string>
<string name="map_satellite">Супутник</string>
<string name="map_objects">Об\'єкти APRS</string>
<!-- map view -->
<string name="age">Показати останні...</string>
<string name="age_30">30 хвилин</string>
<string name="age_2h">2 години</string>
<string name="age_12h">12 годин</string>
<string name="age_1d">1 день</string>
<string name="age_2d">2 дні</string>
<!-- options menu -->
<string name="about">Про програму</string>
<string name="show_hub">Show Hub</string>
<string name="show_map">Показати карту</string>
<string name="show_log">Показати лог</string>
<string name="export_log">Експорт логу</string>
<string name="export_empty">Nothing to export</string>
<string name="clear_log">Очистити лог</string>
<string name="quit">Вихід</string>
<string name="preferences">Налаштування</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Аматорське радіо</string>
<string name="p_callsign">Позивний</string>
<string name="p_callsign_nossid">Позивний (без SSID)</string>
<string name="p_callsign_summary">Ваш радіоаматорський позивний</string>
<string name="p_callsign_entry">Введіть свій позивний</string>
<string name="p_passcode">Пароль APRS-IS</string>
<string name="p_passcode_summary">APRS-IS validation passcode</string>
<string name="p_passcode_entry">Введіть пароль для вашого позивного</string>
<string name="p_passreq">Request Passcode</string>
<string name="p_passreq_summary">Отримати пароль доступу APRS-IS онлайн</string>
<string name="p__aprs">Налаштування APRS</string>
<string name="p_ssid">SSID</string>
<string name="p_ssid_summary">Тип станції (1..15; 9=Мобільна, 10=APRS-IS)</string>
<string name="p_ssid_entry">Введіть SSID для вашої станції</string>
<!-- array of station types (SSID) -->
<string-array name="p_ssid_e">
<item>(пусто) Primary Station</item>
<item>1: Загальна додаткова станція</item>
<item>2: Загальна додаткова станція</item>
<item>3: Загальна додаткова станція</item>
<item>4: Загальна додаткова станція</item>
<item>5: Інша мережа (D-Star, 3G)</item>
<item>6: Супутник</item>
<item>7: Handheld radio</item>
<item>8: Човен / корабель</item>
<item>9: Мобільна станція</item>
<item>10: APRS-IS (без радіо)</item>
<item>11: Повітряна куля, літак, космічний апарат</item>
<item>12: APRStt, DTMF, ... (в один бік)</item>
<item>13: Метеорологічна станція</item>
<item>14: Вантажний транспортний засіб</item>
<item>15: Загальна додаткова станція</item>
</string-array>
<string name="p_symbol">Символ APRS</string>
<string name="p_symbol_summary">Ваш символ для відображення на карті</string>
<string name="p_symbol_overlay">Накладка:</string>
<string name="p_symbol_result">Результат:</string>
<string name="p_frequency">Звукова частота</string>
<string name="p_frequency_summary">Ваша звукова частота [МГц]</string>
<string name="p_status">Поле коментарія</string>
<string name="p_status_summary">Текст після координат</string>
<string name="p_status_entry">Введіть коментар свого маяка</string>
<string name="p__connection">З\'єднання APRS</string>
<string name="p_conntype">Протокол з\'єднання</string>
<string name="p_conntype_entry">Виберіть протокол з\'єднання</string>
<string name="p_link">Тип з\'єднання</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Параметри з\'єднання</string>
<string name="p_connlog">Реєстрація з\'єднання</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
<string name="p_conn_aprsis">Інтернет (APRS-IS)</string>
<string name="p_conn_afsk">Аудіо (AFSK)</string>
<string name="p_conn_kiss">TNC (KISS)</string>
<string name="p_conn_tnc2">TNC (TNC2 прямим текстом)</string>
<string name="p_conn_kwd">Kenwood (NMEA waypoint)</string>
<string name="p_conn_kwd_info">Допомога налаштування Kenwood</string>
<string name="p_conn_kwd_gps">Використовувати Android GPS</string>
<string name="p_conn_kwd_gps_summary">Передавати NMEA-повідомлення до радіо</string>
<string name="p_conn_kwd_gps_debug">Відобразити GPS у логах</string>
<string name="p_conn_kwd_gps_debug_summary">Показати зміст NMEA в APRSdroid</string>
<!-- array of APRS-IS protocols -->
<string name="p_aprsis_tcp">TCP-з\'єднання</string>
<string name="p_aprsis_http">HTTP POST (лише відправка)</string>
<string name="p_aprsis_udp">UDP (лише відправка)</string>
<!-- array of TNC link types -->
<string name="p_link_bt">Bluetooth SPP</string>
<string name="p_link_tcpip">Протокол TCP/IP</string>
<string name="p_link_usb">Послідовний USB</string>
<!-- array of location sources -->
<string name="p_source_manual">Позиція вручну</string>
<string name="p_source_periodic">Періодична GPS/мережева позиція</string>
<string name="p_source_smart">Позиція SmartBeaconing™</string>
<!-- manual position -->
<string name="p_source_lat">Широта</string>
<string name="p_source_lon">Довгота</string>
<string name="p_source_coord">Координати</string>
<string name="p_source_get_last">Використати останню позицію GPS</string>
<string name="p_source_auto">Автоматична публікація</string>
<string name="p_source_auto_summary">Виконати періодичну публікацію позиції</string>
<!-- privacy settings -->
<string name="p_privacy">Приватність позиції</string>
<string name="p_privacy_summary">Розмивання позиції та інше</string>
<string name="p_priv_ambiguity">Розмивання позиції</string>
<string name="p_priv_ambiguity_summary">Зменшена точність звіту про власні позиції</string>
<string name="p_ambiguity_off">Off (DD° MM.mm\')</string>
<string name="p_ambiguity_ddmmm">1 (DD° MM.m\')</string>
<string name="p_ambiguity_ddmm">2 (DD° MM\')</string>
<string name="p_ambiguity_ddm">3 (DD° Mx\')</string>
<string name="p_ambiguity_dd">4 (DD°)</string>
<string name="p_priv_spdbear">Надіслати швидкість &amp; пеленг</string>
<string name="p_priv_spdbear_summary">Додати швидкість та пеленг до звітів про місцезнаходження</string>
<string name="p_priv_altitude">Надсилати висоту</string>
<string name="p_priv_altitude_summary">Додати висоту до звітів про місцезнаходження</string>
<!-- connection type properties -->
<string name="p_host">Сервер</string>
<string name="p_host_summary">APRS-IS server (port 8080) to send beacons</string>
<string name="p_host_entry">Enter the APRS-IS server hostname</string>
<string name="p_host_hint">host:port</string>
<string name="p__position">Звіти про позицію</string>
<string name="p_locsource">Джерело розташування</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Параметри місцезнаходження</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">допомога SmartBeaconing™</string>
<string name="p_sb_fast_speed">Висока швидкість [км/год]</string>
<string name="p_sb_fast_speed_summary">Мінімальна швидкість для швидкого оновлення позиції</string>
<string name="p_sb_fast_rate">Fast Rate [s]</string>
<string name="p_sb_fast_rate_summary">Beacon rate at fast speed</string>
<string name="p_sb_slow_speed">Slow Speed [km/h]</string>
<string name="p_sb_slow_speed_summary">Maximum speed for slow position updates</string>
<string name="p_sb_slow_rate">Slow Rate [s]</string>
<string name="p_sb_slow_rate_summary">Beacon rate at slow speed</string>
<!-- corner pegging should not be translated -->
<string name="p_corner_pegging">Corner Pegging</string>
<string name="p_cp_turn_time">Min Turn Time [s]</string>
<string name="p_cp_turn_time_summary">Minimum beacon rate when changing direction</string>
<string name="p_cp_turn_angle">Min Turn Angle [°]</string>
<string name="p_cp_turn_angle_summary">Minimum angle at high speed</string>
<string name="p_cp_turn_slope">Turn Slope</string>
<string name="p_cp_turn_slope_summary">Influence of speed on the minimum angle</string>
<string name="p_interval">Minimum update time</string>
<string name="p_interval_summary">Minutes between beacon transmissions</string>
<string name="p_interval_entry">Enter the update interval [min]</string>
<string name="p_distance">Minimum update distance</string>
<string name="p_distance_summary">Kilometers before beacon transmission (set to 0 for time-only)</string>
<string name="p_distance_entry">Enter the update distance [km]</string>
<string name="p_speedbrg">Await speed &amp; bearing</string>
<string name="p_speedbrg_summary">Keep GPS on longer to get more precise data</string>
<string name="p_netloc">Use network location</string>
<string name="p_netloc_summary">Acquire position from the cellular network</string>
<string name="p_gps">Точність GPS</string>
<string name="p_gps_summary">Використання батареї / якість позиції</string>
<string name="p_gps_entry">Please set the GPS Precision</string>
<!-- array of GPS precisions -->
<string name="p_gps_always">Висока (завжди включений)</string>
<string name="p_gps_med">Середня</string>
<string name="p_gps_low">Низька</string>
<string name="p_keepscreen">ран завжди включений</string>
<string name="p_keepscreen_summary">Do not turn off screen when APRSdroid is in the foreground</string>
<!-- messaging -->
<string name="p__display">Display and Notifications</string>
<string name="p__notification">Сповіщення</string>
<string name="p__notification_summary">Alert for messages and position reports</string>
<string name="p_msg">Вхідні повідомлення</string>
<string name="p_msg_led">Сповіщення LED</string>
<string name="p_msg_led_on">Сповіщення LED увімкнено</string>
<string name="p_msg_led_off">Сповіщення LED вимкнено</string>
<string name="p_msg_vibr">Вібрація</string>
<string name="p_msg_vibr_on">Вібраційні сповіщення увімкнено</string>
<string name="p_msg_vibr_off">Вібраційні сповіщення вимкнено</string>
<string name="p_msg_ring">Мелодія</string>
<string name="p_msg_ring_summary">Звук вхідних повідомлень</string>
<string name="p_pos">Звіти про власні позиції</string>
<string name="p_pos_ring">Мелодія</string>
<string name="p_pos_ring_summary">Звук відправки повідомлень про позицію</string>
<string name="p_dgp">Digipeated Own Packets</string>
<string name="p_dgp_ring">Мелодія</string>
<string name="p_dgp_ring_summary">Tone for digipeated packets</string>
<string name="got_digipeated">Digipeated by %1$s: %2$s</string>
<string name="status_linkoff">Error: %s</string>
<string name="status_linkon">Connected: %s</string>
<!-- AFSK settings -->
<string name="p_aprs_path">APRS digi path</string>
<string name="p_aprs_path_hint">hop 1, hop 2, ...</string>
<string name="p_aprs_path_summary">Sequence of digipeaters</string>
<string name="p_aprs_path_entry">Enter the comma separated digi path</string>
<string name="p_afsk_prefix">Frame Sync Prefix</string>
<string name="p_afsk_prefix_summary">No-Op Preamble (e.g. for VOX control)</string>
<string name="p_afsk_prefix_entry">Enter the prefix time [ms]</string>
<string name="p_afsk_hqdemod">Високоякісний демодулятор</string>
<string name="p_afsk_hqdemod_summary">javAX25lib: 800 MHz CPU required</string>
<string name="p_afsk_btsco">Гарнітура Bluetooth</string>
<string name="p_afsk_btsco_summary">Використовуйте гарнітуру Bluetooth (SCO) для AFSK</string>
<string name="p_afsk_output">Аудіовихід</string>
<string-array name="p_afsk_out_e">
<item>Voice Call</item>
<item>Мелодія</item>
<item>Музика</item>
<item>Будильник</item>
</string-array>
<!-- TCP server settings -->
<string name="p_tcp_server_summary">APRS-IS TCP server (port 14580) to contact</string>
<string name="p_filterdist">Радіус сусідів</string>
<string name="p_filterdist_summary">Отримувати пакети від станцій у цьому радіусі</string>
<string name="p_filterdist_entry">Radius around you to monitor for packets [km]</string>
<string name="p_filter">Фільтр пакетів</string>
<string name="p_filter_hint">b/BUDDY o/OBJECT ...</string>
<string name="p_filter_summary">Фільтр вхідних пакетів</string>
<string name="p_filter_entry">Введіть фільтр вхідних пакетів</string>
<string name="p_filterhelp">Довідка про фільтр повідомлень</string>
<string name="p_filterhelp_summary">Online reference for APRS-IS filters</string>
<string name="p_sotimeout">Тайм-аут TCP-сокету</string>
<string name="p_sotimeout_summary">Час до скидання з\'єднання</string>
<string name="p_sotimeout_entry">Timeout value in seconds (0 = disable)</string>
<string name="p_mapfile">Назва файлу карти</string>
<string name="p_mapfile_summary">Файл картиMapsForge для APRSdroid</string>
<string name="p_mapfile_choose">Виберіть файл карти</string>
<string name="mapfile_error">Error loading map file %s!</string>
<string name="p_themefile">Назва файлу теми</string>
<string name="p_themefile_summary">MapsForge rendering theme (XML)</string>
<string name="p_themefile_choose">Choose theme file</string>
<string name="themefile_error">Error loading theme file %s!</string>
<string name="translator_credits">Launchpad Contributions:
Michal SQ2MO https://launchpad.net/~sq2mo</string>
<!-- Bluetooth TNC settings -->
<string name="p_bt_client">Режим клієнта</string>
<string name="p_bt_client_summary">APRSdroid establishes the connection (Keep this on!)</string>
<string name="p_bt_tnc_device">TNC Bluetooth Device</string>
<string name="p_bt_tnc_device_summary">Choose your TNC from paired devices</string>
<string name="p_bt_tnc_device_entry">Choose device</string>
<string name="p_bt_channel">Channel</string>
<string name="p_bt_channel_summary">Bluetooth channel on the TNC</string>
<string name="p_bt_channel_entry">Enter channel (most often: "1"; empty for SPP)</string>
<string name="p_tnc_init">TNC init string</string>
<string name="p_tnc_init_summary">Initialization commands for TNC (URL-encoded, Esc=%%1B, "%%"=%%25)</string>
<string name="p_tnc_init_msg" formatted="false">URL-encoded string (Esc=%1B, \"%\"=%25), delay after each line:</string>
<string name="p_tnc_delay">TNC init delay</string>
<string name="p_tnc_delay_summary">Time to wait after each line</string>
<string name="p_tnc_delay_entry">TNC init delay [ms]</string>
<string name="p_bt_prefs">Bluetooth settings</string>
<string name="p_bt_prefs_summary">Enable Bluetooth, pair devices...</string>
<string name="bt_error_unsupported">Bluetooth is not supported!</string>
<string name="bt_error_disabled">Please enable Bluetooth!</string>
<string name="bt_error_no_tnc">Please configure a Bluetooth TNC!</string>
<string name="bt_error_connect">Could not connect to %s! Please turn on the device and close other Bluetooth connections.</string>
<string name="afsk_info_sco_req">Requesting bluetooth SCO link...</string>
<string name="afsk_info_sco_est">Bluetooth SCO link established.</string>
<!-- TCP/IP TNC settings -->
<string name="p_tcptnc_server_summary">KISS TCP server to contact</string>
<string name="p_tcptnc_entry">Enter the KISS server hostname</string>
<!-- SSL strings -->
<string name="ssl_import_activity">SSL certificate import</string>
<string name="ssl_import_password">Please enter the certificate import password:</string>
<string name="ssl_no_keyfile">No certificate for %s! Using passcode authentication.</string>
<string name="ssl_import_ok">Imported certificate for %s.</string>
<string name="ssl_import_error">Error importing certificate: %s!</string>
<string name="ssl_expired">Your certificate has expired!</string>
<string name="ssl_expire_in">Your certificate will expire in %d days!</string>
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->
<string name="p_serial_baudrate">Швидкість передачі</string>
<string name="p_serial_baudrate_summary">Швидкість передачі даних послідовного порту</string>
<!-- (USB) Serial Errors -->
<string name="p_serial_unsupported">Послідовний порт не підтримується!</string>
<string name="p_serial_noperm">Немає дозволу на USB-пристрій!</string>
<string name="p_serial_notfound">Не знайдено пристрою USB!</string>
</resources>

Wyświetl plik

@ -70,7 +70,7 @@
<!-- about dialog -->
<string name="ad_title">关于 APRSdroid v%s</string>
<string name="ad_copyright">版权所有©2009-2015 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS®是Bob Bruninga (WB4APR)的注册商标</string>
<string name="ad_copyright">版权所有©2009-2018 Georg Lukas (DO1GL)\n http://aprsdroid.org \n\n APRS®是Bob Bruninga (WB4APR)的注册商标</string>
<string name="ad_gpl">这是一个免费软件;你可以在GNU 通用公共授权(或第二版授权)的条款下进行修改. \n\n 希望这个程序的发布是有用的,但是它是没有任何承诺性担保或保证的甚至没有商业或其它特定目的而隐含的担保。有关详细信息请参阅GNU通用公共许可证。 \n\n 您应该已经收到随着这项计划的GNU通用公共许可证的副本如果没有写信给自由软件基金会,51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \n\n http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</string>
<string name="ad_thanks">感谢:</string>
<string name="ad_thanks_0">My YL ♥♥♥</string>
@ -108,6 +108,8 @@
<string name="quit">退出</string>
<string name="preferences">偏好设置</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">业余无线电</string>
<string name="p_callsign">呼号</string>
<string name="p_callsign_nossid">呼号(无后缀符号)</string>
@ -156,7 +158,6 @@
<string name="p_link">连接类型</string>
<string name="p_link_entry">选择链接类型</string>
<string name="p_connsetup">连接首选项</string>
<string name="p_connsetup_summary">连接配置</string>
<string name="p_connlog">连接记录中</string>
<string name="p_connlog_summary">记录详细登陆输出信息</string>
<!-- array of connection types -->
@ -215,7 +216,6 @@
<string name="p_locsource">定位源</string>
<string name="p_locsource_summary">手动,定时或智能信标™</string>
<string name="p__location">位置设置</string>
<string name="p__location_summary">位置报告配置</string>
<string name="p_smartbeaconing">SmartBeaconing™(智慧信标™)</string>
<string name="p_sb_help">智能信标™ 帮助</string>
@ -317,15 +317,15 @@
<string name="p_sotimeout_summary">重置连接前的时间</string>
<string name="p_sotimeout_entry">超时值(0为关闭单位:秒)</string>
<string name="p_mapfile">Map file name</string>
<string name="p_mapfile_summary">MapsForge map file for APRSdroid</string>
<string name="p_mapfile_choose">Choose map file</string>
<string name="mapfile_error">Error loading map file %s!</string>
<string name="p_mapfile">地图文件名</string>
<string name="p_mapfile_summary">APRSdroid的MapsForge地图文件</string>
<string name="p_mapfile_choose">选择地图文件</string>
<string name="mapfile_error">加载地图文件s时出错!</string>
<string name="p_themefile">Theme file name</string>
<string name="p_themefile_summary">MapsForge rendering theme (XML)</string>
<string name="p_themefile_choose">Choose theme file</string>
<string name="themefile_error">Error loading theme file %s!</string>
<string name="p_themefile">主题文件名</string>
<string name="p_themefile_summary">MapsForge渲染主题(XML)</string>
<string name="p_themefile_choose">选择主题文件</string>
<string name="themefile_error">加载主题文件s时出错!</string>
<string name="translator_credits">Launchpad Contributions:
BG5DNS https://launchpad.net/~zihe
@ -378,7 +378,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -74,7 +74,7 @@
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -131,6 +131,8 @@
<string name="quit">Quit</string>
<string name="preferences">Preferences</string>
<!-- preferences -->
<string name="profile_load">Load profile...</string>
<string name="profile_export">Export profile...</string>
<string name="p__ham">Amateur Radio</string>
<string name="p_callsign">Callsign</string>
<string name="p_callsign_nossid">Callsign (without SSID)</string>
@ -179,7 +181,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -238,7 +239,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -396,7 +396,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -74,7 +74,7 @@
<!-- about dialog -->
<string name="ad_title">About APRSdroid v%s</string>
<string name="ad_copyright">Copyright © 2009-2015 Georg Lukas (DO1GL)\n
<string name="ad_copyright">Copyright © 2009-2018 Georg Lukas (DO1GL)\n
http://aprsdroid.org
\n\n
APRS® is a registered trademark of Bob Bruninga (WB4APR)
@ -181,7 +181,6 @@
<string name="p_link">Connection Type</string>
<string name="p_link_entry">Choose the link type</string>
<string name="p_connsetup">Connection Preferences</string>
<string name="p_connsetup_summary">Configuration of Connection</string>
<string name="p_connlog">Connection Logging</string>
<string name="p_connlog_summary">Verbose status output in Log</string>
<!-- array of connection types -->
@ -240,7 +239,6 @@
<string name="p_locsource">Location Source</string>
<string name="p_locsource_summary">Manual, Periodic or SmartBeaconing™</string>
<string name="p__location">Location Settings</string>
<string name="p__location_summary">Configuration for sending position reports</string>
<string name="p_smartbeaconing">SmartBeaconing™</string>
<string name="p_sb_help">SmartBeaconing™ help</string>
@ -398,7 +396,7 @@
<!-- Config import -->
<string name="profile_import_activity">Profile import</string>
<string name="profile_import_done">Import successful!</string>
<string name="profile_import_done">Imported profile: %s</string>
<string name="profile_import_error">Error importing profile: %s!</string>
<!-- (USB) Serial TNC settings -->

Wyświetl plik

@ -9,6 +9,7 @@
android:key="callsign"
android:inputType="textCapCharacters"
android:digits="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
android:maxLength="6"
android:title="@string/p_callsign_nossid"
android:summary="@string/p_callsign_summary"
android:hint="@string/p_callsign_nossid"
@ -38,8 +39,8 @@
android:title="@string/p__connection">
<PreferenceScreen
android:title="@string/p_connsetup"
android:summary="@string/p_connsetup_summary">
android:key="p_connsetup"
android:title="@string/p_connsetup">
<intent android:action="android.intent.action.MAIN"
android:targetPackage="org.aprsdroid.app"
@ -51,6 +52,7 @@
<PreferenceCategory
android:title="@string/p__position">
<PreferenceScreen
android:key="p_symbol"
android:title="@string/p_symbol"
android:summary="@string/p_symbol_summary" >
@ -78,8 +80,8 @@
<!-- sub-screen "Position Reports" -->
<PreferenceScreen
android:title="@string/p__location"
android:summary="@string/p__location_summary">
android:key="p_location"
android:title="@string/p__location">
<intent android:action="android.intent.action.MAIN"
android:targetPackage="org.aprsdroid.app"

Wyświetl plik

@ -38,7 +38,7 @@ object AprsPacket {
def formatAltitude(location : Location) : String = {
if (location.hasAltitude)
"/A=%06d".format(m2ft(location.getAltitude))
"/A=%06d".formatLocal(null, m2ft(location.getAltitude))
else
""
}
@ -47,7 +47,7 @@ object AprsPacket {
// only report speeds above 2m/s (7.2km/h)
if (location.hasSpeed && location.hasBearing)
// && location.getSpeed > 2)
"%03d/%03d".format(location.getBearing.asInstanceOf[Int],
"%03d/%03d".formatLocal(null, location.getBearing.asInstanceOf[Int],
mps2kt(location.getSpeed))
else
""

Wyświetl plik

@ -16,6 +16,7 @@ object AprsService {
val SERVICE = PACKAGE + ".SERVICE"
val SERVICE_ONCE = PACKAGE + ".ONCE"
val SERVICE_SEND_PACKET = PACKAGE + ".SEND_PACKET"
val SERVICE_FREQUENCY = PACKAGE + ".FREQUENCY"
val SERVICE_STOP = PACKAGE + ".SERVICE_STOP"
// event intents
val SERVICE_STARTED = PACKAGE + ".SERVICE_STARTED"
@ -122,8 +123,23 @@ class AprsService extends Service {
data_field)
sendPacket(p)
return
} else
if (i.getAction() == SERVICE_FREQUENCY) {
val data_field = i.getStringExtra("frequency")
if (data_field == null) {
Log.d(TAG, "FREQUENCY ignored, 'frequency' extra is empty.")
return
}
val freq_cleaned = data_field.replace("MHz", "").trim
val freq = try { freq_cleaned.toFloat; freq_cleaned } catch { case _ : Throwable => "" }
if (prefs.getString("frequency", null) != freq) {
prefs.set("frequency", freq)
if (!running) return
// XXX: fall through into SERVICE_ONCE
} else return
}
// display notification (even though we are not actually started yet,
// but we need this to prevent error message reordering)
val toastString = if (i.getAction() == SERVICE_ONCE) {
@ -140,10 +156,8 @@ class AprsService extends Service {
// only show toast on newly started service
if (toastString != null)
showToast(toastString.format(
prefs.getListItemName("loc_source", LocationSource.DEFAULT_CONNTYPE,
R.array.p_locsource_ev, R.array.p_locsource_e),
prefs.getListItemName("proto", AprsBackend.DEFAULT_CONNTYPE,
R.array.p_conntype_ev, R.array.p_conntype_e)))
prefs.getLocationSourceName(),
prefs.getBackendName()))
val callssid = prefs.getCallSsid()
ServiceNotifier.instance.start(this, callssid)

Wyświetl plik

@ -9,7 +9,7 @@ object Benchmark {
block
} finally {
val exectime = System.currentTimeMillis - start
Log.d(tag, "exectuion time: %.3f s".format(exectime / 1000.0))
Log.d(tag, "exectuion time: %.3f s".formatLocal(null, exectime / 1000.0))
}
}
}

Wyświetl plik

@ -2,8 +2,11 @@ package de.duenndns;
import android.content.Context;
import android.preference.EditTextPreference;
import android.text.InputFilter;
import android.text.InputType;
import android.util.AttributeSet;
import android.view.View;
import android.widget.EditText;
public class EditTextPreferenceWithValue extends EditTextPreference {
CharSequence mSummary;
@ -16,6 +19,23 @@ public class EditTextPreferenceWithValue extends EditTextPreference {
super(context);
}
private void fixupCaps() {
EditText et = getEditText();
if ((et.getInputType() & InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS) != 0) {
// append AllCaps filter
InputFilter[] filters = et.getFilters();
InputFilter[] newFilters = new InputFilter[filters.length + 1];
System.arraycopy(filters, 0, newFilters, 0, filters.length);
newFilters[filters.length] = new InputFilter.AllCaps();
et.setFilters(newFilters);
}
}
@Override
protected void onBindDialogView(View view) {
super.onBindDialogView(view);
fixupCaps();
}
private void setSummaryToText(String text) {
if (mSummary == null)
mSummary = getSummary();

Wyświetl plik

@ -23,6 +23,8 @@ class KeyfileImportActivity extends Activity {
val CALL_RE = ".*CALLSIGN=([0-9A-Za-z]+).*".r
lazy val db = StorageDatabase.open(this)
override def onCreate(savedInstanceState: Bundle) {
super.onCreate(savedInstanceState)
Log.d(TAG, "created: " + getIntent())
@ -79,11 +81,18 @@ class KeyfileImportActivity extends Activity {
PreferenceManager.getDefaultSharedPreferences(this)
.edit().putString("callsign", callsign).commit()
Toast.makeText(this, getString(R.string.ssl_import_ok, callsign), Toast.LENGTH_SHORT).show()
val msg = getString(R.string.ssl_import_ok, callsign)
Toast.makeText(this, msg, Toast.LENGTH_SHORT).show()
db.addPost(System.currentTimeMillis(), StorageDatabase.Post.TYPE_INFO,
getString(R.string.post_info), msg)
startActivity(new Intent(this, classOf[LogActivity]))
}
} catch {
case e : Exception =>
Toast.makeText(this, getString(R.string.ssl_import_error, e.getMessage()), Toast.LENGTH_LONG).show()
val errmsg = getString(R.string.ssl_import_error, e.getMessage())
Toast.makeText(this, errmsg, Toast.LENGTH_LONG).show()
db.addPost(System.currentTimeMillis(), StorageDatabase.Post.TYPE_ERROR,
getString(R.string.post_error), errmsg)
e.printStackTrace()
}
finish()

Wyświetl plik

@ -17,6 +17,9 @@ import java.util.Date
import org.json.JSONObject
class PrefsAct extends PreferenceActivity {
lazy val db = StorageDatabase.open(this)
lazy val prefs = new PrefsWrapper(this)
def exportPrefs() {
val filename = "profile-%s.aprs".format(new SimpleDateFormat("yyyyMMdd-HHmm").format(new Date()))
val file = new File(Environment.getExternalStorageDirectory(), filename)
@ -53,6 +56,12 @@ class PrefsAct extends PreferenceActivity {
fileChooserPreference("mapfile", 123456, R.string.p_mapfile_choose)
fileChooserPreference("themefile", 123457, R.string.p_themefile_choose)
}
override def onResume() {
super.onResume()
findPreference("p_connsetup").setSummary(prefs.getBackendName())
findPreference("p_location").setSummary(prefs.getLocationSourceName())
findPreference("p_symbol").setSummary(getString(R.string.p_symbol_summary) + ": " + prefs.getString("symbol", "/$"))
}
def resolveContentUri(uri : Uri) = {
val Array(storage, path) = uri.getPath().replace("/document/", "").split(":", 2)
@ -89,14 +98,15 @@ class PrefsAct extends PreferenceActivity {
if (file != null) {
PreferenceManager.getDefaultSharedPreferences(this)
.edit().putString(pref_name, file).commit()
android.widget.Toast.makeText(this, file,
android.widget.Toast.LENGTH_SHORT).show()
Toast.makeText(this, file, Toast.LENGTH_SHORT).show()
// reload prefs
finish()
startActivity(getIntent())
} else {
android.widget.Toast.makeText(this, getString(error_id, data.getDataString()),
android.widget.Toast.LENGTH_SHORT).show()
val errmsg = getString(error_id, data.getDataString())
Toast.makeText(this, errmsg, Toast.LENGTH_SHORT).show()
db.addPost(System.currentTimeMillis(), StorageDatabase.Post.TYPE_ERROR,
getString(R.string.post_error), errmsg)
}
}
@ -123,7 +133,8 @@ class PrefsAct extends PreferenceActivity {
mi.getItemId match {
case R.id.profile_load =>
val get_file = new Intent(Intent.ACTION_GET_CONTENT).setType("*/*")
startActivityForResult(Intent.createChooser(get_file,
// TODO: use MaterialFilePicker().withFilter() for *.aprs
startActivityForResult(Intent.createChooser(get_file,
getString(R.string.profile_import_activity)), 123458)
true
case R.id.profile_export =>

Wyświetl plik

@ -23,7 +23,7 @@ class PrefsWrapper(val context : Context) {
}
// return commonly used prefs
def getCallsign() = prefs.getString("callsign", "").trim().toUpperCase()
def getCallsign() = prefs.getString("callsign", "").trim().slice(0, 6).toUpperCase()
def getPasscode() = prefs.getString("passcode", "") match {
case "" => "-1"
@ -41,6 +41,10 @@ class PrefsWrapper(val context : Context) {
prefs.edit().putBoolean(name, new_val).commit()
new_val
}
def set(name : String, new_val : String) = {
prefs.edit().putString(name, new_val).commit()
new_val
}
def getShowObjects() = prefs.getBoolean("show_objects", true)
def getShowSatellite() = prefs.getBoolean("show_satellite", false)
@ -61,6 +65,20 @@ class PrefsWrapper(val context : Context) {
else
context.getResources().getStringArray(names)(id)
}
def getLocationSourceName() = {
getListItemName("loc_source", LocationSource.DEFAULT_CONNTYPE,
R.array.p_locsource_ev, R.array.p_locsource_e)
}
def getBackendName() = {
val proto = getListItemName("proto", AprsBackend.DEFAULT_CONNTYPE,
R.array.p_conntype_ev, R.array.p_conntype_e)
val link = AprsBackend.defaultProtoInfo(this).link
link match {
case "aprsis" => "%s, %s".format(proto, getListItemName(link, "tcp", R.array.p_aprsis_ev, R.array.p_aprsis_e))
case "link" => "%s, %s".format(proto, getListItemName(link, "tcp", R.array.p_link_ev, R.array.p_link_e))
case _ => proto
}
}
// this is actually a hack!
def getVersion() = context.getString(R.string.build_version).split(" ").take(2).mkString(" ")

Wyświetl plik

@ -18,6 +18,8 @@ import scala.collection.JavaConversions._ // for enumeration of config items
class ProfileImportActivity extends Activity {
val TAG = "APRSdroid.ProfileImport"
lazy val db = StorageDatabase.open(this)
override def onCreate(savedInstanceState: Bundle) {
super.onCreate(savedInstanceState)
Log.d(TAG, "created: " + getIntent())
@ -46,11 +48,18 @@ class ProfileImportActivity extends Activity {
}
}
prefsedit.commit()
Toast.makeText(this, R.string.profile_import_done, Toast.LENGTH_SHORT).show()
val msg = getString(R.string.profile_import_done, getIntent.getData().getPath())
Toast.makeText(this, msg, Toast.LENGTH_SHORT).show()
db.addPost(System.currentTimeMillis(), StorageDatabase.Post.TYPE_INFO,
getString(R.string.profile_import_activity), msg)
startActivity(new Intent(this, classOf[LogActivity]))
} catch {
case e : Exception =>
Toast.makeText(this, getString(R.string.profile_import_error, e.getMessage()), Toast.LENGTH_LONG).show()
e.printStackTrace()
val errmsg = getString(R.string.profile_import_error, e.getMessage())
Toast.makeText(this, errmsg, Toast.LENGTH_LONG).show()
db.addPost(System.currentTimeMillis(), StorageDatabase.Post.TYPE_ERROR,
getString(R.string.profile_import_activity), errmsg)
e.printStackTrace()
}
finish()
}

Wyświetl plik

@ -243,7 +243,7 @@ class StorageDatabase(context : Context) extends
cv.put(SPEED, cse.getSpeed().asInstanceOf[java.lang.Integer])
cv.put(COURSE, cse.getCourse().asInstanceOf[java.lang.Integer])
}
Log.d(TAG, "got %s(%d, %d)%s -> %s".format(call, lat, lon, sym, comment))
Log.d(TAG, "got %s(%d, %d)%s -> %s".formatLocal(null, call, lat, lon, sym, comment))
// replace the full station info in stations table
getWritableDatabase().replaceOrThrow(TABLE, CALL, cv)
}
@ -284,7 +284,7 @@ class StorageDatabase(context : Context) extends
}
def getRectStations(lat1 : Int, lon1 : Int, lat2 : Int, lon2 : Int, limit : String) : Cursor = {
Log.d(TAG, "StorageDatabase.getRectStations: %d,%d - %d,%d".format(lat1, lon1, lat2, lon2))
Log.d(TAG, "StorageDatabase.getRectStations: %d,%d - %d,%d".formatLocal(null, lat1, lon1, lat2, lon2))
// check for areas overflowing between +180 and -180 degrees
val QUERY = if (lon1 <= lon2) "LAT >= ? AND LAT <= ? AND LON >= ? AND LON <= ?"
else "LAT >= ? AND LAT <= ? AND (LON <= ? OR LON >= ?)"
@ -311,9 +311,9 @@ class StorageDatabase(context : Context) extends
def getNeighbors(mycall : String, lat : Int, lon : Int, ts : Long, limit : String) : Cursor = {
// calculate latitude correction
val corr = (cos(Pi*lat/180000000.0)*cos(Pi*lat/180000000.0)*100).toInt
//Log.d(TAG, "getNeighbors: correcting by %d".format(corr))
//Log.d(TAG, "getNeighbors: correcting by %d".formatLocal(null, corr))
// add a distance column to the query
val newcols = Station.COLUMNS :+ Station.COL_DIST.format(lat, lat, lon, lon, corr)
val newcols = Station.COLUMNS :+ Station.COL_DIST.formatLocal(null, lat, lat, lon, lon, corr)
getReadableDatabase().query(Station.TABLE, newcols,
"ts > ? or call = ?", Array(ts.toString, mycall),
null, null, "dist", limit)
@ -322,9 +322,9 @@ class StorageDatabase(context : Context) extends
def getNeighborsLike(call : String, lat : Int, lon : Int, ts : Long, limit : String) : Cursor = {
// calculate latitude correction
val corr = (cos(Pi*lat/180000000.0)*cos(Pi*lat/180000000.0)*100).toInt
Log.d(TAG, "getNeighborsLike: correcting by %d".format(corr))
Log.d(TAG, "getNeighborsLike: correcting by %d".formatLocal(null, corr))
// add a distance column to the query
val newcols = Station.COLUMNS :+ Station.COL_DIST.format(lat, lat, lon, lon, corr)
val newcols = Station.COLUMNS :+ Station.COL_DIST.formatLocal(null, lat, lat, lon, lon, corr)
getReadableDatabase().query(Station.TABLE, newcols,
"call like ?", Array(call),
null, null, "dist", limit)
@ -425,7 +425,7 @@ class StorageDatabase(context : Context) extends
val result = if (c.getCount() == 0)
0
else c.getInt(0) + 1
Log.d(TAG, "createMsgId(%s) = %d".format(call, result))
Log.d(TAG, "createMsgId(%s) = %d".formatLocal(null, call, result))
c.close()
result
}