class MediaWiktory::Wikipedia::Actions::Ulslocalization

Get the localization of ULS in the given language.

Usage:

“`ruby api.ulslocalization.language(value).perform # returns string with raw output # or api.ulslocalization.language(value).response # returns output parsed and wrapped into Response object “`

See {Base} for generic explanation of working with MediaWiki actions and {MediaWiktory::Wikipedia::Response} for working with action responses.

All action's parameters are documented as its public methods, see below.

Public Instance Methods

language(value) click to toggle source

Language code.

@param value [String] @return [self]

# File lib/mediawiktory/wikipedia/actions/ulslocalization.rb, line 26
def language(value)
  merge(language: value.to_s)
end