Minor UX tweaks

This commit is contained in:
Robin Ward 2014-08-11 17:03:12 -04:00
parent c103398e9a
commit 996d14965e
3 changed files with 11 additions and 12 deletions

View File

@ -30,28 +30,23 @@
<h3>{{i18n about.stats}}</h3>
<table class='table'>
<tr>
<th>&nbsp;</th>
<th>{{i18n about.stat.all_time}}</th>
<th>{{i18n about.stat.last_7_days}}</th>
<tr>
<td class='title'>{{i18n about.topic_count}}</td>
<td>{{stats.topic_count}}</td>
</tr>
<tr>
<td>{{i18n about.topics_7_days}}</td>
<td>{{stats.topics_7_days}}</td>
</tr>
<tr>
<td>{{i18n about.post_count}}</td>
<td>{{stats.post_count}}</td>
</tr>
<tr>
<td>{{i18n about.posts_7_days}}</td>
<td>{{stats.posts_7_days}}</td>
</tr>
<tr>
<td>{{i18n about.user_count}}</td>
<td>{{stats.user_count}}</td>
</tr>
<tr>
<td>{{i18n about.users_7_days}}</td>
<td>{{stats.users_7_days}}</td>
</tr>
</table>

View File

@ -21,6 +21,10 @@ section.about {
margin-top: 20px;
width: 100%;
th {
text-align: left;
}
td, th {
padding: 10px 5px 5px 5px;
border-bottom: 1px solid lighten($primary, 70%);

View File

@ -147,12 +147,12 @@ en:
about:
title: "About"
stats: "Site Statistics"
stat:
all_time: "All Time"
last_7_days: "Last 7 Days"
topic_count: "Topic Count"
topics_7_days: "Topic Count (last 7 days)"
post_count: "Post Count"
posts_7_days: "Post Count (last 7 days)"
user_count: "User Count"
users_7_days: "User Count (last 7 days)"
bookmarks:
not_logged_in: "sorry, you must be logged in to bookmark posts"