Rename Archived in Book Detail page

This commit is contained in:
Ozzie Isaacs 2024-06-23 13:47:54 +02:00
parent 6441f5f96b
commit 92ffce1dc8

View File

@ -251,7 +251,7 @@
<input id="have_read_cb" data-checked="{{ _('Mark As Unread') }}" <input id="have_read_cb" data-checked="{{ _('Mark As Unread') }}"
data-unchecked="{{ _('Mark As Read') }}" type="checkbox" data-unchecked="{{ _('Mark As Read') }}" type="checkbox"
{% if entry.read_status %}checked{% endif %}> {% if entry.read_status %}checked{% endif %}>
<span>{{ _('Read') }}</span> <span data-toggle="tooltip" title="{{_('Mark Book as Read or Unread')}}">{{ _('Read') }}</span>
</label> </label>
</form> </form>
</p> </p>
@ -264,7 +264,7 @@
<input id="archived_cb" data-checked="{{ _('Restore from archive') }}" <input id="archived_cb" data-checked="{{ _('Restore from archive') }}"
data-unchecked="{{ _('Add to archive') }}" type="checkbox" data-unchecked="{{ _('Add to archive') }}" type="checkbox"
{% if entry.is_archived %}checked{% endif %}> {% if entry.is_archived %}checked{% endif %}>
<span>{{ _('Archived') }}</span> <span data-toggle="tooltip" title="{{_('Mark Book as archived or not, to hide it in Calibre-Web and delete it from Kobo Reader')}}">{{ _('Archive') }}</span>
</label> </label>
</form> </form>
</p> </p>