Module: MediaWiktory::Wikipedia::Modules::Contenttranslation
- Defined in:
- lib/mediawiktory/wikipedia/modules/contenttranslation.rb
Overview
Query Content Translation database for translations.
The "submodule" (MediaWiki API term) is included in action after setting some param, providing additional tweaking for this param. Example (for Actions::Query and its submodules):
api.query # returns Actions::Query
.prop(:revisions) # adds prop=revisions to action URL, and includes Modules::Revisions into action
.limit(10) # method of Modules::Revisions, adds rvlimit=10 to URL
All submodule's parameters are documented as its public methods, see below.
Instance Method Summary collapse
-
#from(value) ⇒ self
The source language code.
-
#limit(value) ⇒ self
The maximum number of translations to fetch.
-
#offset(value) ⇒ self
Offset into result set (optional).
-
#sourcetitle(value) ⇒ self
The title of the source page.
-
#to(value) ⇒ self
The target language code.
-
#translationid(value) ⇒ self
Translation ID.
-
#type(value) ⇒ self
State of the translation.
Instance Method Details
#from(value) ⇒ self
The source language code.
33 34 35 |
# File 'lib/mediawiktory/wikipedia/modules/contenttranslation.rb', line 33 def from(value) merge(from: value.to_s) end |
#limit(value) ⇒ self
The maximum number of translations to fetch.
57 58 59 |
# File 'lib/mediawiktory/wikipedia/modules/contenttranslation.rb', line 57 def limit(value) merge(limit: value.to_s) end |
#offset(value) ⇒ self
Offset into result set (optional).
65 66 67 |
# File 'lib/mediawiktory/wikipedia/modules/contenttranslation.rb', line 65 def offset(value) merge(offset: value.to_s) end |
#sourcetitle(value) ⇒ self
The title of the source page.
49 50 51 |
# File 'lib/mediawiktory/wikipedia/modules/contenttranslation.rb', line 49 def sourcetitle(value) merge(sourcetitle: value.to_s) end |
#to(value) ⇒ self
The target language code.
41 42 43 |
# File 'lib/mediawiktory/wikipedia/modules/contenttranslation.rb', line 41 def to(value) merge(to: value.to_s) end |
#translationid(value) ⇒ self
Translation ID.
25 26 27 |
# File 'lib/mediawiktory/wikipedia/modules/contenttranslation.rb', line 25 def translationid(value) merge(translationid: value.to_s) end |
#type(value) ⇒ self
State of the translation.
73 74 75 |
# File 'lib/mediawiktory/wikipedia/modules/contenttranslation.rb', line 73 def type(value) _type(value) or fail ArgumentError, "Unknown value for type: #{value}" end |