the browser-facing portion of osu!
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 'index' => [
8 'title_page' => 'osu!ニュース',
9
10 'nav' => [
11 'newer' => '次の記事',
12 'older' => '前の記事',
13 ],
14
15 'title' => [
16 '_' => 'ニュース :info',
17 'info' => 'フロントページ',
18 ],
19 ],
20
21 'show' => [
22 'by' => 'by :user',
23
24 'nav' => [
25 'newer' => '次の記事',
26 'older' => '前の記事',
27 ],
28
29 'title' => [
30 '_' => 'ニュース :info',
31 'info' => '記事',
32 ],
33 ],
34
35 'sidebar' => [
36 'archive' => 'ニュース アーカイブ',
37 ],
38
39 'store' => [
40 'button' => '更新',
41 'ok' => '更新完了',
42 ],
43
44 'update' => [
45 'button' => '更新',
46 'ok' => '更新完了',
47 ],
48];