diff options
Diffstat (limited to 'src/web/app/common/scripts')
| -rw-r--r-- | src/web/app/common/scripts/get-post-summary.ls | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/get-post-summary.ls b/src/web/app/common/scripts/get-post-summary.ls index cc7bb0e37d..67178bc324 100644 --- a/src/web/app/common/scripts/get-post-summary.ls +++ b/src/web/app/common/scripts/get-post-summary.ls @@ -3,7 +3,7 @@ get-post-summary = (post) ~> # メディアが添付されているとき if post.media? - summary += " (#{post.media.length}枚のメディア)" + summary += " (#{post.media.length}つのメディア)" # 投票が添付されているとき if post.poll? |