Commit 431f0dcc912ea78004654bfaccc26ecb6069f7c1
1 parent
8b06a83c
Exists in
master
and in
39 other branches
Fixed noosfero menu bar
Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
Showing
1 changed file
with
7 additions
and
7 deletions
Show diff stats
colab/templates/base.html
... | ... | @@ -95,28 +95,28 @@ |
95 | 95 | {% if proxy.noosfero %} |
96 | 96 | <li class="dropdown"> |
97 | 97 | <a href="#" class="dropdown-toggle" data-toggle="dropdown"> |
98 | - Social <b class="caret"></b> | |
98 | + {% trans "Social" %} <b class="caret"></b> | |
99 | 99 | </a> |
100 | 100 | <ul class="dropdown-menu"> |
101 | 101 | <li> |
102 | 102 | <a href="/social/search/people"> |
103 | - Users | |
103 | + {% trans "Users" %} | |
104 | 104 | </a> |
105 | 105 | </li> |
106 | 106 | <li> |
107 | 107 | <a href="/social/search/communities"> |
108 | - Communities | |
108 | + {% trans "Communities" %} | |
109 | 109 | </a> |
110 | 110 | </li> |
111 | 111 | {% if user.is_active %} |
112 | 112 | <li> |
113 | - <a href="/social/profile/chaws"> | |
114 | - Profile | |
113 | + <a href="/social/profile/{{ user.username }}"> | |
114 | + {% trans "Profile" %} | |
115 | 115 | </a> |
116 | 116 | </li> |
117 | 117 | <li> |
118 | - <a href="/social/myprofile/chaws"> | |
119 | - Control panel | |
118 | + <a href="/social/myprofile/{{ user.username }}"> | |
119 | + {% trans "Control panel" %} | |
120 | 120 | </a> |
121 | 121 | </li> |
122 | 122 | {% endif %} | ... | ... |