mirror of
https://github.com/gotson/komga.git
synced 2025-12-21 07:56:57 +01: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",
|
||||
"navigation_within_readlist": "Navigation within the readlist: {name}",
|
||||
"read_book": "Read book",
|
||||
"read_incognito": "Read incognito",
|
||||
"size": "SIZE"
|
||||
},
|
||||
"browse_collection": {
|
||||
|
|
|
|||
|
|
@ -139,7 +139,7 @@
|
|||
|
||||
<v-col cols="auto">
|
||||
<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}}"
|
||||
:disabled="book.media.status !== 'READY' || !canReadPages"
|
||||
>
|
||||
|
|
@ -184,7 +184,7 @@
|
|||
|
||||
<v-col cols="auto">
|
||||
<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}}"
|
||||
:disabled="book.media.status !== 'READY' || !canReadPages"
|
||||
>
|
||||
|
|
|
|||
Loading…
Reference in a new issue