the browser-facing portion of osu!
at master 59 lines 1.9 kB view raw
1<?php 2 3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0. 4// See the LICENCE file in the repository root for full licence text. 5 6return [ 7 'deleted' => '削除済み', 8 'deleted_by' => ':timeagoに:userによって削除済み ', 9 'deleted_by_system' => 'システム', 10 'deleted_count' => ':count_delimited個の削除されたコメント', 11 'edited' => ':userが:timeagoに編集済み', 12 'pinned' => 'ピン留め', 13 'empty' => 'まだコメントがありません。', 14 'empty_other' => '他のコメントはまだありません。', 15 'load_replies' => '返信を読み込む', 16 'replies_count' => ':count_delimited 返信', 17 'title' => 'コメント', 18 19 'commentable_name' => [ 20 'beatmapset' => 'ビートマップ', 21 'build' => '更新履歴', 22 'news_post' => 'お知らせ', 23 '_deleted' => '削除済みアイテム', 24 ], 25 26 'editor' => [ 27 'textarea_hint' => [ 28 '_' => ':actionを行うためにはEnterキーを押してください。Shift+Enterを押すことで改行できます。', 29 'edit' => '保存', 30 'new' => '投稿', 31 'reply' => '返信', 32 ], 33 ], 34 35 'guest_button' => [ 36 'new' => 'ログインしてコメントする', 37 'reply' => 'ログインして返信する', 38 ], 39 40 'index' => [ 41 'nav_comments' => 'コメント', 42 'nav_title' => '一覧', 43 'no_comments' => 'コメントは見つかりませんでした。', 44 ], 45 46 'ogp' => [ 47 'title' => ':userのコメント', 48 ], 49 50 'placeholder' => [ 51 'edit' => 'コメントをここで編集', 52 'new' => '新しいコメントを入力', 53 'reply' => '返信を入力', 54 ], 55 56 'show' => [ 57 'nav_title' => 'コメント', 58 ], 59];