Fixed stray english phrase in seizure detector settings screen, and changed "Garmin Datasource" to "Datasource = Garmin" to make the grammar easier in translations.

This commit is contained in:
Graham Jones
2020-12-22 21:10:53 +00:00
parent 34ab29f9df
commit 4587d5b944
7 changed files with 6 additions and 6 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -10,8 +10,8 @@
{
"type": "SINGLE",
"filters": [],
"versionCode": 85,
"versionName": "3.6.2c",
"versionCode": 86,
"versionName": "3.6.2d",
"outputFile": "app-release.apk"
}
]

View File

@@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="uk.org.openseizuredetector"
android:versionCode="85"
android:versionName="3.6.2c">
android:versionCode="86"
android:versionName="3.6.2d">
<!-- android:allowBackup="false" -->
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

View File

@@ -398,7 +398,7 @@ public class MainActivity extends AppCompatActivity {
if (mUtil.isServerRunning()) {
tv = (TextView) findViewById(R.id.serverStatusTv);
if (mConnection.mBound)
tv.setText(getString(R.string.ServerRunningOK) + mConnection.mSdServer.mSdDataSourceName + " " +getString(R.string.DataSource));
tv.setText(getString(R.string.ServerRunningOK) +" : " +getString(R.string.DataSource) + " = " + mConnection.mSdServer.mSdDataSourceName);
tv.setBackgroundColor(okColour);
tv.setTextColor(okTextColour);
tv = (TextView) findViewById(R.id.serverIpTv);

View File

@@ -2,7 +2,7 @@
<!-- The ListPreference data is defined in pebble_datasource_values.xml -->
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="Seizure Detector Settings">
<PreferenceCategory android:title="@string/SeizureDetectorSettingsTitle">
<EditTextPreference
android:defaultValue="5"
android:key="WarnTime"