Cloud storage: make some text translatable (#4122)

pull/4127/head
Robert 6 years ago committed by poire-z
parent 4f4f5ffef6
commit e37c34531a

@ -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()

Loading…
Cancel
Save