- Use notice string instead of "Notice".

This commit is contained in:
Juha Heinanen
2020-03-05 03:57:00 +02:00
parent 97af201076
commit 73d6388fb0
@@ -215,7 +215,7 @@ class AccountActivity : AppCompatActivity() {
Log.e("Baresip", "Setting of display name failed") Log.e("Baresip", "Setting of display name failed")
} }
} else { } else {
Utils.alertView(this, "Notice", Utils.alertView(this, getString(R.string.notice),
String.format(getString(R.string.invalid_display_name), dn)) String.format(getString(R.string.invalid_display_name), dn))
return false return false
} }
@@ -224,7 +224,7 @@ class AccountActivity : AppCompatActivity() {
val au = authUser.text.toString().trim() val au = authUser.text.toString().trim()
val ap = authPass.text.toString().trim() val ap = authPass.text.toString().trim()
if (((au != "") && (ap == "")) || ((au == "") && (ap != ""))) { if (((au != "") && (ap == "")) || ((au == "") && (ap != ""))) {
Utils.alertView(this, "Notice", Utils.alertView(this, getString(R.string.notice),
getString(R.string.authentication_username_password_mismatch)) getString(R.string.authentication_username_password_mismatch))
return false return false
} }
@@ -239,7 +239,7 @@ class AccountActivity : AppCompatActivity() {
Log.e("Baresip", "Setting of auth user failed") Log.e("Baresip", "Setting of auth user failed")
} }
} else { } else {
Utils.alertView(this, "Notice", Utils.alertView(this, getString(R.string.notice),
String.format(getString(R.string.invalid_authentication_username), au)) String.format(getString(R.string.invalid_authentication_username), au))
return false return false
} }
@@ -255,7 +255,7 @@ class AccountActivity : AppCompatActivity() {
Log.e("Baresip", "Setting of auth pass failed") Log.e("Baresip", "Setting of auth pass failed")
} }
} else { } else {
Utils.alertView(this, "Notice", Utils.alertView(this, getString(R.string.notice),
String.format(getString(R.string.invalid_authentication_password), ap)) String.format(getString(R.string.invalid_authentication_password), ap))
return false return false
} }
@@ -285,7 +285,7 @@ class AccountActivity : AppCompatActivity() {
break break
} }
} else { } else {
Utils.alertView(this, "Notice", Utils.alertView(this, getString(R.string.notice),
String.format(getString(R.string.invalid_proxy_server_uri), ob[i])) String.format(getString(R.string.invalid_proxy_server_uri), ob[i]))
return false return false
} }
@@ -332,7 +332,7 @@ class AccountActivity : AppCompatActivity() {
val newStunServer = stunServer.text.toString().trim() val newStunServer = stunServer.text.toString().trim()
if (acc.stunServer != newStunServer) { if (acc.stunServer != newStunServer) {
if (!Utils.checkHostPort(newStunServer)) { if (!Utils.checkHostPort(newStunServer)) {
Utils.alertView(this, "Notice", Utils.alertView(this, getString(R.string.notice),
String.format(getString(R.string.invalid_stun_server), newStunServer)) String.format(getString(R.string.invalid_stun_server), newStunServer))
return false return false
} }
@@ -410,7 +410,7 @@ class AccountActivity : AppCompatActivity() {
if (!vmUri.startsWith("sip:")) vmUri = "sip:$vmUri" if (!vmUri.startsWith("sip:")) vmUri = "sip:$vmUri"
if (!vmUri.contains("@")) vmUri = "$vmUri@${acc.host()}" if (!vmUri.contains("@")) vmUri = "$vmUri@${acc.host()}"
if (!Utils.checkSipUri(vmUri)) { if (!Utils.checkSipUri(vmUri)) {
Utils.alertView(this, "Notice", Utils.alertView(this, getString(R.string.notice),
String.format(getString(R.string.invalid_voicemail_uri), vmUri)) String.format(getString(R.string.invalid_voicemail_uri), vmUri))
return false return false
} }