SyntaxGameServer/RCCService2018/content/LuaPackages/PurchasePrompt/Components/Connection/TextLocalizer.lua

23 lines
756 B
Lua

local CorePackages = game:GetService("CorePackages")
local Roact = require(CorePackages.Roact)
local LocalizationService = require(script.Parent.Parent.Parent.Localization.LocalizationService)
local LocalizationContextConsumer = require(script.Parent.LocalizationContextConsumer)
local function TextLocalizer(props)
local key = props.key
local params = props.params
local render = props.render
assert(typeof(key) == "string", "String key must be provided")
assert(typeof(render) == "function", "Render prop must be a function")
return Roact.createElement(LocalizationContextConsumer, {
render = function(localizationContext)
return render(LocalizationService.getString(localizationContext, key, params))
end,
})
end
return TextLocalizer