Tell Potlatch 2 which locale to use

This commit is contained in:
Tom Hughes 2011-04-06 21:22:47 +01:00
parent 10033fded1
commit 5f7855fa4d
2 changed files with 16 additions and 0 deletions

View file

@ -10,6 +10,8 @@
<script type="text/javascript">alert("<%= t 'site.edit.potlatch2_not_configured' %>")</script>
<% end %>
<% locale = request.compatible_language_from(Potlatch2::LOCALES.keys) %>
<script type="text/javascript" defer="defer">
var brokenContentSize = $("content").offsetWidth == 0;
var fo = new SWFObject("<%= asset_path("/potlatch2/potlatch2.swf") %>", "potlatch", "100%", "100%", "9", "#FFFFFF");
@ -28,6 +30,7 @@
fo.addParam("base","/potlatch2");
if (lat) { fo.addVariable("lat",lat); }
if (lon) { fo.addVariable("lon",lon); }
fo.addVariable("locale", "<%= Potlatch2::LOCALES[locale] %>");
<% if params['gpx'] %>
fo.addVariable('gpx' ,'<%= h(params['gpx']) %>');
<% end %>