Skip to content

Commit 4dd8422

Browse files
committed
Added japanese translation and bump to v2.3
1 parent b26dece commit 4dd8422

5 files changed

Lines changed: 50 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ A explanation of the `host`, `port`, `language` and `passwords` fields follows:
5353

5454
`port`: A port where to run this plugin (cannot be the port you are using for Minecraft).
5555

56-
You can modify `language` to view console and command messages in your preferred language. Valid languages are English (`en`), Spanish (`es`), Chinese (`zh`), Czech (`cs`), Deutsch (`de`), Dutch (`nl`), French (`fr`), Italian (`it`), Korean (`ko`), Portuguese (`pt`), Russian (`ru`) and Turkish (`tr`). **IMPORTANT: There is a known issue with Microsoft Windows cmd that shows weird characters when using a language different than English. If you are using Windows to host your server, check [this wiki page](https://github.com/mesacarlos/WebConsole/wiki/Show-local-characters-in-Windows-Console) to solve the problem**.
56+
You can modify `language` to view console and command messages in your preferred language. Valid languages are English (`en`), Spanish (`es`), Chinese (`zh`), Czech (`cs`), Deutsch (`de`), Dutch (`nl`), French (`fr`), Italian (`it`), Japanese (`ja`) Korean (`ko`), Portuguese (`pt`), Russian (`ru`) and Turkish (`tr`). **IMPORTANT: There is a known issue with Microsoft Windows cmd that shows weird characters when using a language different than English. If you are using Windows to host your server, check [this wiki page](https://github.com/mesacarlos/WebConsole/wiki/Show-local-characters-in-Windows-Console) to solve the problem**.
5757

5858
From version 2.0 you can now create more than one user and set them as admin (Permission for both reading console and executing commands) or viewer (Permission for only reading console and CPU and RAM usage). This is configured using the `passwords` section:
5959
- By default, a user called user1 with password mySecurePassword is created, please replace or remove it as it is only served as an example.

client/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ <h5 class="modal-title" id="settingsModalLongTitle">WebConsole Settings</h5>
265265
<!-- Webpage footer -->
266266
<footer class="footer mt-auto py-3">
267267
<div class="container">
268-
<span class="text-muted">WebConsole v2.2 - <a href="https://github.com/mesacarlos/WebConsole">GitHub</a></span>
268+
<span class="text-muted">WebConsole v2.3 - <a href="https://github.com/mesacarlos/WebConsole">GitHub</a></span>
269269
</div>
270270
</footer>
271271

phrases_ja.properties

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# WebConsole.java
2+
boot-error = WebSocket Serverの起動時にエラーが発生しました。
3+
4+
# WSServer.java
5+
connection-resumed-message = 接続されています。既にログイン、接続している方を切断してもう一度接続してみてください。
6+
connection-resumed-console = [WebConsole] から接続し、セッションを再開しました。 {0}
7+
connection-login-message = 接続開始、ログイン待ち...
8+
connection-login-console = [WebConsole] 接続され、ログインを待っています... {0}
9+
unknown-command-message = 不明、または存在しないコマンドです
10+
unknown-command-console = [WebConsole] シグナル "{0}" は有効ではないので処理されませんでした。プラグインやウェブインターフェイスは最新のものを使用していますか?
11+
forbidden-message = Forbidden
12+
forbidden-console = [WebConsole] {0} は、ログインしていない状態で "{1}" を実行しようとしました!
13+
closed-connection = [WebConsole] 接続を閉じて、からログアウトしました。 {0}
14+
error-on-connection = [WebConsole] 接続時にエラーが発生しました。 {0}: {1}
15+
started-websocket = [WebConsole] WebSocketサーバが正常に起動しました。
16+
error-disconnected-client = [WebConsole] 切断された WebSocket クライアントにメッセージを送信しようとしました。
17+
18+
# CpuUsageCommand.java
19+
cpu-usage-message = Usage is {0}%
20+
21+
# ExecCommand.java
22+
no-send-permission-console = [WebConsole] {0} は勝手に {1} を実行しようとしましたが権限がないためはじかれました。
23+
cmd-executed-console = [WebConsole] {0} 実行 "{1}".
24+
25+
# LogInCommand.java
26+
login-sucessful-message = ログイン
27+
login-sucessful-console = [WebConsole] {0} ログインに成功しました。
28+
login-failed-message = パスワードが正しくありません、もう一度お試しください。
29+
login-failed-console = [WebConsole] ログイン時にパスワードが正しくないです。 {0}
30+
31+
# PlayersCommand.java
32+
players-message = 接続数 | {0} ,最大接続数 | {1}
33+
34+
# RamUsageCommand.java
35+
ram-usage-message = {0} 空き, {1} 使用済み, {2} 最大メモリ
36+
37+
# WebConsoleCommand.java
38+
webconsole-version = WebConsoleのバージョン {0}.
39+
webconsole-no-connections = 現在、WebConsoleのログイン接続はありません。
40+
webconsole-active-connections = WebConsoleに接続しました。:
41+
42+
# ReadLogFileCommand.java
43+
log-read-error = latest.logファイルの読み込みエラーが発生しました
44+
45+
# User.java
46+
user-tostring = User {0} from {1} as {2}

plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: WebConsole
22
main: es.mesacarlos.webconsole.WebConsole
33
api-version: 1.13
4-
version: 2.2
4+
version: 2.3
55
description: WebSocket-based web console
66
author: Carlos Mesa
77
commands:

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>WebConsole</groupId>
66
<artifactId>WebConsole</artifactId>
7-
<version>2.2</version>
7+
<version>2.3</version>
88
<build>
99
<sourceDirectory>src</sourceDirectory>
1010
<plugins>

0 commit comments

Comments
 (0)