1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-09-01 03:55:47 +02:00

Fix typo in GLONASS

This commit is contained in:
José Rebelo 2024-08-06 20:54:53 +01:00
parent a96432a8a3
commit 14478f89ac
4 changed files with 5 additions and 5 deletions

View File

@ -33,7 +33,7 @@ public class GpsCapability {
LOW_POWER_GPS,
GPS,
GPS_BDS,
GPS_GNOLASS,
GPS_GLONASS,
GPS_GALILEO,
ALL_SATELLITES
}

View File

@ -1781,7 +1781,7 @@ public class ZeppOsConfigService extends AbstractZeppOsService {
put((byte) 0x00, GpsCapability.Combination.LOW_POWER_GPS);
put((byte) 0x01, GpsCapability.Combination.GPS);
put((byte) 0x02, GpsCapability.Combination.GPS_BDS);
put((byte) 0x03, GpsCapability.Combination.GPS_GNOLASS);
put((byte) 0x03, GpsCapability.Combination.GPS_GLONASS);
put((byte) 0x04, GpsCapability.Combination.GPS_GALILEO);
put((byte) 0x05, GpsCapability.Combination.ALL_SATELLITES);
}};

View File

@ -758,7 +758,7 @@
<item>@string/low_power_gps</item>
<item>@string/gps</item>
<item>@string/gps_bds</item>
<item>@string/gps_gnolass</item>
<item>@string/gps_glonass</item>
<item>@string/gps_galileo</item>
<item>@string/all_satellites</item>
</string-array>
@ -766,7 +766,7 @@
<item>low_power_gps</item>
<item>gps</item>
<item>gps_bds</item>
<item>gps_gnolass</item>
<item>gps_glonass</item>
<item>gps_galileo</item>
<item>all_satellites</item>
</string-array>

View File

@ -68,7 +68,7 @@
<string name="low_power_gps">Low Power GPS</string>
<string name="gps">GPS</string>
<string name="gps_bds">GPS + BDS</string>
<string name="gps_gnolass">GPS + GNOLASS</string>
<string name="gps_glonass">GPS + GLONASS</string>
<string name="gps_galileo">GPS + GALILEO</string>
<string name="all_satellites">All Satellites</string>
<string name="speed_first">Speed first</string>