mirror of
https://github.com/koreader/koreader
synced 2024-11-04 12:00:25 +00:00
cafbf36bb2
Add a copy button and save word context (off by default), shown via the three-dot menu of word entries. Also some db refactoring and minor UI improvements: - a dedicated book title table in order to shrink db size by storing references to title names instead of repeated actual strings, - alignment of different forms of the "more" button and possible clipped words in translations. - fix plugin name so it can be disabled
7 lines
238 B
Lua
7 lines
238 B
Lua
local _ = require("gettext")
|
|
return {
|
|
name = "vocabbuilder",
|
|
fullname = _("Vocabulary builder"),
|
|
description = _([[This plugin processes dictionary word lookups and uses spaced repetition to help you remember new words.]]),
|
|
}
|