i18n: put french first in the locales list
Because French is the reference locale, and we should reflect this to users.
This commit is contained in:
parent
02a19587b7
commit
bb15d5fadc
1 changed files with 3 additions and 3 deletions
|
@ -3,9 +3,9 @@
|
|||
.hidden t('.languages')
|
||||
= image_tag "icons/translate-icon.svg", alt: t('.languages'), width: 24, height: 24, lazy: true, aria: { hidden: true }
|
||||
%ul.header-menu.dropdown-content
|
||||
%li
|
||||
= active_link_to save_locale_path(locale: :en), method: :post, class: "menu-item menu-link", active: I18n.locale == :en do
|
||||
English
|
||||
%li
|
||||
= active_link_to save_locale_path(locale: :fr), method: :post, class: "menu-item menu-link", active: I18n.locale == :fr do
|
||||
Français
|
||||
%li
|
||||
= active_link_to save_locale_path(locale: :en), method: :post, class: "menu-item menu-link", active: I18n.locale == :en do
|
||||
English
|
||||
|
|
Loading…
Reference in a new issue