mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-23 05:23:17 +00:00
Merge pull request #1009 from pixelfed/frontend-ui-refactor
Frontend ui refactor
This commit is contained in:
commit
2a9a770dba
3 changed files with 20 additions and 15 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
<?php return [
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
'search' => '検索',
|
'search' => '検索',
|
||||||
'home' => 'ホーム',
|
'home' => 'ホーム',
|
||||||
'local' => 'ローカル',
|
'local' => 'ローカル',
|
||||||
|
'network' => 'ネットワーク',
|
||||||
'discover' => '見つける',
|
'discover' => '見つける',
|
||||||
'viewMyProfile' => '自分のプロフィールを見る',
|
'viewMyProfile' => '自分のプロフィールを見る',
|
||||||
'myTimeline' => 'タイムライン',
|
'myTimeline' => 'タイムライン',
|
||||||
|
@ -11,4 +15,5 @@
|
||||||
'admin' => '管理者',
|
'admin' => '管理者',
|
||||||
'logout' => 'ログアウト',
|
'logout' => 'ログアウト',
|
||||||
'directMessages' => 'ダイレクトメッセージ',
|
'directMessages' => 'ダイレクトメッセージ',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
|
@ -7,7 +7,7 @@ return [
|
||||||
'opensource' => 'オープンソース',
|
'opensource' => 'オープンソース',
|
||||||
'terms' => '規約',
|
'terms' => '規約',
|
||||||
'privacy' => 'プライバシー',
|
'privacy' => 'プライバシー',
|
||||||
'l10nWip' => '私達はローカライズサポートに取り組んでいます。',
|
'l10nWip' => '私達はローカライズサポートに取り組んでいます',
|
||||||
'currentLocale' => '現在のロケール',
|
'currentLocale' => '現在のロケール',
|
||||||
'selectLocale' => 'リストの中からロケール(言語)を選択してください',
|
'selectLocale' => 'リストの中からロケール(言語)を選択してください',
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue