57 lines
2.3 KiB
PHP
57 lines
2.3 KiB
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
$lang['profile_social_networks'] = 'Soziale Netzwerke';
|
|
|
|
// Profile card
|
|
$lang['profile_follow'] = 'Folgen';
|
|
$lang['profile_following'] = 'Folgt';
|
|
$lang['profile_unfollow'] = 'Entfolgen';
|
|
|
|
$lang['profile_gender'] = 'Geschlecht';
|
|
$lang['profile_gender_male'] = 'Männlich';
|
|
$lang['profile_gender_female'] = 'Weiblich';
|
|
$lang['profile_gender_other'] = 'Anderes';
|
|
|
|
$lang['profile_country'] = 'Land';
|
|
$lang['profile_language'] = 'Sprache';
|
|
$lang['profile_user_rank'] = 'Nutzer-Rang';
|
|
$lang['profile_rank'] = 'Rang';
|
|
$lang['profile_account_age'] = 'Account-Alter';
|
|
$lang['profile_account_created'] = 'Account erstellt %1$s';
|
|
$lang['profile_birth_date'] = 'Geburtsdatum';
|
|
$lang['profile_born'] = 'Geboren am';
|
|
|
|
// Profile page header
|
|
$lang['profile_contributions'] = 'Beiträge';
|
|
$lang['profile_posts'] = 'Posts';
|
|
$lang['profile_blog_posts'] = 'Blog-Posts';
|
|
$lang['profile_blog_comments'] = 'Blog-Kommentare';
|
|
$lang['profile_followers'] = 'Follower';
|
|
$lang['profile_followed_users'] = 'Folgt';
|
|
$lang['profile_edit'] = 'Profil bearbeiten';
|
|
|
|
// Content
|
|
$lang['profile_all_posts'] = 'Alle Posts';
|
|
$lang['profile_view_posts'] = 'Alle Posts ansehen';
|
|
$lang['profile_all_blog_posts'] = 'Alle Blog-Posts';
|
|
$lang['profile_view_blog_posts'] = 'Alle Blog-Posts ansehen';
|
|
$lang['profile_all_blog_comments'] = 'Alle Blog-Kommentare';
|
|
$lang['profile_view_blog_comments'] = 'Alle Blog-Kommentare ansehen';
|
|
$lang['profile_all_followers'] = 'Alle Follower';
|
|
$lang['profile_all_followed'] = 'Alle gefolgten Nutzer';
|
|
|
|
// Feed
|
|
$lang['feed_your_feed'] = 'Dein Feed';
|
|
$lang['feed_popular'] = 'Beliebt';
|
|
$lang['feed_top_users'] = 'Top User';
|
|
$lang['feed_trending_users'] = 'Aufstrebende User';
|
|
$lang['feed_your_profile'] = 'Dein Profil';
|
|
$lang['feed_search'] = 'Suchen';
|
|
$lang['feed_search_all'] = 'Alle';
|
|
$lang['feed_search_user'] = 'Nutzer';
|
|
$lang['feed_search_posts'] = 'Posts';
|
|
$lang['feed_search_media'] = 'Medien';
|
|
|
|
$lang['post_like_account_missing'] = 'Du musst eingeloggt sein, um Posts zu bewerten. <a href="' . base_url('login') . '" class="alert-link">Erstelle dir kostenlos einen Account oder melde dich an.</a>';
|