Files
nairobi/app/components/layout/locale_switcher_component.html.erb
2021-07-05 22:27:39 +02:00

11 lines
406 B
Plaintext

<div class="locale">
<form class="locale-form">
<label class="inline-block" for="locale-switcher">
<%= t("layouts.header.locale") %>
</label>
<select class="js-location-changer locale-switcher inline-block" name="locale-switcher" id="locale-switcher">
<%= options_for_select(language_options, current_path_with_query_params(locale: I18n.locale)) %>
</select>
</form>
</div>