From a1b490afa756a71b9cef4afa424575bc223bc612 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 8 Apr 2018 02:30:37 +0900 Subject: [PATCH] Post --> Note Closes #1411 --- locales/en.yml | 86 +-- locales/ja.yml | 74 +-- src/client/app/auth/views/form.vue | 2 +- src/client/app/ch/tags/channel.tag | 68 +- src/client/app/common/mios.ts | 4 +- .../common/scripts/compose-notification.ts | 10 +- .../app/common/scripts/parse-search-query.ts | 4 +- .../app/common/views/components/index.ts | 4 +- .../components/messaging-room.message.vue | 2 +- .../components/{post-html.ts => note-html.ts} | 2 +- .../{post-menu.vue => note-menu.vue} | 10 +- .../app/common/views/components/poll.vue | 8 +- .../views/components/reaction-picker.vue | 6 +- .../views/components/reactions-viewer.vue | 4 +- .../views/components/welcome-timeline.vue | 26 +- src/client/app/desktop/api/post.ts | 8 +- src/client/app/desktop/script.ts | 16 +- .../views/components/activity.calendar.vue | 2 +- .../views/components/activity.chart.vue | 16 +- .../app/desktop/views/components/index.ts | 32 +- .../app/desktop/views/components/mentions.vue | 24 +- ...ost-detail.sub.vue => note-detail.sub.vue} | 22 +- .../desktop/views/components/note-detail.vue | 448 +++++++++++++ .../{post-preview.vue => note-preview.vue} | 22 +- ...{posts.post.sub.vue => notes.note.sub.vue} | 18 +- .../desktop/views/components/notes.note.vue | 596 ++++++++++++++++++ .../views/components/{posts.vue => notes.vue} | 38 +- .../views/components/notifications.vue | 54 +- .../desktop/views/components/post-detail.vue | 84 +-- .../views/components/post-form-window.vue | 6 +- .../desktop/views/components/post-form.vue | 32 +- .../desktop/views/components/posts.post.vue | 104 +-- .../views/components/renote-form-window.vue | 42 ++ .../desktop/views/components/renote-form.vue | 131 ++++ .../views/components/repost-form-window.vue | 6 +- .../desktop/views/components/repost-form.vue | 26 +- .../views/components/sub-note-content.vue | 44 ++ .../views/components/sub-post-content.vue | 44 -- .../app/desktop/views/components/timeline.vue | 42 +- .../views/components/ui.header.post.vue | 6 +- .../desktop/views/components/user-preview.vue | 2 +- src/client/app/desktop/views/pages/home.vue | 12 +- .../views/pages/{post.vue => note.vue} | 18 +- src/client/app/desktop/views/pages/search.vue | 32 +- .../desktop/views/pages/user/user.home.vue | 2 +- .../desktop/views/pages/user/user.photos.vue | 8 +- .../desktop/views/pages/user/user.profile.vue | 2 +- .../views/pages/user/user.timeline.vue | 24 +- .../views/widgets/channel.channel.form.vue | 4 +- ...nnel.post.vue => channel.channel.note.vue} | 24 +- .../desktop/views/widgets/channel.channel.vue | 36 +- .../app/desktop/views/widgets/polls.vue | 8 +- .../app/desktop/views/widgets/post-form.vue | 4 +- .../app/desktop/views/widgets/trends.vue | 24 +- src/client/app/dev/views/new-app.vue | 2 +- src/client/app/mobile/api/post.ts | 20 +- src/client/app/mobile/script.ts | 4 +- .../app/mobile/views/components/activity.vue | 16 +- .../app/mobile/views/components/index.ts | 24 +- .../{post-card.vue => note-card.vue} | 18 +- ...ost-detail.sub.vue => note-detail.sub.vue} | 16 +- .../mobile/views/components/note-detail.vue | 462 ++++++++++++++ .../{post-preview.vue => note-preview.vue} | 18 +- .../components/{post.sub.vue => note.sub.vue} | 16 +- .../app/mobile/views/components/note.vue | 540 ++++++++++++++++ .../views/components/{posts.vue => notes.vue} | 34 +- .../views/components/notification-preview.vue | 42 +- .../mobile/views/components/notification.vue | 38 +- .../mobile/views/components/post-detail.vue | 80 +-- .../app/mobile/views/components/post-form.vue | 10 +- .../app/mobile/views/components/post.vue | 90 +-- .../views/components/sub-note-content.vue | 43 ++ .../views/components/sub-post-content.vue | 43 -- .../app/mobile/views/components/timeline.vue | 38 +- .../mobile/views/components/user-timeline.vue | 32 +- src/client/app/mobile/views/pages/home.vue | 12 +- .../mobile/views/pages/{post.vue => note.vue} | 18 +- src/client/app/mobile/views/pages/search.vue | 30 +- src/client/app/mobile/views/pages/user.vue | 8 +- .../user/{home.posts.vue => home.notes.vue} | 20 +- .../mobile/views/pages/user/home.photos.vue | 12 +- .../app/mobile/views/pages/user/home.vue | 14 +- src/client/app/stats/tags/index.tag | 28 +- .../endpoints/{posts => notes}/create.yaml | 22 +- .../endpoints/{posts => notes}/timeline.yaml | 6 +- src/client/docs/api/entities/note.yaml | 174 +++++ src/client/docs/api/entities/post.yaml | 40 +- src/client/docs/api/entities/user.yaml | 16 +- src/client/docs/mute.ja.pug | 2 +- src/client/docs/search.ja.pug | 16 +- src/models/favorite.ts | 2 +- .../{post-reaction.ts => note-reaction.ts} | 12 +- src/models/note-watching.ts | 13 + src/models/{post.ts => note.ts} | 116 ++-- src/models/notification.ts | 14 +- src/models/poll-vote.ts | 2 +- src/models/post-watching.ts | 13 - src/models/user.ts | 18 +- src/othello/ai/back.ts | 10 +- src/othello/ai/front.ts | 18 +- src/publishers/stream.ts | 6 +- .../processors/http/report-github-failure.ts | 4 +- src/remote/activitypub/act/create/note.ts | 22 +- src/remote/activitypub/act/delete/index.ts | 6 +- src/remote/activitypub/act/delete/note.ts | 12 +- src/remote/activitypub/act/like.ts | 12 +- src/remote/activitypub/renderer/like.ts | 4 +- src/remote/activitypub/renderer/note.ts | 28 +- src/remote/activitypub/resolve-person.ts | 4 +- src/renderers/get-note-summary.ts | 45 ++ src/renderers/get-notification-summary.ts | 16 +- src/renderers/get-post-summary.ts | 45 -- src/renderers/get-user-summary.ts | 2 +- src/server/activitypub/index.ts | 4 +- src/server/activitypub/{post.ts => note.ts} | 12 +- src/server/activitypub/outbox.ts | 8 +- src/server/api/bot/core.ts | 22 +- src/server/api/bot/interfaces/line.ts | 18 +- src/server/api/endpoints.ts | 54 +- .../aggregation/{posts => notes}/reaction.ts | 24 +- .../aggregation/{posts => notes}/reactions.ts | 26 +- .../aggregation/{posts => notes}/reply.ts | 24 +- .../aggregation/{posts => notes}/repost.ts | 24 +- src/server/api/endpoints/aggregation/posts.ts | 22 +- .../endpoints/aggregation/users/activity.ts | 20 +- .../api/endpoints/aggregation/users/post.ts | 22 +- .../endpoints/aggregation/users/reaction.ts | 2 +- src/server/api/endpoints/app/create.ts | 2 +- .../api/endpoints/app/name_id/available.ts | 2 +- src/server/api/endpoints/app/show.ts | 2 +- src/server/api/endpoints/auth/accept.ts | 2 +- .../api/endpoints/auth/session/generate.ts | 2 +- src/server/api/endpoints/auth/session/show.ts | 2 +- .../api/endpoints/auth/session/userkey.ts | 2 +- src/server/api/endpoints/channels/posts.ts | 10 +- src/server/api/endpoints/i/favorites.ts | 4 +- src/server/api/endpoints/i/pin.ts | 20 +- src/server/api/endpoints/meta.ts | 2 +- .../api/endpoints/{posts => notes}/context.ts | 30 +- src/server/api/endpoints/notes/create.ts | 251 ++++++++ .../{posts => notes}/favorites/create.ts | 22 +- .../{posts => notes}/favorites/delete.ts | 20 +- .../endpoints/{posts => notes}/mentions.ts | 6 +- .../{posts => notes}/polls/recommendation.ts | 12 +- .../endpoints/{posts => notes}/polls/vote.ts | 48 +- .../endpoints/{posts => notes}/reactions.ts | 24 +- .../{posts => notes}/reactions/create.ts | 24 +- .../{posts => notes}/reactions/delete.ts | 24 +- .../api/endpoints/{posts => notes}/replies.ts | 28 +- .../api/endpoints/{posts => notes}/reposts.ts | 28 +- .../api/endpoints/{posts => notes}/search.ts | 42 +- src/server/api/endpoints/notes/show.ts | 32 + .../endpoints/{posts => notes}/timeline.ts | 10 +- .../api/endpoints/{posts => notes}/trend.ts | 24 +- src/server/api/endpoints/posts.ts | 18 +- src/server/api/endpoints/posts/create.ts | 108 ++-- src/server/api/endpoints/posts/show.ts | 32 - src/server/api/endpoints/stats.ts | 12 +- .../users/get_frequently_replied_users.ts | 18 +- src/server/api/endpoints/users/posts.ts | 10 +- src/server/api/private/signup.ts | 2 +- src/server/api/service/github.ts | 2 +- src/server/api/stream/home.ts | 24 +- src/services/{post => note}/create.ts | 123 ++-- .../{post => note}/reaction/create.ts | 50 +- src/services/{post => note}/watch.ts | 10 +- tools/migration/nighthike/11.js | 35 + 167 files changed, 4440 insertions(+), 1762 deletions(-) rename src/client/app/common/views/components/{post-html.ts => note-html.ts} (98%) rename src/client/app/common/views/components/{post-menu.vue => note-menu.vue} (93%) rename src/client/app/desktop/views/components/{post-detail.sub.vue => note-detail.sub.vue} (76%) create mode 100644 src/client/app/desktop/views/components/note-detail.vue rename src/client/app/desktop/views/components/{post-preview.vue => note-preview.vue} (72%) rename src/client/app/desktop/views/components/{posts.post.sub.vue => notes.note.sub.vue} (76%) create mode 100644 src/client/app/desktop/views/components/notes.note.vue rename src/client/app/desktop/views/components/{posts.vue => notes.vue} (56%) create mode 100644 src/client/app/desktop/views/components/renote-form-window.vue create mode 100644 src/client/app/desktop/views/components/renote-form.vue create mode 100644 src/client/app/desktop/views/components/sub-note-content.vue delete mode 100644 src/client/app/desktop/views/components/sub-post-content.vue rename src/client/app/desktop/views/pages/{post.vue => note.vue} (65%) rename src/client/app/desktop/views/widgets/{channel.channel.post.vue => channel.channel.note.vue} (65%) rename src/client/app/mobile/views/components/{post-card.vue => note-card.vue} (81%) rename src/client/app/mobile/views/components/{post-detail.sub.vue => note-detail.sub.vue} (80%) create mode 100644 src/client/app/mobile/views/components/note-detail.vue rename src/client/app/mobile/views/components/{post-preview.vue => note-preview.vue} (81%) rename src/client/app/mobile/views/components/{post.sub.vue => note.sub.vue} (80%) create mode 100644 src/client/app/mobile/views/components/note.vue rename src/client/app/mobile/views/components/{posts.vue => notes.vue} (65%) create mode 100644 src/client/app/mobile/views/components/sub-note-content.vue delete mode 100644 src/client/app/mobile/views/components/sub-post-content.vue rename src/client/app/mobile/views/pages/{post.vue => note.vue} (71%) rename src/client/app/mobile/views/pages/user/{home.posts.vue => home.notes.vue} (61%) rename src/client/docs/api/endpoints/{posts => notes}/create.yaml (77%) rename src/client/docs/api/endpoints/{posts => notes}/timeline.yaml (93%) create mode 100644 src/client/docs/api/entities/note.yaml rename src/models/{post-reaction.ts => note-reaction.ts} (79%) create mode 100644 src/models/note-watching.ts rename src/models/{post.ts => note.ts} (61%) delete mode 100644 src/models/post-watching.ts create mode 100644 src/renderers/get-note-summary.ts delete mode 100644 src/renderers/get-post-summary.ts rename src/server/activitypub/{post.ts => note.ts} (80%) rename src/server/api/endpoints/aggregation/{posts => notes}/reaction.ts (72%) rename src/server/api/endpoints/aggregation/{posts => notes}/reactions.ts (71%) rename src/server/api/endpoints/aggregation/{posts => notes}/reply.ts (74%) rename src/server/api/endpoints/aggregation/{posts => notes}/repost.ts (74%) rename src/server/api/endpoints/{posts => notes}/context.ts (60%) create mode 100644 src/server/api/endpoints/notes/create.ts rename src/server/api/endpoints/{posts => notes}/favorites/create.ts (62%) rename src/server/api/endpoints/{posts => notes}/favorites/delete.ts (62%) rename src/server/api/endpoints/{posts => notes}/mentions.ts (92%) rename src/server/api/endpoints/{posts => notes}/polls/recommendation.ts (78%) rename src/server/api/endpoints/{posts => notes}/polls/vote.ts (63%) rename src/server/api/endpoints/{posts => notes}/reactions.ts (70%) rename src/server/api/endpoints/{posts => notes}/reactions/create.ts (50%) rename src/server/api/endpoints/{posts => notes}/reactions/delete.ts (63%) rename src/server/api/endpoints/{posts => notes}/replies.ts (63%) rename src/server/api/endpoints/{posts => notes}/reposts.ts (70%) rename src/server/api/endpoints/{posts => notes}/search.ts (91%) create mode 100644 src/server/api/endpoints/notes/show.ts rename src/server/api/endpoints/{posts => notes}/timeline.ts (93%) rename src/server/api/endpoints/{posts => notes}/trend.ts (76%) delete mode 100644 src/server/api/endpoints/posts/show.ts rename src/services/{post => note}/create.ts (75%) rename src/services/{post => note}/reaction/create.ts (59%) rename src/services/{post => note}/watch.ts (59%) create mode 100644 tools/migration/nighthike/11.js diff --git a/locales/en.yml b/locales/en.yml index 2cc857f69..900571124 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -33,7 +33,7 @@ common: confused: "Confused" pudding: "Pudding" - post_categories: + note_categories: music: "Music" game: "Video Game" anime: "Anime" @@ -124,7 +124,7 @@ common: show-result: "Show result" voted: "Voted" - mk-post-menu: + mk-note-menu: pin: "Pin" pinned: "Pinned" select: "Select category" @@ -211,7 +211,7 @@ ch: textarea: "Write here" upload: "Upload" drive: "Drive" - post: "Do" + note: "Do" posting: "Doing" desktop: @@ -304,8 +304,8 @@ desktop: settings: "Settings" signout: "Sign out" - mk-ui-header-post-button: - post: "Compose new Post" + mk-ui-header-note-button: + note: "Compose new Post" mk-ui-header-notifications: title: "Notifications" @@ -350,18 +350,18 @@ desktop: no-users: "No muted users" mk-post-form: - post-placeholder: "What's happening?" - reply-placeholder: "Reply to this post..." - quote-placeholder: "Quote this post..." - post: "Post" + note-placeholder: "What's happening?" + reply-placeholder: "Reply to this note..." + quote-placeholder: "Quote this note..." + note: "Post" reply: "Reply" - repost: "Repost" + renote: "Renote" posted: "Posted!" replied: "Replied!" reposted: "Reposted!" - post-failed: "Failed to post" + note-failed: "Failed to note" reply-failed: "Failed to reply" - repost-failed: "Failed to repost" + renote-failed: "Failed to renote" posting: "Posting" attach-media-from-local: "Attach media from your pc" attach-media-from-drive: "Attach media from the drive" @@ -371,14 +371,14 @@ desktop: text-remain: "{} chars remaining" mk-post-form-window: - post: "New post" + note: "New note" reply: "Reply" attaches: "{} media attached" uploading-media: "Uploading {} media" - mk-post-page: - prev: "Previous post" - next: "Next post" + mk-note-page: + prev: "Previous note" + next: "Next note" mk-settings: profile: "Profile" @@ -390,10 +390,10 @@ desktop: other: "Other" license: "License" - mk-timeline-post: + mk-timeline-note: reposted-by: "Reposted by {}" reply: "Reply" - repost: "Repost" + renote: "Renote" add-reaction: "Add your reaction" detail: "Show detail" @@ -448,7 +448,7 @@ desktop: mk-post-form-home-widget: title: "Post" - post: "Post" + note: "Post" placeholder: "What's happening?" mk-access-log-home-widget: @@ -463,16 +463,16 @@ desktop: have-a-nice-day: "Have a nice day!" next: "Next" - mk-repost-form: + mk-renote-form: quote: "Quote..." cancel: "Cancel" - repost: "Repost" + renote: "Renote" reposting: "Reposting..." success: "Reposted!" - failure: "Failed to Repost" + failure: "Failed to Renote" - mk-repost-form-window: - title: "Are you sure you want to repost this post?" + mk-renote-form-window: + title: "Are you sure you want to renote this note?" mk-user: last-used-at: "Last used at" @@ -541,10 +541,10 @@ mobile: notifications: "Notifications" read-all: "Are you sure you want to mark all unread notifications as read?" - mk-post-page: + mk-note-page: title: "Post" - prev: "Previous post" - next: "Next post" + prev: "Previous note" + next: "Next note" mk-search-page: search: "Search" @@ -606,33 +606,33 @@ mobile: unfollow: "Unfollow" mk-home-timeline: - empty-timeline: "There is no posts" + empty-timeline: "There is no notes" mk-notifications: more: "More" empty: "No notifications" - mk-post-detail: + mk-note-detail: reply: "Reply" reaction: "Reaction" mk-post-form: submit: "Post" - reply-placeholder: "Reply to this post..." - post-placeholder: "What's happening?" + reply-placeholder: "Reply to this note..." + note-placeholder: "What's happening?" - mk-search-posts: - empty: "There is no post related to the 「{}」" + mk-search-notes: + empty: "There is no note related to the 「{}」" - mk-sub-post-content: + mk-sub-note-content: media-count: "{} media" poll: "Poll" - mk-timeline-post: + mk-timeline-note: reposted-by: "Reposted by {}" mk-timeline: - empty: "No posts" + empty: "No notes" load-more: "More" mk-ui-nav: @@ -652,21 +652,21 @@ mobile: no-users: "No following." mk-user-timeline: - no-posts: "This user seems never post" - no-posts-with-media: "There is no posts with media" + no-notes: "This user seems never note" + no-notes-with-media: "There is no notes with media" load-more: "More" mk-user: follows-you: "Follows you" following: "Following" followers: "Followers" - posts: "Posts" + notes: "Posts" overview: "Overview" timeline: "Timeline" media: "Media" mk-user-overview: - recent-posts: "Recent posts" + recent-notes: "Recent notes" images: "Images" activity: "Activity" keywords: "Keywords" @@ -675,9 +675,9 @@ mobile: followers-you-know: "Followers you know" last-used-at: "Last used at" - mk-user-overview-posts: + mk-user-overview-notes: loading: "Loading" - no-posts: "No posts" + no-notes: "No notes" mk-user-overview-photos: loading: "Loading" @@ -703,7 +703,7 @@ mobile: load-more: "More" stats: - posts-count: "Number of all posts" + notes-count: "Number of all notes" users-count: "Number of all users" status: diff --git a/locales/ja.yml b/locales/ja.yml index fd140ecc3..84694e3c7 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -33,7 +33,7 @@ common: confused: "こまこまのこまり" pudding: "Pudding" - post_categories: + note_categories: music: "音楽" game: "ゲーム" anime: "アニメ" @@ -124,7 +124,7 @@ common: show-result: "結果を見る" voted: "投票済み" - mk-post-menu: + mk-note-menu: pin: "ピン留め" pinned: "ピン留めしました" select: "カテゴリを選択" @@ -211,7 +211,7 @@ ch: textarea: "書いて" upload: "アップロード" drive: "ドライブ" - post: "やる" + note: "やる" posting: "やってます" desktop: @@ -304,8 +304,8 @@ desktop: settings: "設定" signout: "サインアウト" - mk-ui-header-post-button: - post: "新規投稿" + mk-ui-header-note-button: + note: "新規投稿" mk-ui-header-notifications: title: "通知" @@ -350,18 +350,18 @@ desktop: no-users: "ミュートしているユーザーはいません" mk-post-form: - post-placeholder: "いまどうしてる?" + note-placeholder: "いまどうしてる?" reply-placeholder: "この投稿への返信..." quote-placeholder: "この投稿を引用..." - post: "投稿" + note: "投稿" reply: "返信" - repost: "Repost" + renote: "Renote" posted: "投稿しました!" replied: "返信しました!" - reposted: "Repostしました!" - post-failed: "投稿に失敗しました" + reposted: "Renoteしました!" + note-failed: "投稿に失敗しました" reply-failed: "返信に失敗しました" - repost-failed: "Repostに失敗しました" + renote-failed: "Renoteに失敗しました" posting: "投稿中" attach-media-from-local: "PCからメディアを添付" attach-media-from-drive: "ドライブからメディアを添付" @@ -371,12 +371,12 @@ desktop: text-remain: "のこり{}文字" mk-post-form-window: - post: "新規投稿" + note: "新規投稿" reply: "返信" attaches: "添付: {}メディア" uploading-media: "{}個のメディアをアップロード中" - mk-post-page: + mk-note-page: prev: "前の投稿" next: "次の投稿" @@ -390,10 +390,10 @@ desktop: other: "その他" license: "ライセンス" - mk-timeline-post: - reposted-by: "{}がRepost" + mk-timeline-note: + reposted-by: "{}がRenote" reply: "返信" - repost: "Repost" + renote: "Renote" add-reaction: "リアクション" detail: "詳細" @@ -448,7 +448,7 @@ desktop: mk-post-form-home-widget: title: "投稿" - post: "投稿" + note: "投稿" placeholder: "いまどうしてる?" mk-access-log-home-widget: @@ -463,16 +463,16 @@ desktop: have-a-nice-day: "良い一日を!" next: "次" - mk-repost-form: + mk-renote-form: quote: "引用する..." cancel: "キャンセル" - repost: "Repost" + renote: "Renote" reposting: "しています..." - success: "Repostしました!" - failure: "Repostに失敗しました" + success: "Renoteしました!" + failure: "Renoteに失敗しました" - mk-repost-form-window: - title: "この投稿をRepostしますか?" + mk-renote-form-window: + title: "この投稿をRenoteしますか?" mk-user: last-used-at: "最終アクセス" @@ -541,7 +541,7 @@ mobile: notifications: "通知" read-all: "すべての通知を既読にしますか?" - mk-post-page: + mk-note-page: title: "投稿" prev: "前の投稿" next: "次の投稿" @@ -612,24 +612,24 @@ mobile: more: "もっと見る" empty: "ありません!" - mk-post-detail: + mk-note-detail: reply: "返信" reaction: "リアクション" mk-post-form: submit: "投稿" reply-placeholder: "この投稿への返信..." - post-placeholder: "いまどうしてる?" + note-placeholder: "いまどうしてる?" - mk-search-posts: + mk-search-notes: empty: "「{}」に関する投稿は見つかりませんでした。" - mk-sub-post-content: + mk-sub-note-content: media-count: "{}個のメディア" poll: "投票" - mk-timeline-post: - reposted-by: "{}がRepost" + mk-timeline-note: + reposted-by: "{}がRenote" mk-timeline: empty: "表示するものがありません" @@ -652,21 +652,21 @@ mobile: no-users: "フォロー中のユーザーはいないようです。" mk-user-timeline: - no-posts: "このユーザーはまだ投稿していないようです。" - no-posts-with-media: "メディア付き投稿はありません。" + no-notes: "このユーザーはまだ投稿していないようです。" + no-notes-with-media: "メディア付き投稿はありません。" load-more: "もっとみる" mk-user: follows-you: "フォローされています" following: "フォロー" followers: "フォロワー" - posts: "投稿" + notes: "投稿" overview: "概要" timeline: "タイムライン" media: "メディア" mk-user-overview: - recent-posts: "最近の投稿" + recent-notes: "最近の投稿" images: "画像" activity: "アクティビティ" keywords: "キーワード" @@ -675,9 +675,9 @@ mobile: followers-you-know: "知り合いのフォロワー" last-used-at: "最終ログイン" - mk-user-overview-posts: + mk-user-overview-notes: loading: "読み込み中" - no-posts: "投稿はありません" + no-notes: "投稿はありません" mk-user-overview-photos: loading: "読み込み中" @@ -703,7 +703,7 @@ mobile: load-more: "もっと" stats: - posts-count: "投稿の数" + notes-count: "投稿の数" users-count: "アカウントの数" status: diff --git a/src/client/app/auth/views/form.vue b/src/client/app/auth/views/form.vue index eb55b9035..b323907eb 100644 --- a/src/client/app/auth/views/form.vue +++ b/src/client/app/auth/views/form.vue @@ -16,7 +16,7 @@