From e37c34531ad3327f5602ae8efdaab23928ae1cac Mon Sep 17 00:00:00 2001 From: Robert Date: Sun, 29 Jul 2018 22:58:02 +0200 Subject: [PATCH] Cloud storage: make some text translatable (#4122) --- frontend/apps/cloudstorage/cloudstorage.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/apps/cloudstorage/cloudstorage.lua b/frontend/apps/cloudstorage/cloudstorage.lua index c447e14b3..945fc8456 100644 --- a/frontend/apps/cloudstorage/cloudstorage.lua +++ b/frontend/apps/cloudstorage/cloudstorage.lua @@ -15,8 +15,8 @@ local Screen = require("device").screen local CloudStorage = Menu:extend{ cloud_servers = { { - text = "Add new cloud storage", - title = "Choose type of cloud", + text = _("Add new cloud storage"), + title = _("Choose cloud type"), url = "add", editable = false, }, @@ -30,7 +30,7 @@ local CloudStorage = Menu:extend{ function CloudStorage:init() self.cs_settings = self:readSettings() self.menu_select = nil - self.title = "Cloud Storage" + self.title = _("Cloud storage") self.show_parent = self self.item_table = self:genItemTableFromRoot() self.width = Screen:getWidth()