mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
[chore] Change single quotes to double quotes (#6949)
*Especially* in the hello world plugin.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
local _ = require("gettext")
|
||||
return {
|
||||
name = 'SSH',
|
||||
name = "SSH",
|
||||
fullname = _("SSH"),
|
||||
description = _([[Connect and transfer files to the device using SSH.]]),
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ if not util.pathExists("dropbear") then
|
||||
end
|
||||
|
||||
local SSH = WidgetContainer:new{
|
||||
name = 'SSH',
|
||||
name = "SSH",
|
||||
is_doc_only = false,
|
||||
}
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ local _ = require("gettext")
|
||||
local T = require("ffi/util").template
|
||||
|
||||
local AutoTurn = WidgetContainer:new{
|
||||
name = 'autoturn',
|
||||
name = "autoturn",
|
||||
is_doc_only = true,
|
||||
autoturn_sec = G_reader_settings:readSetting("autoturn_timeout_seconds") or 0,
|
||||
autoturn_distance = G_reader_settings:readSetting("autoturn_distance") or 1,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
local _ = require("gettext")
|
||||
return {
|
||||
name = 'docsettingtweak',
|
||||
name = "docsettingtweak",
|
||||
fullname = _("Tweak document settings"),
|
||||
description = _([[This plugin allows you to tweak document settings before the document is loaded based on external factors.]]),
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ local filemanagerutil = require("apps/filemanager/filemanagerutil")
|
||||
local util = require("util")
|
||||
|
||||
local DocSettingTweak = WidgetContainer:new{
|
||||
name = 'docsettingtweak',
|
||||
name = "docsettingtweak",
|
||||
}
|
||||
|
||||
local directory_defaults_name = "directory_defaults.lua"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
local _ = require("gettext")
|
||||
return {
|
||||
name = 'gestures',
|
||||
name = "gestures",
|
||||
fullname = _("Gestures"),
|
||||
description = _([[This plugin provides gesture support.]]),
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
local _ = require("gettext")
|
||||
return {
|
||||
name = 'hello',
|
||||
name = "hello",
|
||||
fullname = _("Hello"),
|
||||
description = _([[This is a debugging plugin.]]),
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ local WidgetContainer = require("ui/widget/container/widgetcontainer")
|
||||
local _ = require("gettext")
|
||||
|
||||
local Hello = WidgetContainer:new{
|
||||
name = 'hello',
|
||||
name = "hello",
|
||||
is_doc_only = false,
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
local _ = require("gettext")
|
||||
return {
|
||||
name = 'profiles',
|
||||
name = "profiles",
|
||||
fullname = _("Profiles"),
|
||||
description = _([[This plugin allows combining multiple settings to make switchable 'profiles'.]]),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user