mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
Some minor fixes.
This commit is contained in:
parent
ac943f8951
commit
ccda4d8453
3 changed files with 55 additions and 35 deletions
1
ui/src/components/login.tsx
vendored
1
ui/src/components/login.tsx
vendored
|
@ -212,7 +212,6 @@ export class Login extends Component<any, State> {
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{this.state.enable_nsfw && (
|
||||
<div class="form-group row">
|
||||
<div class="col-sm-10">
|
||||
|
|
19
ui/src/components/post.tsx
vendored
19
ui/src/components/post.tsx
vendored
|
@ -233,6 +233,18 @@ export class Post extends Component<any, PostState> {
|
|||
onChange={linkEvent(this, this.handleCommentSortChange)}
|
||||
/>
|
||||
</label>
|
||||
<label
|
||||
className={`btn btn-sm btn-secondary pointer ${this.state
|
||||
.commentSort === CommentSortType.Old && 'active'}`}
|
||||
>
|
||||
{i18n.t('old')}
|
||||
<input
|
||||
type="radio"
|
||||
value={CommentSortType.Old}
|
||||
checked={this.state.commentSort === CommentSortType.Old}
|
||||
onChange={linkEvent(this, this.handleCommentSortChange)}
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
@ -313,6 +325,13 @@ export class Post extends Component<any, PostState> {
|
|||
+a.comment.deleted - +b.comment.deleted ||
|
||||
b.comment.published.localeCompare(a.comment.published)
|
||||
);
|
||||
} else if (this.state.commentSort == CommentSortType.Old) {
|
||||
tree.sort(
|
||||
(a, b) =>
|
||||
+a.comment.removed - +b.comment.removed ||
|
||||
+a.comment.deleted - +b.comment.deleted ||
|
||||
a.comment.published.localeCompare(b.comment.published)
|
||||
);
|
||||
} else if (this.state.commentSort == CommentSortType.Hot) {
|
||||
tree.sort(
|
||||
(a, b) =>
|
||||
|
|
70
ui/src/translations/de.ts
vendored
70
ui/src/translations/de.ts
vendored
|
@ -15,9 +15,9 @@ export const de = {
|
|||
remove_comment: 'Kommentar löschen',
|
||||
communities: 'Communities',
|
||||
users: 'Benutzer',
|
||||
create_a_community: 'Eine community anlegen',
|
||||
create_community: 'Community anlegen',
|
||||
remove_community: 'Community entfernen',
|
||||
create_a_community: 'Eine Gemeinschaft anlegen',
|
||||
create_community: 'Gemeinschaft anlegen',
|
||||
remove_community: 'Gemeinschaft entfernen',
|
||||
subscribed_to_communities: 'Abonnierte <1>communities</1>',
|
||||
trending_communities: 'Trending <1>communities</1>',
|
||||
list_of_communities: 'Liste von communities',
|
||||
|
@ -36,17 +36,17 @@ export const de = {
|
|||
unsticky: 'nicht haftend',
|
||||
link: 'link',
|
||||
archive_link: 'Archiv-Link',
|
||||
mod: 'mod',
|
||||
mods: 'mods',
|
||||
mod: 'Moderator',
|
||||
mods: 'Moderatoren',
|
||||
moderates: 'Moderiert',
|
||||
settings: 'Einstellungen',
|
||||
remove_as_mod: 'Als mod entfernen',
|
||||
appoint_as_mod: 'Zum mod ernennen',
|
||||
remove_as_mod: 'Als Moderator entfernen',
|
||||
appoint_as_mod: 'Zum Moderator ernennen',
|
||||
modlog: 'Modlog',
|
||||
admin: 'admin',
|
||||
admins: 'admins',
|
||||
remove_as_admin: 'Als admin entfernen',
|
||||
appoint_as_admin: 'Zum admin ernennen',
|
||||
admin: 'Administrator',
|
||||
admins: 'Administratoren',
|
||||
remove_as_admin: 'Als Administrator entfernen',
|
||||
appoint_as_admin: 'Zum Administrator ernennen',
|
||||
remove: 'entfernen',
|
||||
removed: 'entfernt',
|
||||
locked: 'gesperrt',
|
||||
|
@ -66,11 +66,11 @@ export const de = {
|
|||
unban_from_site: 'Von der Seite entbannen',
|
||||
banned: 'gesperrt',
|
||||
save: 'speichern',
|
||||
unsave: 'unsave',
|
||||
unsave: 'nicht speichern',
|
||||
create: 'anlegen',
|
||||
creator: 'Ersteller',
|
||||
username: 'Username',
|
||||
email_or_username: 'Email oder Username',
|
||||
username: 'Benutzername',
|
||||
email_or_username: 'E-mail oder Username',
|
||||
number_of_users: '{{count}} Benutzer',
|
||||
number_of_subscribers: '{{count}} Abonnenten',
|
||||
number_of_points: '{{count}} Punkte',
|
||||
|
@ -86,7 +86,7 @@ export const de = {
|
|||
subscribed: 'Abonniert',
|
||||
prev: 'Zurück',
|
||||
next: 'Weiter',
|
||||
sidebar: 'Sidebar',
|
||||
sidebar: 'Seitenleiste',
|
||||
sort_type: 'Sortieren nach',
|
||||
hot: 'Hot',
|
||||
new: 'Neu',
|
||||
|
@ -116,28 +116,29 @@ export const de = {
|
|||
password: 'Passwort',
|
||||
verify_password: 'Passwort überprüfen',
|
||||
forgot_password: 'Passwort vergessen',
|
||||
reset_password_mail_sent: 'Eine E-Mail wurde geschickt, um dein Passwort zurückzusetzen.',
|
||||
reset_password_mail_sent:
|
||||
'Eine E-Mail wurde geschickt, um dein Passwort zurückzusetzen.',
|
||||
password_change: 'Passwort geändert',
|
||||
new_password: 'neues Passwort',
|
||||
no_email_setup: "Dieser Server hat E-Mails nicht korrekt eingerichtet.",
|
||||
no_email_setup: 'Dieser Server hat E-Mails nicht korrekt eingerichtet.',
|
||||
login: 'Einloggen',
|
||||
sign_up: 'Registrieren',
|
||||
email: 'Email',
|
||||
optional: 'Optional',
|
||||
email: 'E-Mail',
|
||||
optional: 'optional',
|
||||
expires: 'Ablaufdatum',
|
||||
language: 'Sprache',
|
||||
browser_default: 'Standard-Browser',
|
||||
url: 'URL',
|
||||
body: 'Text',
|
||||
copy_suggested_title: 'Vorgeschlagenen Titel übernehmen: {{title}}',
|
||||
community: 'Community',
|
||||
expand_here: 'Expand here',
|
||||
community: 'Gemeinschaft',
|
||||
expand_here: 'hier erweitern',
|
||||
subscribe_to_communities: 'Abonniere ein paar <1>communities</1>.',
|
||||
chat: 'Chat',
|
||||
recent_comments: 'Neueste Kommentare',
|
||||
no_results: 'Keine Ergebnisse.',
|
||||
setup: 'Setup',
|
||||
lemmy_instance_setup: 'Lemmy Instanz Setup',
|
||||
setup: 'Einrichten',
|
||||
lemmy_instance_setup: 'Lemmy Instanz Einrichten',
|
||||
setup_admin: 'Seiten Administrator konfigurieren',
|
||||
your_site: 'deine Seite',
|
||||
modified: 'verändert',
|
||||
|
@ -151,7 +152,7 @@ export const de = {
|
|||
support_on_patreon: 'Auf Patreon unterstützen',
|
||||
general_sponsors:
|
||||
'Allgemeine Sponsoren sind die, die zwischen $10 und $39 zu Lemmy beitragen.',
|
||||
crypto: 'Crypto',
|
||||
crypto: 'Kryptowährung',
|
||||
bitcoin: 'Bitcoin',
|
||||
ethereum: 'Ethereum',
|
||||
monero: 'Monero',
|
||||
|
@ -159,16 +160,16 @@ export const de = {
|
|||
joined: 'beigetreten',
|
||||
by: 'von',
|
||||
to: 'bis',
|
||||
transfer_community: 'Transfer-Community',
|
||||
transfer_community: 'Gemeinschaft übertragen',
|
||||
transfer_site: 'Transferseite',
|
||||
are_you_sure: 'Bist du sicher?',
|
||||
yes: 'Ja',
|
||||
no: 'Nein',
|
||||
powered_by: 'Bereitgestellt durch',
|
||||
landing_0:
|
||||
'Lemmy ist ein <1>Link Aggregator</1> / Reddit Alternative im <2>Fediverse</2>.<3></3>Es ist selbst-hostbar, hat live-updates von Kommentar-threads und ist winzig (<4>~80kB</4>). Federation in das ActivityPub Netzwerk ist geplant. <5></5>Dies ist eine <6>sehr frühe Beta Version</6>, und viele Features funktionieren zurzeit nicht richtig oder fehlen. <7></7>Schlage neue Features vor oder melde Bugs <8>hier.</8><9></9>Gebaut mit <10>Rust</10>, <11>Actix</11>, <12>Inferno</12>, <13>Typescript</13>.',
|
||||
'Lemmy ist ein <1>Link-Aggregator</1> / Reddit Alternative im <2>Fediverse</2>.<3></3>Es ist selbst-hostbar, hat live-updates von Kommentar-threads und ist winzig (<4>~80kB</4>). Federation in das ActivityPub Netzwerk ist geplant. <5></5>Dies ist eine <6>sehr frühe Beta Version</6>, und viele Features funktionieren zurzeit nicht richtig oder fehlen. <7></7>Schlage neue Features vor oder melde Bugs <8>hier.</8><9></9>Gebaut mit <10>Rust</10>, <11>Actix</11>, <12>Inferno</12>, <13>Typescript</13>.',
|
||||
not_logged_in: 'Nicht eingeloggt.',
|
||||
community_ban: 'Du wurdest von dieser Community gebannt.',
|
||||
community_ban: 'Du wurdest von dieser Gemeinschaft gebannt.',
|
||||
site_ban: 'Du wurdest von dieser Seite gebannt',
|
||||
couldnt_create_comment: 'Konnte Kommentar nicht anlegen.',
|
||||
couldnt_like_comment: 'Konnte nicht liken.',
|
||||
|
@ -176,14 +177,15 @@ export const de = {
|
|||
couldnt_save_comment: 'Konnte Kommentar nicht speichern.',
|
||||
no_comment_edit_allowed: 'Keine Erlaubnis Kommentar zu editieren.',
|
||||
no_post_edit_allowed: 'Keine Erlaubnis Beitrag zu editieren.',
|
||||
no_community_edit_allowed: 'Keine Erlaubnis Community zu editieren.',
|
||||
couldnt_find_community: 'Konnte Community nicht finden.',
|
||||
couldnt_update_community: 'Konnte Community nicht aktualisieren.',
|
||||
community_already_exists: 'Community existiert bereits.',
|
||||
no_community_edit_allowed: 'Keine Erlaubnis Gemeinschaft zu editieren.',
|
||||
couldnt_find_community: 'Konnte Gemeinschaft nicht finden.',
|
||||
couldnt_update_community: 'Konnte Gemeinschaft nicht aktualisieren.',
|
||||
community_already_exists: 'Gemeinschaft existiert bereits.',
|
||||
community_moderator_already_exists:
|
||||
'Community Moderator existiert bereits.',
|
||||
community_follower_already_exists: 'Community Follower existiert bereits.',
|
||||
community_user_already_banned: 'Community Nutzer schon gebannt.',
|
||||
'Gemeinschaft Moderator existiert bereits.',
|
||||
community_follower_already_exists:
|
||||
'Gemeinschaft Follower existiert bereits.',
|
||||
community_user_already_banned: 'Gemeinschaft Nutzer schon gebannt.',
|
||||
couldnt_create_post: 'Konnte Beitrag nicht anlegen.',
|
||||
couldnt_like_post: 'Konnte Beitrag nicht liken.',
|
||||
couldnt_find_post: 'Konnte Beitrag nicht finden.',
|
||||
|
|
Loading…
Reference in a new issue