-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlang_g.lua
49 lines (46 loc) · 1.48 KB
/
lang_g.lua
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
--[[
@Author: THEGizmo & XeN
@Copyright: 2023-2024
@Description: Languages
All rights reserved
]]--
languages = {
en_US = {
["none"] = "Unknown",
["selected"] = "Selected texture:",
["next"] = "Next page",
["previous"] = "Previous page",
["texture"] = "Number of textures:",
["chatInfo"] = "To add a texture to an object, first select it from the texture editor!",
["stat1"] = "Type",
["stat2"] = "ID Model",
["stat3"] = "Name",
["stat4"] = "Resource",
["stat5"] = "Texture A",
["stat6"] = "Texture B",
["stat7"] = "Texture C",
["stat8"] = "Texture D",
["stat9"] = "unknown",
["statOFF"] = "Statistics disabled",
["statON"] = "Statistics enabled",
},
pl_PL = {
["none"] = "Nieznane",
["selected"] = "Zaznaczona tekstura:",
["next"] = "Następna strona",
["previous"] = "Poprzednia strona",
["texture"] = "Ilość tekstur:",
["chatInfo"] = "By dodać teksturę na obiekt, najpierw wybierz ją z edytora tekstur!",
["stat1"] = "Rodzaj",
["stat2"] = "ID Modelu",
["stat3"] = "Nazwa",
["stat4"] = "Zasób",
["stat5"] = "Tekstura A",
["stat6"] = "Tekstura B",
["stat7"] = "Tekstura C",
["stat8"] = "Tekstura D",
["stat9"] = "nieznane",
["statOFF"] = "Wyłączono statystyki",
["statON"] = "Włączono statystyki",
},
}