Sha256: 5ee5892baf01cca11663d259a2113a5587661c8f4e6657e599135377c521a1ec

Contents?: true

Size: 1.71 KB

Versions: 31

Compression:

Stored size: 1.71 KB

Contents

<!DOCTYPE html>
<html>
	<head>
		
			<title>Localization - Utopia</title>
		
		<meta charset="UTF-8"/>
		
		<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"/>
		
		<link rel="icon" type="image/png" href="../../../_static/icon.png"/>
		<link rel="stylesheet" href="../../../_static/site.css" type="text/css" media="screen"/>
		
		<script src="../../../_components/jquery/jquery.min.js"></script>
		<script src="../../../_components/jquery-syntax/jquery.syntax.min.js"></script>
		
		<script type="text/javascript">
		//<![CDATA[
			jQuery(function($) {
				$.syntax();
			});
		//]]>
		</script>
	</head>

	<body class="">
		<header>
			<img src="../../../_static/utopia.svg"/>
		</header>

		<div id="page">
			
	<nav>
	 › <a href="../../../wiki.html">Wiki</a> › <span>Middleware</span> › <a href="../localization.html">Localization</a></nav>

	
	<h1 id="localization">Localization</h1>

<p>The localization middleware uses the <code>Accept-Language</code> header to guess the preferred locale out of the given options. If a request path maps to a resource, that resource is returned. Otherwise, a localized request is made.</p>

<pre><code class="language-ruby">use Utopia::Localization,
	:default_locale =&gt; 'en',
	:locales =&gt; ['en', 'de', 'ja', 'zh']
</code></pre>

<p>Somewhere further down the chain, you can localize a resource:</p>

<pre><code class="language-ruby">localization = Utopia::Localization[request]
show_welcome(localization.current_locale)
</code></pre>

	
	<footer>
		Last Modified: 2017-05-03 14:21:19 +1200 —
	</footer>

		</div>
	</body>
</html>

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
utopia-2.13.4 docs/wiki/middleware/localization/index.html
utopia-2.13.3 docs/wiki/middleware/localization/index.html
utopia-2.13.2 docs/wiki/middleware/localization/index.html
utopia-2.13.1 docs/wiki/middleware/localization/index.html
utopia-2.13.0 docs/wiki/middleware/localization/index.html
utopia-2.12.4 docs/wiki/middleware/localization/index.html
utopia-2.12.3 docs/wiki/middleware/localization/index.html
utopia-2.12.2 docs/wiki/middleware/localization/index.html
utopia-2.12.1 docs/wiki/middleware/localization/index.html
utopia-2.12.0 docs/wiki/middleware/localization/index.html
utopia-2.11.1 docs/wiki/middleware/localization/index.html
utopia-2.11.0 docs/wiki/middleware/localization/index.html
utopia-2.10.0 docs/wiki/middleware/localization/index.html
utopia-2.9.5 docs/wiki/middleware/localization/index.html
utopia-2.9.3 docs/wiki/middleware/localization/index.html
utopia-2.9.2 docs/wiki/middleware/localization/index.html
utopia-2.9.1 docs/wiki/middleware/localization/index.html
utopia-2.9.0 docs/wiki/middleware/localization/index.html
utopia-2.8.2 docs/wiki/middleware/localization/index.html
utopia-2.8.1 docs/wiki/middleware/localization/index.html