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 '_' => 'Ordenar por', 8 9 'all' => 'Todos', 10 'friends' => 'Amigos', 11 'last_visit' => 'Recentemente ativos', 12 'new' => 'Recente', 13 'old' => 'Antigo', 14 'rank' => 'Classificação', 15 'top' => 'Melhor', 16 'username' => 'Nome de utilizador', 17 18 'artist_tracks' => [ 19 'album' => 'Álbum', 20 'artist' => 'Artista', 21 'bpm' => 'BPM', 22 'genre' => 'Género', 23 'length' => 'Duração', 24 'relevance' => 'Relevância', 25 'title' => 'Título', 26 'update' => 'Atualização', 27 ], 28 29 'forum_posts' => [ 30 'created' => 'Hora da publicação', 31 'relevance' => 'Relevância', 32 ], 33 34 'forum_topics' => [ 35 'created' => 'Criado', 36 'feature_votes' => 'Prioridade estrela', 37 'new' => 'Última resposta', 38 ], 39 40 'users' => [ 41 'relevance' => 'Relevância', 42 'username' => 'Nome', 43 ], 44];