Add dev notice about background jobs, move dialog titles for localization

This commit is contained in:
arkon
2020-03-13 18:27:49 -04:00
parent a0dffcf51f
commit 8299093bf8
3 changed files with 9 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class ChangelogDialogController : DialogController() {
val activity = activity!!
val view = WhatsNewRecyclerView(activity)
return MaterialDialog.Builder(activity)
.title(if (BuildConfig.DEBUG) "Notices" else "Changelog")
.title(if (BuildConfig.DEBUG) R.string.notices else R.string.changelog)
.customView(view, false)
.positiveText(R.string.action_close)
.build()