mirror of
https://github.com/gotson/komga.git
synced 2026-05-09 05:10:19 +02:00
fix(webreader): incorrect tooltip for read incognito button
This commit is contained in:
parent
fa9d40f84c
commit
d1616a98cd
2 changed files with 3 additions and 2 deletions
|
|
@ -129,6 +129,7 @@
|
||||||
"isbn": "ISBN",
|
"isbn": "ISBN",
|
||||||
"navigation_within_readlist": "Navigation within the readlist: {name}",
|
"navigation_within_readlist": "Navigation within the readlist: {name}",
|
||||||
"read_book": "Read book",
|
"read_book": "Read book",
|
||||||
|
"read_incognito": "Read incognito",
|
||||||
"size": "SIZE"
|
"size": "SIZE"
|
||||||
},
|
},
|
||||||
"browse_collection": {
|
"browse_collection": {
|
||||||
|
|
|
||||||
|
|
@ -139,7 +139,7 @@
|
||||||
|
|
||||||
<v-col cols="auto">
|
<v-col cols="auto">
|
||||||
<v-btn small
|
<v-btn small
|
||||||
:title="$t('browse_book.read_book')"
|
:title="$t('browse_book.read_incognito')"
|
||||||
:to="{name: 'read-book', params: { bookId: bookId}, query: { context: context.origin, contextId: context.id, incognito: true}}"
|
:to="{name: 'read-book', params: { bookId: bookId}, query: { context: context.origin, contextId: context.id, incognito: true}}"
|
||||||
:disabled="book.media.status !== 'READY' || !canReadPages"
|
:disabled="book.media.status !== 'READY' || !canReadPages"
|
||||||
>
|
>
|
||||||
|
|
@ -184,7 +184,7 @@
|
||||||
|
|
||||||
<v-col cols="auto">
|
<v-col cols="auto">
|
||||||
<v-btn small
|
<v-btn small
|
||||||
:title="$t('browse_book.read_book')"
|
:title="$t('browse_book.read_incognito')"
|
||||||
:to="{name: 'read-book', params: { bookId: bookId}, query: { context: context.origin, contextId: context.id, incognito: true}}"
|
:to="{name: 'read-book', params: { bookId: bookId}, query: { context: context.origin, contextId: context.id, incognito: true}}"
|
||||||
:disabled="book.media.status !== 'READY' || !canReadPages"
|
:disabled="book.media.status !== 'READY' || !canReadPages"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue