diff --git a/locales/ja.yml b/locales/ja.yml index 12cdb29395..df9836ac76 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -406,6 +406,7 @@ mobile: following: "フォロー" followers: "フォロワー" posts: "タイムライン" + posts-count: "ポスト" media: "メディア" mk-users-list: diff --git a/src/web/app/desktop/tags/user-profile.tag b/src/web/app/desktop/tags/user-profile.tag index e6def9ffa8..546ccf7325 100644 --- a/src/web/app/desktop/tags/user-profile.tag +++ b/src/web/app/desktop/tags/user-profile.tag @@ -10,7 +10,8 @@

@{ user.twitter.screen_name }

-
+
+

{ user.posts_count }ポスト

{ user.following_count }人をフォロー

{ user.followers_count }人のフォロワー

@@ -66,7 +67,7 @@ > i margin-right 8px - > .friends + > .status padding 16px color #555 border-top solid 1px #eee diff --git a/src/web/app/mobile/tags/user.tag b/src/web/app/mobile/tags/user.tag index 8f0d21b44e..b91935aa6a 100644 --- a/src/web/app/mobile/tags/user.tag +++ b/src/web/app/mobile/tags/user.tag @@ -23,7 +23,11 @@ { user.profile.birthday.replace('-', '年').replace('-', '月') + '日' } ({ age(user.profile.birthday) }歳)

-
+
+ + { user.posts_count } + %i18n:mobile.tags.mk-user.posts-count% + { user.following_count } %i18n:mobile.tags.mk-user.following% @@ -132,7 +136,7 @@ > i margin-right 4px - > .friends + > .status > a color #657786