mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-26 05:49:22 +00:00
Completed authenticated bar translation.
This commit is contained in:
parent
e1c3b0c002
commit
50b40ac5b0
@ -87,7 +87,7 @@ ComunicWeb.components.menuBar.authenticated = {
|
||||
var conversationsLink = createElem2({
|
||||
appendTo: conversationsButton,
|
||||
type: "a",
|
||||
innerHTML: "Conversations"
|
||||
innerLang: "menu_bar_action_conversations"
|
||||
});
|
||||
conversationsButton.onclick = function(){
|
||||
openPage("conversations");
|
||||
@ -101,7 +101,7 @@ ComunicWeb.components.menuBar.authenticated = {
|
||||
createElem2({
|
||||
appendTo: groupsButton,
|
||||
type: "a",
|
||||
innerHTML: "Groups"
|
||||
innerLang: "menu_bar_action_groups"
|
||||
});
|
||||
groupsButton.onclick = function(){
|
||||
openPage("groups");
|
||||
@ -115,7 +115,7 @@ ComunicWeb.components.menuBar.authenticated = {
|
||||
var settingsLink = createElem2({
|
||||
appendTo: settingsButton,
|
||||
type: "a",
|
||||
innerHTML: "Settings"
|
||||
innerLang: "menu_bar_action_settings"
|
||||
});
|
||||
settingsButton.onclick = function(){
|
||||
openPage("settings");
|
||||
|
@ -30,6 +30,9 @@ ComunicWeb.common.langs.en = {
|
||||
|
||||
//Menu bar - authenticated
|
||||
_menu_bar_search_placeholder: "Search...",
|
||||
menu_bar_action_conversations: "Conversations",
|
||||
menu_bar_action_groups: "Groups",
|
||||
menu_bar_action_settings: "Settings",
|
||||
_menu_bar_action_logout: "Logout",
|
||||
|
||||
//Posts form
|
||||
|
@ -29,6 +29,9 @@ ComunicWeb.common.langs.fr = {
|
||||
|
||||
//Menu bar - authenticated
|
||||
_menu_bar_search_placeholder: "Recherche...",
|
||||
menu_bar_action_conversations: "Conversations",
|
||||
menu_bar_action_groups: "Groupes",
|
||||
menu_bar_action_settings: "Paramètres",
|
||||
_menu_bar_action_logout: "Déconnexion",
|
||||
|
||||
//Posts form
|
||||
|
Loading…
Reference in New Issue
Block a user