diff --git a/app/Http/Controllers/Peertube/About.php b/app/Http/Controllers/About.php similarity index 92% rename from app/Http/Controllers/Peertube/About.php rename to app/Http/Controllers/About.php index 72258b7..6ba16c2 100644 --- a/app/Http/Controllers/Peertube/About.php +++ b/app/Http/Controllers/About.php @@ -1,9 +1,8 @@ user = Session::get('ptsess'); } - - $this->engine = new Engine; } public function getLocal () { @@ -43,7 +39,7 @@ class Common extends Engine { public function getMe ($param) { if (!isset($_COOKIE['access_token']) && isset($_COOKIE['refresh_token'])) { $r = new Request; - $login = new \App\Http\Controllers\Peertube\Login; + $login = new \App\Http\Controllers\Login; $r->client_id = $param->client_id; $r->client_secret = $param->client_secret; $r->refresh_token = $this->refresh_token; diff --git a/app/Http/Controllers/Engine.php b/app/Http/Controllers/Engine.php deleted file mode 100644 index bafa7bb..0000000 --- a/app/Http/Controllers/Engine.php +++ /dev/null @@ -1,112 +0,0 @@ -err = ''; - $this->warn = ''; - $this->info = ''; - $this->suc = ''; - - if (isset($_COOKIE['language'])) app()->setLocale($_COOKIE['language']); - $this->id = checkLegit((isset($_COOKIE['kero_token']) ? $_COOKIE['kero_token'] : '')); - $this->user = $this->getLoggedUser((isset($_COOKIE['kero_token']) ? $_COOKIE['kero_token'] : '')); - - $this->css = env('CSSENGINE'); - if ($this->user && $this->user->profile->gender != 0) $this->css .= '_'.($this->user->profile->gender == 1 ? 'm' : 'f'); - if (env('CSSMINIFY')) $this->css .= '.min'; - $this->css .= '.css'; - } - - function getLoggedUser ($kero) { - $check = checkLegit($kero); - if ($check == 0) return 0; - - // $cols = getGroupColours(); - $get = $this->getUser($check); - - return $get; - } - - public function getUser ($id) { - $get = DB::table('users')->where('id', $id)->first(); - unset($get->password); unset($get->salt); unset($get->remember_token); - $get->profile = DB::table('usr_profile')->where('user_id', $get->id)->first(); - $get->profile->showname = (!empty($get->profile->display_name) && !is_null($get->profile->display_name) ? $get->profile->display_name : $get->username); - $perm_id = DB::table('usr_perm_id')->select('perm_id')->where('user_id', $get->id)->first()->perm_id; - $get->perm_module = DB::table('usr_perm_module')->where('usr_perm_id', $perm_id)->first(); - $get->details = DB::table('usr_details')->where('user_id', $get->id)->first(); - $get->contacts = DB::table('usr_contacts')->where('user_id', $get->id)->first(); - $ucol = DB::table('usr_perm_module')->select('id', 'name', 'colour_m', 'colour_f', 'colour_u')->get(); - - if (!empty($get->profile->name_style)) $get->profile->name_style = $get->profile->name_style; - else { - foreach ($ucol as $j3) { - if ($j3->id == $perm_id) { - if ($get->profile->gender == 1) $get->profile->name_style = $j3->colour_m; - else if ($get->profile->gender == 2) $get->profile->name_style = $j3->colour_f; - else $get->profile->name_style = $j3->colour_u; - } - } - } - - if ($get->profile->gender == 1) $get->profile->gender_name = '男性'; - else if ($get->profile->gender == 2) $get->profile->gender_name = '女性'; - else $get->profile->gender_name = '不明'; - - $get->perm = $this->getPermissions($get->kero_token); - if (empty($get->profile->avatar) || $get->profile->avatar == '') $get->profile->avatar = 'img/noicon.jpg'; - $get->profile->avatar = '/'.$get->profile->avatar; - - return $get; - } - - public function getPermissionGroup($mdl, $id) { return DB::table($mdl.'_permissions')->where('id', $id)->get(); } - public function getPermissionUser($mdl, $id) { return DB::table($mdl.'_user_permissions')->where('user_id', $id)->get(); } - - public function getPermissions ($token) { - $check = checkLegit($token); - $perm = DB::table('usr_perm_id')->select('perm_id')->where('user_id', $check)->first(); - $perm = json_decode(json_encode($perm), true); - - if ($check != 0) { - $grouppermblg = $this->getPermissionGroup('blg', $perm['perm_id']); - $userpermblg = $this->getPermissionUser('blg', $check); - - $grouppermusr = $this->getPermissionGroup('usr', $perm['perm_id']); - $userpermusr = $this->getPermissionUser('usr', $check); - - $blgarr = array(); - $usrarr = array(); - - if (!empty($userpermblg[0])) $blgarr = (array)$userpermblg[0]; - else $blgarr = (array)$grouppermblg[0]; - $blgarr = array_combine(array_map(function($k){ return 'blg_'.$k; }, array_keys($blgarr)), $blgarr); - - if (!empty($userpermusr[0])) $usrarr = (array)$userpermusr[0]; - else $usrarr = (array)$grouppermusr[0]; - $usrarr = array_combine(array_map(function($k){ return 'usr_'.$k; }, array_keys($usrarr)), $usrarr); - - return array_merge($blgarr, $usrarr); - } - else { - $grouppermblg = $this->getPermissionGroup('blg', 6); - $grouppermusr = $this->getPermissionGroup('usr', 6); - - (array)$grouppermblg[0] = array_combine(array_map(function($k){ return 'blg_'.$k; }, array_keys((array)$grouppermblg[0])), (array)$grouppermblg[0]); - (array)$grouppermusr[0] = array_combine(array_map(function($k){ return 'usr_'.$k; }, array_keys((array)$grouppermusr[0])), (array)$grouppermusr[0]); - - return array_merge((array)$grouppermblg[0], (array)$grouppermusr[0]); - } - } -} diff --git a/app/Http/Controllers/Peertube/Home.php b/app/Http/Controllers/Home.php similarity index 86% rename from app/Http/Controllers/Peertube/Home.php rename to app/Http/Controllers/Home.php index cc6a019..4677b46 100644 --- a/app/Http/Controllers/Peertube/Home.php +++ b/app/Http/Controllers/Home.php @@ -1,9 +1,8 @@ SMTPDebug = 2; - $mail->isSMTP(); - $mail->Host = config('mail.mailers.smtp.host'); - $mail->Port = config('mail.mailers.smtp.port'); - $mail->SMTPSecure = config('mail.mailers.smtp.encryption'); - $mail->SMTPAuth = true; - $mail->From = config('mail.'.($form ? 'owner' : 'from').'.address'); - $mail->FromName = mb_encode_mimeheader(config('mail.mailers.smtp.'.($form ? 'fromname' : 'noreplyfrom')), 'JIS'); - $mail->Username = config('mail.mailers.smtp.'.($form ? 'username' : 'noreplyuser')); - $mail->Password = config('mail.mailers.smtp.'.($form ? 'password' : 'noreplypass')); - - $mail->AddAddress(config('mail.'.($form ? 'owner' : 'from').'.address')); - if ($form) $mail->addReplyTo(config('mail.owner.address'), config('mail.owner.name')); - else $mail->addReplyTo($val['adr']); - - $mail->SMTPOptions = [ - 'ssl' => [ - 'verify_peer' => false, - 'verify_peer_name' => false, - 'allow_self_signed' => true - ] - ]; - - if (isset($val['attach'])) { - for ($i=0; $i < count($val['attach']); $i++) { - $mail->AddAttachment($val['attach'][$i], $val['attachname'][$i]); - } - } - - if (isset($val['gpg'])) { - $mail->AddStringAttachment($val['gpg'], $val['filename']); - $mail->AddStringAttachment($val['bunsyo'], $val['adr'].'.gpg'); - } - - $mail->isHTML(false); - - $mail->Subject = mb_encode_mimeheader('【'.$val['catname'].'】'.$val['kenmei'], 'JIS'); - if ($form) $mail->Body = mb_convert_encoding($val['bunsyo'], 'UTF-8'); - else $mail->Body = mb_convert_encoding($val['bunsyo'], 'JIS'); - - if (!$mail->send()) { - Log::critical('Mailer error: ' . $mail->ErrorInfo); - return false; - } - } catch (Exception $e) { - Log::critical($e); - return false; - } - - return true; - } -} diff --git a/app/Http/Controllers/Peertube/Myaccount.php b/app/Http/Controllers/Myaccount.php similarity index 84% rename from app/Http/Controllers/Peertube/Myaccount.php rename to app/Http/Controllers/Myaccount.php index 1a2a1f6..8c7676a 100644 --- a/app/Http/Controllers/Peertube/Myaccount.php +++ b/app/Http/Controllers/Myaccount.php @@ -1,9 +1,8 @@ select($select)->where('isPost', true)->where('public_status', 0)->orderBy('id', 'desc')->limit(50)->get(); - - foreach ($posts as $k => $v) { - $userd = DB::table('users')->where('id', $v->user_id)->first(); - $userd = DB::table('usr_profile')->where('user_id', $v->user_id)->first(); - $v->user = $userd->display_name; - unset($posts[$k]->user_id); - } - - return response()->view('rss.feed', ['posts' => $posts])->header('Content-Type', 'application/xml'); - } -} diff --git a/app/Http/Controllers/Peertube/Signup.php b/app/Http/Controllers/Signup.php similarity index 85% rename from app/Http/Controllers/Peertube/Signup.php rename to app/Http/Controllers/Signup.php index f6c449b..e4daaba 100644 --- a/app/Http/Controllers/Peertube/Signup.php +++ b/app/Http/Controllers/Signup.php @@ -1,9 +1,8 @@ select('title', 'slug')->where('public_status', 0)->where('isPost', 0)->where('isMenu', 1)->orderBy('sortorder', 'asc')->get(); - - $res = array(); - $key = 0; - - foreach ($get as $i) { - array_push($res, ['key' => $key, 'title' => $i->title, 'slug' => $i->slug]); - $key++; - } - - return $res; -} - -function getCss () { - $engine = new \App\Http\Controllers\Engine; - return $engine->css; -} - -function getPerms () { - $engine = new \App\Http\Controllers\Engine; - return $engine->getPermissions((isset($_COOKIE['kero_token']) ? $_COOKIE['kero_token'] : '')); -} - -function getUser () { - $engine = new \App\Http\Controllers\Engine; - return $engine->user; -} - -function getGroupColours () { - return DB::table('usr_perm_module')->select('id', 'colour_m', 'colour_f', 'colour_u')->get()->toArray(); -} - -function checkLegit ($t) { - if (!isset($t) || empty($t) || is_null($t)) return 0; - $check = DB::table('users')->select('id')->where('kero_token', $t)->first(); - return $check->id; -} - function ptComeSrc ($v) { $res = new \stdClass(); $res->bg = '#'; @@ -133,66 +92,4 @@ function ptAvatar ($v) { return '/img/noicon.jpg'; } -function userDetail ($id, $kero=null) { - if ($kero || $id) { - $log_username = null; - if (!is_null($id)) $log_username = DB::table('users')->select('id', 'username')->where('id', $id)->first(); - else $log_username = DB::table('users')->select('id', 'username')->where('kero_token', $kero)->first(); - $perm_id = DB::table('usr_perm_id')->select('perm_id')->where('user_id', $log_username->id)->first()->perm_id; - $p3 = DB::table('usr_profile')->select('gender', 'avatar', 'name_style', 'display_name')->where('user_id', $log_username->id)->first(); - $user_id = $log_username->id; - $log_username = $log_username->username; - $showname = ''; - $showcol = ''; - $ucol = DB::table('usr_perm_module')->select('id', 'colour_m', 'colour_f', 'colour_u')->get(); - - if (!empty($p3->display_name)) $showname = $p3->display_name; - else $showname = $log_username; - - if (!empty($p3->name_style)) $showcol = $p3->name_style; - else { - foreach ($ucol as $j3) { - if ($j3->id == $perm_id) { - if ($p3->gender == 1) $showcol = $j3->colour_m; - else if ($p3->gender == 2) $showcol = $j3->colour_f; - else $showcol = $j3->colour_u; - } - } - } - - $p3->avatar = ($p3->avatar ? '/'.$p3->avatar : '/img/noicon.jpg'); - return array('user_id' => $user_id, 'showname' => $showname, 'showcol' => $showcol, 'avatar' => $p3->avatar); - } - - return new \stdClass(); -} - -function getCountries () { - $flags = DB::table('nhn_country')->orderBy('id', 'asc')->get(); - $res = array(); - - foreach ($flags as $flag) { - $protocol = isset($_SERVER["HTTPS"]) ? 'https' : 'http'; - - $res[] = array( - 'value' => $flag->nameEng, - 'label' => $flag->name - ); - } - - return $res; -} - -function makeToken () { - $c = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$!%&()'; - $clen = strlen($c); - $token = ''; - - for ($i = 0; $i < 128; $i++) { - $token .= $c[rand(0, $clen - 1)]; - } - - return $token; -} - ?> diff --git a/public/fonts/jpserriffont.woff b/public/fonts/jpserriffont.woff deleted file mode 100755 index f7a5706..0000000 Binary files a/public/fonts/jpserriffont.woff and /dev/null differ diff --git a/resources/fonts/jpserriffont.woff b/resources/fonts/jpserriffont.woff deleted file mode 100644 index f7a5706..0000000 Binary files a/resources/fonts/jpserriffont.woff and /dev/null differ diff --git a/resources/img/bash/6fd97df9bfea41748061893ce36cefee.jpeg b/resources/img/bash/6fd97df9bfea41748061893ce36cefee.jpeg deleted file mode 100644 index 7b16650..0000000 Binary files a/resources/img/bash/6fd97df9bfea41748061893ce36cefee.jpeg and /dev/null differ diff --git a/resources/img/bash/81004208_p0.jpg b/resources/img/bash/81004208_p0.jpg deleted file mode 100644 index 59292cc..0000000 Binary files a/resources/img/bash/81004208_p0.jpg and /dev/null differ diff --git a/resources/img/bash/app_icon.png b/resources/img/bash/app_icon.png deleted file mode 100644 index 990fdb3..0000000 Binary files a/resources/img/bash/app_icon.png and /dev/null differ diff --git a/resources/img/bash/app_icon.webp b/resources/img/bash/app_icon.webp deleted file mode 100644 index 153ac20..0000000 Binary files a/resources/img/bash/app_icon.webp and /dev/null differ diff --git a/resources/img/bash/bottom_bg.png b/resources/img/bash/bottom_bg.png deleted file mode 100644 index de659aa..0000000 Binary files a/resources/img/bash/bottom_bg.png and /dev/null differ diff --git a/resources/img/bash/bottom_left.png b/resources/img/bash/bottom_left.png deleted file mode 100644 index b874315..0000000 Binary files a/resources/img/bash/bottom_left.png and /dev/null differ diff --git a/resources/img/bash/bottom_right.png b/resources/img/bash/bottom_right.png deleted file mode 100644 index ee67520..0000000 Binary files a/resources/img/bash/bottom_right.png and /dev/null differ diff --git a/resources/img/bash/discord_top_left.png b/resources/img/bash/discord_top_left.png deleted file mode 100644 index 3ee0e4a..0000000 Binary files a/resources/img/bash/discord_top_left.png and /dev/null differ diff --git a/resources/img/bash/left_bg.png b/resources/img/bash/left_bg.png deleted file mode 100644 index f6ed596..0000000 Binary files a/resources/img/bash/left_bg.png and /dev/null differ diff --git a/resources/img/bash/note_bg.png b/resources/img/bash/note_bg.png deleted file mode 100644 index 9d71459..0000000 Binary files a/resources/img/bash/note_bg.png and /dev/null differ diff --git a/resources/img/bash/note_icon.png b/resources/img/bash/note_icon.png deleted file mode 100644 index 9cbb62b..0000000 Binary files a/resources/img/bash/note_icon.png and /dev/null differ diff --git a/resources/img/bash/note_icon.webp b/resources/img/bash/note_icon.webp deleted file mode 100644 index 29bb0b8..0000000 Binary files a/resources/img/bash/note_icon.webp and /dev/null differ diff --git a/resources/img/bash/note_top_left.png b/resources/img/bash/note_top_left.png deleted file mode 100644 index 774f730..0000000 Binary files a/resources/img/bash/note_top_left.png and /dev/null differ diff --git a/resources/img/bash/right_bg.png b/resources/img/bash/right_bg.png deleted file mode 100644 index b74cb9a..0000000 Binary files a/resources/img/bash/right_bg.png and /dev/null differ diff --git a/resources/img/bash/root_bg.png b/resources/img/bash/root_bg.png deleted file mode 100644 index a89cbd8..0000000 Binary files a/resources/img/bash/root_bg.png and /dev/null differ diff --git a/resources/img/bash/top_bg.png b/resources/img/bash/top_bg.png deleted file mode 100644 index a94e7d5..0000000 Binary files a/resources/img/bash/top_bg.png and /dev/null differ diff --git a/resources/img/bash/top_left.png b/resources/img/bash/top_left.png deleted file mode 100644 index 09d1396..0000000 Binary files a/resources/img/bash/top_left.png and /dev/null differ diff --git a/resources/img/bash/top_max.png b/resources/img/bash/top_max.png deleted file mode 100644 index 24e2538..0000000 Binary files a/resources/img/bash/top_max.png and /dev/null differ diff --git a/resources/img/bash/top_max_hover.png b/resources/img/bash/top_max_hover.png deleted file mode 100644 index d6857d3..0000000 Binary files a/resources/img/bash/top_max_hover.png and /dev/null differ diff --git a/resources/img/bash/top_min.png b/resources/img/bash/top_min.png deleted file mode 100644 index af37dc1..0000000 Binary files a/resources/img/bash/top_min.png and /dev/null differ diff --git a/resources/img/bash/top_min_hover.png b/resources/img/bash/top_min_hover.png deleted file mode 100644 index f4d74c0..0000000 Binary files a/resources/img/bash/top_min_hover.png and /dev/null differ diff --git a/resources/img/bash/top_right.png b/resources/img/bash/top_right.png deleted file mode 100644 index 4140138..0000000 Binary files a/resources/img/bash/top_right.png and /dev/null differ diff --git a/resources/img/bash/top_right_hover.png b/resources/img/bash/top_right_hover.png deleted file mode 100644 index 24b2106..0000000 Binary files a/resources/img/bash/top_right_hover.png and /dev/null differ diff --git a/resources/img/bash/user_bg.png b/resources/img/bash/user_bg.png deleted file mode 100644 index 4606381..0000000 Binary files a/resources/img/bash/user_bg.png and /dev/null differ diff --git a/resources/img/bt-box.png b/resources/img/bt-box.png deleted file mode 100644 index c6281a7..0000000 Binary files a/resources/img/bt-box.png and /dev/null differ diff --git a/resources/img/flags/ASEAN.png b/resources/img/flags/ASEAN.png deleted file mode 100755 index ee121e7..0000000 Binary files a/resources/img/flags/ASEAN.png and /dev/null differ diff --git a/resources/img/flags/Afghanistan.png b/resources/img/flags/Afghanistan.png deleted file mode 100755 index 0402b30..0000000 Binary files a/resources/img/flags/Afghanistan.png and /dev/null differ diff --git a/resources/img/flags/African Union(OAS).png b/resources/img/flags/African Union(OAS).png deleted file mode 100755 index ffed45d..0000000 Binary files a/resources/img/flags/African Union(OAS).png and /dev/null differ diff --git a/resources/img/flags/Albania.png b/resources/img/flags/Albania.png deleted file mode 100755 index 5eea814..0000000 Binary files a/resources/img/flags/Albania.png and /dev/null differ diff --git a/resources/img/flags/Algeria.png b/resources/img/flags/Algeria.png deleted file mode 100755 index fe1fc6c..0000000 Binary files a/resources/img/flags/Algeria.png and /dev/null differ diff --git a/resources/img/flags/American Samoa.png b/resources/img/flags/American Samoa.png deleted file mode 100755 index a24093e..0000000 Binary files a/resources/img/flags/American Samoa.png and /dev/null differ diff --git a/resources/img/flags/Andorra.png b/resources/img/flags/Andorra.png deleted file mode 100755 index 1245d9f..0000000 Binary files a/resources/img/flags/Andorra.png and /dev/null differ diff --git a/resources/img/flags/Angola.png b/resources/img/flags/Angola.png deleted file mode 100755 index d1deed8..0000000 Binary files a/resources/img/flags/Angola.png and /dev/null differ diff --git a/resources/img/flags/Anguilla.png b/resources/img/flags/Anguilla.png deleted file mode 100755 index 68db17b..0000000 Binary files a/resources/img/flags/Anguilla.png and /dev/null differ diff --git a/resources/img/flags/Antarctica.png b/resources/img/flags/Antarctica.png deleted file mode 100755 index 01bf5a9..0000000 Binary files a/resources/img/flags/Antarctica.png and /dev/null differ diff --git a/resources/img/flags/Antigua & Barbuda.png b/resources/img/flags/Antigua & Barbuda.png deleted file mode 100755 index 062aa70..0000000 Binary files a/resources/img/flags/Antigua & Barbuda.png and /dev/null differ diff --git a/resources/img/flags/Arab League.png b/resources/img/flags/Arab League.png deleted file mode 100755 index 0884708..0000000 Binary files a/resources/img/flags/Arab League.png and /dev/null differ diff --git a/resources/img/flags/Argentina.png b/resources/img/flags/Argentina.png deleted file mode 100755 index 8c8d5c9..0000000 Binary files a/resources/img/flags/Argentina.png and /dev/null differ diff --git a/resources/img/flags/Armenia.png b/resources/img/flags/Armenia.png deleted file mode 100755 index 8e1054e..0000000 Binary files a/resources/img/flags/Armenia.png and /dev/null differ diff --git a/resources/img/flags/Aruba.png b/resources/img/flags/Aruba.png deleted file mode 100755 index 67a8142..0000000 Binary files a/resources/img/flags/Aruba.png and /dev/null differ diff --git a/resources/img/flags/Australia.png b/resources/img/flags/Australia.png deleted file mode 100755 index b34a13a..0000000 Binary files a/resources/img/flags/Australia.png and /dev/null differ diff --git a/resources/img/flags/Austria.png b/resources/img/flags/Austria.png deleted file mode 100755 index 3d5a4af..0000000 Binary files a/resources/img/flags/Austria.png and /dev/null differ diff --git a/resources/img/flags/Azerbaijan.png b/resources/img/flags/Azerbaijan.png deleted file mode 100755 index 86961f7..0000000 Binary files a/resources/img/flags/Azerbaijan.png and /dev/null differ diff --git a/resources/img/flags/Bahamas.png b/resources/img/flags/Bahamas.png deleted file mode 100755 index 28364ad..0000000 Binary files a/resources/img/flags/Bahamas.png and /dev/null differ diff --git a/resources/img/flags/Bahrain.png b/resources/img/flags/Bahrain.png deleted file mode 100755 index 90fe9a6..0000000 Binary files a/resources/img/flags/Bahrain.png and /dev/null differ diff --git a/resources/img/flags/Bangladesh.png b/resources/img/flags/Bangladesh.png deleted file mode 100755 index 8c4b72c..0000000 Binary files a/resources/img/flags/Bangladesh.png and /dev/null differ diff --git a/resources/img/flags/Barbados.png b/resources/img/flags/Barbados.png deleted file mode 100755 index dc5bfaa..0000000 Binary files a/resources/img/flags/Barbados.png and /dev/null differ diff --git a/resources/img/flags/Belarus.png b/resources/img/flags/Belarus.png deleted file mode 100755 index 9c8e46c..0000000 Binary files a/resources/img/flags/Belarus.png and /dev/null differ diff --git a/resources/img/flags/Belgium.png b/resources/img/flags/Belgium.png deleted file mode 100755 index 957705c..0000000 Binary files a/resources/img/flags/Belgium.png and /dev/null differ diff --git a/resources/img/flags/Belize.png b/resources/img/flags/Belize.png deleted file mode 100755 index e2a05a6..0000000 Binary files a/resources/img/flags/Belize.png and /dev/null differ diff --git a/resources/img/flags/Benin.png b/resources/img/flags/Benin.png deleted file mode 100755 index 202dc46..0000000 Binary files a/resources/img/flags/Benin.png and /dev/null differ diff --git a/resources/img/flags/Bermuda.png b/resources/img/flags/Bermuda.png deleted file mode 100755 index 0272cc6..0000000 Binary files a/resources/img/flags/Bermuda.png and /dev/null differ diff --git a/resources/img/flags/Bhutan.png b/resources/img/flags/Bhutan.png deleted file mode 100755 index 2d0b604..0000000 Binary files a/resources/img/flags/Bhutan.png and /dev/null differ diff --git a/resources/img/flags/Bolivia.png b/resources/img/flags/Bolivia.png deleted file mode 100755 index 48760e8..0000000 Binary files a/resources/img/flags/Bolivia.png and /dev/null differ diff --git a/resources/img/flags/Bosnia & Herzegovina.png b/resources/img/flags/Bosnia & Herzegovina.png deleted file mode 100755 index 242e214..0000000 Binary files a/resources/img/flags/Bosnia & Herzegovina.png and /dev/null differ diff --git a/resources/img/flags/Botswana.png b/resources/img/flags/Botswana.png deleted file mode 100755 index c8b457d..0000000 Binary files a/resources/img/flags/Botswana.png and /dev/null differ diff --git a/resources/img/flags/Brazil.png b/resources/img/flags/Brazil.png deleted file mode 100755 index 5a9cfd4..0000000 Binary files a/resources/img/flags/Brazil.png and /dev/null differ diff --git a/resources/img/flags/Brunei.png b/resources/img/flags/Brunei.png deleted file mode 100755 index 231dd4c..0000000 Binary files a/resources/img/flags/Brunei.png and /dev/null differ diff --git a/resources/img/flags/Bulgaria.png b/resources/img/flags/Bulgaria.png deleted file mode 100755 index 6ba90af..0000000 Binary files a/resources/img/flags/Bulgaria.png and /dev/null differ diff --git a/resources/img/flags/Burkina Faso.png b/resources/img/flags/Burkina Faso.png deleted file mode 100755 index 8bfe4b9..0000000 Binary files a/resources/img/flags/Burkina Faso.png and /dev/null differ diff --git a/resources/img/flags/Burundi.png b/resources/img/flags/Burundi.png deleted file mode 100755 index a0f67f8..0000000 Binary files a/resources/img/flags/Burundi.png and /dev/null differ diff --git a/resources/img/flags/CARICOM.png b/resources/img/flags/CARICOM.png deleted file mode 100755 index 51bd504..0000000 Binary files a/resources/img/flags/CARICOM.png and /dev/null differ diff --git a/resources/img/flags/CIS.png b/resources/img/flags/CIS.png deleted file mode 100755 index 1aa10bc..0000000 Binary files a/resources/img/flags/CIS.png and /dev/null differ diff --git a/resources/img/flags/Cambodja.png b/resources/img/flags/Cambodja.png deleted file mode 100755 index a4b77f7..0000000 Binary files a/resources/img/flags/Cambodja.png and /dev/null differ diff --git a/resources/img/flags/Cameroon.png b/resources/img/flags/Cameroon.png deleted file mode 100755 index cf2b443..0000000 Binary files a/resources/img/flags/Cameroon.png and /dev/null differ diff --git a/resources/img/flags/Canada.png b/resources/img/flags/Canada.png deleted file mode 100755 index 3e691be..0000000 Binary files a/resources/img/flags/Canada.png and /dev/null differ diff --git a/resources/img/flags/Cape Verde.png b/resources/img/flags/Cape Verde.png deleted file mode 100755 index 712253e..0000000 Binary files a/resources/img/flags/Cape Verde.png and /dev/null differ diff --git a/resources/img/flags/Cayman Islands.png b/resources/img/flags/Cayman Islands.png deleted file mode 100755 index 3961af3..0000000 Binary files a/resources/img/flags/Cayman Islands.png and /dev/null differ diff --git a/resources/img/flags/Central African Republic.png b/resources/img/flags/Central African Republic.png deleted file mode 100755 index 5283c59..0000000 Binary files a/resources/img/flags/Central African Republic.png and /dev/null differ diff --git a/resources/img/flags/Chad.png b/resources/img/flags/Chad.png deleted file mode 100755 index d4c92bd..0000000 Binary files a/resources/img/flags/Chad.png and /dev/null differ diff --git a/resources/img/flags/Chile.png b/resources/img/flags/Chile.png deleted file mode 100755 index 35ddcc1..0000000 Binary files a/resources/img/flags/Chile.png and /dev/null differ diff --git a/resources/img/flags/China.png b/resources/img/flags/China.png deleted file mode 100755 index 86ac698..0000000 Binary files a/resources/img/flags/China.png and /dev/null differ diff --git a/resources/img/flags/Colombia.png b/resources/img/flags/Colombia.png deleted file mode 100755 index 3686249..0000000 Binary files a/resources/img/flags/Colombia.png and /dev/null differ diff --git a/resources/img/flags/Commonwealth.png b/resources/img/flags/Commonwealth.png deleted file mode 100755 index 10c84c5..0000000 Binary files a/resources/img/flags/Commonwealth.png and /dev/null differ diff --git a/resources/img/flags/Comoros.png b/resources/img/flags/Comoros.png deleted file mode 100755 index a7c03c5..0000000 Binary files a/resources/img/flags/Comoros.png and /dev/null differ diff --git a/resources/img/flags/Congo-Brazzaville.png b/resources/img/flags/Congo-Brazzaville.png deleted file mode 100755 index 88b132b..0000000 Binary files a/resources/img/flags/Congo-Brazzaville.png and /dev/null differ diff --git a/resources/img/flags/Congo-Kinshasa(Zaire).png b/resources/img/flags/Congo-Kinshasa(Zaire).png deleted file mode 100755 index badf083..0000000 Binary files a/resources/img/flags/Congo-Kinshasa(Zaire).png and /dev/null differ diff --git a/resources/img/flags/Cook Islands.png b/resources/img/flags/Cook Islands.png deleted file mode 100755 index 2e62ed8..0000000 Binary files a/resources/img/flags/Cook Islands.png and /dev/null differ diff --git a/resources/img/flags/Costa Rica.png b/resources/img/flags/Costa Rica.png deleted file mode 100755 index 8559d53..0000000 Binary files a/resources/img/flags/Costa Rica.png and /dev/null differ diff --git a/resources/img/flags/Cote d'Ivoire.png b/resources/img/flags/Cote d'Ivoire.png deleted file mode 100755 index 4c2a467..0000000 Binary files a/resources/img/flags/Cote d'Ivoire.png and /dev/null differ diff --git a/resources/img/flags/Croatia.png b/resources/img/flags/Croatia.png deleted file mode 100755 index f4e7f56..0000000 Binary files a/resources/img/flags/Croatia.png and /dev/null differ diff --git a/resources/img/flags/Cuba.png b/resources/img/flags/Cuba.png deleted file mode 100755 index b5d5cfb..0000000 Binary files a/resources/img/flags/Cuba.png and /dev/null differ diff --git a/resources/img/flags/Cyprus.png b/resources/img/flags/Cyprus.png deleted file mode 100755 index dea6953..0000000 Binary files a/resources/img/flags/Cyprus.png and /dev/null differ diff --git a/resources/img/flags/Czech Republic.png b/resources/img/flags/Czech Republic.png deleted file mode 100755 index 0dd2bb4..0000000 Binary files a/resources/img/flags/Czech Republic.png and /dev/null differ diff --git a/resources/img/flags/Denmark.png b/resources/img/flags/Denmark.png deleted file mode 100755 index 58d47d9..0000000 Binary files a/resources/img/flags/Denmark.png and /dev/null differ diff --git a/resources/img/flags/Djibouti.png b/resources/img/flags/Djibouti.png deleted file mode 100755 index 80c7bda..0000000 Binary files a/resources/img/flags/Djibouti.png and /dev/null differ diff --git a/resources/img/flags/Dominica.png b/resources/img/flags/Dominica.png deleted file mode 100755 index b8b3ce0..0000000 Binary files a/resources/img/flags/Dominica.png and /dev/null differ diff --git a/resources/img/flags/Dominican Republic.png b/resources/img/flags/Dominican Republic.png deleted file mode 100755 index 46edfad..0000000 Binary files a/resources/img/flags/Dominican Republic.png and /dev/null differ diff --git a/resources/img/flags/Ecuador.png b/resources/img/flags/Ecuador.png deleted file mode 100755 index 61eb262..0000000 Binary files a/resources/img/flags/Ecuador.png and /dev/null differ diff --git a/resources/img/flags/Egypt.png b/resources/img/flags/Egypt.png deleted file mode 100755 index ac4bab4..0000000 Binary files a/resources/img/flags/Egypt.png and /dev/null differ diff --git a/resources/img/flags/El Salvador.png b/resources/img/flags/El Salvador.png deleted file mode 100755 index c73bf80..0000000 Binary files a/resources/img/flags/El Salvador.png and /dev/null differ diff --git a/resources/img/flags/England.png b/resources/img/flags/England.png deleted file mode 100755 index 044dcb7..0000000 Binary files a/resources/img/flags/England.png and /dev/null differ diff --git a/resources/img/flags/Equatorial Guinea.png b/resources/img/flags/Equatorial Guinea.png deleted file mode 100755 index 92b3b81..0000000 Binary files a/resources/img/flags/Equatorial Guinea.png and /dev/null differ diff --git a/resources/img/flags/Eritrea.png b/resources/img/flags/Eritrea.png deleted file mode 100755 index 84c0c84..0000000 Binary files a/resources/img/flags/Eritrea.png and /dev/null differ diff --git a/resources/img/flags/Estonia.png b/resources/img/flags/Estonia.png deleted file mode 100755 index 426ab13..0000000 Binary files a/resources/img/flags/Estonia.png and /dev/null differ diff --git a/resources/img/flags/Ethiopia.png b/resources/img/flags/Ethiopia.png deleted file mode 100755 index e766a48..0000000 Binary files a/resources/img/flags/Ethiopia.png and /dev/null differ diff --git a/resources/img/flags/European Union.png b/resources/img/flags/European Union.png deleted file mode 100755 index 562cd42..0000000 Binary files a/resources/img/flags/European Union.png and /dev/null differ diff --git a/resources/img/flags/Faroes.png b/resources/img/flags/Faroes.png deleted file mode 100755 index 5cdd720..0000000 Binary files a/resources/img/flags/Faroes.png and /dev/null differ diff --git a/resources/img/flags/Fiji.png b/resources/img/flags/Fiji.png deleted file mode 100755 index 43f910b..0000000 Binary files a/resources/img/flags/Fiji.png and /dev/null differ diff --git a/resources/img/flags/Finland.png b/resources/img/flags/Finland.png deleted file mode 100755 index 3a30faf..0000000 Binary files a/resources/img/flags/Finland.png and /dev/null differ diff --git a/resources/img/flags/France.png b/resources/img/flags/France.png deleted file mode 100755 index 21d0419..0000000 Binary files a/resources/img/flags/France.png and /dev/null differ diff --git a/resources/img/flags/Gabon.png b/resources/img/flags/Gabon.png deleted file mode 100755 index c83fd2a..0000000 Binary files a/resources/img/flags/Gabon.png and /dev/null differ diff --git a/resources/img/flags/Gambia.png b/resources/img/flags/Gambia.png deleted file mode 100755 index d4d9e52..0000000 Binary files a/resources/img/flags/Gambia.png and /dev/null differ diff --git a/resources/img/flags/Georgia.png b/resources/img/flags/Georgia.png deleted file mode 100755 index 5e2944c..0000000 Binary files a/resources/img/flags/Georgia.png and /dev/null differ diff --git a/resources/img/flags/Germany.png b/resources/img/flags/Germany.png deleted file mode 100755 index a35292a..0000000 Binary files a/resources/img/flags/Germany.png and /dev/null differ diff --git a/resources/img/flags/Ghana.png b/resources/img/flags/Ghana.png deleted file mode 100755 index b558e78..0000000 Binary files a/resources/img/flags/Ghana.png and /dev/null differ diff --git a/resources/img/flags/Gibraltar.png b/resources/img/flags/Gibraltar.png deleted file mode 100755 index 2502ad8..0000000 Binary files a/resources/img/flags/Gibraltar.png and /dev/null differ diff --git a/resources/img/flags/Greece.png b/resources/img/flags/Greece.png deleted file mode 100755 index 654f92d..0000000 Binary files a/resources/img/flags/Greece.png and /dev/null differ diff --git a/resources/img/flags/Greenland.png b/resources/img/flags/Greenland.png deleted file mode 100755 index d1a4189..0000000 Binary files a/resources/img/flags/Greenland.png and /dev/null differ diff --git a/resources/img/flags/Grenada.png b/resources/img/flags/Grenada.png deleted file mode 100755 index 7ced8c8..0000000 Binary files a/resources/img/flags/Grenada.png and /dev/null differ diff --git a/resources/img/flags/Guadeloupe.png b/resources/img/flags/Guadeloupe.png deleted file mode 100755 index 65bfca8..0000000 Binary files a/resources/img/flags/Guadeloupe.png and /dev/null differ diff --git a/resources/img/flags/Guam.png b/resources/img/flags/Guam.png deleted file mode 100755 index ea3eb76..0000000 Binary files a/resources/img/flags/Guam.png and /dev/null differ diff --git a/resources/img/flags/Guatemala.png b/resources/img/flags/Guatemala.png deleted file mode 100755 index d20df5a..0000000 Binary files a/resources/img/flags/Guatemala.png and /dev/null differ diff --git a/resources/img/flags/Guernsey.png b/resources/img/flags/Guernsey.png deleted file mode 100755 index 617895b..0000000 Binary files a/resources/img/flags/Guernsey.png and /dev/null differ diff --git a/resources/img/flags/Guinea-Bissau.png b/resources/img/flags/Guinea-Bissau.png deleted file mode 100755 index b3e1673..0000000 Binary files a/resources/img/flags/Guinea-Bissau.png and /dev/null differ diff --git a/resources/img/flags/Guinea.png b/resources/img/flags/Guinea.png deleted file mode 100755 index c5fbfa5..0000000 Binary files a/resources/img/flags/Guinea.png and /dev/null differ diff --git a/resources/img/flags/Guyana.png b/resources/img/flags/Guyana.png deleted file mode 100755 index 48db75f..0000000 Binary files a/resources/img/flags/Guyana.png and /dev/null differ diff --git a/resources/img/flags/Haiti.png b/resources/img/flags/Haiti.png deleted file mode 100755 index cec06f8..0000000 Binary files a/resources/img/flags/Haiti.png and /dev/null differ diff --git a/resources/img/flags/Honduras.png b/resources/img/flags/Honduras.png deleted file mode 100755 index 575430e..0000000 Binary files a/resources/img/flags/Honduras.png and /dev/null differ diff --git a/resources/img/flags/Hong Kong.png b/resources/img/flags/Hong Kong.png deleted file mode 100755 index b5f8420..0000000 Binary files a/resources/img/flags/Hong Kong.png and /dev/null differ diff --git a/resources/img/flags/Hungary.png b/resources/img/flags/Hungary.png deleted file mode 100755 index 8ec9069..0000000 Binary files a/resources/img/flags/Hungary.png and /dev/null differ diff --git a/resources/img/flags/Iceland.png b/resources/img/flags/Iceland.png deleted file mode 100755 index f6b5d75..0000000 Binary files a/resources/img/flags/Iceland.png and /dev/null differ diff --git a/resources/img/flags/India.png b/resources/img/flags/India.png deleted file mode 100755 index ac001d6..0000000 Binary files a/resources/img/flags/India.png and /dev/null differ diff --git a/resources/img/flags/Indonesia.png b/resources/img/flags/Indonesia.png deleted file mode 100755 index d72a4a4..0000000 Binary files a/resources/img/flags/Indonesia.png and /dev/null differ diff --git a/resources/img/flags/Iran.png b/resources/img/flags/Iran.png deleted file mode 100755 index 071fe8c..0000000 Binary files a/resources/img/flags/Iran.png and /dev/null differ diff --git a/resources/img/flags/Iraq.png b/resources/img/flags/Iraq.png deleted file mode 100755 index 4fbdaa0..0000000 Binary files a/resources/img/flags/Iraq.png and /dev/null differ diff --git a/resources/img/flags/Ireland.png b/resources/img/flags/Ireland.png deleted file mode 100755 index 9cba32b..0000000 Binary files a/resources/img/flags/Ireland.png and /dev/null differ diff --git a/resources/img/flags/Islamic Conference.png b/resources/img/flags/Islamic Conference.png deleted file mode 100755 index 9752bd6..0000000 Binary files a/resources/img/flags/Islamic Conference.png and /dev/null differ diff --git a/resources/img/flags/Isle of Man.png b/resources/img/flags/Isle of Man.png deleted file mode 100755 index 8b9412d..0000000 Binary files a/resources/img/flags/Isle of Man.png and /dev/null differ diff --git a/resources/img/flags/Israel.png b/resources/img/flags/Israel.png deleted file mode 100755 index c156286..0000000 Binary files a/resources/img/flags/Israel.png and /dev/null differ diff --git a/resources/img/flags/Italy.png b/resources/img/flags/Italy.png deleted file mode 100755 index 18de857..0000000 Binary files a/resources/img/flags/Italy.png and /dev/null differ diff --git a/resources/img/flags/Jamaica.png b/resources/img/flags/Jamaica.png deleted file mode 100755 index 1342c33..0000000 Binary files a/resources/img/flags/Jamaica.png and /dev/null differ diff --git a/resources/img/flags/Japan.png b/resources/img/flags/Japan.png deleted file mode 100755 index 67020df..0000000 Binary files a/resources/img/flags/Japan.png and /dev/null differ diff --git a/resources/img/flags/Jersey.png b/resources/img/flags/Jersey.png deleted file mode 100755 index 4858701..0000000 Binary files a/resources/img/flags/Jersey.png and /dev/null differ diff --git a/resources/img/flags/Jordan.png b/resources/img/flags/Jordan.png deleted file mode 100755 index bd81547..0000000 Binary files a/resources/img/flags/Jordan.png and /dev/null differ diff --git a/resources/img/flags/Kazakhstan.png b/resources/img/flags/Kazakhstan.png deleted file mode 100755 index 7d2a26e..0000000 Binary files a/resources/img/flags/Kazakhstan.png and /dev/null differ diff --git a/resources/img/flags/Kenya.png b/resources/img/flags/Kenya.png deleted file mode 100755 index 8db89fb..0000000 Binary files a/resources/img/flags/Kenya.png and /dev/null differ diff --git a/resources/img/flags/Kiribati.png b/resources/img/flags/Kiribati.png deleted file mode 100755 index 6ee33b2..0000000 Binary files a/resources/img/flags/Kiribati.png and /dev/null differ diff --git a/resources/img/flags/Kosovo.png b/resources/img/flags/Kosovo.png deleted file mode 100755 index cf87be1..0000000 Binary files a/resources/img/flags/Kosovo.png and /dev/null differ diff --git a/resources/img/flags/Kuwait.png b/resources/img/flags/Kuwait.png deleted file mode 100755 index 2ece850..0000000 Binary files a/resources/img/flags/Kuwait.png and /dev/null differ diff --git a/resources/img/flags/Kyrgyzstan.png b/resources/img/flags/Kyrgyzstan.png deleted file mode 100755 index 6f46e03..0000000 Binary files a/resources/img/flags/Kyrgyzstan.png and /dev/null differ diff --git a/resources/img/flags/LIthuania.png b/resources/img/flags/LIthuania.png deleted file mode 100755 index 5854c7d..0000000 Binary files a/resources/img/flags/LIthuania.png and /dev/null differ diff --git a/resources/img/flags/Laos.png b/resources/img/flags/Laos.png deleted file mode 100755 index 0851e89..0000000 Binary files a/resources/img/flags/Laos.png and /dev/null differ diff --git a/resources/img/flags/Latvia.png b/resources/img/flags/Latvia.png deleted file mode 100755 index fa83119..0000000 Binary files a/resources/img/flags/Latvia.png and /dev/null differ diff --git a/resources/img/flags/Lebanon.png b/resources/img/flags/Lebanon.png deleted file mode 100755 index e71fc2c..0000000 Binary files a/resources/img/flags/Lebanon.png and /dev/null differ diff --git a/resources/img/flags/Lesotho.png b/resources/img/flags/Lesotho.png deleted file mode 100755 index abadd95..0000000 Binary files a/resources/img/flags/Lesotho.png and /dev/null differ diff --git a/resources/img/flags/Liberia.png b/resources/img/flags/Liberia.png deleted file mode 100755 index 27f2006..0000000 Binary files a/resources/img/flags/Liberia.png and /dev/null differ diff --git a/resources/img/flags/Libya.png b/resources/img/flags/Libya.png deleted file mode 100755 index afd14b4..0000000 Binary files a/resources/img/flags/Libya.png and /dev/null differ diff --git a/resources/img/flags/Liechtenstein.png b/resources/img/flags/Liechtenstein.png deleted file mode 100755 index 109c752..0000000 Binary files a/resources/img/flags/Liechtenstein.png and /dev/null differ diff --git a/resources/img/flags/Luxembourg.png b/resources/img/flags/Luxembourg.png deleted file mode 100755 index 09328c0..0000000 Binary files a/resources/img/flags/Luxembourg.png and /dev/null differ diff --git a/resources/img/flags/Macao.png b/resources/img/flags/Macao.png deleted file mode 100755 index 099097b..0000000 Binary files a/resources/img/flags/Macao.png and /dev/null differ diff --git a/resources/img/flags/Macedonia.png b/resources/img/flags/Macedonia.png deleted file mode 100755 index 0154725..0000000 Binary files a/resources/img/flags/Macedonia.png and /dev/null differ diff --git a/resources/img/flags/Madagascar.png b/resources/img/flags/Madagascar.png deleted file mode 100755 index 5c92205..0000000 Binary files a/resources/img/flags/Madagascar.png and /dev/null differ diff --git a/resources/img/flags/Malawi.png b/resources/img/flags/Malawi.png deleted file mode 100755 index 54bccd4..0000000 Binary files a/resources/img/flags/Malawi.png and /dev/null differ diff --git a/resources/img/flags/Malaysia.png b/resources/img/flags/Malaysia.png deleted file mode 100755 index 0adbfe0..0000000 Binary files a/resources/img/flags/Malaysia.png and /dev/null differ diff --git a/resources/img/flags/Maldives.png b/resources/img/flags/Maldives.png deleted file mode 100755 index 345d21e..0000000 Binary files a/resources/img/flags/Maldives.png and /dev/null differ diff --git a/resources/img/flags/Mali.png b/resources/img/flags/Mali.png deleted file mode 100755 index f93bffd..0000000 Binary files a/resources/img/flags/Mali.png and /dev/null differ diff --git a/resources/img/flags/Malta.png b/resources/img/flags/Malta.png deleted file mode 100755 index e0bf47d..0000000 Binary files a/resources/img/flags/Malta.png and /dev/null differ diff --git a/resources/img/flags/Marshall Islands.png b/resources/img/flags/Marshall Islands.png deleted file mode 100755 index 02fbde6..0000000 Binary files a/resources/img/flags/Marshall Islands.png and /dev/null differ diff --git a/resources/img/flags/Martinique.png b/resources/img/flags/Martinique.png deleted file mode 100755 index e6b06c3..0000000 Binary files a/resources/img/flags/Martinique.png and /dev/null differ diff --git a/resources/img/flags/Mauritania.png b/resources/img/flags/Mauritania.png deleted file mode 100755 index b091eef..0000000 Binary files a/resources/img/flags/Mauritania.png and /dev/null differ diff --git a/resources/img/flags/Mauritius.png b/resources/img/flags/Mauritius.png deleted file mode 100755 index b09576f..0000000 Binary files a/resources/img/flags/Mauritius.png and /dev/null differ diff --git a/resources/img/flags/Mexico.png b/resources/img/flags/Mexico.png deleted file mode 100755 index e6c2c83..0000000 Binary files a/resources/img/flags/Mexico.png and /dev/null differ diff --git a/resources/img/flags/Micronesia.png b/resources/img/flags/Micronesia.png deleted file mode 100755 index 8321229..0000000 Binary files a/resources/img/flags/Micronesia.png and /dev/null differ diff --git a/resources/img/flags/Moldova.png b/resources/img/flags/Moldova.png deleted file mode 100755 index 0e342f1..0000000 Binary files a/resources/img/flags/Moldova.png and /dev/null differ diff --git a/resources/img/flags/Monaco.png b/resources/img/flags/Monaco.png deleted file mode 100755 index d72a4a4..0000000 Binary files a/resources/img/flags/Monaco.png and /dev/null differ diff --git a/resources/img/flags/Mongolia.png b/resources/img/flags/Mongolia.png deleted file mode 100755 index aadc11e..0000000 Binary files a/resources/img/flags/Mongolia.png and /dev/null differ diff --git a/resources/img/flags/Montenegro.png b/resources/img/flags/Montenegro.png deleted file mode 100755 index ad067f1..0000000 Binary files a/resources/img/flags/Montenegro.png and /dev/null differ diff --git a/resources/img/flags/Montserrat.png b/resources/img/flags/Montserrat.png deleted file mode 100755 index 779babd..0000000 Binary files a/resources/img/flags/Montserrat.png and /dev/null differ diff --git a/resources/img/flags/Morocco.png b/resources/img/flags/Morocco.png deleted file mode 100755 index 4cb8c4f..0000000 Binary files a/resources/img/flags/Morocco.png and /dev/null differ diff --git a/resources/img/flags/Mozambique.png b/resources/img/flags/Mozambique.png deleted file mode 100755 index f50ae6b..0000000 Binary files a/resources/img/flags/Mozambique.png and /dev/null differ diff --git a/resources/img/flags/Myanmar(Burma).png b/resources/img/flags/Myanmar(Burma).png deleted file mode 100755 index 1ae147c..0000000 Binary files a/resources/img/flags/Myanmar(Burma).png and /dev/null differ diff --git a/resources/img/flags/NATO.png b/resources/img/flags/NATO.png deleted file mode 100755 index 5904306..0000000 Binary files a/resources/img/flags/NATO.png and /dev/null differ diff --git a/resources/img/flags/Namibia.png b/resources/img/flags/Namibia.png deleted file mode 100755 index 7ae4759..0000000 Binary files a/resources/img/flags/Namibia.png and /dev/null differ diff --git a/resources/img/flags/Nauru.png b/resources/img/flags/Nauru.png deleted file mode 100755 index 7aaf39c..0000000 Binary files a/resources/img/flags/Nauru.png and /dev/null differ diff --git a/resources/img/flags/Nepal.png b/resources/img/flags/Nepal.png deleted file mode 100755 index 327eb5f..0000000 Binary files a/resources/img/flags/Nepal.png and /dev/null differ diff --git a/resources/img/flags/Netherlands Antilles.png b/resources/img/flags/Netherlands Antilles.png deleted file mode 100755 index c7644f8..0000000 Binary files a/resources/img/flags/Netherlands Antilles.png and /dev/null differ diff --git a/resources/img/flags/Netherlands.png b/resources/img/flags/Netherlands.png deleted file mode 100755 index 9073f2c..0000000 Binary files a/resources/img/flags/Netherlands.png and /dev/null differ diff --git a/resources/img/flags/New Caledonia.png b/resources/img/flags/New Caledonia.png deleted file mode 100755 index e9e4242..0000000 Binary files a/resources/img/flags/New Caledonia.png and /dev/null differ diff --git a/resources/img/flags/New Zealand.png b/resources/img/flags/New Zealand.png deleted file mode 100755 index 498bca3..0000000 Binary files a/resources/img/flags/New Zealand.png and /dev/null differ diff --git a/resources/img/flags/Nicaragua.png b/resources/img/flags/Nicaragua.png deleted file mode 100755 index 67b1f5c..0000000 Binary files a/resources/img/flags/Nicaragua.png and /dev/null differ diff --git a/resources/img/flags/Niger.png b/resources/img/flags/Niger.png deleted file mode 100755 index c1fdcd1..0000000 Binary files a/resources/img/flags/Niger.png and /dev/null differ diff --git a/resources/img/flags/Nigeria.png b/resources/img/flags/Nigeria.png deleted file mode 100755 index 9310f19..0000000 Binary files a/resources/img/flags/Nigeria.png and /dev/null differ diff --git a/resources/img/flags/North Korea.png b/resources/img/flags/North Korea.png deleted file mode 100755 index 403624e..0000000 Binary files a/resources/img/flags/North Korea.png and /dev/null differ diff --git a/resources/img/flags/Northern Cyprus.png b/resources/img/flags/Northern Cyprus.png deleted file mode 100755 index 9f5577a..0000000 Binary files a/resources/img/flags/Northern Cyprus.png and /dev/null differ diff --git a/resources/img/flags/Northern Ireland.png b/resources/img/flags/Northern Ireland.png deleted file mode 100755 index bf93ec8..0000000 Binary files a/resources/img/flags/Northern Ireland.png and /dev/null differ diff --git a/resources/img/flags/Norway.png b/resources/img/flags/Norway.png deleted file mode 100755 index 9717bbf..0000000 Binary files a/resources/img/flags/Norway.png and /dev/null differ diff --git a/resources/img/flags/OPEC.png b/resources/img/flags/OPEC.png deleted file mode 100755 index c879c4f..0000000 Binary files a/resources/img/flags/OPEC.png and /dev/null differ diff --git a/resources/img/flags/Olimpic Movement.png b/resources/img/flags/Olimpic Movement.png deleted file mode 100755 index bede610..0000000 Binary files a/resources/img/flags/Olimpic Movement.png and /dev/null differ diff --git a/resources/img/flags/Oman.png b/resources/img/flags/Oman.png deleted file mode 100755 index 65901cf..0000000 Binary files a/resources/img/flags/Oman.png and /dev/null differ diff --git a/resources/img/flags/Pakistan.png b/resources/img/flags/Pakistan.png deleted file mode 100755 index aab99bf..0000000 Binary files a/resources/img/flags/Pakistan.png and /dev/null differ diff --git a/resources/img/flags/Palau.png b/resources/img/flags/Palau.png deleted file mode 100755 index 5afec54..0000000 Binary files a/resources/img/flags/Palau.png and /dev/null differ diff --git a/resources/img/flags/Palestine.png b/resources/img/flags/Palestine.png deleted file mode 100755 index 0d25538..0000000 Binary files a/resources/img/flags/Palestine.png and /dev/null differ diff --git a/resources/img/flags/Panama.png b/resources/img/flags/Panama.png deleted file mode 100755 index afb4ca9..0000000 Binary files a/resources/img/flags/Panama.png and /dev/null differ diff --git a/resources/img/flags/Papua New Guinea.png b/resources/img/flags/Papua New Guinea.png deleted file mode 100755 index a239b74..0000000 Binary files a/resources/img/flags/Papua New Guinea.png and /dev/null differ diff --git a/resources/img/flags/Paraguay.png b/resources/img/flags/Paraguay.png deleted file mode 100755 index 73ff28b..0000000 Binary files a/resources/img/flags/Paraguay.png and /dev/null differ diff --git a/resources/img/flags/Peru.png b/resources/img/flags/Peru.png deleted file mode 100755 index 96dc7ef..0000000 Binary files a/resources/img/flags/Peru.png and /dev/null differ diff --git a/resources/img/flags/Philippines.png b/resources/img/flags/Philippines.png deleted file mode 100755 index f626ed9..0000000 Binary files a/resources/img/flags/Philippines.png and /dev/null differ diff --git a/resources/img/flags/Poland.png b/resources/img/flags/Poland.png deleted file mode 100755 index 088a766..0000000 Binary files a/resources/img/flags/Poland.png and /dev/null differ diff --git a/resources/img/flags/Portugal.png b/resources/img/flags/Portugal.png deleted file mode 100755 index 630a85c..0000000 Binary files a/resources/img/flags/Portugal.png and /dev/null differ diff --git a/resources/img/flags/Puerto Rico.png b/resources/img/flags/Puerto Rico.png deleted file mode 100755 index 79a3c61..0000000 Binary files a/resources/img/flags/Puerto Rico.png and /dev/null differ diff --git a/resources/img/flags/Qatar.png b/resources/img/flags/Qatar.png deleted file mode 100755 index cd0905c..0000000 Binary files a/resources/img/flags/Qatar.png and /dev/null differ diff --git a/resources/img/flags/Red Cross.png b/resources/img/flags/Red Cross.png deleted file mode 100755 index 223cffa..0000000 Binary files a/resources/img/flags/Red Cross.png and /dev/null differ diff --git a/resources/img/flags/Reunion.png b/resources/img/flags/Reunion.png deleted file mode 100755 index 500f9a1..0000000 Binary files a/resources/img/flags/Reunion.png and /dev/null differ diff --git a/resources/img/flags/Romania.png b/resources/img/flags/Romania.png deleted file mode 100755 index f815958..0000000 Binary files a/resources/img/flags/Romania.png and /dev/null differ diff --git a/resources/img/flags/Russian Federation.png b/resources/img/flags/Russian Federation.png deleted file mode 100755 index 980c585..0000000 Binary files a/resources/img/flags/Russian Federation.png and /dev/null differ diff --git a/resources/img/flags/Rwanda.png b/resources/img/flags/Rwanda.png deleted file mode 100755 index 0659c26..0000000 Binary files a/resources/img/flags/Rwanda.png and /dev/null differ diff --git a/resources/img/flags/Saint Lucia.png b/resources/img/flags/Saint Lucia.png deleted file mode 100755 index fea98e3..0000000 Binary files a/resources/img/flags/Saint Lucia.png and /dev/null differ diff --git a/resources/img/flags/Samoa.png b/resources/img/flags/Samoa.png deleted file mode 100755 index ba47ee7..0000000 Binary files a/resources/img/flags/Samoa.png and /dev/null differ diff --git a/resources/img/flags/San Marino.png b/resources/img/flags/San Marino.png deleted file mode 100755 index bde1c4e..0000000 Binary files a/resources/img/flags/San Marino.png and /dev/null differ diff --git a/resources/img/flags/Sao Tome & Principe.png b/resources/img/flags/Sao Tome & Principe.png deleted file mode 100755 index 6a9da68..0000000 Binary files a/resources/img/flags/Sao Tome & Principe.png and /dev/null differ diff --git a/resources/img/flags/Saudi Arabia.png b/resources/img/flags/Saudi Arabia.png deleted file mode 100755 index 839d0d9..0000000 Binary files a/resources/img/flags/Saudi Arabia.png and /dev/null differ diff --git a/resources/img/flags/Scotland.png b/resources/img/flags/Scotland.png deleted file mode 100755 index 033de25..0000000 Binary files a/resources/img/flags/Scotland.png and /dev/null differ diff --git a/resources/img/flags/Senegal.png b/resources/img/flags/Senegal.png deleted file mode 100755 index bf45518..0000000 Binary files a/resources/img/flags/Senegal.png and /dev/null differ diff --git a/resources/img/flags/Serbia(Yugoslavia).png b/resources/img/flags/Serbia(Yugoslavia).png deleted file mode 100755 index b6b0822..0000000 Binary files a/resources/img/flags/Serbia(Yugoslavia).png and /dev/null differ diff --git a/resources/img/flags/Seychelles.png b/resources/img/flags/Seychelles.png deleted file mode 100755 index d36d909..0000000 Binary files a/resources/img/flags/Seychelles.png and /dev/null differ diff --git a/resources/img/flags/Sierra Leone.png b/resources/img/flags/Sierra Leone.png deleted file mode 100755 index ff21325..0000000 Binary files a/resources/img/flags/Sierra Leone.png and /dev/null differ diff --git a/resources/img/flags/Singapore.png b/resources/img/flags/Singapore.png deleted file mode 100755 index 2c0df6e..0000000 Binary files a/resources/img/flags/Singapore.png and /dev/null differ diff --git a/resources/img/flags/Slovakia.png b/resources/img/flags/Slovakia.png deleted file mode 100755 index a3f0881..0000000 Binary files a/resources/img/flags/Slovakia.png and /dev/null differ diff --git a/resources/img/flags/Slovenia.png b/resources/img/flags/Slovenia.png deleted file mode 100755 index 0cf8890..0000000 Binary files a/resources/img/flags/Slovenia.png and /dev/null differ diff --git a/resources/img/flags/Solomon Islands.png b/resources/img/flags/Solomon Islands.png deleted file mode 100755 index c1d6b0c..0000000 Binary files a/resources/img/flags/Solomon Islands.png and /dev/null differ diff --git a/resources/img/flags/Somalia.png b/resources/img/flags/Somalia.png deleted file mode 100755 index 8ca6c8f..0000000 Binary files a/resources/img/flags/Somalia.png and /dev/null differ diff --git a/resources/img/flags/Somaliland.png b/resources/img/flags/Somaliland.png deleted file mode 100755 index 6f182cc..0000000 Binary files a/resources/img/flags/Somaliland.png and /dev/null differ diff --git a/resources/img/flags/South Africa.png b/resources/img/flags/South Africa.png deleted file mode 100755 index dc17e66..0000000 Binary files a/resources/img/flags/South Africa.png and /dev/null differ diff --git a/resources/img/flags/South Korea.png b/resources/img/flags/South Korea.png deleted file mode 100755 index 0e3d706..0000000 Binary files a/resources/img/flags/South Korea.png and /dev/null differ diff --git a/resources/img/flags/Spain.png b/resources/img/flags/Spain.png deleted file mode 100755 index a4177e9..0000000 Binary files a/resources/img/flags/Spain.png and /dev/null differ diff --git a/resources/img/flags/Sri Lanka.png b/resources/img/flags/Sri Lanka.png deleted file mode 100755 index 99ae232..0000000 Binary files a/resources/img/flags/Sri Lanka.png and /dev/null differ diff --git a/resources/img/flags/St Kitts & Nevis.png b/resources/img/flags/St Kitts & Nevis.png deleted file mode 100755 index 1451f19..0000000 Binary files a/resources/img/flags/St Kitts & Nevis.png and /dev/null differ diff --git a/resources/img/flags/St Vincent & the Grenadines.png b/resources/img/flags/St Vincent & the Grenadines.png deleted file mode 100755 index 0b36139..0000000 Binary files a/resources/img/flags/St Vincent & the Grenadines.png and /dev/null differ diff --git a/resources/img/flags/Sudan.png b/resources/img/flags/Sudan.png deleted file mode 100755 index 3ba6c4e..0000000 Binary files a/resources/img/flags/Sudan.png and /dev/null differ diff --git a/resources/img/flags/Suriname.png b/resources/img/flags/Suriname.png deleted file mode 100755 index e3d79c8..0000000 Binary files a/resources/img/flags/Suriname.png and /dev/null differ diff --git a/resources/img/flags/Swaziland.png b/resources/img/flags/Swaziland.png deleted file mode 100755 index 5926859..0000000 Binary files a/resources/img/flags/Swaziland.png and /dev/null differ diff --git a/resources/img/flags/Sweden.png b/resources/img/flags/Sweden.png deleted file mode 100755 index d62df2a..0000000 Binary files a/resources/img/flags/Sweden.png and /dev/null differ diff --git a/resources/img/flags/Switzerland.png b/resources/img/flags/Switzerland.png deleted file mode 100755 index b62f04b..0000000 Binary files a/resources/img/flags/Switzerland.png and /dev/null differ diff --git a/resources/img/flags/Syria.png b/resources/img/flags/Syria.png deleted file mode 100755 index a0babec..0000000 Binary files a/resources/img/flags/Syria.png and /dev/null differ diff --git a/resources/img/flags/Tahiti(French Polinesia).png b/resources/img/flags/Tahiti(French Polinesia).png deleted file mode 100755 index f733ac1..0000000 Binary files a/resources/img/flags/Tahiti(French Polinesia).png and /dev/null differ diff --git a/resources/img/flags/Taiwan.png b/resources/img/flags/Taiwan.png deleted file mode 100755 index 5feb7ee..0000000 Binary files a/resources/img/flags/Taiwan.png and /dev/null differ diff --git a/resources/img/flags/Tajikistan.png b/resources/img/flags/Tajikistan.png deleted file mode 100755 index 829fa7b..0000000 Binary files a/resources/img/flags/Tajikistan.png and /dev/null differ diff --git a/resources/img/flags/Tanzania.png b/resources/img/flags/Tanzania.png deleted file mode 100755 index 59eee14..0000000 Binary files a/resources/img/flags/Tanzania.png and /dev/null differ diff --git a/resources/img/flags/Thailand.png b/resources/img/flags/Thailand.png deleted file mode 100755 index 62b8cce..0000000 Binary files a/resources/img/flags/Thailand.png and /dev/null differ diff --git a/resources/img/flags/Timor-Leste.png b/resources/img/flags/Timor-Leste.png deleted file mode 100755 index 93a45af..0000000 Binary files a/resources/img/flags/Timor-Leste.png and /dev/null differ diff --git a/resources/img/flags/Togo.png b/resources/img/flags/Togo.png deleted file mode 100755 index a32a0c2..0000000 Binary files a/resources/img/flags/Togo.png and /dev/null differ diff --git a/resources/img/flags/Tonga.png b/resources/img/flags/Tonga.png deleted file mode 100755 index dac83d8..0000000 Binary files a/resources/img/flags/Tonga.png and /dev/null differ diff --git a/resources/img/flags/Trinidad & Tobago.png b/resources/img/flags/Trinidad & Tobago.png deleted file mode 100755 index f5e185e..0000000 Binary files a/resources/img/flags/Trinidad & Tobago.png and /dev/null differ diff --git a/resources/img/flags/Tunisia.png b/resources/img/flags/Tunisia.png deleted file mode 100755 index 8869233..0000000 Binary files a/resources/img/flags/Tunisia.png and /dev/null differ diff --git a/resources/img/flags/Turkey.png b/resources/img/flags/Turkey.png deleted file mode 100755 index dc33119..0000000 Binary files a/resources/img/flags/Turkey.png and /dev/null differ diff --git a/resources/img/flags/Turkmenistan.png b/resources/img/flags/Turkmenistan.png deleted file mode 100755 index 1860480..0000000 Binary files a/resources/img/flags/Turkmenistan.png and /dev/null differ diff --git a/resources/img/flags/Turks and Caicos Islands.png b/resources/img/flags/Turks and Caicos Islands.png deleted file mode 100755 index 63d711e..0000000 Binary files a/resources/img/flags/Turks and Caicos Islands.png and /dev/null differ diff --git a/resources/img/flags/Tuvalu.png b/resources/img/flags/Tuvalu.png deleted file mode 100755 index 9c85af4..0000000 Binary files a/resources/img/flags/Tuvalu.png and /dev/null differ diff --git a/resources/img/flags/Uganda.png b/resources/img/flags/Uganda.png deleted file mode 100755 index eb91362..0000000 Binary files a/resources/img/flags/Uganda.png and /dev/null differ diff --git a/resources/img/flags/Ukraine.png b/resources/img/flags/Ukraine.png deleted file mode 100755 index 46f59cb..0000000 Binary files a/resources/img/flags/Ukraine.png and /dev/null differ diff --git a/resources/img/flags/United Arab Emirates.png b/resources/img/flags/United Arab Emirates.png deleted file mode 100755 index 5957c42..0000000 Binary files a/resources/img/flags/United Arab Emirates.png and /dev/null differ diff --git a/resources/img/flags/United Kingdom(Great Britain).png b/resources/img/flags/United Kingdom(Great Britain).png deleted file mode 100755 index 82cf5f1..0000000 Binary files a/resources/img/flags/United Kingdom(Great Britain).png and /dev/null differ diff --git a/resources/img/flags/United Nations.png b/resources/img/flags/United Nations.png deleted file mode 100755 index aaa739c..0000000 Binary files a/resources/img/flags/United Nations.png and /dev/null differ diff --git a/resources/img/flags/United States of America (USA).png b/resources/img/flags/United States of America (USA).png deleted file mode 100755 index 5e4b4d9..0000000 Binary files a/resources/img/flags/United States of America (USA).png and /dev/null differ diff --git a/resources/img/flags/Uruguay.png b/resources/img/flags/Uruguay.png deleted file mode 100755 index f174217..0000000 Binary files a/resources/img/flags/Uruguay.png and /dev/null differ diff --git a/resources/img/flags/Uzbekistan.png b/resources/img/flags/Uzbekistan.png deleted file mode 100755 index 304c0bd..0000000 Binary files a/resources/img/flags/Uzbekistan.png and /dev/null differ diff --git a/resources/img/flags/Vanutau.png b/resources/img/flags/Vanutau.png deleted file mode 100755 index 10fc79e..0000000 Binary files a/resources/img/flags/Vanutau.png and /dev/null differ diff --git a/resources/img/flags/Vatican City.png b/resources/img/flags/Vatican City.png deleted file mode 100755 index 049f341..0000000 Binary files a/resources/img/flags/Vatican City.png and /dev/null differ diff --git a/resources/img/flags/Venezuela.png b/resources/img/flags/Venezuela.png deleted file mode 100755 index 03a1fca..0000000 Binary files a/resources/img/flags/Venezuela.png and /dev/null differ diff --git a/resources/img/flags/Viet Nam.png b/resources/img/flags/Viet Nam.png deleted file mode 100755 index f6aaa60..0000000 Binary files a/resources/img/flags/Viet Nam.png and /dev/null differ diff --git a/resources/img/flags/Virgin Islands British.png b/resources/img/flags/Virgin Islands British.png deleted file mode 100755 index f6c33a3..0000000 Binary files a/resources/img/flags/Virgin Islands British.png and /dev/null differ diff --git a/resources/img/flags/Virgin Islands US.png b/resources/img/flags/Virgin Islands US.png deleted file mode 100755 index 1aa55d3..0000000 Binary files a/resources/img/flags/Virgin Islands US.png and /dev/null differ diff --git a/resources/img/flags/Wales.png b/resources/img/flags/Wales.png deleted file mode 100755 index 409b22b..0000000 Binary files a/resources/img/flags/Wales.png and /dev/null differ diff --git a/resources/img/flags/Western Sahara.png b/resources/img/flags/Western Sahara.png deleted file mode 100755 index d6fc4b7..0000000 Binary files a/resources/img/flags/Western Sahara.png and /dev/null differ diff --git a/resources/img/flags/Yemen.png b/resources/img/flags/Yemen.png deleted file mode 100755 index b2358ed..0000000 Binary files a/resources/img/flags/Yemen.png and /dev/null differ diff --git a/resources/img/flags/Zambia.png b/resources/img/flags/Zambia.png deleted file mode 100755 index 3684007..0000000 Binary files a/resources/img/flags/Zambia.png and /dev/null differ diff --git a/resources/img/flags/Zimbabwe.png b/resources/img/flags/Zimbabwe.png deleted file mode 100755 index 74b99fe..0000000 Binary files a/resources/img/flags/Zimbabwe.png and /dev/null differ diff --git a/resources/img/header.jpeg b/resources/img/header.jpeg deleted file mode 100644 index 8d394a1..0000000 Binary files a/resources/img/header.jpeg and /dev/null differ diff --git a/resources/img/nico-box.png b/resources/img/nico-box.png deleted file mode 100644 index d51300b..0000000 Binary files a/resources/img/nico-box.png and /dev/null differ diff --git a/resources/img/od-box.png b/resources/img/od-box.png deleted file mode 100644 index 79c6987..0000000 Binary files a/resources/img/od-box.png and /dev/null differ diff --git a/resources/img/play-box.png b/resources/img/play-box.png deleted file mode 100644 index 697c816..0000000 Binary files a/resources/img/play-box.png and /dev/null differ diff --git a/resources/img/swk-box.png b/resources/img/swk-box.png deleted file mode 100644 index eb3692e..0000000 Binary files a/resources/img/swk-box.png and /dev/null differ diff --git a/resources/img/yt-box.png b/resources/img/yt-box.png deleted file mode 100644 index c8d0705..0000000 Binary files a/resources/img/yt-box.png and /dev/null differ diff --git a/resources/lang/de.json b/resources/lang/de.json deleted file mode 100644 index 2836c89..0000000 --- a/resources/lang/de.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "男性": "männlich", - "女性": "Weiblich", - "不明": "Unbekannt", - "日本": "Japan", - "大韓民国": "Südkorea", - "中華人民共和国": "Volksrepublik China", - "香港": "Hongkong", - "台湾": "Taiwan", - "赤道ギニア": "Äquatorialguinea", - "北アイルランド": "Nordirland", - "北朝鮮": "Nord Korea", - "北マケドニア": "Nordmakedonien", - "中央アフリカ共和国": "Zentralafrikanische Republik", - "東ティモール": "Osttimor", - "南極": "Antarktis", - "南アフリカ": "Südafrika", - "西サハラ": "Westsahara", - "アイスランド": "Island", - "アイルランド": "Irland", - "アゼルバイジャン": "Aserbaidschan", - "アフガニスタン": "Afghanistan", - "アメリカ領ヴァージン諸島": "Amerikanische Jungferninseln", - "アメリカ領サモア": "Amerikanischen Samoa-Inseln", - "アメリカ合衆国": "vereinigte Staaten von Amerika", - "アラブ首長国連邦": "Vereinigte Arabische Emirate", - "アルジェリア": "Algerien", - "アルゼンチン": "Argentinien", - "アルバ": "Aruba", - "アルバニア": "Albanien", - "アルメニア": "Armenien", - "アンゴラ": "Angola", - "アングィラ": "Anguilla", - "アンティグア・バーブーダ": "Antigua und Barbuda", - "アンドラ": "Andorra", - "イエメン": "Jemen", - "イギリス": "England", - "イギリス領バージン諸島": "Britische Jungferninseln", - "イスラエル": "Israel", - "イタリア": "Italien", - "イラク": "Irak", - "イラン": "Iran", - "イングランド": "England", - "インド": "Indien", - "インドネシア": "Indonesien", - "ウェールズ": "Wales", - "ウガンダ": "Uganda", - "ウクライナ": "Ukraine", - "ウズベキスタン": "Usbekistan", - "ウルグアイ": "Uruguay", - "エクアドル": "Ecuador", - "エジプト": "Ägypten", - "エストニア": "Estland", - "エスワティニ": "Eswatini", - "エチオピア": "Äthiopien", - "エリトリア": "Eritrea", - "エルサルバドル": "El Salvador", - "オーストラリア": "Australien", - "オーストリア": "Österreich", - "オマーン": "Oman", - "オランダ": "Niederlande", - "オランダ領アンティル": "Niederländische Antillen", - "ガーナ": "Ghana", - "カーボベルデ": "Kap Verde", - "ガーンジー島": "Guernsey", - "ガイアナ": "Guyana", - "カザフスタン": "Kasachstan", - "カタール": "Katar", - "カナダ": "Kanada", - "ガボン": "Gabun", - "カメルーン": "Kamerun", - "ガンビア": "Gambia", - "カンボジア": "Kambodscha", - "キプロス": "Zypern", - "ギニア": "Guinea", - "ギニア・ビサウ": "Guinea-Bissau", - "キューバ": "Kuba", - "ギリシャ": "Griechenland", - "キリバス": "Kiribati", - "キルギス": "Kirgisistan", - "グアテマラ": "Guatemala", - "グアドループ": "Guadeloupe", - "グアム": "Guam", - "クウェート": "Kuwait", - "クック諸島": "Cookinseln", - "グリーンランド": "Grönland", - "グレナダ": "Grenada", - "クロアチア": "Kroatien", - "ケイマン諸島": "Cayman Inseln", - "ケニア": "Kenia", - "コートジボワール": "Elfenbeinküste", - "コスタリカ": "Costa Rica", - "コソボ": "Kosovo", - "コモロ": "Komoren", - "コロンビア": "Columbia", - "コンゴ": "Kongo", - "コンゴ民主共和国": "Demokratische Republik Kongo", - "サウジアラビア": "Saudi-Arabien", - "サモア": "Samoa", - "サントメ・プリンシペ": "Sao Tome Principe", - "ザンビア": "Sambia", - "サン・マリの": "San Mali", - "シエラレオネ": "Sierra Leone", - "ジブチ": "Dschibuti", - "ジブラルタル": "Gibraltar", - "シリア": "Syrien", - "ジャージー島": "Jersey", - "ジャマイカ": "Jamaika", - "ジョージア": "Georgia", - "シンガポール": "Singapur", - "ジンバブエ": "Zimbabwe", - "スイス": "Schweiz", - "スウェーデン": "Schweden", - "スーダン": "Sudan", - "スコットランド": "Schottland", - "スペイン": "Spanien", - "スリナム": "Suriname", - "スリランカ": "Sri Lanka", - "スロバキア": "Slowakei", - "スロベニア": "Slowenien", - "セーシェル": "Seychellen", - "セネガル": "Senegal", - "セルビア": "Serbien", - "セントクリストファー・ネービス": "St. Kitts und Nevis", - "セントビンセントおよびグレナディーン諸島": "St. Vincent und die Grenadinen", - "セントルシア": "St. Lucia", - "ソマリア": "Somalia", - "ソマリランド": "Somaliland", - "ソロモン諸島": "Salomon-Inseln", - "タークス・カイコス諸島": "Turks- und Caicosinseln", - "タイ": "Thailand", - "タジキスタン": "Tadschikistan", - "タンザニア": "Tansania", - "チャド": "Tschad", - "チリ": "Chile", - "チェコ": "Tschechisch", - "ツバル": "Tuvalu", - "チュニジア": "Tunesien", - "デンマーク": "Dänemark", - "トーゴ": "Gehen", - "ドイツ": "Deutschland", - "ドミニカ": "Dominica", - "ドミニカ共和国": "Dominikanische Republik", - "トリニダード・ドバゴ": "Trinidad und Tobago", - "トルクメニスタン": "Turkmenistan", - "トルコ": "Truthahn", - "トンガ": "Tonga", - "ナイジェリア": "Nigeria", - "ナウル": "Nauru", - "ナミビア": "Namibia", - "ニカラグア": "Nicaragua", - "ニジェール": "Niger", - "ニューカレドニア": "Neu-Kaledonien", - "ニュージーランド": "Neuseeland", - "ネパール": "Nepal", - "ノルウェー": "Norwegen", - "バーレーン": "Bahrain", - "ハイチ": "Haiti", - "パキスタン": "Pakistan", - "パナマ": "Panama", - "バヌアツ": "Vanuatu", - "バハマ": "Bahamas", - "パプアニューギニア": "Papua Neu-Guinea", - "バミューダ諸島": "Bermuda", - "パラオ": "Palau", - "パラグアイ": "Paraguay", - "バルバドス": "Barbados", - "ハンガリー": "Ungarn", - "バングラデシュ": "Bangladesch", - "フィジー": "Fidschi", - "フィリピン": "Philippinen", - "フィンランド": "Finnland", - "プエルトリコ": "Puerto Rico", - "ブータン": "Bhutan", - "フェロー諸島": "Färöer Inseln", - "ブラジル": "Brasilien", - "フランス": "Frankreich", - "フランス領ポリネシア": "Französisch Polynesien", - "ブルガリア": "Bulgarien", - "ブルキナ・ファソ": "Burkina Faso", - "ブルネイ・ダルサラーム": "Brunei Darussalam", - "ブルンジ": "Burundi", - "ベトナム": "Vietnam", - "ベナン": "Benin", - "ベネズエラ": "Venezuela", - "ベラルーシ": "Weißrussland", - "ベリーズ": "Belize", - "ペルー": "Peru", - "ベルギー": "Belgien", - "ポーランド": "Polen", - "ボスニア・ヘルツェゴビナ": "Bosnien-Herzegowina", - "ボツワナ": "Botswana", - "ボリビア": "Bolivien", - "ポルトガル": "Portugal", - "ホンジュラス": "Honduras", - "マーシャル諸島": "Marshallinseln", - "マカオ": "Macau", - "マダガスカル": "Madagaskar", - "マラウイ": "Malawi", - "マリ": "Mali", - "マルタ": "Malta", - "マルティニーク": "Martinique", - "マレーシア": "Malaysia", - "マン島": "Isle of Man", - "ミクロネシア連邦": "Die Verbündeten Staaten von Micronesia", - "ミャンマー(ビルマ)": "Myanmar (Burma)", - "モーリシャス": "Mauritius", - "モーリタニア": "Mauretanien", - "モルディブ": "Malediven", - "メキシコ": "Mexiko", - "モザンビーク": "Mosambik", - "モナコ": "Monaco", - "モルドバ": "Moldawien", - "モロッコ": "Marokko", - "モンゴル": "Mongolei", - "モンセラート": "Montserrat", - "モンテネグロ": "Montenegro", - "ヨルダン": "Jordanien", - "ラオス": "Laos", - "ラトビア": "Lettland", - "リトアニア": "Litauen", - "リヒテンシュタイン": "Liechtenstein", - "リビア": "Libyen", - "リベリア": "Liberia", - "ルーマニア": "Rumänien", - "ルクセンブルク": "Luxemburg", - "ルワンダ": "Ruanda", - "レソト": "Lesotho", - "レバノン": "Libanon", - "レユニオン": "Wiedervereinigung", - "ローマ教皇庁 (バチカン)": "Römische Kurie (Vatikan)", - "ロシア": "Russland" -} \ No newline at end of file diff --git a/resources/lang/de/site.php b/resources/lang/de/site.php deleted file mode 100644 index c85585a..0000000 --- a/resources/lang/de/site.php +++ /dev/null @@ -1,36 +0,0 @@ - 'ergänzen', - 'hensyu' => 'Bearbeiten', - 'sakujyo' => 'Löschen', - 'signin' => 'Einloggen', - 'signout' => 'Ausloggen', - 'toroku' => 'Anmeldung', - 'sinkitoroku' => 'Anmelden', - 'hissu' => 'Verpflichtend', - 'username' => 'Nutzername', - 'hyojiname' => 'Anzeigename', - 'hyojiname_memo' => 'Wenn Sie es nicht eingeben, wird der Benutzername angezeigt.', - 'password' => 'Passwort', - 'password_memo' => 'Wenn Sie das Passwort nicht ändern, geben Sie es nicht so ein, wie es ist.', - 'passwordkakunin' => 'Passwort Bestätigung', - 'kuni' => 'Land', - 'seibetu' => 'Sex', - 'densimail' => 'Email', - 'de_kokai' => 'Veröffentlicht am :date', - 'no_icon' => ':namessymbol', - 'jikosyokai' => 'Vorstellen', - 'ippan' => 'Allgemeines', - 'renraku' => 'Kontakt', - 'gengo' => 'Sprache', - 'top' => 'oben', - 'doga' => 'Video', - 'profilenohyoji' => 'Profil anzeigen', - 'profilenohensyu' => 'Profil bearbeiten', - 'tokonotuika' => 'Beitrag hinzufügen', - 'doganotuika' => 'Video hinzufügen', - 'comentitiran' => 'Liste der Kommentare', - 'useritiran' => 'Benutzerliste', - 'minyukaimono' => 'Nichtmitglieder', -]; diff --git a/resources/lang/en.json b/resources/lang/en.json deleted file mode 100644 index 987df9f..0000000 --- a/resources/lang/en.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "男性": "male", - "女性": "Female", - "不明": "unknown", - "日本": "Japan", - "大韓民国": "South Korea", - "中華人民共和国": "People's Republic of China", - "香港": "Hong Kong", - "台湾": "Taiwan", - "赤道ギニア": "Equatorial Guinea", - "北アイルランド": "Northern Ireland", - "北朝鮮": "North Korea", - "北マケドニア": "North Macedonia", - "中央アフリカ共和国": "Central African Republic", - "東ティモール": "East Timor", - "南極": "Antarctic", - "南アフリカ": "South Africa", - "西サハラ": "Western Sahara", - "アイスランド": "Iceland", - "アイルランド": "Ireland", - "アゼルバイジャン": "Azerbaijan", - "アフガニスタン": "Afghanistan", - "アメリカ領ヴァージン諸島": "American Virgin Islands", - "アメリカ領サモア": "American Samoa", - "アメリカ合衆国": "United States of America", - "アラブ首長国連邦": "United Arab Emirates", - "アルジェリア": "Algeria", - "アルゼンチン": "Argentina", - "アルバ": "Aruba", - "アルバニア": "Albania", - "アルメニア": "Armenia", - "アンゴラ": "Angola", - "アングィラ": "Anguilla", - "アンティグア・バーブーダ": "Antigua and Barbuda", - "アンドラ": "Andorra", - "イエメン": "Yemen", - "イギリス": "England", - "イギリス領バージン諸島": "British Virgin Islands", - "イスラエル": "Israel", - "イタリア": "Italy", - "イラク": "Iraq", - "イラン": "Iran", - "イングランド": "England", - "インド": "India", - "インドネシア": "Indonesia", - "ウェールズ": "Wales", - "ウガンダ": "Uganda", - "ウクライナ": "Ukraine", - "ウズベキスタン": "Uzbekistan", - "ウルグアイ": "Uruguay", - "エクアドル": "Ecuador", - "エジプト": "Egypt", - "エストニア": "Estonia", - "エスワティニ": "Eswatini", - "エチオピア": "Ethiopia", - "エリトリア": "Eritrea", - "エルサルバドル": "El salvador", - "オーストラリア": "Australia", - "オーストリア": "Austria", - "オマーン": "Oman", - "オランダ": "Netherlands", - "オランダ領アンティル": "Dutch antilles", - "ガーナ": "Ghana", - "カーボベルデ": "Cape Verde", - "ガーンジー島": "Guernsey", - "ガイアナ": "Guyana", - "カザフスタン": "Kazakhstan", - "カタール": "Qatar", - "カナダ": "Canada", - "ガボン": "Gabon", - "カメルーン": "Cameroon", - "ガンビア": "Gambia", - "カンボジア": "Cambodia", - "キプロス": "Cyprus", - "ギニア": "Guinea", - "ギニア・ビサウ": "Guinea-Bissau", - "キューバ": "Cuba", - "ギリシャ": "Greece", - "キリバス": "Kiribati", - "キルギス": "Kyrgyzstan", - "グアテマラ": "Guatemala", - "グアドループ": "Guadeloupe", - "グアム": "Guam", - "クウェート": "Kuwait", - "クック諸島": "Cook Islands", - "グリーンランド": "Greenland", - "グレナダ": "Grenada", - "クロアチア": "Croatia", - "ケイマン諸島": "Cayman Islands", - "ケニア": "Kenya", - "コートジボワール": "Cote d'Ivoire", - "コスタリカ": "Costa Rica", - "コソボ": "Kosovo", - "コモロ": "Comoros", - "コロンビア": "Columbia", - "コンゴ": "Congo", - "コンゴ民主共和国": "Democratic Republic of the Congo", - "サウジアラビア": "Saudi Arabia", - "サモア": "Samoa", - "サントメ・プリンシペ": "Sao Tome Principe", - "ザンビア": "Zambia", - "サン・マリの": "San Mali", - "シエラレオネ": "Sierra Leone", - "ジブチ": "Djibouti", - "ジブラルタル": "Gibraltar", - "シリア": "Syria", - "ジャージー島": "Jersey", - "ジャマイカ": "Jamaica", - "ジョージア": "Georgia", - "シンガポール": "Singapore", - "ジンバブエ": "Zimbabwe", - "スイス": "Switzerland", - "スウェーデン": "Sweden", - "スーダン": "Sudan", - "スコットランド": "Scotland", - "スペイン": "Spain", - "スリナム": "Suriname", - "スリランカ": "Sri Lanka", - "スロバキア": "Slovakia", - "スロベニア": "Slovenia", - "セーシェル": "Seychelles", - "セネガル": "Senegal", - "セルビア": "Serbia", - "セントクリストファー・ネービス": "Saint Kitts and Nevis", - "セントビンセントおよびグレナディーン諸島": "Saint Vincent and the Grenadines", - "セントルシア": "Saint Lucia", - "ソマリア": "Somalia", - "ソマリランド": "Somaliland", - "ソロモン諸島": "Solomon Islands", - "タークス・カイコス諸島": "Turks and Caicos Islands", - "タイ": "Thailand", - "タジキスタン": "Tajikistan", - "タンザニア": "Tanzania", - "チャド": "Chad", - "チリ": "Chile", - "チェコ": "Czech", - "ツバル": "Tuvalu", - "チュニジア": "Tunisia", - "デンマーク": "Denmark", - "トーゴ": "Togo", - "ドイツ": "Germany", - "ドミニカ": "Dominica", - "ドミニカ共和国": "Dominican Republic", - "トリニダード・ドバゴ": "Trinidad and Tobago", - "トルクメニスタン": "Turkmenistan", - "トルコ": "Turkey", - "トンガ": "Tonga", - "ナイジェリア": "Nigeria", - "ナウル": "Nauru", - "ナミビア": "Namibia", - "ニカラグア": "Nicaragua", - "ニジェール": "Niger", - "ニューカレドニア": "New Caledonia", - "ニュージーランド": "new Zealand", - "ネパール": "Nepal", - "ノルウェー": "Norway", - "バーレーン": "Bahrain", - "ハイチ": "Haiti", - "パキスタン": "Pakistan", - "パナマ": "Panama", - "バヌアツ": "Vanuatu", - "バハマ": "Bahamas", - "パプアニューギニア": "Papua New Guinea", - "バミューダ諸島": "Bermuda", - "パラオ": "Palau", - "パラグアイ": "Paraguay", - "バルバドス": "Barbados", - "ハンガリー": "Hungary", - "バングラデシュ": "Bangladesh", - "フィジー": "Fiji", - "フィリピン": "Philippines", - "フィンランド": "Finland", - "プエルトリコ": "Puerto Rico", - "ブータン": "Bhutan", - "フェロー諸島": "Faroe Islands", - "ブラジル": "Brazil", - "フランス": "France", - "フランス領ポリネシア": "French Polynesia", - "ブルガリア": "Bulgaria", - "ブルキナ・ファソ": "Burkina Faso", - "ブルネイ・ダルサラーム": "Brunei Darussalam", - "ブルンジ": "Burundi", - "ベトナム": "Vietnam", - "ベナン": "Benin", - "ベネズエラ": "Venezuela", - "ベラルーシ": "Belarus", - "ベリーズ": "Belize", - "ペルー": "Peru", - "ベルギー": "Belgium", - "ポーランド": "Poland", - "ボスニア・ヘルツェゴビナ": "Bosnia-Herzegovina", - "ボツワナ": "Botswana", - "ボリビア": "Bolivia", - "ポルトガル": "Portugal", - "ホンジュラス": "Honduras", - "マーシャル諸島": "Marshall Islands", - "マカオ": "Macau", - "マダガスカル": "Madagascar", - "マラウイ": "Malawi", - "マリ": "Mali", - "マルタ": "Malta", - "マルティニーク": "Martinique", - "マレーシア": "Malaysia", - "マン島": "Isle of Man", - "ミクロネシア連邦": "Federated States of Micronesia", - "ミャンマー(ビルマ)": "Myanmar (Burma)", - "モーリシャス": "Mauritius", - "モーリタニア": "Mauritania", - "モルディブ": "Maldives", - "メキシコ": "Mexico", - "モザンビーク": "Mozambique", - "モナコ": "Monaco", - "モルドバ": "Moldova", - "モロッコ": "Morocco", - "モンゴル": "Mongolia", - "モンセラート": "Montserrat", - "モンテネグロ": "Montenegro", - "ヨルダン": "Jordan", - "ラオス": "Laos", - "ラトビア": "Latvia", - "リトアニア": "Lithuania", - "リヒテンシュタイン": "Liechtenstein", - "リビア": "Libya", - "リベリア": "Liberia", - "ルーマニア": "Romania", - "ルクセンブルク": "Luxembourg", - "ルワンダ": "Rwanda", - "レソト": "Lesotho", - "レバノン": "Lebanon", - "レユニオン": "Reunion", - "ローマ教皇庁 (バチカン)": "Roman Curia (Vatican)", - "ロシア": "Russia" -} \ No newline at end of file diff --git a/resources/lang/en/site.php b/resources/lang/en/site.php deleted file mode 100644 index 32e90a6..0000000 --- a/resources/lang/en/site.php +++ /dev/null @@ -1,36 +0,0 @@ - 'add to', - 'hensyu' => 'Edit', - 'sakujyo' => 'Delete', - 'signin' => 'Sign in', - 'signout' => 'Sign out', - 'toroku' => 'Registration', - 'sinkitoroku' => 'sign up', - 'hissu' => 'Mandatory', - 'username' => 'username', - 'hyojiname' => 'Showing name', - 'hyojiname_memo' => 'If you do not enter it, the user name will be displayed.', - 'password' => 'password', - 'password_memo' => 'If you do not change the password, do not enter it as it is.', - 'passwordkakunin' => 'Password confirmation', - 'kuni' => 'Country', - 'seibetu' => 'sex', - 'densimail' => 'e-mail', - 'de_kokai' => 'Published by :date', - 'no_icon' => ':name\'s icon', - 'jikosyokai' => 'Self-introduction', - 'ippan' => 'General', - 'renraku' => 'Contact', - 'gengo' => 'language', - 'top' => 'Top', - 'doga' => 'Video', - 'profilenohyoji' => 'View profile', - 'profilenohensyu' => 'Edit profile', - 'tokonotuika' => 'Add post', - 'doganotuika' => 'Add video', - 'comentitiran' => 'List of comments', - 'useritiran' => 'User list', - 'minyukaimono' => 'Non-members', -]; diff --git a/resources/lang/es.json b/resources/lang/es.json deleted file mode 100644 index 6c3cd6c..0000000 --- a/resources/lang/es.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "男性": "masculino", - "女性": "Mujer", - "不明": "desconocido", - "日本": "Japón", - "大韓民国": "Corea del Sur", - "中華人民共和国": "República Popular de China", - "香港": "Hong Kong", - "台湾": "Taiwán", - "赤道ギニア": "Guinea Ecuatorial", - "北アイルランド": "Irlanda del Norte", - "北朝鮮": "Corea del Norte", - "北マケドニア": "Macedonia del Norte", - "中央アフリカ共和国": "República Centroafricana", - "東ティモール": "Timor Oriental", - "南極": "antártico", - "南アフリカ": "Sudáfrica", - "西サハラ": "Sahara Occidental", - "アイスランド": "Islandia", - "アイルランド": "Irlanda", - "アゼルバイジャン": "Azerbaiyán", - "アフガニスタン": "Afganistán", - "アメリカ領ヴァージン諸島": "Islas Vírgenes Americanas", - "アメリカ領サモア": "Samoa Americana", - "アメリカ合衆国": "Estados Unidos de América", - "アラブ首長国連邦": "Emiratos Árabes Unidos", - "アルジェリア": "Argelia", - "アルゼンチン": "Argentina", - "アルバ": "Aruba", - "アルバニア": "Albania", - "アルメニア": "Armenia", - "アンゴラ": "Angola", - "アングィラ": "Anguila", - "アンティグア・バーブーダ": "Antigua y Barbuda", - "アンドラ": "Andorra", - "イエメン": "Yemen", - "イギリス": "Inglaterra", - "イギリス領バージン諸島": "Islas Vírgenes Británicas", - "イスラエル": "Israel", - "イタリア": "Italia", - "イラク": "Irak", - "イラン": "Iran", - "イングランド": "Inglaterra", - "インド": "India", - "インドネシア": "Indonesia", - "ウェールズ": "Gales", - "ウガンダ": "Uganda", - "ウクライナ": "Ucrania", - "ウズベキスタン": "Uzbekistan", - "ウルグアイ": "Uruguay", - "エクアドル": "Ecuador", - "エジプト": "Egipto", - "エストニア": "Estonia", - "エスワティニ": "Eswatini", - "エチオピア": "Etiopía", - "エリトリア": "Eritrea", - "エルサルバドル": "El Salvador", - "オーストラリア": "Australia", - "オーストリア": "Austria", - "オマーン": "Omán", - "オランダ": "Países Bajos", - "オランダ領アンティル": "Antillas holandesas", - "ガーナ": "Ghana", - "カーボベルデ": "Cabo Verde", - "ガーンジー島": "Guernsey", - "ガイアナ": "Guayana", - "カザフスタン": "Kazajstán", - "カタール": "Katar", - "カナダ": "Canadá", - "ガボン": "Gabón", - "カメルーン": "Camerún", - "ガンビア": "Gambia", - "カンボジア": "Camboya", - "キプロス": "Chipre", - "ギニア": "Guinea", - "ギニア・ビサウ": "Guinea-Bissau", - "キューバ": "Cuba", - "ギリシャ": "Grecia", - "キリバス": "Kiribati", - "キルギス": "Kirguistán", - "グアテマラ": "Guatemala", - "グアドループ": "Guadalupe", - "グアム": "Guam", - "クウェート": "Kuwait", - "クック諸島": "Islas Cook", - "グリーンランド": "Groenlandia", - "グレナダ": "Granada", - "クロアチア": "Croacia", - "ケイマン諸島": "Islas Caimán", - "ケニア": "Kenia", - "コートジボワール": "Costa de Marfil", - "コスタリカ": "Costa Rica", - "コソボ": "Kosovo", - "コモロ": "Comoras", - "コロンビア": "Columbia", - "コンゴ": "Congo", - "コンゴ民主共和国": "República Democrática del Congo", - "サウジアラビア": "Arabia Saudita", - "サモア": "Samoa", - "サントメ・プリンシペ": "Santo Tomé Príncipe", - "ザンビア": "Zambia", - "サン・マリの": "San Mali", - "シエラレオネ": "Sierra Leona", - "ジブチ": "Djibouti", - "ジブラルタル": "Gibraltar", - "シリア": "Siria", - "ジャージー島": "Jersey", - "ジャマイカ": "Jamaica", - "ジョージア": "Georgia", - "シンガポール": "Singapur", - "ジンバブエ": "Zimbabue", - "スイス": "Suiza", - "スウェーデン": "Suecia", - "スーダン": "Sudán", - "スコットランド": "Escocia", - "スペイン": "España", - "スリナム": "Surinam", - "スリランカ": "Sri Lanka", - "スロバキア": "Eslovaquia", - "スロベニア": "Eslovenia", - "セーシェル": "Seychelles", - "セネガル": "Senegal", - "セルビア": "Serbia", - "セントクリストファー・ネービス": "San Cristóbal y Nieves", - "セントビンセントおよびグレナディーン諸島": "San Vicente y las Granadinas", - "セントルシア": "Santa Lucía", - "ソマリア": "Somalia", - "ソマリランド": "Somalilandia", - "ソロモン諸島": "Islas Salomón", - "タークス・カイコス諸島": "Islas Turcas y Caicos", - "タイ": "Tailandia", - "タジキスタン": "Tayikistán", - "タンザニア": "Tanzania", - "チャド": "Chad", - "チリ": "Chile", - "チェコ": "checo", - "ツバル": "Tuvalu", - "チュニジア": "Túnez", - "デンマーク": "Dinamarca", - "トーゴ": "Para llevar", - "ドイツ": "Alemania", - "ドミニカ": "Dominica", - "ドミニカ共和国": "República Dominicana", - "トリニダード・ドバゴ": "Trinidad y Tobago", - "トルクメニスタン": "Turkmenistán", - "トルコ": "pavo", - "トンガ": "Tonga", - "ナイジェリア": "Nigeria", - "ナウル": "Nauru", - "ナミビア": "Namibia", - "ニカラグア": "Nicaragua", - "ニジェール": "Níger", - "ニューカレドニア": "Nueva Caledonia", - "ニュージーランド": "Nueva Zelanda", - "ネパール": "Nepal", - "ノルウェー": "Noruega", - "バーレーン": "Bahréin", - "ハイチ": "Haití", - "パキスタン": "Pakistán", - "パナマ": "Panamá", - "バヌアツ": "Vanuatu", - "バハマ": "Bahamas", - "パプアニューギニア": "Papúa Nueva Guinea", - "バミューダ諸島": "islas Bermudas", - "パラオ": "Palau", - "パラグアイ": "Paraguay", - "バルバドス": "Barbados", - "ハンガリー": "Hungría", - "バングラデシュ": "Bangladesh", - "フィジー": "Fiyi", - "フィリピン": "Filipinas", - "フィンランド": "Finlandia", - "プエルトリコ": "Puerto Rico", - "ブータン": "Bután", - "フェロー諸島": "Islas Faroe", - "ブラジル": "Brasil", - "フランス": "Francia", - "フランス領ポリネシア": "Polinesia francés", - "ブルガリア": "Bulgaria", - "ブルキナ・ファソ": "Burkina Faso", - "ブルネイ・ダルサラーム": "Brunei Darussalam", - "ブルンジ": "Burundi", - "ベトナム": "Vietnam", - "ベナン": "Benin", - "ベネズエラ": "Venezuela", - "ベラルーシ": "Bielorrusia", - "ベリーズ": "Belice", - "ペルー": "Perú", - "ベルギー": "Bélgica", - "ポーランド": "Polonia", - "ボスニア・ヘルツェゴビナ": "Bosnia-Herzegovina", - "ボツワナ": "Botswana", - "ボリビア": "Bolivia", - "ポルトガル": "Portugal", - "ホンジュラス": "Honduras", - "マーシャル諸島": "Islas Marshall", - "マカオ": "Macao", - "マダガスカル": "Madagascar", - "マラウイ": "Malawi", - "マリ": "Mali", - "マルタ": "Malta", - "マルティニーク": "Martinica", - "マレーシア": "Malasia", - "マン島": "Isla del hombre", - "ミクロネシア連邦": "Estados Federados de Micronesia", - "ミャンマー(ビルマ)": "Myanmar (Birmania)", - "モーリシャス": "Mauricio", - "モーリタニア": "Mauritania", - "モルディブ": "Maldivas", - "メキシコ": "México", - "モザンビーク": "Mozambique", - "モナコ": "Mónaco", - "モルドバ": "Moldavia", - "モロッコ": "Marruecos", - "モンゴル": "Mongolia", - "モンセラート": "Montserrat", - "モンテネグロ": "Montenegro", - "ヨルダン": "Jordán", - "ラオス": "Laos", - "ラトビア": "Letonia", - "リトアニア": "Lituania", - "リヒテンシュタイン": "Liechtenstein", - "リビア": "Libia", - "リベリア": "Liberia", - "ルーマニア": "Rumania", - "ルクセンブルク": "Luxemburgo", - "ルワンダ": "Ruanda", - "レソト": "Lesoto", - "レバノン": "Líbano", - "レユニオン": "Reunión", - "ローマ教皇庁 (バチカン)": "Curia romana (Vaticano)", - "ロシア": "Rusia" -} \ No newline at end of file diff --git a/resources/lang/es/site.php b/resources/lang/es/site.php deleted file mode 100644 index e544ff9..0000000 --- a/resources/lang/es/site.php +++ /dev/null @@ -1,36 +0,0 @@ - 'añadir', - 'hensyu' => 'Editar', - 'sakujyo' => 'Borrar', - 'signin' => 'Registrarse', - 'signout' => 'desconectar', - 'toroku' => 'Registro', - 'sinkitoroku' => 'inscribirse', - 'hissu' => 'Obligatorio', - 'username' => 'nombre de usuario', - 'hyojiname' => 'nombre para mostrar', - 'hyojiname_memo' => 'Si no lo ingresa, se mostrará el nombre de usuario.', - 'password' => 'contraseña', - 'password_memo' => 'Si no cambia la contraseña, no la ingrese como está.', - 'passwordkakunin' => 'confirmación de contraseña', - 'kuni' => 'País', - 'seibetu' => 'sexo', - 'densimail' => 'Email', - 'de_kokai' => 'Publicado el :date', - 'no_icon' => 'icono del :name', - 'jikosyokai' => 'Auto presentación', - 'ippan' => 'General', - 'renraku' => 'Contacto', - 'gengo' => 'idioma', - 'top' => 'Cima', - 'doga' => 'Video', - 'profilenohyoji' => 'Ver perfil', - 'profilenohensyu' => 'Editar perfil', - 'tokonotuika' => 'Agregar publicación', - 'doganotuika' => 'Añadir video', - 'comentitiran' => 'Lista de comentarios', - 'useritiran' => 'Lista de usuarios', - 'minyukaimono' => 'No miembros', -]; diff --git a/resources/lang/fr.json b/resources/lang/fr.json deleted file mode 100644 index 1b7db34..0000000 --- a/resources/lang/fr.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "男性": "Masculin", - "女性": "Femme", - "不明": "inconnu", - "日本": "Japon", - "大韓民国": "Corée du Sud", - "中華人民共和国": "les gens de la République de Chine", - "香港": "Hong Kong", - "台湾": "Taïwan", - "赤道ギニア": "Guinée Équatoriale", - "北アイルランド": "Irlande du Nord", - "北朝鮮": "Corée du Nord", - "北マケドニア": "Macédoine du Nord", - "中央アフリカ共和国": "République centrafricaine", - "東ティモール": "Timor oriental", - "南極": "antarctique", - "南アフリカ": "Afrique du Sud", - "西サハラ": "Sahara occidental", - "アイスランド": "Islande", - "アイルランド": "Irlande", - "アゼルバイジャン": "Azerbaïdjan", - "アフガニスタン": "L'Afghanistan", - "アメリカ領ヴァージン諸島": "Iles Vierges Américaines", - "アメリカ領サモア": "Samoa américaines", - "アメリカ合衆国": "les États-Unis d'Amérique", - "アラブ首長国連邦": "Emirats Arabes Unis", - "アルジェリア": "Algérie", - "アルゼンチン": "Argentine", - "アルバ": "Aruba", - "アルバニア": "Albanie", - "アルメニア": "Arménie", - "アンゴラ": "L'Angola", - "アングィラ": "Anguilla", - "アンティグア・バーブーダ": "Antigua-et-Barbuda", - "アンドラ": "Andorre", - "イエメン": "Yémen", - "イギリス": "Angleterre", - "イギリス領バージン諸島": "Îles Vierges britanniques", - "イスラエル": "Israël", - "イタリア": "Italie", - "イラク": "Irak", - "イラン": "L'Iran", - "イングランド": "Angleterre", - "インド": "Inde", - "インドネシア": "Indonésie", - "ウェールズ": "Pays de Galles", - "ウガンダ": "Ouganda", - "ウクライナ": "Ukraine", - "ウズベキスタン": "Ouzbékistan", - "ウルグアイ": "Uruguay", - "エクアドル": "Equateur", - "エジプト": "Egypte", - "エストニア": "Estonie", - "エスワティニ": "Eswatini", - "エチオピア": "Ethiopie", - "エリトリア": "Érythrée", - "エルサルバドル": "Le Salvador", - "オーストラリア": "Australie", - "オーストリア": "L'Autriche", - "オマーン": "Oman", - "オランダ": "Pays-Bas", - "オランダ領アンティル": "Antilles néerlandaises", - "ガーナ": "Ghana", - "カーボベルデ": "Cap-Vert", - "ガーンジー島": "Guernesey", - "ガイアナ": "Guyane", - "カザフスタン": "Kazakhstan", - "カタール": "Qatar", - "カナダ": "Canada", - "ガボン": "Gabon", - "カメルーン": "Cameroun", - "ガンビア": "Gambie", - "カンボジア": "Cambodge", - "キプロス": "Chypre", - "ギニア": "Guinée", - "ギニア・ビサウ": "Guinée-Bissau", - "キューバ": "Cuba", - "ギリシャ": "Grèce", - "キリバス": "Kiribati", - "キルギス": "Kirghizistan", - "グアテマラ": "Guatemala", - "グアドループ": "Guadeloupe", - "グアム": "Guam", - "クウェート": "Koweit", - "クック諸島": "les Îles Cook", - "グリーンランド": "Groenland", - "グレナダ": "Grenade", - "クロアチア": "Croatie", - "ケイマン諸島": "Îles Caïmans", - "ケニア": "Kenya", - "コートジボワール": "Côte d'Ivoire", - "コスタリカ": "Costa Rica", - "コソボ": "Kosovo", - "コモロ": "Comores", - "コロンビア": "Columbia", - "コンゴ": "Congo", - "コンゴ民主共和国": "République Démocratique du Congo", - "サウジアラビア": "Arabie Saoudite", - "サモア": "Samoa", - "サントメ・プリンシペ": "Sao Tomé Principe", - "ザンビア": "Zambie", - "サン・マリの": "San Mali", - "シエラレオネ": "Sierra Leone", - "ジブチ": "Djibouti", - "ジブラルタル": "Gibraltar", - "シリア": "Syrie", - "ジャージー島": "Jersey", - "ジャマイカ": "Jamaïque", - "ジョージア": "Géorgie", - "シンガポール": "Singapour", - "ジンバブエ": "Zimbabwe", - "スイス": "la Suisse", - "スウェーデン": "Suède", - "スーダン": "Soudan", - "スコットランド": "Écosse", - "スペイン": "Espagne", - "スリナム": "Suriname", - "スリランカ": "Sri Lanka", - "スロバキア": "Slovaquie", - "スロベニア": "Slovénie", - "セーシェル": "les Seychelles", - "セネガル": "Sénégal", - "セルビア": "Serbie", - "セントクリストファー・ネービス": "Saint-Christophe-et-Niévès", - "セントビンセントおよびグレナディーン諸島": "Saint-Vincent-et-les-Grenadines", - "セントルシア": "Sainte-Lucie", - "ソマリア": "Somalie", - "ソマリランド": "Somaliland", - "ソロモン諸島": "Les îles Salomon", - "タークス・カイコス諸島": "îles Turques-et-Caïques", - "タイ": "Thaïlande", - "タジキスタン": "Tadjikistan", - "タンザニア": "Tanzanie", - "チャド": "Tchad", - "チリ": "Chili", - "チェコ": "tchèque", - "ツバル": "Tuvalu", - "チュニジア": "Tunisie", - "デンマーク": "Danemark", - "トーゴ": "Aller", - "ドイツ": "Allemagne", - "ドミニカ": "Dominique", - "ドミニカ共和国": "République dominicaine", - "トリニダード・ドバゴ": "Trinité-et-Tobago", - "トルクメニスタン": "Turkménistan", - "トルコ": "dinde", - "トンガ": "Tonga", - "ナイジェリア": "Nigeria", - "ナウル": "Nauru", - "ナミビア": "Namibie", - "ニカラグア": "Nicaragua", - "ニジェール": "Niger", - "ニューカレドニア": "Nouvelle Calédonie", - "ニュージーランド": "Nouvelle-Zélande", - "ネパール": "Népal", - "ノルウェー": "Norvège", - "バーレーン": "Bahreïn", - "ハイチ": "Haïti", - "パキスタン": "Pakistan", - "パナマ": "Panama", - "バヌアツ": "Vanuatu", - "バハマ": "Bahamas", - "パプアニューギニア": "Papouasie Nouvelle Guinée", - "バミューダ諸島": "Bermudes", - "パラオ": "Palau", - "パラグアイ": "Paraguay", - "バルバドス": "Barbade", - "ハンガリー": "Hongrie", - "バングラデシュ": "Bangladesh", - "フィジー": "Fidji", - "フィリピン": "Philippines", - "フィンランド": "Finlande", - "プエルトリコ": "Porto Rico", - "ブータン": "Bhoutan", - "フェロー諸島": "Îles Féroé", - "ブラジル": "Brésil", - "フランス": "France", - "フランス領ポリネシア": "Polynésie française", - "ブルガリア": "Bulgarie", - "ブルキナ・ファソ": "Burkina Faso", - "ブルネイ・ダルサラーム": "Brunei Darussalam", - "ブルンジ": "Burundi", - "ベトナム": "Vietnam", - "ベナン": "Bénin", - "ベネズエラ": "Venezuela", - "ベラルーシ": "Biélorussie", - "ベリーズ": "Belize", - "ペルー": "Pérou", - "ベルギー": "Belgique", - "ポーランド": "Pologne", - "ボスニア・ヘルツェゴビナ": "Bosnie-Herzégovine", - "ボツワナ": "Botswana", - "ボリビア": "Bolivie", - "ポルトガル": "le Portugal", - "ホンジュラス": "Honduras", - "マーシャル諸島": "Iles Marshall", - "マカオ": "Macao", - "マダガスカル": "Madagascar", - "マラウイ": "Malawi", - "マリ": "Mali", - "マルタ": "Malte", - "マルティニーク": "Martinique", - "マレーシア": "Malaisie", - "マン島": "île de Man", - "ミクロネシア連邦": "États fédérés de Micronésie", - "ミャンマー(ビルマ)": "Myanmar (Birmanie)", - "モーリシャス": "Ile Maurice", - "モーリタニア": "Mauritanie", - "モルディブ": "Maldives", - "メキシコ": "Mexique", - "モザンビーク": "Mozambique", - "モナコ": "Monaco", - "モルドバ": "Moldavie", - "モロッコ": "Maroc", - "モンゴル": "Mongolie", - "モンセラート": "Montserrat", - "モンテネグロ": "Monténégro", - "ヨルダン": "Jordan", - "ラオス": "Laos", - "ラトビア": "Lettonie", - "リトアニア": "Lituanie", - "リヒテンシュタイン": "Liechtenstein", - "リビア": "Libye", - "リベリア": "Libéria", - "ルーマニア": "Roumanie", - "ルクセンブルク": "Luxembourg", - "ルワンダ": "Rwanda", - "レソト": "Lesotho", - "レバノン": "Liban", - "レユニオン": "Réunion", - "ローマ教皇庁 (バチカン)": "Curie romaine (Vatican)", - "ロシア": "Russie" -} \ No newline at end of file diff --git a/resources/lang/fr/site.php b/resources/lang/fr/site.php deleted file mode 100644 index e9ed7e6..0000000 --- a/resources/lang/fr/site.php +++ /dev/null @@ -1,36 +0,0 @@ - 'Ajouter à', - 'hensyu' => 'Éditer', - 'sakujyo' => 'Effacer', - 'signin' => 'S\'identifier', - 'signout' => 'Déconnexion', - 'toroku' => 'Inscription', - 'sinkitoroku' => 'S\'inscrire', - 'hissu' => 'Obligatoire', - 'username' => 'Nom d\'utilisateur', - 'hyojiname' => 'Afficher un nom', - 'hyojiname_memo' => 'Si vous ne le saisissez pas, le nom d\'utilisateur s\'affiche.', - 'password' => 'le mot de passe', - 'password_memo' => 'Si vous ne modifiez pas le mot de passe, ne le saisissez pas tel quel.', - 'passwordkakunin' => 'Confirmation mot de passe', - 'kuni' => 'De campagne', - 'seibetu' => 'sexe', - 'densimail' => 'e-mail', - 'de_kokai' => 'Publié le :date', - 'no_icon' => 'icône du :name', - 'jikosyokai' => 'Auto-introduction', - 'ippan' => 'Général', - 'renraku' => 'Contacter', - 'gengo' => 'Langue', - 'top' => 'Sommet', - 'doga' => 'Vidéo', - 'profilenohyoji' => 'Voir le profil', - 'profilenohensyu' => 'Editer le profil', - 'tokonotuika' => 'Ajouter un message', - 'doganotuika' => 'Ajouter une vidéo', - 'comentitiran' => 'Liste des commentaires', - 'useritiran' => 'Liste d\'utilisateur', - 'minyukaimono' => 'Non-membres', -]; diff --git a/resources/lang/ja.json b/resources/lang/ja.json deleted file mode 100644 index ad9ac67..0000000 --- a/resources/lang/ja.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "男性": "男性", - "女性": "女性", - "不明": "不明", - "日本": "日本", - "大韓民国": "大韓民国", - "中華人民共和国": "中華人民共和国", - "香港": "香港", - "台湾": "台湾", - "赤道ギニア": "赤道ギニア", - "北アイルランド": "北アイルランド", - "北朝鮮": "北朝鮮", - "北マケドニア": "北マケドニア", - "中央アフリカ共和国": "中央アフリカ共和国", - "東ティモール": "東ティモール", - "南極": "南極", - "南アフリカ": "南アフリカ", - "西サハラ": "西サハラ", - "アイスランド": "アイスランド", - "アイルランド": "アイルランド", - "アゼルバイジャン": "アゼルバイジャン", - "アフガニスタン": "アフガニスタン", - "アメリカ領ヴァージン諸島": "アメリカ領ヴァージン諸島", - "アメリカ領サモア": "アメリカ領サモア", - "アメリカ合衆国": "アメリカ合衆国", - "アラブ首長国連邦": "アラブ首長国連邦", - "アルジェリア": "アルジェリア", - "アルゼンチン": "アルゼンチン", - "アルバ": "アルバ", - "アルバニア": "アルバニア", - "アルメニア": "アルメニア", - "アンゴラ": "アンゴラ", - "アングィラ": "アングィラ", - "アンティグア・バーブーダ": "アンティグア・バーブーダ", - "アンドラ": "アンドラ", - "イエメン": "イエメン", - "イギリス": "イギリス", - "イギリス領バージン諸島": "イギリス領バージン諸島", - "イスラエル": "イスラエル", - "イタリア": "イタリア", - "イラク": "イラク", - "イラン": "イラン", - "イングランド": "イングランド", - "インド": "インド", - "インドネシア": "インドネシア", - "ウェールズ": "ウェールズ", - "ウガンダ": "ウガンダ", - "ウクライナ": "ウクライナ", - "ウズベキスタン": "ウズベキスタン", - "ウルグアイ": "ウルグアイ", - "エクアドル": "エクアドル", - "エジプト": "エジプト", - "エストニア": "エストニア", - "エスワティニ": "エスワティニ", - "エチオピア": "エチオピア", - "エリトリア": "エリトリア", - "エルサルバドル": "エルサルバドル", - "オーストラリア": "オーストラリア", - "オーストリア": "オーストリア", - "オマーン": "オマーン", - "オランダ": "オランダ", - "オランダ領アンティル": "オランダ領アンティル", - "ガーナ": "ガーナ", - "カーボベルデ": "カーボベルデ", - "ガーンジー島": "ガーンジー島", - "ガイアナ": "ガイアナ", - "カザフスタン": "カザフスタン", - "カタール": "カタール", - "カナダ": "カナダ", - "ガボン": "ガボン", - "カメルーン": "カメルーン", - "ガンビア": "ガンビア", - "カンボジア": "カンボジア", - "キプロス": "キプロス", - "ギニア": "ギニア", - "ギニア・ビサウ": "ギニア・ビサウ", - "キューバ": "キューバ", - "ギリシャ": "ギリシャ", - "キリバス": "キリバス", - "キルギス": "キルギス", - "グアテマラ": "グアテマラ", - "グアドループ": "グアドループ", - "グアム": "グアム", - "クウェート": "クウェート", - "クック諸島": "クック諸島", - "グリーンランド": "グリーンランド", - "グレナダ": "グレナダ", - "クロアチア": "クロアチア", - "ケイマン諸島": "ケイマン諸島", - "ケニア": "ケニア", - "コートジボワール": "コートジボワール", - "コスタリカ": "コスタリカ", - "コソボ": "コソボ", - "コモロ": "コモロ", - "コロンビア": "コロンビア", - "コンゴ": "コンゴ", - "コンゴ民主共和国": "コンゴ民主共和国", - "サウジアラビア": "サウジアラビア", - "サモア": "サモア", - "サントメ・プリンシペ": "サントメ・プリンシペ", - "ザンビア": "ザンビア", - "サン・マリの": "サン・マリの", - "シエラレオネ": "シエラレオネ", - "ジブチ": "ジブチ", - "ジブラルタル": "ジブラルタル", - "シリア": "シリア", - "ジャージー島": "ジャージー島", - "ジャマイカ": "ジャマイカ", - "ジョージア": "ジョージア", - "シンガポール": "シンガポール", - "ジンバブエ": "ジンバブエ", - "スイス": "スイス", - "スウェーデン": "スウェーデン", - "スーダン": "スーダン", - "スコットランド": "スコットランド", - "スペイン": "スペイン", - "スリナム": "スリナム", - "スリランカ": "スリランカ", - "スロバキア": "スロバキア", - "スロベニア": "スロベニア", - "セーシェル": "セーシェル", - "セネガル": "セネガル", - "セルビア": "セルビア", - "セントクリストファー・ネービス": "セントクリストファー・ネービス", - "セントビンセントおよびグレナディーン諸島": "セントビンセントおよびグレナディーン諸島", - "セントルシア": "セントルシア", - "ソマリア": "ソマリア", - "ソマリランド": "ソマリランド", - "ソロモン諸島": "ソロモン諸島", - "タークス・カイコス諸島": "タークス・カイコス諸島", - "タイ": "タイ", - "タジキスタン": "タジキスタン", - "タンザニア": "タンザニア", - "チャド": "チャド", - "チリ": "チリ", - "チェコ": "チェコ", - "ツバル": "ツバル", - "チュニジア": "チュニジア", - "デンマーク": "デンマーク", - "トーゴ": "トーゴ", - "ドイツ": "ドイツ", - "ドミニカ": "ドミニカ", - "ドミニカ共和国": "ドミニカ共和国", - "トリニダード・ドバゴ": "トリニダード・ドバゴ", - "トルクメニスタン": "トルクメニスタン", - "トルコ": "トルコ", - "トンガ": "トンガ", - "ナイジェリア": "ナイジェリア", - "ナウル": "ナウル", - "ナミビア": "ナミビア", - "ニカラグア": "ニカラグア", - "ニジェール": "ニジェール", - "ニューカレドニア": "ニューカレドニア", - "ニュージーランド": "ニュージーランド", - "ネパール": "ネパール", - "ノルウェー": "ノルウェー", - "バーレーン": "バーレーン", - "ハイチ": "ハイチ", - "パキスタン": "パキスタン", - "パナマ": "パナマ", - "バヌアツ": "バヌアツ", - "バハマ": "バハマ", - "パプアニューギニア": "パプアニューギニア", - "バミューダ諸島": "バミューダ諸島", - "パラオ": "パラオ", - "パラグアイ": "パラグアイ", - "バルバドス": "バルバドス", - "ハンガリー": "ハンガリー", - "バングラデシュ": "バングラデシュ", - "フィジー": "フィジー", - "フィリピン": "フィリピン", - "フィンランド": "フィンランド", - "プエルトリコ": "プエルトリコ", - "ブータン": "ブータン", - "フェロー諸島": "フェロー諸島", - "ブラジル": "ブラジル", - "フランス": "フランス", - "フランス領ポリネシア": "フランス領ポリネシア", - "ブルガリア": "ブルガリア", - "ブルキナ・ファソ": "ブルキナ・ファソ", - "ブルネイ・ダルサラーム": "ブルネイ・ダルサラーム", - "ブルンジ": "ブルンジ", - "ベトナム": "ベトナム", - "ベナン": "ベナン", - "ベネズエラ": "ベネズエラ", - "ベラルーシ": "ベラルーシ", - "ベリーズ": "ベリーズ", - "ペルー": "ペルー", - "ベルギー": "ベルギー", - "ポーランド": "ポーランド", - "ボスニア・ヘルツェゴビナ": "ボスニア・ヘルツェゴビナ", - "ボツワナ": "ボツワナ", - "ボリビア": "ボリビア", - "ポルトガル": "ポルトガル", - "ホンジュラス": "ホンジュラス", - "マーシャル諸島": "マーシャル諸島", - "マカオ": "マカオ", - "マダガスカル": "マダガスカル", - "マラウイ": "マラウイ", - "マリ": "マリ", - "マルタ": "マルタ", - "マルティニーク": "マルティニーク", - "マレーシア": "マレーシア", - "マン島": "マン島", - "ミクロネシア連邦": "ミクロネシア連邦", - "ミャンマー(ビルマ)": "ミャンマー(ビルマ)", - "モーリシャス": "モーリシャス", - "モーリタニア": "モーリタニア", - "モルディブ": "モルディブ", - "メキシコ": "メキシコ", - "モザンビーク": "モザンビーク", - "モナコ": "モナコ", - "モルドバ": "モルドバ", - "モロッコ": "モロッコ", - "モンゴル": "モンゴル", - "モンセラート": "モンセラート", - "モンテネグロ": "モンテネグロ", - "ヨルダン": "ヨルダン", - "ラオス": "ラオス", - "ラトビア": "ラトビア", - "リトアニア": "リトアニア", - "リヒテンシュタイン": "リヒテンシュタイン", - "リビア": "リビア", - "リベリア": "リベリア", - "ルーマニア": "ルーマニア", - "ルクセンブルク": "ルクセンブルク", - "ルワンダ": "ルワンダ", - "レソト": "レソト", - "レバノン": "レバノン", - "レユニオン": "レユニオン", - "ローマ教皇庁 (バチカン)": "ローマ教皇庁 (バチカン)", - "ロシア": "ロシア" -} \ No newline at end of file diff --git a/resources/lang/ja/site.php b/resources/lang/ja/site.php deleted file mode 100644 index 9e808a0..0000000 --- a/resources/lang/ja/site.php +++ /dev/null @@ -1,36 +0,0 @@ - '追加', - 'hensyu' => '編集', - 'sakujyo' => '削除', - 'signin' => 'サインイン', - 'signout' => 'サインアウト', - 'toroku' => '登録', - 'sinkitoroku' => '新規登録', - 'hissu' => '必須', - 'username' => 'ユーザー名', - 'hyojiname' => '表示名', - 'hyojiname_memo' => 'ご入力しない場合は、ユーザー名を表示します。', - 'password' => 'パスワード', - 'password_memo' => 'パスワードを変更しなければ、そのまま入力しないで下さい。', - 'passwordkakunin' => 'パスワード確認', - 'kuni' => '国', - 'seibetu' => '性別', - 'densimail' => '電子メール', - 'de_kokai' => ':dateで公開', - 'no_icon' => ':nameさんのアイコン', - 'jikosyokai' => '自己紹介', - 'ippan' => '一般', - 'renraku' => '連絡', - 'gengo' => '言語', - 'top' => 'トップ', - 'doga' => '動画', - 'profilenohyoji' => 'プロファイルの表示', - 'profilenohensyu' => 'プロフィールの編集', - 'tokonotuika' => '投稿の追加', - 'doganotuika' => '動画の追加', - 'comentitiran' => 'コメント一覧', - 'useritiran' => 'ユーザー一覧', - 'minyukaimono' => '未入会者', -]; diff --git a/resources/lang/ko.json b/resources/lang/ko.json deleted file mode 100644 index a958d85..0000000 --- a/resources/lang/ko.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "男性": "남성", - "女性": "여성", - "不明": "알", - "日本": "일본", - "大韓民国": "대한민국", - "中華人民共和国": "중화 인민 공화국", - "香港": "홍콩", - "台湾": "대만", - "赤道ギニア": "적도", - "北アイルランド": "북 아일랜드", - "北朝鮮": "북한", - "北マケドニア": "북부 마케도니아", - "中央アフリカ共和国": "중앙 아프리카 공화국", - "東ティモール": "동 티모르", - "南極": "남극", - "南アフリカ": "남아프리카 공화국", - "西サハラ": "서부 사하라", - "アイスランド": "아이슬란드", - "アイルランド": "아일랜드", - "アゼルバイジャン": "아제르바이잔", - "アフガニスタン": "아프가니스탄", - "アメリカ領ヴァージン諸島": "미국령 버진 아일랜드", - "アメリカ領サモア": "아메리칸 사모아", - "アメリカ合衆国": "미국", - "アラブ首長国連邦": "아랍 에미리트", - "アルジェリア": "알제리", - "アルゼンチン": "아르헨티나", - "アルバ": "알바", - "アルバニア": "알바니아", - "アルメニア": "아르메니아", - "アンゴラ": "앙골라", - "アングィラ": "안 길라", - "アンティグア・バーブーダ": "앤티가 바부 다", - "アンドラ": "안도라", - "イエメン": "예멘", - "イギリス": "영국", - "イギリス領バージン諸島": "영국령 버진 아일랜드", - "イスラエル": "이스라엘", - "イタリア": "이탈리아", - "イラク": "이라크", - "イラン": "이란", - "イングランド": "잉글랜드", - "インド": "인도", - "インドネシア": "인도네시아", - "ウェールズ": "웨일즈", - "ウガンダ": "우간다", - "ウクライナ": "우크라이나", - "ウズベキスタン": "우즈베키스탄", - "ウルグアイ": "우루과이", - "エクアドル": "에콰도르", - "エジプト": "이집트", - "エストニア": "에스토니아", - "エスワティニ": "에스와티니", - "エチオピア": "에티오피아", - "エリトリア": "에리트레아", - "エルサルバドル": "엘살바도르", - "オーストラリア": "호주", - "オーストリア": "오스트리아", - "オマーン": "오만", - "オランダ": "네덜란드", - "オランダ領アンティル": "네덜란드 령 안틸레스", - "ガーナ": "가나", - "カーボベルデ": "카보 베르데", - "ガーンジー島": "건지 섬", - "ガイアナ": "가이아나", - "カザフスタン": "카자흐스탄", - "カタール": "카타르", - "カナダ": "캐나다", - "ガボン": "가봉", - "カメルーン": "카메룬", - "ガンビア": "감비아", - "カンボジア": "캄보디아", - "キプロス": "키프로스", - "ギニア": "기니", - "ギニア・ビサウ": "기니 비사우", - "キューバ": "쿠바", - "ギリシャ": "그리스", - "キリバス": "키리바시", - "キルギス": "키르기스스탄", - "グアテマラ": "과테말라", - "グアドループ": "과들루프", - "グアム": "괌", - "クウェート": "쿠웨이트", - "クック諸島": "쿡 제도", - "グリーンランド": "그린 랜드", - "グレナダ": "그라나다", - "クロアチア": "크로아티아", - "ケイマン諸島": "케이맨 제도", - "ケニア": "케냐", - "コートジボワール": "코트 디부 아르", - "コスタリカ": "코스타리카", - "コソボ": "코소보", - "コモロ": "코모로", - "コロンビア": "콜롬비아", - "コンゴ": "콩고", - "コンゴ民主共和国": "콩고 민주 공화국", - "サウジアラビア": "사우디", - "サモア": "사모아", - "サントメ・プリンシペ": "상투 메 프린시 페", - "ザンビア": "잠비아", - "サン・マリの": "산 말리", - "シエラレオネ": "리온", - "ジブチ": "지부티", - "ジブラルタル": "지브롤터", - "シリア": "시리아", - "ジャージー島": "저지", - "ジャマイカ": "자메이카", - "ジョージア": "조지아", - "シンガポール": "싱가포르", - "ジンバブエ": "짐바브웨", - "スイス": "스위스", - "スウェーデン": "스웨덴", - "スーダン": "수단", - "スコットランド": "스코틀랜드", - "スペイン": "스페인", - "スリナム": "수리남", - "スリランカ": "스리랑카", - "スロバキア": "슬로바키아", - "スロベニア": "슬로베니아", - "セーシェル": "세이셸", - "セネガル": "세네갈", - "セルビア": "세르비아", - "セントクリストファー・ネービス": "세인트 키츠 네비스", - "セントビンセントおよびグレナディーン諸島": "세인트 빈센트 그레나딘", - "セントルシア": "루시아", - "ソマリア": "소말리아", - "ソマリランド": "소 말릴 란드", - "ソロモン諸島": "솔로몬 제도", - "タークス・カイコス諸島": "터크 스케이 커스 제도", - "タイ": "타이", - "タジキスタン": "타지키스탄", - "タンザニア": "탄자니아", - "チャド": "차드", - "チリ": "칠레", - "チェコ": "체코", - "ツバル": "투발루", - "チュニジア": "튀니지", - "デンマーク": "덴마크", - "トーゴ": "토고", - "ドイツ": "독일", - "ドミニカ": "도미니카", - "ドミニカ共和国": "도미니카 공화국", - "トリニダード・ドバゴ": "트리니다드 토바고", - "トルクメニスタン": "투르크 메니스탄", - "トルコ": "터키", - "トンガ": "통가", - "ナイジェリア": "나이지리아", - "ナウル": "나우루", - "ナミビア": "나미비아", - "ニカラグア": "니카라과", - "ニジェール": "니제르", - "ニューカレドニア": "뉴 칼레도니아", - "ニュージーランド": "뉴질랜드", - "ネパール": "네팔", - "ノルウェー": "노르웨이", - "バーレーン": "바레인", - "ハイチ": "아이티", - "パキスタン": "파키스탄", - "パナマ": "파나마", - "バヌアツ": "바누아투", - "バハマ": "바하마", - "パプアニューギニア": "파푸아 뉴기니", - "バミューダ諸島": "버뮤다", - "パラオ": "팔라우", - "パラグアイ": "파라과이", - "バルバドス": "바베이도스", - "ハンガリー": "헝가리", - "バングラデシュ": "방글라데시", - "フィジー": "피지", - "フィリピン": "필리핀", - "フィンランド": "핀란드", - "プエルトリコ": "푸에르토 리코", - "ブータン": "부탄", - "フェロー諸島": "파로에 군도", - "ブラジル": "브라질", - "フランス": "프랑스", - "フランス領ポリネシア": "프랑스 령 폴리네시아", - "ブルガリア": "불가리아", - "ブルキナ・ファソ": "부르 키나 파소", - "ブルネイ・ダルサラーム": "브루나이", - "ブルンジ": "부룬디", - "ベトナム": "베트남", - "ベナン": "베냉", - "ベネズエラ": "베네수엘라", - "ベラルーシ": "벨라루스", - "ベリーズ": "벨리즈", - "ペルー": "페루", - "ベルギー": "벨기에", - "ポーランド": "폴란드", - "ボスニア・ヘルツェゴビナ": "보스니아 헤르체고비나", - "ボツワナ": "보츠와나", - "ボリビア": "볼리비아", - "ポルトガル": "포르투갈", - "ホンジュラス": "온두라스", - "マーシャル諸島": "마샬 군도", - "マカオ": "마카오", - "マダガスカル": "마다가스카르", - "マラウイ": "말라위", - "マリ": "마리", - "マルタ": "몰타", - "マルティニーク": "마르티니크", - "マレーシア": "말레이시아", - "マン島": "맨섬", - "ミクロネシア連邦": "마이크로 네시아", - "ミャンマー(ビルマ)": "미얀마 (버마)", - "モーリシャス": "모리셔스", - "モーリタニア": "모리타니", - "モルディブ": "몰디브", - "メキシコ": "멕시코", - "モザンビーク": "모잠비크", - "モナコ": "모나코", - "モルドバ": "몰르", - "モロッコ": "모로코", - "モンゴル": "몽골", - "モンセラート": "몬트 세 라트", - "モンテネグロ": "몬테네그로", - "ヨルダン": "요르단", - "ラオス": "라오스", - "ラトビア": "라트비아", - "リトアニア": "리투아니아", - "リヒテンシュタイン": "리히텐슈타인", - "リビア": "리비아", - "リベリア": "라이베리아", - "ルーマニア": "루마니아", - "ルクセンブルク": "룩셈부르크", - "ルワンダ": "르완다", - "レソト": "레소토", - "レバノン": "레바논", - "レユニオン": "레위니옹", - "ローマ教皇庁 (バチカン)": "교황청 (바티칸)", - "ロシア": "러시아" -} \ No newline at end of file diff --git a/resources/lang/ko/site.php b/resources/lang/ko/site.php deleted file mode 100644 index c6bdd5c..0000000 --- a/resources/lang/ko/site.php +++ /dev/null @@ -1,36 +0,0 @@ - '추가', - 'hensyu' => '편집', - 'sakujyo' => '삭제', - 'signin' => '로그인', - 'signout' => '로그 아웃', - 'toroku' => '등록', - 'sinkitoroku' => '신규 등록', - 'hissu' => '필수', - 'username' => '사용자 이름', - 'hyojiname' => '표시 이름', - 'hyojiname_memo' => '입력하지 않으면 사용자 이름을 표시합니다.', - 'password' => '비밀번호', - 'password_memo' => '암호를 변경하지 않으면 그대로 입력하지 마십시오.', - 'passwordkakunin' => '비밀번호 확인', - 'kuni' => '국가', - 'seibetu' => '성별', - 'densimail' => '이메일', - 'de_kokai' => ':date에 공개', - 'no_icon' => ':name 님의 아이콘', - 'jikosyokai' => '자기 소개', - 'ippan' => '일반', - 'renraku' => '연락', - 'gengo' => '언어', - 'top' => '톱', - 'doga' => '동영상', - 'profilenohyoji' => '프로필보기', - 'profilenohensyu' => '프로필 수정', - 'tokonotuika' => '게시물 추가', - 'doganotuika' => '동영상 추가', - 'comentitiran' => '댓글 목록', - 'useritiran' => '사용자 목록', - 'minyukaimono' => '미 입회자', -]; diff --git a/resources/lang/nl.json b/resources/lang/nl.json deleted file mode 100644 index 39caf25..0000000 --- a/resources/lang/nl.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "男性": "mannetje", - "女性": "Vrouw", - "不明": "onbekend", - "日本": "Japan", - "大韓民国": "Zuid-Korea", - "中華人民共和国": "Volksrepubliek China", - "香港": "Hong Kong", - "台湾": "Taiwan", - "赤道ギニア": "Equatoriaal-Guinea", - "北アイルランド": "Noord-Ierland", - "北朝鮮": "Noord Korea", - "北マケドニア": "Noord-Macedonië", - "中央アフリカ共和国": "Centraal Afrikaanse Republiek", - "東ティモール": "Oost Timor", - "南極": "Antarctica", - "南アフリカ": "Zuid-Afrika", - "西サハラ": "Westelijke Sahara", - "アイスランド": "IJsland", - "アイルランド": "Ierland", - "アゼルバイジャン": "Azerbeidzjan", - "アフガニスタン": "Afghanistan", - "アメリカ領ヴァージン諸島": "Amerikaanse Maagdeneilanden", - "アメリカ領サモア": "Amerikaans Samoa", - "アメリカ合衆国": "Verenigde Staten van Amerika", - "アラブ首長国連邦": "Verenigde Arabische Emiraten", - "アルジェリア": "Algerije", - "アルゼンチン": "Argentinië", - "アルバ": "Aruba", - "アルバニア": "Albanië", - "アルメニア": "Armenië", - "アンゴラ": "Angola", - "アングィラ": "Anguilla", - "アンティグア・バーブーダ": "Antigua en Barbuda", - "アンドラ": "Andorra", - "イエメン": "Jemen", - "イギリス": "Engeland", - "イギリス領バージン諸島": "Britse Maagdeneilanden", - "イスラエル": "Israël", - "イタリア": "Italië", - "イラク": "Irak", - "イラン": "Iran", - "イングランド": "Engeland", - "インド": "India", - "インドネシア": "Indonesië", - "ウェールズ": "Wales", - "ウガンダ": "Oeganda", - "ウクライナ": "Oekraïne", - "ウズベキスタン": "Oezbekistan", - "ウルグアイ": "Uruguay", - "エクアドル": "Ecuador", - "エジプト": "Egypte", - "エストニア": "Estland", - "エスワティニ": "Eswatini", - "エチオピア": "Ethiopië", - "エリトリア": "Eritrea", - "エルサルバドル": "El salvador", - "オーストラリア": "Australië", - "オーストリア": "Oostenrijk", - "オマーン": "Oman", - "オランダ": "Nederland", - "オランダ領アンティル": "Nederlandse Antillen", - "ガーナ": "Ghana", - "カーボベルデ": "Kaapverdië", - "ガーンジー島": "Guernsey", - "ガイアナ": "Guyana", - "カザフスタン": "Kazachstan", - "カタール": "Qatar", - "カナダ": "Canada", - "ガボン": "Gabon", - "カメルーン": "Kameroen", - "ガンビア": "Gambia", - "カンボジア": "Cambodja", - "キプロス": "Cyprus", - "ギニア": "Guinea", - "ギニア・ビサウ": "Guinee-Bissau", - "キューバ": "Cuba", - "ギリシャ": "Griekenland", - "キリバス": "Kiribati", - "キルギス": "Kirgizië", - "グアテマラ": "Guatemala", - "グアドループ": "Guadeloupe", - "グアム": "Guam", - "クウェート": "Koeweit", - "クック諸島": "Cook Eilanden", - "グリーンランド": "Groenland", - "グレナダ": "Grenada", - "クロアチア": "Kroatië", - "ケイマン諸島": "Kaaiman Eilanden", - "ケニア": "Kenia", - "コートジボワール": "Ivoorkust", - "コスタリカ": "Costa Rica", - "コソボ": "Kosovo", - "コモロ": "Comoren", - "コロンビア": "Columbia", - "コンゴ": "Congo", - "コンゴ民主共和国": "Democratische Republiek Congo", - "サウジアラビア": "Saoedi-Arabië", - "サモア": "Samoa", - "サントメ・プリンシペ": "Sao Tome Principe", - "ザンビア": "Zambia", - "サン・マリの": "San Mali", - "シエラレオネ": "Sierra Leone", - "ジブチ": "Djibouti", - "ジブラルタル": "Gibraltar", - "シリア": "Syrië", - "ジャージー島": "Jersey", - "ジャマイカ": "Jamaica", - "ジョージア": "Georgië", - "シンガポール": "Singapore", - "ジンバブエ": "Zimbabwe", - "スイス": "Zwitserland", - "スウェーデン": "Zweden", - "スーダン": "Soedan", - "スコットランド": "Schotland", - "スペイン": "Spanje", - "スリナム": "Suriname", - "スリランカ": "Sri Lanka", - "スロバキア": "Slowakije", - "スロベニア": "Slovenië", - "セーシェル": "Seychellen", - "セネガル": "Senegal", - "セルビア": "Servië", - "セントクリストファー・ネービス": "Saint Kitts en Nevis", - "セントビンセントおよびグレナディーン諸島": "Saint Vincent en de Grenadines", - "セントルシア": "Saint Lucia", - "ソマリア": "Somalië", - "ソマリランド": "Somaliland", - "ソロモン諸島": "Solomon eilanden", - "タークス・カイコス諸島": "Turks- en Caicoseilanden", - "タイ": "Thailand", - "タジキスタン": "Tadzjikistan", - "タンザニア": "Tanzania", - "チャド": "Tsjaad", - "チリ": "Chili", - "チェコ": "Tsjechisch", - "ツバル": "Tuvalu", - "チュニジア": "Tunesië", - "デンマーク": "Denemarken", - "トーゴ": "Gaan", - "ドイツ": "Duitsland", - "ドミニカ": "Dominica", - "ドミニカ共和国": "Dominicaanse Republiek", - "トリニダード・ドバゴ": "Trinidad en Tobago", - "トルクメニスタン": "Turkmenistan", - "トルコ": "kalkoen", - "トンガ": "Tonga", - "ナイジェリア": "Nigeria", - "ナウル": "Nauru", - "ナミビア": "Namibië", - "ニカラグア": "Nicaragua", - "ニジェール": "Niger", - "ニューカレドニア": "Nieuw-Caledonië", - "ニュージーランド": "Nieuw-Zeeland", - "ネパール": "Nepal", - "ノルウェー": "Noorwegen", - "バーレーン": "Bahrein", - "ハイチ": "Haïti", - "パキスタン": "Pakistan", - "パナマ": "Panama", - "バヌアツ": "Vanuatu", - "バハマ": "Bahamas", - "パプアニューギニア": "Papoea-Nieuw-Guinea", - "バミューダ諸島": "Bermuda", - "パラオ": "Palau", - "パラグアイ": "Paraguay", - "バルバドス": "Barbados", - "ハンガリー": "Hongarije", - "バングラデシュ": "Bangladesh", - "フィジー": "Fiji", - "フィリピン": "Filippijnen", - "フィンランド": "Finland", - "プエルトリコ": "Puerto Rico", - "ブータン": "Bhutan", - "フェロー諸島": "Faeröer", - "ブラジル": "Brazilië", - "フランス": "Frankrijk", - "フランス領ポリネシア": "Frans-Polynesië", - "ブルガリア": "Bulgarije", - "ブルキナ・ファソ": "Burkina Faso", - "ブルネイ・ダルサラーム": "Brunei Darussalam", - "ブルンジ": "Burundi", - "ベトナム": "Vietnam", - "ベナン": "Benin", - "ベネズエラ": "Venezuela", - "ベラルーシ": "Wit-Rusland", - "ベリーズ": "Belize", - "ペルー": "Peru", - "ベルギー": "Belgie", - "ポーランド": "Polen", - "ボスニア・ヘルツェゴビナ": "Bosnië-Herzegovina", - "ボツワナ": "Botswana", - "ボリビア": "Bolivia", - "ポルトガル": "Portugal", - "ホンジュラス": "Honduras", - "マーシャル諸島": "Marshall eilanden", - "マカオ": "Macau", - "マダガスカル": "Madagascar", - "マラウイ": "Malawi", - "マリ": "Mali", - "マルタ": "Malta", - "マルティニーク": "Martinique", - "マレーシア": "Maleisië", - "マン島": "Isle of Man", - "ミクロネシア連邦": "Federale Staten van Micronesië", - "ミャンマー(ビルマ)": "Myanmar (Birma)", - "モーリシャス": "Mauritius", - "モーリタニア": "Mauritanië", - "モルディブ": "Maldiven", - "メキシコ": "Mexico", - "モザンビーク": "Mozambique", - "モナコ": "Monaco", - "モルドバ": "Moldavië", - "モロッコ": "Marokko", - "モンゴル": "Mongolië", - "モンセラート": "Montserrat", - "モンテネグロ": "Montenegro", - "ヨルダン": "Jordanië", - "ラオス": "Laos", - "ラトビア": "Letland", - "リトアニア": "Litouwen", - "リヒテンシュタイン": "Liechtenstein", - "リビア": "Libië", - "リベリア": "Liberia", - "ルーマニア": "Roemenië", - "ルクセンブルク": "Luxemburg", - "ルワンダ": "Rwanda", - "レソト": "Lesotho", - "レバノン": "Libanon", - "レユニオン": "Bijeenkomst", - "ローマ教皇庁 (バチカン)": "Roman Curia (Vaticaan)", - "ロシア": "Rusland" -} \ No newline at end of file diff --git a/resources/lang/nl/site.php b/resources/lang/nl/site.php deleted file mode 100644 index 8a1e08f..0000000 --- a/resources/lang/nl/site.php +++ /dev/null @@ -1,36 +0,0 @@ - 'toevoegen aan', - 'hensyu' => 'Bewerk', - 'sakujyo' => 'Verwijderen', - 'signin' => 'Inloggen', - 'signout' => 'Afmelden', - 'toroku' => 'Registratie', - 'sinkitoroku' => 'aanmelden', - 'hissu' => 'Verplicht', - 'username' => 'gebruikersnaam', - 'hyojiname' => 'Weergavenaam', - 'hyojiname_memo' => 'Als u deze niet invoert, wordt de gebruikersnaam weergegeven.', - 'password' => 'wachtwoord', - 'password_memo' => 'Als u het wachtwoord niet wijzigt, voer het dan niet in zoals het is.', - 'passwordkakunin' => 'wachtwoordbevestiging', - 'kuni' => 'Land', - 'seibetu' => 'seks', - 'densimail' => 'e-mail', - 'de_kokai' => 'Gepubliceerd op :date', - 'no_icon' => ':namepictogram', - 'jikosyokai' => 'Zelfintroductie', - 'ippan' => 'Algemeen', - 'renraku' => 'Contact', - 'gengo' => 'taal', - 'top' => 'Top', - 'doga' => 'Video', - 'profilenohyoji' => 'Bekijk profiel', - 'profilenohensyu' => 'Bewerk profiel', - 'tokonotuika' => 'Voeg bericht toe', - 'doganotuika' => 'Voeg video toe', - 'comentitiran' => 'Lijst met opmerkingen', - 'useritiran' => 'Gebruikers lijst', - 'minyukaimono' => 'Niet-leden', -]; diff --git a/resources/lang/ru.json b/resources/lang/ru.json deleted file mode 100644 index ddb951e..0000000 --- a/resources/lang/ru.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "男性": "мужчина", - "女性": "женский", - "不明": "неизвестный", - "日本": "Япония", - "大韓民国": "Южная Корея", - "中華人民共和国": "Китайская Народная Республика", - "香港": "Гонконг", - "台湾": "Тайвань", - "赤道ギニア": "Экваториальная Гвинея", - "北アイルランド": "Северная Ирландия", - "北朝鮮": "Северная Корея", - "北マケドニア": "Северная Македония", - "中央アフリカ共和国": "Центрально-Африканская Республика", - "東ティモール": "Восточный Тимор", - "南極": "Антарктика", - "南アフリカ": "Южная Африка", - "西サハラ": "Западная Сахара", - "アイスランド": "Исландия", - "アイルランド": "Ирландия", - "アゼルバイジャン": "Азербайджан", - "アフガニスタン": "Афганистан", - "アメリカ領ヴァージン諸島": "Американские Виргинские острова", - "アメリカ領サモア": "американское Самоа", - "アメリカ合衆国": "Соединенные Штаты Америки", - "アラブ首長国連邦": "Объединенные Арабские Эмираты", - "アルジェリア": "Алжир", - "アルゼンチン": "Аргентина", - "アルバ": "Аруба", - "アルバニア": "Албания", - "アルメニア": "Армения", - "アンゴラ": "Ангола", - "アングィラ": "Ангилья", - "アンティグア・バーブーダ": "Антигуа и Барбуда", - "アンドラ": "Андорра", - "イエメン": "Йемен", - "イギリス": "Англия", - "イギリス領バージン諸島": "Британские Виргинские острова", - "イスラエル": "Израиль", - "イタリア": "Италия", - "イラク": "Ирак", - "イラン": "Иран", - "イングランド": "Англия", - "インド": "Индия", - "インドネシア": "Индонезия", - "ウェールズ": "Уэльс", - "ウガンダ": "Уганда", - "ウクライナ": "Украина", - "ウズベキスタン": "Узбекистан", - "ウルグアイ": "Уругвай", - "エクアドル": "Эквадор", - "エジプト": "Египет", - "エストニア": "Эстония", - "エスワティニ": "Эсватини", - "エチオピア": "Эфиопия", - "エリトリア": "Эритрея", - "エルサルバドル": "Эль Сальвадор", - "オーストラリア": "Австралия", - "オーストリア": "Австрия", - "オマーン": "Оман", - "オランダ": "Нидерланды", - "オランダ領アンティル": "Голландские антильские острова", - "ガーナ": "Гана", - "カーボベルデ": "Кабо-Верде", - "ガーンジー島": "Гернси", - "ガイアナ": "Гайана", - "カザフスタン": "Казахстан", - "カタール": "Катар", - "カナダ": "Канада", - "ガボン": "Габон", - "カメルーン": "Камерун", - "ガンビア": "Гамбия", - "カンボジア": "Камбоджа", - "キプロス": "Кипр", - "ギニア": "Гвинея", - "ギニア・ビサウ": "Гвинея-Бисау", - "キューバ": "Куба", - "ギリシャ": "Греция", - "キリバス": "Кирибати", - "キルギス": "Кыргызстан", - "グアテマラ": "Гватемала", - "グアドループ": "Гваделупа", - "グアム": "Гуам", - "クウェート": "Кувейт", - "クック諸島": "Острова Кука", - "グリーンランド": "Гренландия", - "グレナダ": "Гренада", - "クロアチア": "Хорватия", - "ケイマン諸島": "Каймановы острова", - "ケニア": "Кения", - "コートジボワール": "Берег Слоновой Кости", - "コスタリカ": "Коста-Рика", - "コソボ": "Косово", - "コモロ": "Коморские острова", - "コロンビア": "Колумбия", - "コンゴ": "Конго", - "コンゴ民主共和国": "Демократическая Республика Конго", - "サウジアラビア": "Саудовская Аравия", - "サモア": "Самоа", - "サントメ・プリンシペ": "Сан-Томе-Принсипи", - "ザンビア": "Замбия", - "サン・マリの": "Сан-Мали", - "シエラレオネ": "Сьерра-Леоне", - "ジブチ": "Джибути", - "ジブラルタル": "Гибралтар", - "シリア": "Сирия", - "ジャージー島": "Джерси", - "ジャマイカ": "Ямайка", - "ジョージア": "Грузия", - "シンガポール": "Сингапур", - "ジンバブエ": "Зимбабве", - "スイス": "Швейцария", - "スウェーデン": "Швеция", - "スーダン": "Судан", - "スコットランド": "Шотландия", - "スペイン": "Испания", - "スリナム": "Суринам", - "スリランカ": "Шри-Ланка", - "スロバキア": "Словакия", - "スロベニア": "Словения", - "セーシェル": "Сейшельские острова", - "セネガル": "Сенегал", - "セルビア": "Сербия", - "セントクリストファー・ネービス": "Сент-Китс и Невис", - "セントビンセントおよびグレナディーン諸島": "Святой Винсент и Гренадины", - "セントルシア": "Сент-Люсия", - "ソマリア": "Сомали", - "ソマリランド": "Сомалиленд", - "ソロモン諸島": "Соломоновы острова", - "タークス・カイコス諸島": "Острова Теркс и Кайкос", - "タイ": "Таиланд", - "タジキスタン": "Таджикистан", - "タンザニア": "Танзания", - "チャド": "Чад", - "チリ": "Чили", - "チェコ": "Чешский", - "ツバル": "Тувалу", - "チュニジア": "Тунис", - "デンマーク": "Дания", - "トーゴ": "Идти", - "ドイツ": "Германия", - "ドミニカ": "Доминика", - "ドミニカ共和国": "Доминиканская Республика", - "トリニダード・ドバゴ": "Тринидад и Тобаго", - "トルクメニスタン": "Туркменистан", - "トルコ": "индюк", - "トンガ": "Тонга", - "ナイジェリア": "Нигерия", - "ナウル": "Науру", - "ナミビア": "Намибия", - "ニカラグア": "Никарагуа", - "ニジェール": "Нигер", - "ニューカレドニア": "Новая Каледония", - "ニュージーランド": "Новая Зеландия", - "ネパール": "Непал", - "ノルウェー": "Норвегия", - "バーレーン": "Бахрейн", - "ハイチ": "Гаити", - "パキスタン": "Пакистан", - "パナマ": "Панама", - "バヌアツ": "Вануату", - "バハマ": "Багамы", - "パプアニューギニア": "Папуа - Новая Гвинея", - "バミューダ諸島": "Бермудские острова", - "パラオ": "Палау", - "パラグアイ": "Парагвай", - "バルバドス": "Барбадос", - "ハンガリー": "Венгрия", - "バングラデシュ": "Бангладеш", - "フィジー": "Фиджи", - "フィリピン": "Филиппины", - "フィンランド": "Финляндия", - "プエルトリコ": "Пуэрто-Рико", - "ブータン": "Бутан", - "フェロー諸島": "Фарерские острова", - "ブラジル": "Бразилия", - "フランス": "Франция", - "フランス領ポリネシア": "Французская Полинезия", - "ブルガリア": "Болгария", - "ブルキナ・ファソ": "Буркина-Фасо", - "ブルネイ・ダルサラーム": "Бруней-Даруссалам", - "ブルンジ": "Бурунди", - "ベトナム": "Вьетнам", - "ベナン": "Бенин", - "ベネズエラ": "Венесуэла", - "ベラルーシ": "Беларусь", - "ベリーズ": "Белиз", - "ペルー": "Перу", - "ベルギー": "Бельгия", - "ポーランド": "Польша", - "ボスニア・ヘルツェゴビナ": "Босния и Герцеговина", - "ボツワナ": "Ботсвана", - "ボリビア": "Боливия", - "ポルトガル": "Португалия", - "ホンジュラス": "Гондурас", - "マーシャル諸島": "Маршалловы острова", - "マカオ": "Макао", - "マダガスカル": "Мадагаскар", - "マラウイ": "Малави", - "マリ": "Мали", - "マルタ": "Мальта", - "マルティニーク": "Мартиника", - "マレーシア": "Малайзия", - "マン島": "Остров Мэн", - "ミクロネシア連邦": "Федеративные Штаты Микронезии", - "ミャンマー(ビルマ)": "Мьянма (Бирма)", - "モーリシャス": "Маврикий", - "モーリタニア": "Мавритания", - "モルディブ": "Мальдивы", - "メキシコ": "Мексика", - "モザンビーク": "Мозамбик", - "モナコ": "Монако", - "モルドバ": "Молдова", - "モロッコ": "Марокко", - "モンゴル": "Монголия", - "モンセラート": "Монтсеррат", - "モンテネグロ": "Черногория", - "ヨルダン": "Иордания", - "ラオス": "Лаос", - "ラトビア": "Латвия", - "リトアニア": "Литва", - "リヒテンシュタイン": "Лихтенштейн", - "リビア": "Ливия", - "リベリア": "Либерия", - "ルーマニア": "Румыния", - "ルクセンブルク": "Люксембург", - "ルワンダ": "Руанда", - "レソト": "Лесото", - "レバノン": "Ливан", - "レユニオン": "Воссоединение", - "ローマ教皇庁 (バチカン)": "Римская курия (Ватикан)", - "ロシア": "Россия" -} \ No newline at end of file diff --git a/resources/lang/ru/site.php b/resources/lang/ru/site.php deleted file mode 100644 index 08cef5c..0000000 --- a/resources/lang/ru/site.php +++ /dev/null @@ -1,36 +0,0 @@ - 'добавить в', - 'hensyu' => 'Редактировать', - 'sakujyo' => 'Удалить', - 'signin' => 'Войти', - 'signout' => 'выход', - 'toroku' => 'Постановка на учет', - 'sinkitoroku' => 'зарегистрироваться', - 'hissu' => 'Обязательный', - 'username' => 'имя пользователя', - 'hyojiname' => 'показать имя', - 'hyojiname_memo' => 'Если вы не введете его, будет отображаться имя пользователя.', - 'password' => 'пароль', - 'password_memo' => 'Если вы не меняете пароль, не вводите его как есть.', - 'passwordkakunin' => 'Подтверждение пароля', - 'kuni' => 'Страна', - 'seibetu' => 'секс', - 'densimail' => 'электронное письмо', - 'de_kokai' => 'Дата публикации :date', - 'no_icon' => 'значок :name', - 'jikosyokai' => 'Самостоятельное введение', - 'ippan' => 'Общий', - 'renraku' => 'Контакт', - 'gengo' => 'язык', - 'top' => 'Вершина', - 'doga' => 'видео', - 'profilenohyoji' => 'Просмотреть профиль', - 'profilenohensyu' => 'Редактировать профиль', - 'tokonotuika' => 'Добавить сообщение', - 'doganotuika' => 'Добавить видео', - 'comentitiran' => 'Список комментариев', - 'useritiran' => 'Список пользователей', - 'minyukaimono' => 'Не члены', -]; diff --git a/resources/lang/vi.json b/resources/lang/vi.json deleted file mode 100644 index 412c700..0000000 --- a/resources/lang/vi.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "男性": "Nam giới", - "女性": "Giống cái", - "不明": "không xác định", - "日本": "Nhật Bản", - "大韓民国": "Nam Triều Tiên", - "中華人民共和国": "Cộng hòa nhân dân Trung Hoa", - "香港": "Hồng Kông", - "台湾": "Đài loan", - "赤道ギニア": "Equatorial Guinea", - "北アイルランド": "Bắc Ireland", - "北朝鮮": "Bắc Triều Tiên", - "北マケドニア": "Bắc Macedonia", - "中央アフリカ共和国": "Cộng hòa trung phi", - "東ティモール": "Đông Timor", - "南極": "Nam cực", - "南アフリカ": "Nam Phi", - "西サハラ": "Phía tây Sahara", - "アイスランド": "Nước Iceland", - "アイルランド": "Ireland", - "アゼルバイジャン": "Azerbaijan", - "アフガニスタン": "Afghanistan", - "アメリカ領ヴァージン諸島": "Quần đảo Virgin thuộc Mỹ", - "アメリカ領サモア": "American Samoa", - "アメリカ合衆国": "nước Mỹ", - "アラブ首長国連邦": "các Tiểu Vương Quốc Ả Rập Thống Nhất", - "アルジェリア": "Algeria", - "アルゼンチン": "Argentina", - "アルバ": "Aruba", - "アルバニア": "Albania", - "アルメニア": "Armenia", - "アンゴラ": "Angola", - "アングィラ": "Anguilla", - "アンティグア・バーブーダ": "Antigua và Barbuda", - "アンドラ": "Andorra", - "イエメン": "Yemen", - "イギリス": "nước Anh", - "イギリス領バージン諸島": "Quần đảo British Virgin", - "イスラエル": "Người israel", - "イタリア": "Nước Ý", - "イラク": "I-rắc", - "イラン": "Iran", - "イングランド": "nước Anh", - "インド": "Ấn Độ", - "インドネシア": "Indonesia", - "ウェールズ": "Xứ Wales", - "ウガンダ": "Uganda", - "ウクライナ": "Ukraine", - "ウズベキスタン": "U-dơ-bê-ki-xtan", - "ウルグアイ": "Uruguay", - "エクアドル": "Ecuador", - "エジプト": "Ai cập", - "エストニア": "Estonia", - "エスワティニ": "Eswatini", - "エチオピア": "Ethiopia", - "エリトリア": "Eritrea", - "エルサルバドル": "El Salvador", - "オーストラリア": "Châu Úc", - "オーストリア": "Áo", - "オマーン": "Oman", - "オランダ": "nước Hà Lan", - "オランダ領アンティル": "Antilles của Hà Lan", - "ガーナ": "Ghana", - "カーボベルデ": "Cape Verde", - "ガーンジー島": "Guernsey", - "ガイアナ": "Guyana", - "カザフスタン": "Kazakhstan", - "カタール": "Qatar", - "カナダ": "Canada", - "ガボン": "Gabon", - "カメルーン": "Cameroon", - "ガンビア": "Gambia", - "カンボジア": "Campuchia", - "キプロス": "Síp", - "ギニア": "Guinea", - "ギニア・ビサウ": "Guinea-Bissau", - "キューバ": "Cuba", - "ギリシャ": "Hy Lạp", - "キリバス": "Kiribati", - "キルギス": "Kyrgyzstan", - "グアテマラ": "Guatemala", - "グアドループ": "Guadeloupe", - "グアム": "Guam", - "クウェート": "Kuwait", - "クック諸島": "Quần đảo Cook", - "グリーンランド": "Greenland", - "グレナダ": "Grenada", - "クロアチア": "Croatia", - "ケイマン諸島": "Quần đảo Cayman", - "ケニア": "Kenya", - "コートジボワール": "Cote d'Ivoire", - "コスタリカ": "Costa Rica", - "コソボ": "Kosovo", - "コモロ": "Comoros", - "コロンビア": "Columbia", - "コンゴ": "Congo", - "コンゴ民主共和国": "Cộng hòa Dân chủ Congo", - "サウジアラビア": "Ả Rập Saudi", - "サモア": "Samoa", - "サントメ・プリンシペ": "Sao Tome Principe", - "ザンビア": "Zambia", - "サン・マリの": "San Mali", - "シエラレオネ": "Sierra Leone", - "ジブチ": "Djibouti", - "ジブラルタル": "Gibraltar", - "シリア": "Syria", - "ジャージー島": "Jersey", - "ジャマイカ": "Jamaica", - "ジョージア": "Georgia", - "シンガポール": "Singapore", - "ジンバブエ": "Zimbabwe", - "スイス": "Thụy sĩ", - "スウェーデン": "Thụy Điển", - "スーダン": "Sudan", - "スコットランド": "Scotland", - "スペイン": "Tây ban nha", - "スリナム": "Suriname", - "スリランカ": "Sri Lanka", - "スロバキア": "Xlô-va-ki-a", - "スロベニア": "Slovenia", - "セーシェル": "Seychelles", - "セネガル": "Senegal", - "セルビア": "Xéc-bi-a", - "セントクリストファー・ネービス": "Saint Kitts và Nevis", - "セントビンセントおよびグレナディーン諸島": "Saint Vincent và Grenadines", - "セントルシア": "Saint Lucia", - "ソマリア": "Somalia", - "ソマリランド": "Somaliland", - "ソロモン諸島": "Quần đảo Solomon", - "タークス・カイコス諸島": "Quần đảo Turks và Caicos", - "タイ": "nước Thái Lan", - "タジキスタン": "Tajikistan", - "タンザニア": "Tanzania", - "チャド": "Chad", - "チリ": "Chile", - "チェコ": "Tiếng Séc", - "ツバル": "Tuvalu", - "チュニジア": "Tunisia", - "デンマーク": "Đan mạch", - "トーゴ": "Đi", - "ドイツ": "nước Đức", - "ドミニカ": "Dominica", - "ドミニカ共和国": "Cộng hòa Dominica", - "トリニダード・ドバゴ": "Trinidad và Tobago", - "トルクメニスタン": "Turkmenistan", - "トルコ": "gà tây", - "トンガ": "Tonga", - "ナイジェリア": "Nigeria", - "ナウル": "Nauru", - "ナミビア": "Namibia", - "ニカラグア": "Nicaragua", - "ニジェール": "Niger", - "ニューカレドニア": "New Caledonia", - "ニュージーランド": "New Zealand", - "ネパール": "Nepal", - "ノルウェー": "Na Uy", - "バーレーン": "Bahrain", - "ハイチ": "Haiti", - "パキスタン": "Pakistan", - "パナマ": "Panama", - "バヌアツ": "Vanuatu", - "バハマ": "Bahamas", - "パプアニューギニア": "Papua New Guinea", - "バミューダ諸島": "Bermuda", - "パラオ": "Palau", - "パラグアイ": "Paraguay", - "バルバドス": "Barbados", - "ハンガリー": "Hungary", - "バングラデシュ": "Bangladesh", - "フィジー": "Fiji", - "フィリピン": "Phi-líp-pin", - "フィンランド": "Phần Lan", - "プエルトリコ": "Puerto Rico", - "ブータン": "Bhutan", - "フェロー諸島": "Quần đảo Faroe", - "ブラジル": "Brazil", - "フランス": "Nước pháp", - "フランス領ポリネシア": "Polynesia thuộc Pháp", - "ブルガリア": "Bungari", - "ブルキナ・ファソ": "Burkina Faso", - "ブルネイ・ダルサラーム": "Vương quốc Bru-nây", - "ブルンジ": "Burundi", - "ベトナム": "Việt Nam", - "ベナン": "Benin", - "ベネズエラ": "Venezuela", - "ベラルーシ": "Belarus", - "ベリーズ": "Belize", - "ペルー": "Peru", - "ベルギー": "nước Bỉ", - "ポーランド": "Ba lan", - "ボスニア・ヘルツェゴビナ": "Bosnia-Herzegovina", - "ボツワナ": "Botswana", - "ボリビア": "Bolivia", - "ポルトガル": "Bồ Đào Nha", - "ホンジュラス": "Honduras", - "マーシャル諸島": "đảo Marshall", - "マカオ": "Ma Cao", - "マダガスカル": "Madagascar", - "マラウイ": "Malawi", - "マリ": "Mali", - "マルタ": "Malta", - "マルティニーク": "Martinique", - "マレーシア": "Malaysia", - "マン島": "Đảo Man", - "ミクロネシア連邦": "Liên bang Micronesia", - "ミャンマー(ビルマ)": "Myanmar (Miến Điện)", - "モーリシャス": "Mauritius", - "モーリタニア": "Mauritania", - "モルディブ": "Maldives", - "メキシコ": "Mexico", - "モザンビーク": "Mozambique", - "モナコ": "Monaco", - "モルドバ": "Moldova", - "モロッコ": "Maroc", - "モンゴル": "Mông Cổ", - "モンセラート": "Montserrat", - "モンテネグロ": "Montenegro", - "ヨルダン": "Jordan", - "ラオス": "Nước Lào", - "ラトビア": "Latvia", - "リトアニア": "Lithuania", - "リヒテンシュタイン": "Liechtenstein", - "リビア": "Libya", - "リベリア": "Liberia", - "ルーマニア": "Romania", - "ルクセンブルク": "Luxembourg", - "ルワンダ": "Rwanda", - "レソト": "Lesotho", - "レバノン": "Lebanon", - "レユニオン": "Sum họp", - "ローマ教皇庁 (バチカン)": "Giáo triều La Mã (Vatican)", - "ロシア": "Nga" -} \ No newline at end of file diff --git a/resources/lang/vi/site.php b/resources/lang/vi/site.php deleted file mode 100644 index b3d9531..0000000 --- a/resources/lang/vi/site.php +++ /dev/null @@ -1,36 +0,0 @@ - 'thêm vào', - 'hensyu' => 'Biên tập', - 'sakujyo' => 'Xóa bỏ', - 'signin' => 'Đăng nhập', - 'signout' => 'Đăng xuất', - 'toroku' => 'Đăng ký', - 'sinkitoroku' => 'đăng ký', - 'hissu' => 'Bắt buộc', - 'username' => 'tên tài khoản', - 'hyojiname' => 'tên hiển thị', - 'hyojiname_memo' => 'Nếu bạn không nhập, tên người dùng sẽ được hiển thị.', - 'password' => 'mật khẩu', - 'password_memo' => 'Nếu bạn không thay đổi mật khẩu, không nhập mật khẩu như nó vốn có.', - 'passwordkakunin' => 'xác nhận mật khẩu', - 'kuni' => 'Quốc gia', - 'seibetu' => 'tình dục', - 'densimail' => 'e-mail', - 'de_kokai' => 'Xuất bản vào :date', - 'no_icon' => ': biểu tượng của :name', - 'jikosyokai' => 'Tự giới thiệu', - 'ippan' => 'Chung', - 'renraku' => 'Tiếp xúc', - 'gengo' => 'ngôn ngữ', - 'top' => 'Hàng đầu', - 'doga' => 'Video', - 'profilenohyoji' => 'Xem lí lịch', - 'profilenohensyu' => 'Chỉnh sửa hồ sơ', - 'tokonotuika' => 'Thêm bài đăng', - 'doganotuika' => 'Thêm video', - 'comentitiran' => 'Danh sách các bình luận', - 'useritiran' => 'Danh sách người dùng', - 'minyukaimono' => 'Không phải thành viên', -]; diff --git a/resources/lang/zh-CN.json b/resources/lang/zh-CN.json deleted file mode 100644 index 873067b..0000000 --- a/resources/lang/zh-CN.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "男性": "男性", - "女性": "女性", - "不明": "未知", - "日本": "日本", - "大韓民国": "南韩", - "中華人民共和国": "中华人民共和国", - "香港": "香港", - "台湾": "台湾", - "赤道ギニア": "赤道几内亚", - "北アイルランド": "北爱尔兰", - "北朝鮮": "北朝鲜", - "北マケドニア": "北马其顿", - "中央アフリカ共和国": "中非共和国", - "東ティモール": "东帝汶", - "南極": "南极", - "南アフリカ": "南非", - "西サハラ": "西撒哈拉", - "アイスランド": "冰岛", - "アイルランド": "爱尔兰", - "アゼルバイジャン": "阿塞拜疆", - "アフガニスタン": "阿富汗", - "アメリカ領ヴァージン諸島": "美属维尔京群岛", - "アメリカ領サモア": "美属萨摩亚", - "アメリカ合衆国": "美国", - "アラブ首長国連邦": "阿拉伯联合酋长国", - "アルジェリア": "阿尔及利亚", - "アルゼンチン": "阿根廷", - "アルバ": "阿鲁巴岛", - "アルバニア": "阿尔巴尼亚", - "アルメニア": "亚美尼亚", - "アンゴラ": "安哥拉", - "アングィラ": "安圭拉岛", - "アンティグア・バーブーダ": "安提瓜和巴布达", - "アンドラ": "安道尔", - "イエメン": "也门", - "イギリス": "英国", - "イギリス領バージン諸島": "英属维尔京群岛", - "イスラエル": "以色列", - "イタリア": "意大利", - "イラク": "伊拉克", - "イラン": "伊朗", - "イングランド": "英国", - "インド": "印度", - "インドネシア": "印度尼西亚", - "ウェールズ": "威尔士", - "ウガンダ": "乌干达", - "ウクライナ": "乌克兰", - "ウズベキスタン": "乌兹别克斯坦", - "ウルグアイ": "乌拉圭", - "エクアドル": "厄瓜多尔", - "エジプト": "埃及", - "エストニア": "爱沙尼亚", - "エスワティニ": "埃斯瓦蒂尼", - "エチオピア": "埃塞俄比亚", - "エリトリア": "厄立特里亚", - "エルサルバドル": "萨尔瓦多", - "オーストラリア": "澳大利亚", - "オーストリア": "奥地利", - "オマーン": "阿曼", - "オランダ": "荷兰", - "オランダ領アンティル": "荷属安的列斯群岛", - "ガーナ": "加纳", - "カーボベルデ": "佛得角", - "ガーンジー島": "根西岛", - "ガイアナ": "圭亚那", - "カザフスタン": "哈萨克斯坦", - "カタール": "卡塔尔", - "カナダ": "加拿大", - "ガボン": "加蓬", - "カメルーン": "喀麦隆", - "ガンビア": "冈比亚", - "カンボジア": "柬埔寨", - "キプロス": "塞浦路斯", - "ギニア": "几内亚", - "ギニア・ビサウ": "几内亚比绍", - "キューバ": "古巴", - "ギリシャ": "希腊", - "キリバス": "基里巴斯", - "キルギス": "吉尔吉斯斯坦", - "グアテマラ": "危地马拉", - "グアドループ": "瓜德罗普岛", - "グアム": "关岛", - "クウェート": "科威特", - "クック諸島": "库克群岛", - "グリーンランド": "格陵兰", - "グレナダ": "格林纳达", - "クロアチア": "克罗地亚", - "ケイマン諸島": "开曼群岛", - "ケニア": "肯尼亚", - "コートジボワール": "科特迪瓦", - "コスタリカ": "哥斯达黎加", - "コソボ": "科索沃", - "コモロ": "科摩罗", - "コロンビア": "哥伦比亚", - "コンゴ": "刚果", - "コンゴ民主共和国": "刚果民主共和国", - "サウジアラビア": "沙特阿拉伯", - "サモア": "萨摩亚", - "サントメ・プリンシペ": "圣多美普林西比", - "ザンビア": "赞比亚", - "サン・マリの": "圣马里", - "シエラレオネ": "塞拉利昂", - "ジブチ": "吉布地", - "ジブラルタル": "直布罗陀", - "シリア": "叙利亚", - "ジャージー島": "球衣", - "ジャマイカ": "的牙买加", - "ジョージア": "乔治亚州", - "シンガポール": "新加坡", - "ジンバブエ": "津巴布韦", - "スイス": "瑞士", - "スウェーデン": "瑞典", - "スーダン": "苏丹", - "スコットランド": "苏格兰", - "スペイン": "西班牙", - "スリナム": "苏里南", - "スリランカ": "斯里兰卡", - "スロバキア": "斯洛伐克", - "スロベニア": "斯洛文尼亚", - "セーシェル": "塞舌尔", - "セネガル": "塞内加尔", - "セルビア": "塞尔维亚", - "セントクリストファー・ネービス": "圣基茨和尼维斯", - "セントビンセントおよびグレナディーン諸島": "圣文森特和格林纳丁斯", - "セントルシア": "圣卢西亚", - "ソマリア": "索马里", - "ソマリランド": "索马里兰", - "ソロモン諸島": "所罗门群岛", - "タークス・カイコス諸島": "特克斯和凯科斯群岛", - "タイ": "泰国", - "タジキスタン": "塔吉克斯坦", - "タンザニア": "坦桑尼亚", - "チャド": "乍得", - "チリ": "智利", - "チェコ": "捷克文", - "ツバル": "图瓦卢", - "チュニジア": "突尼斯", - "デンマーク": "丹麦", - "トーゴ": "多哥", - "ドイツ": "德国", - "ドミニカ": "多米尼加", - "ドミニカ共和国": "多明尼加共和国", - "トリニダード・ドバゴ": "特立尼达和多巴哥", - "トルクメニスタン": "土库曼斯坦", - "トルコ": "火鸡", - "トンガ": "汤加", - "ナイジェリア": "奈及利亚", - "ナウル": "瑙鲁", - "ナミビア": "纳米比亚", - "ニカラグア": "尼加拉瓜", - "ニジェール": "尼日尔", - "ニューカレドニア": "新喀里多尼亚", - "ニュージーランド": "新西兰", - "ネパール": "尼尼泊尔", - "ノルウェー": "挪威", - "バーレーン": "巴林", - "ハイチ": "海地", - "パキスタン": "巴基斯坦", - "パナマ": "巴拿马", - "バヌアツ": "瓦努阿图", - "バハマ": "巴哈马", - "パプアニューギニア": "巴布亚新几内亚", - "バミューダ諸島": "百慕大", - "パラオ": "u琉", - "パラグアイ": "巴拉圭", - "バルバドス": "巴巴多斯", - "ハンガリー": "匈牙利", - "バングラデシュ": "孟加拉国", - "フィジー": "斐济", - "フィリピン": "菲律宾", - "フィンランド": "芬兰", - "プエルトリコ": "波多黎各", - "ブータン": "不丹", - "フェロー諸島": "法罗群岛", - "ブラジル": "巴西", - "フランス": "法国", - "フランス領ポリネシア": "法属波利尼西亚", - "ブルガリア": "保加利亚", - "ブルキナ・ファソ": "布基纳法索", - "ブルネイ・ダルサラーム": "文莱达鲁萨兰国", - "ブルンジ": "布隆迪", - "ベトナム": "越南", - "ベナン": "贝宁", - "ベネズエラ": "委内瑞拉", - "ベラルーシ": "白俄罗斯", - "ベリーズ": "伯利兹", - "ペルー": "秘鲁", - "ベルギー": "比利时", - "ポーランド": "波兰", - "ボスニア・ヘルツェゴビナ": "波斯尼亚和黑塞哥维那", - "ボツワナ": "博茨瓦纳", - "ボリビア": "玻利维亚", - "ポルトガル": "葡萄牙", - "ホンジュラス": "洪都拉斯", - "マーシャル諸島": "马绍尔群岛", - "マカオ": "澳门澳门", - "マダガスカル": "马达加斯加", - "マラウイ": "马拉维", - "マリ": "马里", - "マルタ": "马耳他", - "マルティニーク": "马提尼克岛", - "マレーシア": "马来西亚", - "マン島": "马恩岛", - "ミクロネシア連邦": "密克罗尼西亚联邦", - "ミャンマー(ビルマ)": "缅甸", - "モーリシャス": "毛里求斯", - "モーリタニア": "毛里塔尼亚", - "モルディブ": "马尔代夫", - "メキシコ": "墨西哥", - "モザンビーク": "莫桑比克", - "モナコ": "摩纳哥", - "モルドバ": "摩尔多瓦", - "モロッコ": "摩洛哥", - "モンゴル": "蒙古", - "モンセラート": "蒙特塞拉特", - "モンテネグロ": "黑山共和国", - "ヨルダン": "约旦", - "ラオス": "老挝", - "ラトビア": "拉脱维亚", - "リトアニア": "立陶宛", - "リヒテンシュタイン": "列支敦士登", - "リビア": "利比亚", - "リベリア": "利比里亚", - "ルーマニア": "罗马尼亚", - "ルクセンブルク": "卢森堡", - "ルワンダ": "卢旺达", - "レソト": "莱索托", - "レバノン": "黎巴嫩的", - "レユニオン": "团圆", - "ローマ教皇庁 (バチカン)": "罗马库里亚(梵蒂冈)", - "ロシア": "俄罗斯" -} \ No newline at end of file diff --git a/resources/lang/zh-CN/site.php b/resources/lang/zh-CN/site.php deleted file mode 100644 index 37ec7f4..0000000 --- a/resources/lang/zh-CN/site.php +++ /dev/null @@ -1,36 +0,0 @@ - '添加', - 'hensyu' => '编辑', - 'sakujyo' => '删除', - 'signin' => '登入', - 'signout' => '登出', - 'toroku' => '登记', - 'sinkitoroku' => '报名', - 'hissu' => '强制的', - 'username' => '用户名', - 'hyojiname' => '显示名称', - 'hyojiname_memo' => '如果不输入,将显示用户名。', - 'password' => '密码', - 'password_memo' => '如果您不更改密码,请不要直接输入密码。', - 'passwordkakunin' => '确认密码', - 'kuni' => '国家', - 'seibetu' => '性别', - 'densimail' => '电子邮件', - 'de_kokai' => '发布时间:date', - 'no_icon' => ':name的图标', - 'jikosyokai' => '自我介绍', - 'ippan' => '一般的', - 'renraku' => '接触', - 'gengo' => '语言', - 'top' => '最佳', - 'doga' => '视频', - 'profilenohyoji' => '查看资料', - 'profilenohensyu' => '编辑个人资料', - 'tokonotuika' => '新增讯息', - 'doganotuika' => '新增影片', - 'comentitiran' => '评论清单', - 'useritiran' => '用户清单', - 'minyukaimono' => '非会员', -]; diff --git a/resources/lang/zh-TW.json b/resources/lang/zh-TW.json deleted file mode 100644 index 7c1804f..0000000 --- a/resources/lang/zh-TW.json +++ /dev/null @@ -1,233 +0,0 @@ -{ - "男性": "男性", - "女性": "女性", - "不明": "未知", - "日本": "日本", - "大韓民国": "南韓", - "中華人民共和国": "中華人民共和國", - "香港": "香港", - "台湾": "台灣", - "赤道ギニア": "赤道幾內亞", - "北アイルランド": "北愛爾蘭", - "北朝鮮": "北朝鮮", - "北マケドニア": "北馬其頓", - "中央アフリカ共和国": "中非共和國", - "東ティモール": "東帝汶", - "南極": "南極", - "南アフリカ": "南非", - "西サハラ": "西撒哈拉", - "アイスランド": "冰島", - "アイルランド": "愛爾蘭", - "アゼルバイジャン": "阿塞拜疆", - "アフガニスタン": "阿富汗", - "アメリカ領ヴァージン諸島": "美屬維爾京群島", - "アメリカ領サモア": "美屬薩摩亞", - "アメリカ合衆国": "美國", - "アラブ首長国連邦": "阿拉伯聯合酋長國", - "アルジェリア": "阿爾及利亞", - "アルゼンチン": "阿根廷", - "アルバ": "阿魯巴島", - "アルバニア": "阿爾巴尼亞", - "アルメニア": "亞美尼亞", - "アンゴラ": "安哥拉", - "アングィラ": "安圭拉島", - "アンティグア・バーブーダ": "安提瓜和巴布達", - "アンドラ": "安道爾", - "イエメン": "也門", - "イギリス": "英國", - "イギリス領バージン諸島": "英屬維爾京群島", - "イスラエル": "以色列", - "イタリア": "意大利", - "イラク": "伊拉克", - "イラン": "伊朗", - "イングランド": "英國", - "インド": "印度", - "インドネシア": "印度尼西亞", - "ウェールズ": "威爾士", - "ウガンダ": "烏干達", - "ウクライナ": "烏克蘭", - "ウズベキスタン": "烏茲別克斯坦", - "ウルグアイ": "烏拉圭", - "エクアドル": "厄瓜多爾", - "エジプト": "埃及", - "エストニア": "愛沙尼亞", - "エスワティニ": "埃斯瓦蒂尼", - "エチオピア": "埃塞俄比亞", - "エリトリア": "厄立特里亞", - "エルサルバドル": "薩爾瓦多", - "オーストラリア": "澳大利亞", - "オーストリア": "奧地利", - "オマーン": "阿曼", - "オランダ": "荷蘭", - "オランダ領アンティル": "荷屬安的列斯群島", - "ガーナ": "加納", - "カーボベルデ": "佛得角", - "ガーンジー島": "根西島", - "ガイアナ": "圭亞那", - "カザフスタン": "哈薩克斯坦", - "カタール": "卡塔爾", - "カナダ": "加拿大", - "ガボン": "加蓬", - "カメルーン": "喀麥隆", - "ガンビア": "岡比亞", - "カンボジア": "柬埔寨", - "キプロス": "塞浦路斯", - "ギニア": "幾內亞", - "ギニア・ビサウ": "幾內亞比紹", - "キューバ": "古巴", - "ギリシャ": "希臘", - "キリバス": "基里巴斯", - "キルギス": "吉爾吉斯斯坦", - "グアテマラ": "危地馬拉", - "グアドループ": "瓜德羅普島", - "グアム": "關島", - "クウェート": "科威特", - "クック諸島": "庫克群島", - "グリーンランド": "格陵蘭", - "グレナダ": "格林納達", - "クロアチア": "克羅地亞", - "ケイマン諸島": "開曼群島", - "ケニア": "肯尼亞", - "コートジボワール": "科特迪瓦", - "コスタリカ": "哥斯達黎加", - "コソボ": "科索沃", - "コモロ": "科摩羅", - "コロンビア": "哥倫比亞", - "コンゴ": "剛果", - "コンゴ民主共和国": "剛果民主共和國", - "サウジアラビア": "沙特阿拉伯", - "サモア": "薩摩亞", - "サントメ・プリンシペ": "聖多美普林西比", - "ザンビア": "贊比亞", - "サン・マリの": "聖馬里", - "シエラレオネ": "塞拉利昂", - "ジブチ": "吉布地", - "ジブラルタル": "直布羅陀", - "シリア": "敘利亞", - "ジャージー島": "球衣", - "ジャマイカ": "的牙買加", - "ジョージア": "喬治亞州", - "シンガポール": "新加坡", - "ジンバブエ": "津巴布韋", - "スイス": "瑞士", - "スウェーデン": "瑞典", - "スーダン": "蘇丹", - "スコットランド": "蘇格蘭", - "スペイン": "西班牙", - "スリナム": "蘇里南", - "スリランカ": "斯里蘭卡", - "スロバキア": "斯洛伐克", - "スロベニア": "斯洛文尼亞", - "セーシェル": "塞舌爾", - "セネガル": "塞內加爾", - "セルビア": "塞爾維亞", - "セントクリストファー・ネービス": "聖基茨和尼維斯", - "セントビンセントおよびグレナディーン諸島": "聖文森特和格林納丁斯", - "セントルシア": "聖盧西亞", - "ソマリア": "索馬里", - "ソマリランド": "索馬里蘭", - "ソロモン諸島": "所羅門群島", - "タークス・カイコス諸島": "特克斯和凱科斯群島", - "タイ": "泰國", - "タジキスタン": "塔吉克斯坦", - "タンザニア": "坦桑尼亞", - "チャド": "乍得", - "チリ": "智利", - "チェコ": "捷克文", - "ツバル": "圖瓦盧", - "チュニジア": "突尼斯", - "デンマーク": "丹麥", - "トーゴ": "多哥", - "ドイツ": "德國", - "ドミニカ": "多米尼加", - "ドミニカ共和国": "多明尼加共和國", - "トリニダード・ドバゴ": "特立尼達和多巴哥", - "トルクメニスタン": "土庫曼斯坦", - "トルコ": "火雞", - "トンガ": "湯加", - "ナイジェリア": "奈及利亞", - "ナウル": "瑙魯", - "ナミビア": "納米比亞", - "ニカラグア": "尼加拉瓜", - "ニジェール": "尼日爾", - "ニューカレドニア": "新喀裡多尼亞", - "ニュージーランド": "新西蘭", - "ネパール": "尼尼泊爾", - "ノルウェー": "挪威", - "バーレーン": "巴林", - "ハイチ": "海地", - "パキスタン": "巴基斯坦", - "パナマ": "巴拿馬", - "バヌアツ": "瓦努阿圖", - "バハマ": "巴哈馬", - "パプアニューギニア": "巴布亞新幾內亞", - "バミューダ諸島": "百慕大", - "パラオ": "u琉", - "パラグアイ": "巴拉圭", - "バルバドス": "巴巴多斯", - "ハンガリー": "匈牙利", - "バングラデシュ": "孟加拉國", - "フィジー": "斐濟", - "フィリピン": "菲律賓", - "フィンランド": "芬蘭", - "プエルトリコ": "波多黎各", - "ブータン": "不丹", - "フェロー諸島": "法羅群島", - "ブラジル": "巴西", - "フランス": "法國", - "フランス領ポリネシア": "法屬波利尼西亞", - "ブルガリア": "保加利亞", - "ブルキナ・ファソ": "布基納法索", - "ブルネイ・ダルサラーム": "文萊達魯薩蘭國", - "ブルンジ": "布隆迪", - "ベトナム": "越南", - "ベナン": "貝寧", - "ベネズエラ": "委內瑞拉", - "ベラルーシ": "白俄羅斯", - "ベリーズ": "伯利茲", - "ペルー": "秘魯", - "ベルギー": "比利時", - "ポーランド": "波蘭", - "ボスニア・ヘルツェゴビナ": "波斯尼亞和黑塞哥維那", - "ボツワナ": "博茨瓦納", - "ボリビア": "玻利維亞", - "ポルトガル": "葡萄牙", - "ホンジュラス": "洪都拉斯", - "マーシャル諸島": "馬紹爾群島", - "マカオ": "澳門澳門", - "マダガスカル": "馬達加斯加", - "マラウイ": "馬拉維", - "マリ": "馬里", - "マルタ": "馬耳他", - "マルティニーク": "馬提尼克島", - "マレーシア": "馬來西亞", - "マン島": "馬恩島", - "ミクロネシア連邦": "密克羅尼西亞聯邦", - "ミャンマー(ビルマ)": "緬甸", - "モーリシャス": "毛里求斯", - "モーリタニア": "毛里塔尼亞", - "モルディブ": "馬爾代夫", - "メキシコ": "墨西哥", - "モザンビーク": "莫桑比克", - "モナコ": "摩納哥", - "モルドバ": "摩爾多瓦", - "モロッコ": "摩洛哥", - "モンゴル": "蒙古", - "モンセラート": "蒙特塞拉特", - "モンテネグロ": "黑山共和國", - "ヨルダン": "約旦", - "ラオス": "老撾", - "ラトビア": "拉脫維亞", - "リトアニア": "立陶宛", - "リヒテンシュタイン": "列支敦士登", - "リビア": "利比亞", - "リベリア": "利比里亞", - "ルーマニア": "羅馬尼亞", - "ルクセンブルク": "盧森堡", - "ルワンダ": "盧旺達", - "レソト": "萊索托", - "レバノン": "黎巴嫩的", - "レユニオン": "團圓", - "ローマ教皇庁 (バチカン)": "羅馬庫里亞(梵蒂岡)", - "ロシア": "俄羅斯" -} \ No newline at end of file diff --git a/resources/lang/zh-TW/site.php b/resources/lang/zh-TW/site.php deleted file mode 100644 index 327214b..0000000 --- a/resources/lang/zh-TW/site.php +++ /dev/null @@ -1,36 +0,0 @@ - '添加', - 'hensyu' => '編輯', - 'sakujyo' => '刪除', - 'signin' => '登入', - 'signout' => '登出', - 'toroku' => '登記', - 'sinkitoroku' => '報名', - 'hissu' => '強制的', - 'username' => '用戶名', - 'hyojiname' => '顯示名稱', - 'hyojiname_memo' => '如果不輸入,將顯示用戶名。', - 'password' => '密碼', - 'password_memo' => '如果您不更改密碼,請不要直接輸入密碼。', - 'passwordkakunin' => '確認密碼', - 'kuni' => '國家', - 'seibetu' => '性別', - 'densimail' => '電子郵件', - 'de_kokai' => '發佈時間:date', - 'no_icon' => ':name的圖標', - 'jikosyokai' => '自我介紹', - 'ippan' => '一般的', - 'renraku' => '接觸', - 'gengo' => '語言', - 'top' => '最佳', - 'doga' => '視頻', - 'profilenohyoji' => '查看資料', - 'profilenohensyu' => '編輯個人資料', - 'tokonotuika' => '新增訊息', - 'doganotuika' => '新增影片', - 'comentitiran' => '評論清單', - 'useritiran' => '用戶清單', - 'minyukaimono' => '非會員', -]; diff --git a/routes/web.php b/routes/web.php index e935656..596564a 100644 --- a/routes/web.php +++ b/routes/web.php @@ -2,66 +2,70 @@ use Illuminate\Support\Facades\Route; -Route::get('/', 'Peertube\Home@index'); -Route::get('/home', 'Peertube\Home@index'); +Route::get('/', 'Home@index'); +Route::get('/home', 'Home@index'); -Route::get('/a/{id}/{cat?}/{page?}', 'Peertube\Account@index'); -Route::get('/c/{id}/{cat?}/{page?}', 'Peertube\Channel@index'); -Route::get('/w/{id}', 'Peertube\Watch@index'); +Route::get('/a/{id}/{cat?}/{page?}', 'Account@index'); +Route::get('/c/{id}/{cat?}/{page?}', 'Channel@index'); +Route::get('/w/{id}', 'Watch@index'); -Route::get('/logout', 'Peertube\Logout@logout'); +Route::get('/logout', 'Logout@logout'); Route::group(['prefix' => 'login'], function () { - Route::get('/', 'Peertube\Login@index'); - Route::post('/', 'Peertube\Login@login'); + Route::get('/', 'Login@index'); + Route::post('/', 'Login@login'); }); -Route::get('/signup', 'Peertube\Signup@index'); +Route::get('/signup', 'Signup@index'); Route::group(['prefix' => 'about'], function () { - Route::get('/', 'Peertube\About@instance'); - Route::get('/instance', 'Peertube\About@instance'); - Route::get('/lightpeer', 'Peertube\About@lightpeer'); - Route::get('/follows', 'Peertube\About@follows'); + Route::get('/', 'About@instance'); + Route::get('/instance', 'About@instance'); + Route::get('/lightpeer', 'About@lightpeer'); + Route::get('/follows', 'About@follows'); +}); + +Route::group(['prefix' => 'search'], function () { + Route::post('/', 'Search@index'); }); Route::group(['prefix' => 'my-account'], function () { - Route::get('/', 'Peertube\Myaccount\Settings@index'); - Route::get('/settings', 'Peertube\Myaccount\Settings@index'); + Route::get('/', 'Myaccount\Settings@index'); + Route::get('/settings', 'Myaccount\Settings@index'); Route::group(['prefix' => 'notifications'], function () { - Route::post('/read', 'Peertube\Myaccount\Notification@read'); - Route::post('/readAll', 'Peertube\Myaccount\Notification@readAll'); - Route::get('/{page?}', 'Peertube\Myaccount\Notification@index'); + Route::post('/read', 'Myaccount\Notification@read'); + Route::post('/readAll', 'Myaccount\Notification@readAll'); + Route::get('/{page?}', 'Myaccount\Notification@index'); }); - Route::get('/applications', 'Peertube\Myaccount\Applications@index'); + Route::get('/applications', 'Myaccount\Applications@index'); Route::group(['prefix' => 'blocklist'], function () { - Route::get('/', 'Peertube\Myaccount\Blocklist\Accounts@index'); - Route::get('/accounts', 'Peertube\Myaccount\Blocklist\Accounts@index'); - Route::get('/servers', 'Peertube\Myaccount\Blocklist\Servers@index'); + Route::get('/', 'Myaccount\Blocklist\Accounts@index'); + Route::get('/accounts', 'Myaccount\Blocklist\Accounts@index'); + Route::get('/servers', 'Myaccount\Blocklist\Servers@index'); }); }); -Route::get('/my-library', 'Peertube\Mylibrary@index'); +Route::get('/my-library', 'Mylibrary@index'); Route::group(['prefix' => 'admin'], function () { - Route::get('/', 'Peertube\Admin\Users@index'); - Route::get('/users', 'Peertube\Admin\Users@index'); + Route::get('/', 'Admin\Users@index'); + Route::get('/users', 'Admin\Users@index'); }); Route::group(['prefix' => 'my-library'], function () { - Route::get('/', 'Peertube\Mylibrary\Videochannels@index'); - Route::get('/videos', 'Peertube\Mylibrary\Videos@index'); - Route::get('/video-playlists', 'Peertube\Mylibrary\Videoplaylists@index'); + Route::get('/', 'Mylibrary\Videochannels@index'); + Route::get('/videos', 'Mylibrary\Videos@index'); + Route::get('/video-playlists', 'Mylibrary\Videoplaylists@index'); Route::group(['prefix' => 'history'], function () { - Route::get('/', 'Peertube\Mylibrary\History@index'); - Route::get('/videos', 'Peertube\Mylibrary\History\Videos@index'); + Route::get('/', 'Mylibrary\History@index'); + Route::get('/videos', 'Mylibrary\History\Videos@index'); }); }); Route::group(['prefix' => 'videos'], function () { - Route::get('/', 'Peertube\Videos\Local@index'); - Route::get('/subscriptions', 'Peertube\Videos\Subscriptions@index'); - Route::get('/overview/{page?}', 'Peertube\Videos\Overview@index'); - Route::get('/trending/{page?}', 'Peertube\Videos\Trending@index'); - Route::get('/recently-added/{page?}', 'Peertube\Videos\Recentlyadded@index'); - Route::get('/local/{page?}', 'Peertube\Videos\Local@index'); - Route::get('/upload', 'Peertube\Videos\Upload@index'); + Route::get('/', 'Videos\Local@index'); + Route::get('/subscriptions', 'Videos\Subscriptions@index'); + Route::get('/overview/{page?}', 'Videos\Overview@index'); + Route::get('/trending/{page?}', 'Videos\Trending@index'); + Route::get('/recently-added/{page?}', 'Videos\Recentlyadded@index'); + Route::get('/local/{page?}', 'Videos\Local@index'); + Route::get('/upload', 'Videos\Upload@index'); });