From: Christian Schoenebeck Date: Mon, 9 Nov 2015 20:46:01 +0000 (+0100) Subject: luci-app-radicale: remove map.title hack X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=8e3a24f7cdbe934612f79959548e914fe890ba8c luci-app-radicale: remove map.title hack remove map.title hack; no longer needed Signed-off-by: Christian Schoenebeck --- diff --git a/applications/luci-app-radicale/Makefile b/applications/luci-app-radicale/Makefile index 960618dba..1501d4f0e 100644 --- a/applications/luci-app-radicale/Makefile +++ b/applications/luci-app-radicale/Makefile @@ -10,7 +10,7 @@ PKG_NAME:=luci-app-radicale # Version == major.minor.patch # increase "minor" on new functionality and "patch" on patches/optimization -PKG_VERSION:=1.0.1 +PKG_VERSION:=1.0.2 # Release == build # increase on changes of translation files diff --git a/applications/luci-app-radicale/luasrc/controller/radicale.lua b/applications/luci-app-radicale/luasrc/controller/radicale.lua index 35f5a83a0..10ec1fe54 100644 --- a/applications/luci-app-radicale/luasrc/controller/radicale.lua +++ b/applications/luci-app-radicale/luasrc/controller/radicale.lua @@ -82,7 +82,7 @@ function service_ok() end function app_title_main() - return [[]] .. I18N.translate("Radicale CalDAV/CardDAV Server") + .. [[]] end function app_title_back() - return [[]] .. I18N.translate("Radicale CalDAV/CardDAV Server") + .. [[]] end function app_description() return I18N.translate("The Radicale Project is a complete CalDAV (calendar) and CardDAV (contact) server solution.") .. [[
]]