the browser-facing portion of osu!
at master 62 lines 2.0 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 'cancel' => 'Batal', 8 9 'authorise' => [ 10 'app_owner' => 'aplikasi milik :owner', 11 'request' => 'meminta izin untuk mengakses akunmu.', 12 'scopes_title' => 'Ke depannya, aplikasi ini akan mampu untuk:', 13 'title' => 'Permohonan Otorisasi', 14 ], 15 16 'authorized_clients' => [ 17 'confirm_revoke' => 'Apakah kamu yakin untuk mencabut izin akses klien ini?', 18 'scopes_title' => 'Aplikasi ini dapat:', 19 'owned_by' => 'Dimiliki oleh :user', 20 'none' => 'Tidak Ada Klien', 21 22 'revoked' => [ 23 'false' => 'Cabut Akses', 24 'true' => 'Akses Dicabut', 25 ], 26 ], 27 28 'client' => [ 29 'id' => 'ID Klien', 30 'name' => 'Nama Aplikasi', 31 'redirect' => 'URL Callback Aplikasi', 32 'reset' => 'Atur ulang client secret', 33 'reset_failed' => 'Pengaturan ulang client secret gagal', 34 'secret' => 'Client Secret', 35 36 'secret_visible' => [ 37 'false' => 'Tampilkan client secret', 38 'true' => 'Sembunyikan client secret', 39 ], 40 ], 41 42 'new_client' => [ 43 'header' => 'Daftarkan aplikasi OAuth baru', 44 'register' => 'Daftarkan aplikasi', 45 'terms_of_use' => [ 46 '_' => 'Dengan menggunakan API ini, Anda menyatakan diri setuju terhadap :link yang berlaku.', 47 'link' => 'Ketentuan Penggunaan', 48 ], 49 ], 50 51 'own_clients' => [ 52 'confirm_delete' => 'Apakah kamu yakin untuk menghapus klien ini?', 53 'confirm_reset' => 'Apakah kamu yakin untuk mengatur ulang client secret? Tindakan ini akan menganulir izin akses seluruh token yang ada.', 54 'new' => 'Buat Izin Aplikasi Baru', 55 'none' => 'Tidak Ada Klien', 56 57 'revoked' => [ 58 'false' => 'Hapus', 59 'true' => 'Dihapus', 60 ], 61 ], 62];