mirror of https://github.com/zulip/zulip.git
settings: Improve placeholder text for empty settings tables.
Fixes: #27250.
This commit is contained in:
parent
144c2c2f11
commit
86e306a679
|
@ -37,7 +37,7 @@
|
|||
{{/if}}
|
||||
</thead>
|
||||
<tbody id="admin_bots_table" class="admin_bot_table"
|
||||
data-empty="{{t 'No bots found.' }}" data-search-results-empty="{{t 'No bots match your current filter.' }}"></tbody>
|
||||
data-empty="{{t 'There are no bots.' }}" data-search-results-empty="{{t 'No bots match your current filter.' }}"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div id="admin_page_bots_loading_indicator"></div>
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
<th>{{t "Status" }}</th>
|
||||
<th class="actions">{{t "Actions" }}</th>
|
||||
</thead>
|
||||
<tbody id="admin_exports_table" data-empty="{{t 'No exports found.' }}"></tbody>
|
||||
<tbody id="admin_exports_table" data-empty="{{t 'There are no exports.' }}"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
{{/if}}
|
||||
</thead>
|
||||
<tbody id="admin_deactivated_users_table" class="admin_user_table"
|
||||
data-empty="{{t 'No deactivated users found.' }}" data-search-results-empty="{{t 'No users match your current filter.' }}"></tbody>
|
||||
data-empty="{{t 'There are no deactivated users.' }}" data-search-results-empty="{{t 'No users match your current filter.' }}"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div id="admin_page_deactivated_users_loading_indicator"></div>
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
<th class="actions">{{t "Actions" }}</th>
|
||||
{{/if}}
|
||||
</thead>
|
||||
<tbody data-empty="{{t 'No default streams found.' }}" data-search-results-empty="{{t 'No default streams match your current filter.' }}"
|
||||
<tbody data-empty="{{t 'There are no default streams.' }}" data-search-results-empty="{{t 'No default streams match your current filter.' }}"
|
||||
id="admin_default_streams_table" class="admin_default_stream_table"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<th class="image" data-sort="author_full_name">{{t "Author" }}</th>
|
||||
<th class="actions">{{t "Actions" }}</th>
|
||||
</thead>
|
||||
<tbody id="admin_emoji_table" data-empty="{{t 'No custom emojis found.' }}" data-search-results-empty="{{t 'No custom emojis match your current filter.' }}"></tbody>
|
||||
<tbody id="admin_emoji_table" data-empty="{{t 'There are no custom emoji.' }}" data-search-results-empty="{{t 'No custom emojis match your current filter.' }}"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
<th data-sort="numeric" data-sort-prop="invited_as">{{t "Invited as" }}</th>
|
||||
<th class="actions">{{t "Actions" }}</th>
|
||||
</thead>
|
||||
<tbody id="admin_invites_table" class="admin_invites_table" data-empty="{{t 'No invites found.' }}" data-search-results-empty="{{t 'No invites match your current filter.' }}"></tbody>
|
||||
<tbody id="admin_invites_table" class="admin_invites_table" data-empty="{{t 'There are no invites.' }}" data-search-results-empty="{{t 'No invites match your current filter.' }}"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div id="admin_page_invites_loading_indicator"></div>
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
<th class="actions">{{t "Actions" }}</th>
|
||||
{{/if}}
|
||||
</thead>
|
||||
<tbody id="admin_linkifiers_table" data-empty="{{t 'No linkifiers set.' }}" data-search-results-empty="{{t 'No linkifiers match your current filter.' }}"></tbody>
|
||||
<tbody id="admin_linkifiers_table" data-empty="{{t 'No linkifiers configured.' }}" data-search-results-empty="{{t 'No linkifiers match your current filter.' }}"></tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue