Added japanese language file

This commit is contained in:
Daniel Winzen
2017-08-08 21:25:53 +02:00
parent 1c4f87700f
commit 91595d8e6f
3 changed files with 96 additions and 1 deletions

View File

@ -18,6 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//Native language name: Deutsch
$T=[
'all' => 'Alle',
'lastadded' => 'Zuletzt hinzugefügt',

94
lang_ja.php Normal file
View File

@ -0,0 +1,94 @@
<?php
/*
* Onion Link List - Japanese translation
*
* Copyright (C) 2017 Anonymous <meow@meow.meow>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
$T=[
'all' => '全て',
'lastadded' => '最近の追加',
'offline' => '1週間以上オフライン',
'removed' => '削除済',
'phishingclones'=> '詐欺サイト(クローン)',
'title' => 'Onionリンクの一覧',
'error' => 'エラー',
'nodb' => 'データベースの接続がありません!',
'addonion' => 'Onion アドレス',
'adddesc' => '詳細',
'category' => 'カテゴリ',
'search' => '検索',
'searchterm' => '検索キーワード',
'specialcat' => '特別な分類',
'categories' => 'カテゴリ',
'pages' => 'ページ',
'invalonion' => 'Onionアドレスが不正です。',
'valid' => '正しいアドレスはこんな感じのはず:',
'succadd' => 'Onionアドレスを追加しました。',
'faillocked' => 'ごめん、このOnionアドレスはロックされていて編集できない。',
'succupddesc' => '説明の更新に成功しました。',
'succupdcat' => 'カテゴリの変更に成功しました。',
'alreadyknown' => 'ありがとう、でも、このアドレスはもう知ってるんだ。',
'searchresult' => '検索キーワード "%1$s" - %2$d 件見つかりました:',
'link' => 'Onion リンク',
'description' => '説明',
'lasttested' => '接続試験日',
'lastup' => '最後に見た日',
'timeadded' => '追加された日',
'actions' => '操作',
'edit' => '編集',
'test' => 'テスト',
'never' => 'なし',
'cloneof' => 'クローン元(オリジナル)',
'admintitle' => '管理者の操作画面',
'password' => 'パスワード',
'login' => 'ログイン',
'bitcoins' => 'ビットコイン',
'remove' => '削除',
'readd' => '再追加',
'lock' => '施錠',
'unlock' => '解錠',
'promote' => '宣伝',
'unpromote' => '宣伝解除',
'phishing' => '詐欺サイト',
'unphishing' => '詐欺サイトではない',
'update' => '更新',
'succremove' => 'Onionアドレスを削除しました。',
'succreadd' => 'Onionアドレスを再度追加しました。',
'succlock' => 'Onionアドレスをロックしました。',
'succunlock' => 'Onionアドレスのロックを解除しました。',
'succpromote' => 'Onionアドレスを次の日まで宣伝します %1$s!',
'succunpromote' => 'Onionアドレスの宣伝をやめました。',
'succaddphish' => '詐欺サイトを追加しました。',
'samephish' => '追加できませんでした。詐欺サイトとオリジナルのアドレスが同一です。',
'succrmphish' => '詐欺サイトを削除しました。',
'noaction' => '何も操作していません。',
'wrongpass' => 'パスワードが違います。',
'testtitle' => 'オンラインテスト',
'testdesc' => 'ここで、Onionアドレスが「オンライン」かどうかを試すことができます。',
'testonline' => '対象はオンラインです。',
'testoffline' => '対象はオフラインです!',
'testphishing' => '警告。これは知られた詐欺サイト(クローン)です。オリジナルは %s です。',
'unknown' => '不明',
'language' => '言語',
'format' => '形式',
'pdo_mysqlextrequired' => 'PHPのpdo_mysqlが必要です。先にインストールしてください。',
'pcreextrequired' => 'PHPのpcre拡張が必要です。先にインストールしてください。',
'jsonextrequired' => 'PHPのjson拡張が必要です。先にインストールしてください。',
'curlextrequired' => 'PHPのcurl拡張が必要です。先にインストールしてください。',
'dateextrequired' => 'PHPのdate拡張が必要です。先にインストールしてください。',
'succdbcreate' => 'データベースの作成に成功しました!',
'statusok' => '状態: 良好',
];

View File

@ -131,7 +131,7 @@ function send_html(){
$pages=1;
foreach($special as $name=>$query){
if($cat===count($categories)+1){
$num[0]=100;
$num[0]=PER_PAGE;
}else{
$num=$db->query('SELECT COUNT(*) FROM ' . PREFIX . "onions WHERE $query;")->fetch(PDO::FETCH_NUM);
}