Merge pull request #1009 from pixelfed/frontend-ui-refactor

Frontend ui refactor
This commit is contained in:
daniel 2019-03-11 03:06:13 -06:00 committed by GitHub
commit 2a9a770dba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 15 deletions

View file

@ -158,7 +158,7 @@ class ProfileController extends Controller
public function showAtomFeed(Request $request, $user) public function showAtomFeed(Request $request, $user)
{ {
$profile = $user = Profile::whereUsername($user)->firstOrFail(); $profile = $user = Profile::whereNull('status')->whereNull('domain')->whereUsername($user)->whereIsPrivate(false)->firstOrFail();
if($profile->status != null) { if($profile->status != null) {
return $this->accountCheck($profile); return $this->accountCheck($profile);
} }

View file

@ -1,14 +1,19 @@
<?php return [ <?php
'search' => '検索',
'home' => 'ホーム', return [
'local' => 'ローカル',
'discover' => '見つける', 'search' => '検索',
'viewMyProfile' => '自分のプロフィールを見る', 'home' => 'ホーム',
'myTimeline' => 'タイムライン', 'local' => 'ローカル',
'publicTimeline' => 'パブリックタイムライン', 'network' => 'ネットワーク',
'remoteFollow' => 'リモートフォロー', 'discover' => '見つける',
'settings' => '設定', 'viewMyProfile' => '自分のプロフィールを見る',
'admin' => '管理者', 'myTimeline' => 'タイムライン',
'logout' => 'ログアウト', 'publicTimeline' => 'パブリックタイムライン',
'directMessages' => 'ダイレクトメッセージ', 'remoteFollow' => 'リモートフォロー',
'settings' => '設定',
'admin' => '管理者',
'logout' => 'ログアウト',
'directMessages' => 'ダイレクトメッセージ',
]; ];

View file

@ -7,7 +7,7 @@ return [
'opensource' => 'オープンソース', 'opensource' => 'オープンソース',
'terms' => '規約', 'terms' => '規約',
'privacy' => 'プライバシー', 'privacy' => 'プライバシー',
'l10nWip' => '私達はローカライズサポートに取り組んでいます', 'l10nWip' => '私達はローカライズサポートに取り組んでいます',
'currentLocale' => '現在のロケール', 'currentLocale' => '現在のロケール',
'selectLocale' => 'リストの中からロケール(言語)を選択してください', 'selectLocale' => 'リストの中からロケール(言語)を選択してください',
]; ];