[chore] Change single quotes to double quotes (#6949)

*Especially* in the hello world plugin.
reviewable/pr6950/r1
Frans de Jonge 3 years ago committed by GitHub
parent 4b9627456e
commit fd51671478
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,6 +1,6 @@
local _ = require("gettext") local _ = require("gettext")
return { return {
name = 'SSH', name = "SSH",
fullname = _("SSH"), fullname = _("SSH"),
description = _([[Connect and transfer files to the device using SSH.]]), description = _([[Connect and transfer files to the device using SSH.]]),
} }

@ -21,7 +21,7 @@ if not util.pathExists("dropbear") then
end end
local SSH = WidgetContainer:new{ local SSH = WidgetContainer:new{
name = 'SSH', name = "SSH",
is_doc_only = false, is_doc_only = false,
} }

@ -8,7 +8,7 @@ local _ = require("gettext")
local T = require("ffi/util").template local T = require("ffi/util").template
local AutoTurn = WidgetContainer:new{ local AutoTurn = WidgetContainer:new{
name = 'autoturn', name = "autoturn",
is_doc_only = true, is_doc_only = true,
autoturn_sec = G_reader_settings:readSetting("autoturn_timeout_seconds") or 0, autoturn_sec = G_reader_settings:readSetting("autoturn_timeout_seconds") or 0,
autoturn_distance = G_reader_settings:readSetting("autoturn_distance") or 1, autoturn_distance = G_reader_settings:readSetting("autoturn_distance") or 1,

@ -1,6 +1,6 @@
local _ = require("gettext") local _ = require("gettext")
return { return {
name = 'docsettingtweak', name = "docsettingtweak",
fullname = _("Tweak document settings"), fullname = _("Tweak document settings"),
description = _([[This plugin allows you to tweak document settings before the document is loaded based on external factors.]]), 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 util = require("util")
local DocSettingTweak = WidgetContainer:new{ local DocSettingTweak = WidgetContainer:new{
name = 'docsettingtweak', name = "docsettingtweak",
} }
local directory_defaults_name = "directory_defaults.lua" local directory_defaults_name = "directory_defaults.lua"

@ -1,6 +1,6 @@
local _ = require("gettext") local _ = require("gettext")
return { return {
name = 'gestures', name = "gestures",
fullname = _("Gestures"), fullname = _("Gestures"),
description = _([[This plugin provides gesture support.]]), description = _([[This plugin provides gesture support.]]),
} }

@ -1,6 +1,6 @@
local _ = require("gettext") local _ = require("gettext")
return { return {
name = 'hello', name = "hello",
fullname = _("Hello"), fullname = _("Hello"),
description = _([[This is a debugging plugin.]]), description = _([[This is a debugging plugin.]]),
} }

@ -16,7 +16,7 @@ local WidgetContainer = require("ui/widget/container/widgetcontainer")
local _ = require("gettext") local _ = require("gettext")
local Hello = WidgetContainer:new{ local Hello = WidgetContainer:new{
name = 'hello', name = "hello",
is_doc_only = false, is_doc_only = false,
} }

@ -1,6 +1,6 @@
local _ = require("gettext") local _ = require("gettext")
return { return {
name = 'profiles', name = "profiles",
fullname = _("Profiles"), fullname = _("Profiles"),
description = _([[This plugin allows combining multiple settings to make switchable 'profiles'.]]), description = _([[This plugin allows combining multiple settings to make switchable 'profiles'.]]),
} }

Loading…
Cancel
Save