Improved wording.

This commit is contained in:
Martin Edenhofer 2015-05-02 09:46:39 +02:00
parent c65786b7df
commit 2230477018
5 changed files with 8 additions and 8 deletions

View file

@ -73,7 +73,7 @@ class App.TicketStats extends App.Controller
new TicketStatsList(
el: @$('.js-user-open-tickets')
user: @user
head: 'Open Ticket'
head: 'Open Tickets'
iconClass: iconClass
ticket_ids: data.user_tickets_open_ids
limit: limit
@ -81,7 +81,7 @@ class App.TicketStats extends App.Controller
new TicketStatsList(
el: @$('.js-user-closed-tickets')
user: @user
head: 'Closed Ticket'
head: 'Closed Tickets'
ticket_ids: data.user_tickets_closed_ids
limit: limit
)
@ -97,7 +97,7 @@ class App.TicketStats extends App.Controller
new TicketStatsList(
el: @$('.js-org-open-tickets')
user: @user
head: 'Open Ticket'
head: 'Open Tickets'
iconClass: iconClass
ticket_ids: data.org_tickets_open_ids
limit: limit
@ -105,7 +105,7 @@ class App.TicketStats extends App.Controller
new TicketStatsList(
el: @$('.js-org-closed-tickets')
user: @user
head: 'Closed Ticket'
head: 'Closed Tickets'
ticket_ids: data.org_tickets_closed_ids
limit: limit
)

View file

@ -1,6 +1,6 @@
<h2><%- @T( 'Link Accounts' ) %></h2>
<ul>
<% for auth_provider in @auth_providers: %>
<li><%- @T( auth_provider.name ) %> <% if !@user['accounts'] || !@user['accounts'][auth_provider.key]: %><a href="<%= auth_provider.url %>"><%- @T('Add') %></a><% else: %>"<%= @user['accounts'][auth_provider.key]['username'] %>" <a href="#" data-uid="<%= @user['accounts'][auth_provider.key]['uid'] %>" data-provider="<%= auth_provider.key %>" data-type="remove"><%- @T('Remove') %></a><% end %></li>
<li><%- @T( auth_provider.name ) %> <% if !@user['accounts'] || !@user['accounts'][auth_provider.key]: %><a href="<%= auth_provider.url %>"><%- @T('Add') %></a><% else: %>"<%= @user['accounts'][auth_provider.key]['username'] %>" <a href="#" data-uid="<%= @user['accounts'][auth_provider.key]['uid'] %>" data-provider="<%= auth_provider.key %>" data-type="remove"><%- @T('remove') %></a><% end %></li>
<% end %>
</ul>

View file

@ -19,7 +19,7 @@
</div>
</div>
<div class="visibility-toggle zIndex-7 u-clickable editControls-item">
<div class="internal-visibility centered" title="<%- @Ti("unset internal") %>">
<div class="internal-visibility centered" title="<%- @Ti("set public") %>">
<div class="internal visibility icon"></div>
</div>
<div class="public-visibility centered" title="<%- @Ti("set internal") %>">

View file

@ -22,7 +22,7 @@
<% if @organization.members: %>
<hr>
<user class="sidebar-block">
<label><%- @T('Member') %></label>
<label><%- @T('Members') %></label>
<ul class="userList">
<% for user in @organization.members: %>
<li>

View file

@ -17,7 +17,7 @@
<% else: %>
<div class="profile-ticketsPlaceholder vertical centered">
<div class="<%- @iconClass %>"></div>
<%- @T('No Tickets') %>
<%- @T('none') %>
</div>
<% end %>
<% if @ticket_ids.length > @ticket_ids_show.length: %>