mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
[RTL UI] Bidi-wrap filenames, paths, urls, metadata
bidi.lua:
- Revert "Alias everything to Bidi.nowrap() when in LTR UI,
as using LTR isolates seems uneeded when already LTR" (part
of a628714f) which was a wrong assumption: we need proper
wrappers for all things paths. Enhance some of these wrappers.
- Fix GetText RTL wrapping which was losing empty lines and
trailing \n.
- Wrap all paths, directories, filenames in the code with
these wrappers.
- Wrap all book metadata (title, authors...) with BD.auto(),
as it helps fixing some edge cases (like open/close quotation
marks which are not considered as bracket types by FriBiDi).
(Needed some minor logic changes in CoverBrowser.)
- Tweak hyphenation menu text
- Update forgotten SortWidget for UI mirroring
- KoptConfig: update "justification" index for RTL re-ordering,
following the recent addition of the page_gap_height option.
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
local BD = require("ui/bidi")
|
||||
local ConfirmBox = require("ui/widget/confirmbox")
|
||||
local DataStorage = require("datastorage")
|
||||
local Device = require("device")
|
||||
@@ -233,7 +234,7 @@ function ReaderDictionary:addToMainMenu(menu_items)
|
||||
text = T(_([[
|
||||
If you'd like to change the order in which dictionaries are queried (and their results displayed), you can:
|
||||
- move all dictionary directories out of %1.
|
||||
- move them back there, one by one, in the order you want them to be used.]]), self.data_dir)
|
||||
- move them back there, one by one, in the order you want them to be used.]]), BD.dirpath(self.data_dir))
|
||||
})
|
||||
end,
|
||||
},
|
||||
@@ -928,7 +929,7 @@ function ReaderDictionary:downloadDictionary(dict, download_location, continue)
|
||||
logger.dbg("file downloaded to", download_location)
|
||||
else
|
||||
UIManager:show(InfoMessage:new{
|
||||
text = _("Could not save file to:\n") .. download_location,
|
||||
text = _("Could not save file to:\n") .. BD.filepath(download_location),
|
||||
--timeout = 3,
|
||||
})
|
||||
return false
|
||||
|
||||
Reference in New Issue
Block a user