* tokenize settings menu and add French translations * add quotes around tokens * add tokens in alphabetical order Co-authored-by: Ben Halpern <bendhalpern@gmail.com>
13 lines
351 B
Ruby
13 lines
351 B
Ruby
module Settings
|
|
def self.tab_list
|
|
[
|
|
I18n.t("settings_menu.profile"),
|
|
I18n.t("settings_menu.customization"),
|
|
I18n.t("settings_menu.notifications"),
|
|
I18n.t("settings_menu.account"),
|
|
I18n.t("settings_menu.billing"),
|
|
I18n.t("settings_menu.organization"),
|
|
I18n.t("settings_menu.extensions"),
|
|
]
|
|
end
|
|
end
|