Template:String
From Valve Developer Community
		
		
		
		
		Jump to navigation
		Jump to search
		
Alternative version of {{Autolang}} template. 
Example
{{String
| default = es						// Allows you to specify which translation is the main one. By default it is equal to "en".
| force	= ru						// Causes a string to be loaded in a specific language (if it is translated into it). This parameter is mainly for testing purposes.
| en = Hello, User!					// English String. Even if {{{default}}} is specified, if there is no translation in that language, English will be used.
| eo = Saluton, Uzanto!				// Spanish String.
| ru = Здравствуй, пользователь!	// Russian String.
|>es = eo							// A language code with a ">" at the begining means that the language refers to another language. This allows to avoid repeating the same text if it is completely identical in two or more languages
|>el = eo							// If you referring one language to another, link to that translation, do not link to another link. In this example, writing >el = es (or >el = >es) will be incorrect.
}}