Fix some string references

This commit is contained in:
Jobobby04 2021-05-31 23:43:47 -04:00
parent ae7d94a1f2
commit ef02bd112c
2 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ class InterceptActivity : BaseViewBindingActivity<EhActivityInterceptBinding>()
val sources = galleryAdder.pickSource(gallery) val sources = galleryAdder.pickSource(gallery)
if (sources.size > 1) { if (sources.size > 1) {
MaterialDialog(this) MaterialDialog(this)
.title(R.string.select_source) .title(R.string.label_sources)
.listItemsSingleChoice(items = sources.map { it.toString() }) { _, index, _ -> .listItemsSingleChoice(items = sources.map { it.toString() }) { _, index, _ ->
loadGalleryEnd(gallery, sources[index]) loadGalleryEnd(gallery, sources[index])
} }

View File

@ -81,7 +81,7 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="8dp" android:layout_marginTop="8dp"
android:text="@string/options" android:text="@string/action_settings"
android:textAppearance="@style/TextAppearance.Medium.Body2" android:textAppearance="@style/TextAppearance.Medium.Body2"
app:layout_constraintStart_toStartOf="@+id/mig_chapters" app:layout_constraintStart_toStartOf="@+id/mig_chapters"
app:layout_constraintTop_toBottomOf="@+id/mig_chapters" /> app:layout_constraintTop_toBottomOf="@+id/mig_chapters" />