remove some redundant strings

This commit is contained in:
tibbi
2018-01-09 23:30:23 +01:00
parent 1ef93c9d94
commit c07aeab3cb
27 changed files with 2 additions and 77 deletions

View File

@ -686,7 +686,7 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
if (intent.resolveActivity(packageManager) != null) {
startActivity(intent)
} else {
toast(R.string.no_map_application)
toast(R.string.no_app_found)
}
}
}

View File

@ -64,7 +64,7 @@ fun Activity.launchCamera() {
if (intent.resolveActivity(packageManager) != null) {
startActivity(intent)
} else {
toast(R.string.no_camera_app_found)
toast(R.string.no_app_found)
}
}