the browser-facing portion of osu!
at master 115 lines 3.8 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 'authorizations' => [ 8 'update' => [ 9 'null_user' => 'Must be signed in to edit.', 10 'system_generated' => 'System-generated post can not be edited.', 11 'wrong_user' => 'Must be owner of the post to edit.', 12 ], 13 ], 14 15 'events' => [ 16 'empty' => 'Nothing has happened... yet.', 17 ], 18 19 'index' => [ 20 'deleted_beatmap' => 'deleted', 21 'none_found' => 'No discussions matching that search criteria were found.', 22 'title' => 'Beatmap Discussions', 23 24 'form' => [ 25 '_' => 'Search', 26 'deleted' => 'Include deleted discussions', 27 'mode' => 'Beatmap mode', 28 'only_unresolved' => 'Show only unresolved discussions', 29 'show_review_embeds' => 'Show review posts', 30 'types' => 'Message types', 31 'username' => 'Username', 32 33 'beatmapset_status' => [ 34 '_' => 'Beatmap Status', 35 'all' => 'All', 36 'disqualified' => 'Disqualified', 37 'never_qualified' => 'Never Qualified', 38 'qualified' => 'Qualified', 39 'ranked' => 'Ranked', 40 ], 41 42 'user' => [ 43 'label' => 'User', 44 'overview' => 'Activities overview', 45 ], 46 ], 47 ], 48 49 'item' => [ 50 'created_at' => 'Post date', 51 'deleted_at' => 'Deletion date', 52 'message_type' => 'Type', 53 'permalink' => 'Permalink', 54 ], 55 56 'nearby_posts' => [ 57 'confirm' => 'None of the posts address my concern', 58 'notice' => 'There are posts around :timestamp (:existing_timestamps). Please check them before posting.', 59 'unsaved' => ':count in this review', 60 ], 61 62 'owner_editor' => [ 63 'button' => 'Difficulty Owner', 64 'reset_confirm' => 'Reset owner for this difficulty?', 65 'user' => 'Owner', 66 'version' => 'Difficulty', 67 ], 68 69 'refresh' => [ 70 'checking' => 'Checking for updates...', 71 'has_updates' => 'The discussion has updates, click to refresh.', 72 'no_updates' => 'No updates.', 73 'updating' => 'Updating...', 74 ], 75 76 'reply' => [ 77 'open' => [ 78 'guest' => 'Sign in to Respond', 79 'user' => 'Respond', 80 ], 81 ], 82 83 'review' => [ 84 'block_count' => ':used / :max blocks used', 85 'go_to_parent' => 'View Review Post', 86 'go_to_child' => 'View Discussion', 87 'validation' => [ 88 'block_too_large' => 'each block may only contain up to :limit characters', 89 'external_references' => 'review contains references to issues that don\'t belong to this review', 90 'invalid_block_type' => 'invalid block type', 91 'invalid_document' => 'invalid review', 92 'invalid_discussion_type' => 'invalid discussion type', 93 'minimum_issues' => 'review must contain a minimum of :count issue|review must contain a minimum of :count issues', 94 'missing_text' => 'block is missing text', 95 'too_many_blocks' => 'reviews may only contain :count paragraph/issue|reviews may only contain up to :count paragraphs/issues', 96 ], 97 ], 98 99 'system' => [ 100 'resolved' => [ 101 'true' => 'Marked as resolved by :user', 102 'false' => 'Reopened by :user', 103 ], 104 ], 105 106 'timestamp_display' => [ 107 'general' => 'general', 108 'general_all' => 'general (all)', 109 ], 110 111 'user_filter' => [ 112 'everyone' => 'Everyone', 113 'label' => 'Filter by user', 114 ], 115];