Opps, forgot to push these changes

This commit is contained in:
Jobobby04 2020-09-08 12:04:53 -04:00
parent b7efc21ea9
commit f62d277894
3 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@ class GalleryAdder {
forceSource: UrlImportableSource? = null,
throttleFunc: () -> Unit = {}
): GalleryAddEvent {
XLog.d(context.getString(R.string.gallery_adder_importing_gallery, url, fav.toString(), forceSource))
XLog.d(context.getString(R.string.gallery_adder_importing_manga, url, fav.toString(), forceSource))
try {
val uri = Uri.parse(url)
@ -121,7 +121,7 @@ class GalleryAdder {
return GalleryAddEvent.Success(url, manga, context)
} catch (e: Exception) {
XLog.w(context.getString(R.string.gallery_adder_could_not_add_gallery, url), e)
XLog.w(context.getString(R.string.gallery_adder_could_not_add_manga, url), e)
if (e is EHentai.GalleryNotFoundException) {
return GalleryAddEvent.Fail.NotFound(url, context)

View File

@ -38,7 +38,7 @@ class InterceptActivity : BaseActivity<EhActivityInterceptBinding>() {
private fun processLink() {
if (Intent.ACTION_VIEW == intent.action) {
binding.interceptProgress.isVisible = true
binding.interceptStatus.setText(R.string.loading_gallery)
binding.interceptStatus.setText(R.string.loading_manga)
loadGallery(intent.dataString!!)
}
}
@ -74,7 +74,7 @@ class InterceptActivity : BaseActivity<EhActivityInterceptBinding>() {
binding.interceptStatus.text = this.getString(R.string.error_with_reason, it.reason)
MaterialDialog(this)
.title(R.string.chapter_error)
.message(text = this.getString(R.string.could_not_open_gallery, it.reason))
.message(text = this.getString(R.string.could_not_open_manga, it.reason))
.cancelable(true)
.cancelOnTouchOutside(true)
.positiveButton(android.R.string.ok)

View File

@ -36,7 +36,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:text="@string/loading_gallery"
android:text="@string/loading_manga"
android:textAppearance="@style/TextAppearance.Medium.Title" />
<ProgressBar