Merge branch 'StaticallyTypedRice-webclient' of https://github.com/StaticallyTypedRice/lemmy into StaticallyTypedRice-StaticallyTypedRice-webclient

This commit is contained in:
Dessalines 2020-02-04 11:20:58 -05:00
commit 238be5f71c
3 changed files with 5 additions and 0 deletions

View File

@ -356,6 +356,9 @@ export class User extends Component<any, UserState> {
<div> <div>
{i18n.t('joined')} <MomentTime data={user} /> {i18n.t('joined')} <MomentTime data={user} />
</div> </div>
<div>
{i18n.t('total_number_of_points', { count: (user.post_score + user.comment_score) })}
</div>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-bordered table-sm mt-2 mb-0"> <table class="table table-bordered table-sm mt-2 mb-0">
<tr> <tr>

View File

@ -74,6 +74,7 @@ export const de = {
number_of_users: '{{count}} Benutzer', number_of_users: '{{count}} Benutzer',
number_of_subscribers: '{{count}} Abonnenten', number_of_subscribers: '{{count}} Abonnenten',
number_of_points: '{{count}} Punkte', number_of_points: '{{count}} Punkte',
total_number_of_points: '{{count}} Gesamtpunkte',
number_online: '{{count}} Benutzer online', number_online: '{{count}} Benutzer online',
name: 'Name', name: 'Name',
title: 'Titel', title: 'Titel',

View File

@ -81,6 +81,7 @@ export const en = {
number_of_users: '{{count}} Users', number_of_users: '{{count}} Users',
number_of_subscribers: '{{count}} Subscribers', number_of_subscribers: '{{count}} Subscribers',
number_of_points: '{{count}} Points', number_of_points: '{{count}} Points',
total_number_of_points: '{{count}} Total Points',
number_online: '{{count}} Users Online', number_online: '{{count}} Users Online',
name: 'Name', name: 'Name',
title: 'Title', title: 'Title',