Module:XVideosRedList/i18n

Revision as of 23:26, 14 March 2025 by PeaceDeadC (talk | contribs) (Created page with "-- i18n submodule for Module:XVideosRedList local i18n = { errors = { channelIsEmpty = "Channel name is empty", channelNotFound = "Channel '%s' not found", duplicateChannels = "Multiple channels found with the name '%s'", moduleLoadError = "Could not load channel data module for letter '%s'", invalidModuleStructure = "Invalid structure in channel data module for letter '%s'", noGenreProvided = "No genre provided for th...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:XVideosRedList/i18n/doc

-- i18n submodule for Module:XVideosRedList

local i18n = {
    errors = {
        channelIsEmpty = "Channel name is empty",
        channelNotFound = "Channel '%s' not found",
        duplicateChannels = "Multiple channels found with the name '%s'",
        moduleLoadError = "Could not load channel data module for letter '%s'",
        invalidModuleStructure = "Invalid structure in channel data module for letter '%s'",
        noGenreProvided = "No genre provided for the channel",
        invalidGenre = "Invalid genre '%s' provided",
        channelUrlMissing = "No channel URL provided for the entry"
    }
}

return i18n