sort by activity dict

pull/7748/head
Guilherme Gazzo 9 years ago
parent c9033b9767
commit 6922be2c8e
No known key found for this signature in database
GPG Key ID: 1F85C9AD922D0829
  1. 3
      packages/rocketchat-i18n/i18n/en.i18n.json
  2. 20
      packages/rocketchat-ui-account/client/accountPreferences.html

@ -1370,6 +1370,7 @@
"Showing_archived_results": "<p>Showing <b>%s</b> archived results</p>",
"Showing_online_users": "Showing: <b>__total_showing__</b>, Online: __online__, Total: __total__ users",
"Showing_results": "<p>Showing <b>%s</b> results</p>",
"Sidebar_list_mode": "Sidebar channel list mode",
"Sign_in_to_start_talking": "Sign in to start talking",
"since_creation": "since %s",
"Site_Name": "Site Name",
@ -1411,8 +1412,10 @@
"Snippet_Added": "Created on %s",
"Snippet_Messages": "Snippet Messages",
"Snippeted_a_message": "Created a snippet __snippetLink__",
"Sort_by_activity": "Sort by Activity",
"Sound": "Sound",
"Sound_File_mp3": "Sound File (mp3)",
"Split_by_categories": "Split by categories",
"SSL": "SSL",
"Star_Message": "Star Message",
"Starred_Messages": "Starred Messages",

@ -124,22 +124,14 @@
<label><input type="radio" name="hideAvatars" value="0" checked="{{checked 'hideAvatars' false true}}"/> {{_ "False"}}</label>
</div>
</div>
<div class="input-line double-col" id="unreadRoomsMode">
<label>{{_ "Unread_Rooms_Mode"}}</label>
<div>
<label><input type="radio" name="unreadRoomsMode" value="1" checked="{{checked 'unreadRoomsMode' true}}" /> {{_ "True"}}</label>
<label><input type="radio" name="unreadRoomsMode" value="0" checked="{{checked 'unreadRoomsMode' false true}}" /> {{_ "False"}}</label>
</div>
</div>
<div class="input-line double-col" id="roomsListExhibitionMode">
<label>Modo de exibição</label>
<div class="input-line double-col">
<label for="roomsListExhibitionMode">{{_ "Sidebar_list_mode"}}</label>
<div>
<select class="input-monitor" name="roomsListExhibitionMode">
<option value="unread" selected="{{selected 'roomsListExhibitionMode' 'unread'}}">nao lidas primeiro</option>
<option value="activity" selected="{{selected 'roomsListExhibitionMode' 'activity'}}">ordenar por atividade</option>
<option value="category" selected="{{selected 'roomsListExhibitionMode' 'category' true}}">separado em categoria</option>
<select class="input-monitor" name="roomsListExhibitionMode" id="roomsListExhibitionMode">
<option value="unread" selected="{{selected 'roomsListExhibitionMode' 'unread'}}">{{_ "Unread_Rooms_Mode"}}</option>
<option value="activity" selected="{{selected 'roomsListExhibitionMode' 'activity'}}">{{_ "Sort_by_activity"}}</option>
<option value="category" selected="{{selected 'roomsListExhibitionMode' 'category' true}}">{{_ "Split_by_categories"}}</option>
</select>
<div class="info">{{_ "Enter_Behaviour_Description"}}</div>
</div>
</div>
{{# with disabled=showMergedChannels}}

Loading…
Cancel
Save