-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtexts.lua
More file actions
103 lines (102 loc) · 4.2 KB
/
texts.lua
File metadata and controls
103 lines (102 loc) · 4.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
-- Texts file for Minetest Discord Webhook mod
return {
en = {
startup = "Server started",
shutdown = "Server shut down",
join = "**@1** joined the game",
last_login = "**@1** joined the game. Last login: @2",
leave = "**@1** left the game",
welcome = "**@1** joined the game for the first time. Welcome!",
death = "**@1** died"
},
de = {
startup = "Server gestartet",
shutdown = "Server heruntergefahren",
join = "**@1** dem Spiel beigetreten",
last_login = "**@1** dem Spiel beigetreten. Letzter Login: @2",
leave = "**@1** hat das Spiel verlassen",
welcome = "**@1** ist zum ersten Mal dem Spiel beigetreten. Herzlich willkommen!",
death = "**@1** ist gestorben"
},
ru = {
startup = "Сервер запущен",
shutdown = "Сервер выключен",
join = "**@1** вошел в игру",
last_login = "**@1** вошел в игру. Последний вход: @2",
leave = "**@1** вышел из игры",
welcome = "**@1** впервые вошел в игру. Добро пожаловать!",
death = "**@1** погиб"
},
nl = {
startup = "Server is opgestart",
shutdown = "Server sluit af",
join = "**@1** joint het spel",
last_login = "**@1** joint het spel. Laatste login: @2",
leave = "**@1** verliet het spel",
welcome = "**@1** heeft voor het eerst het spel betreden. Welkom!",
death = "**@1** is overleden"
},
fr = {
startup = "Serveur démarré",
shutdown = "Arrêt du serveur",
join = "**@1** s'est connecté",
last_login = "**@1** s'est connecté. Dernière connexion : @2",
leave = "**@1** est parti",
welcome = "**@1** s'est connecté au jeu pour la première fois. Bienvenue!",
death = "**@1** est mort"
},
es = {
startup = "Servidor iniciado",
shutdown = "Cierre del servidor",
join = "**@1** se unió al juego",
last_login = "**@1** se unió al juego. Último inicio de sesión: @2",
leave = "**@1** abandonó el juego",
welcome = "**@1** se unió al juego por primera vez. ¡Bienvenido!",
death = "**@1** murió"
},
it = {
startup = "Server avviato",
shutdown = "Server chiuso",
join = "**@1** si è unito al gioco",
last_login = "**@1** si è unito al gioco. Ultimo accesso: @2",
leave = "**@1** ha lasciato il gioco",
welcome = "**@1** si è unito al gioco per la prima volta. Benvenuto!",
death = "**@1** è morto"
},
ja = {
startup = "サーバーが開始されました",
shutdown = "サーバーがシャットダウンしました",
join = "**@1** がゲームに参加しました",
last_login = "**@1** がゲームに参加しました。最終ログイン: @2",
leave = "**@1** がゲームを離れました",
welcome = "**@1** が初めてゲームに参加しました。ようこそ!",
death = "**@1** が死亡しました"
},
zh = {
startup = "服务器已启动",
shutdown = "服务器已关闭",
join = "**@1** 加入了游戏",
last_login = "**@1** 加入了游戏。上次登录:@2",
leave = "**@1** 离开了游戏",
welcome = "**@1** 首次加入游戏。欢迎!",
death = "**@1** 已故"
},
ms = {
startup = "Server mula",
shutdown = "Server ditutup",
join = "**@1** menyertai permainan",
last_login = "**@1** menyertai permainan. Login terakhir: @2",
leave = "**@1** meninggalkan permainan",
welcome = "**@1** menyertai permainan untuk kali pertama. Selamat datang!",
death = "**@1** mati"
},
id = {
startup = "Server dimulai",
shutdown = "Server dimatikan",
join = "**@1** bergabung dalam permainan",
last_login = "**@1** bergabung dalam permainan. Login terakhir: @2",
leave = "**@1** meninggalkan permainan",
welcome = "**@1** bergabung dalam permainan untuk pertama kalinya. Selamat datang!",
death = "**@1** meninggal"
}
}