the browser-facing portion of osu!
at master 44 lines 1.1 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 '_' => '정렬 기준', 8 9 'all' => '모두', 10 'friends' => '친구', 11 'last_visit' => '최근 활동', 12 'new' => '최근', 13 'old' => '과거', 14 'rank' => '순위', 15 'top' => '상위', 16 'username' => '유저 이름', 17 18 'artist_tracks' => [ 19 'album' => '앨범', 20 'artist' => '아티스트', 21 'bpm' => 'BPM', 22 'genre' => '장르', 23 'length' => '길이', 24 'relevance' => '연관', 25 'title' => '제목', 26 'update' => '수정', 27 ], 28 29 'forum_posts' => [ 30 'created' => '게시 시각', 31 'relevance' => '연관성', 32 ], 33 34 'forum_topics' => [ 35 'created' => '최근 생성', 36 'feature_votes' => '별 평점 순위', 37 'new' => '최근 응답', 38 ], 39 40 'users' => [ 41 'relevance' => '연관성', 42 'username' => '이름', 43 ], 44];