update
This commit is contained in:
parent
c33cc778f1
commit
e68018672c
33 changed files with 191 additions and 7 deletions
|
@ -152,6 +152,10 @@ echo "Removing bugged cloud_car"
|
|||
sed -i 's/loadfile(minetest.get_modpath(minetest.get_current_modname()) .. "\/car.lua")(table.copy(car_def))//' cloud_items/init.lua
|
||||
rm -f cloud_items/car.lua
|
||||
|
||||
echo "Installing minetest_mm mod for some fixes"
|
||||
mkdir minetest_mm
|
||||
cp ../minetest_mm.lua minetest_mm/init.lua
|
||||
|
||||
echo "Updating skins-db"
|
||||
cd skinsdb/updater
|
||||
python3 update_skins.py
|
||||
|
|
|
@ -317,3 +317,4 @@ load_mod_mesecons_switch = true
|
|||
load_mod_mesecons_stickyblocks = true
|
||||
load_mod_mesecons_noteblock = true
|
||||
load_mod_mesecons_doors = true
|
||||
load_mod_minetest_mm = true
|
||||
|
|
4
mods/mesecons/mesecons/locale/mesecons.ru.tr
Normal file
4
mods/mesecons/mesecons/locale/mesecons.ru.tr
Normal file
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons
|
||||
|
||||
### oldwires.lua ###
|
||||
Mesecons=Мезеконы
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_blinkyplant
|
||||
|
||||
### init.lua ###
|
||||
Blinky Plant=Мигающий цветок
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_button
|
||||
|
||||
### init.lua ###
|
||||
Button=Кнопка
|
|
@ -0,0 +1,7 @@
|
|||
# textdomain: mesecons_commandblock
|
||||
|
||||
### init.lua ###
|
||||
Say <text> as the server=Сказать <текст> от имени сервера
|
||||
Say <text> to <name> privately=Сказать <текст> игроку <имя> в личном сообщении
|
||||
Set health of <name> to <value> hitpoints=Установить здоровье игрока <имя> на <значение> хитпоинтов
|
||||
Command Block=Комадный блок
|
|
@ -0,0 +1,5 @@
|
|||
# textdomain: mesecons_delayer
|
||||
|
||||
### init.lua ###
|
||||
Delayer=Элемент задержки
|
||||
You hacker you=Ти хакер, ти
|
|
@ -0,0 +1,5 @@
|
|||
# textdomain: mesecons_detector
|
||||
|
||||
### init.lua ###
|
||||
Player Detector=Детектор игрока
|
||||
Node Detector=Детектор блока
|
|
@ -0,0 +1,20 @@
|
|||
# textdomain: mesecons_extrawires
|
||||
|
||||
### corner.lua ###
|
||||
Insulated Mesecon Corner=Изолированный мезекон (угол)
|
||||
|
||||
### crossover.lua ###
|
||||
Insulated Mesecon Crossover=Изолированный мезекон (перекрестие)
|
||||
You hacker you!=Ти хакер ти!
|
||||
|
||||
### doublecorner.lua ###
|
||||
Insulated Mesecon Double Corner=Изолированный мезекон (двойной угол)
|
||||
|
||||
### mesewire.lua ###
|
||||
Mese Wire=Мезе-провод
|
||||
|
||||
### tjunction.lua ###
|
||||
Insulated Mesecon T-junction=Изолированный мезекон (Т-соединение)
|
||||
|
||||
### vertical.lua ###
|
||||
Vertical Mesecon=Вертикальный мезекон
|
7
mods/mesecons/mesecons_fpga/locale/mesecons_fpga.ru.tr
Normal file
7
mods/mesecons/mesecons_fpga/locale/mesecons_fpga.ru.tr
Normal file
|
@ -0,0 +1,7 @@
|
|||
# textdomain: mesecons_fpga
|
||||
|
||||
### init.lua ###
|
||||
FPGA=ПЛИС
|
||||
|
||||
### tool.lua ###
|
||||
FPGA Programmer=ПЛИС-программер
|
|
@ -1,3 +1,5 @@
|
|||
local S = minetest.get_translator(minetest.get_current_modname())
|
||||
|
||||
local selection_box = {
|
||||
type = "fixed",
|
||||
fixed = { -8/16, -8/16, -8/16, 8/16, -6/16, 8/16 }
|
||||
|
@ -146,38 +148,38 @@ end
|
|||
|
||||
register_gate("diode", 1, function (input) return input end,
|
||||
{{"mesecons:mesecon", "mesecons_torch:mesecon_torch_on", "mesecons_torch:mesecon_torch_on"}},
|
||||
"Diode")
|
||||
S("Diode"))
|
||||
|
||||
register_gate("not", 1, function (input) return not input end,
|
||||
{{"mesecons:mesecon", "mesecons_torch:mesecon_torch_on", "mesecons:mesecon"}},
|
||||
"NOT Gate")
|
||||
S("NOT Gate"))
|
||||
|
||||
register_gate("and", 2, function (val1, val2) return val1 and val2 end,
|
||||
{{"mesecons:mesecon", "", ""},
|
||||
{"", "mesecons_materials:silicon", "mesecons:mesecon"},
|
||||
{"mesecons:mesecon", "", ""}},
|
||||
"AND Gate")
|
||||
S("AND Gate"))
|
||||
|
||||
register_gate("nand", 2, function (val1, val2) return not (val1 and val2) end,
|
||||
{{"mesecons:mesecon", "", ""},
|
||||
{"", "mesecons_materials:silicon", "mesecons_torch:mesecon_torch_on"},
|
||||
{"mesecons:mesecon", "", ""}},
|
||||
"NAND Gate")
|
||||
S("NAND Gate"))
|
||||
|
||||
register_gate("xor", 2, function (val1, val2) return (val1 or val2) and not (val1 and val2) end,
|
||||
{{"mesecons:mesecon", "", ""},
|
||||
{"", "mesecons_materials:silicon", "mesecons_materials:silicon"},
|
||||
{"mesecons:mesecon", "", ""}},
|
||||
"XOR Gate")
|
||||
S("XOR Gate"))
|
||||
|
||||
register_gate("nor", 2, function (val1, val2) return not (val1 or val2) end,
|
||||
{{"mesecons:mesecon", "", ""},
|
||||
{"", "mesecons:mesecon", "mesecons_torch:mesecon_torch_on"},
|
||||
{"mesecons:mesecon", "", ""}},
|
||||
"NOR Gate")
|
||||
S("NOR Gate"))
|
||||
|
||||
register_gate("or", 2, function (val1, val2) return (val1 or val2) end,
|
||||
{{"mesecons:mesecon", "", ""},
|
||||
{"", "mesecons:mesecon", "mesecons:mesecon"},
|
||||
{"mesecons:mesecon", "", ""}},
|
||||
"OR Gate")
|
||||
S("OR Gate"))
|
||||
|
|
8
mods/mesecons/mesecons_gates/locale/mesecons_gates.ru.tr
Normal file
8
mods/mesecons/mesecons_gates/locale/mesecons_gates.ru.tr
Normal file
|
@ -0,0 +1,8 @@
|
|||
# textdomain: mesecons_gates
|
||||
Diode=Диод
|
||||
NOT Gate=НЕ-шлюз
|
||||
AND Gate=И-шлюз
|
||||
NAND Gate=NAND-шлюз
|
||||
XOR Gate=XOR-шлюз
|
||||
NOR Gate=NOR-шлюз
|
||||
OR Gate=ИЛИ-шлюз
|
8
mods/mesecons/mesecons_gates/locale/template.txt
Normal file
8
mods/mesecons/mesecons_gates/locale/template.txt
Normal file
|
@ -0,0 +1,8 @@
|
|||
# textdomain: mesecons_gates
|
||||
Diode=
|
||||
NOT Gate=
|
||||
AND Gate=
|
||||
NAND Gate=
|
||||
XOR Gate=
|
||||
NOR Gate=
|
||||
OR Gate=
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_hydroturbine
|
||||
|
||||
### init.lua ###
|
||||
Water Turbine=Гидротурбина
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_insulated
|
||||
|
||||
### init.lua ###
|
||||
Straight Insulated Mesecon=Прямой изолированный мезекон
|
4
mods/mesecons/mesecons_lamp/locale/mesecons_lamp.ru.tr
Normal file
4
mods/mesecons/mesecons_lamp/locale/mesecons_lamp.ru.tr
Normal file
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_lamp
|
||||
|
||||
### init.lua ###
|
||||
Mesecon Lamp=Мезеконовая лампа
|
|
@ -0,0 +1,15 @@
|
|||
# textdomain: mesecons_lightstone
|
||||
|
||||
### init.lua ###
|
||||
Red Lightstone=Красный светящийся камень
|
||||
Green Lightstone=Зеленый светящийся камень
|
||||
Blue Lightstone=Синий светящийся камень
|
||||
Grey Lightstone=Серый светящийся камень
|
||||
Dark Grey Lightstone=Темно-серый светящийся камень
|
||||
Yellow Lightstone=Желтый светящийся камень
|
||||
Orange Lightstone=Оранжевый светящийся камень
|
||||
White Lightstone=Белый светящийся камень
|
||||
Pink Lightstone=Розовый светящийся камень
|
||||
Magenta Lightstone=Пурпурный светящийся камень
|
||||
Cyan Lightstone=Голубой светящийся камень
|
||||
Violet Lightstone=Фиолетовый светящийся камень
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_luacontroller
|
||||
|
||||
### init.lua ###
|
||||
Luacontroller=Lua-контроллер
|
|
@ -0,0 +1,6 @@
|
|||
# textdomain: mesecons_materials
|
||||
|
||||
### init.lua ###
|
||||
Glue=Клей
|
||||
Fiber=Волокно
|
||||
Silicon=Кремний
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_microcontroller
|
||||
|
||||
### init.lua ###
|
||||
Microcontroller=Микроконтроллер
|
|
@ -0,0 +1,7 @@
|
|||
# textdomain: mesecons_movestones
|
||||
|
||||
### init.lua ###
|
||||
Movestone=Ходовой камень
|
||||
Sticky Movestone=Липкий ходовой камень
|
||||
Vertical Movestone=Вертикальный ходовой камень
|
||||
Vertical Sticky Movestone=Вертикальный липкий ходовой камень
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_noteblock
|
||||
|
||||
### init.lua ###
|
||||
Noteblock=Нотный блок
|
|
@ -0,0 +1,9 @@
|
|||
# textdomain: mesecons_pistons
|
||||
|
||||
### init.lua ###
|
||||
Piston=Поршень
|
||||
Activated Piston Base=Основание активированного поршня
|
||||
Piston Pusher=Толкающая часть поршня
|
||||
Sticky Piston=Липкий поршень
|
||||
Activated Sticky Piston Base=Основание активированного липкого поршня
|
||||
Sticky Piston Pusher=Толкающая часть липкого поршня
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_powerplant
|
||||
|
||||
### init.lua ###
|
||||
Power Plant=Энергоцветок
|
|
@ -0,0 +1,5 @@
|
|||
# textdomain: mesecons_pressureplates
|
||||
|
||||
### init.lua ###
|
||||
Wooden Pressure Plate=Деревянная нажимная пластина
|
||||
Stone Pressure Plate=Каменная нажимная пластина
|
|
@ -0,0 +1,5 @@
|
|||
# textdomain: mesecons_random
|
||||
|
||||
### init.lua ###
|
||||
Removestone=Исчезающий камень
|
||||
Ghoststone=Призрачный камень
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_solarpanel
|
||||
|
||||
### init.lua ###
|
||||
Solar Panel=Солнечная панель
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_stickyblocks
|
||||
|
||||
### init.lua ###
|
||||
Sticky Block=Липкий блок
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_switch
|
||||
|
||||
### init.lua ###
|
||||
Switch=Выключатель
|
4
mods/mesecons/mesecons_torch/locale/mesecons_torch.ru.tr
Normal file
4
mods/mesecons/mesecons_torch/locale/mesecons_torch.ru.tr
Normal file
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_torch
|
||||
|
||||
### init.lua ###
|
||||
Mesecon Torch=Мезе-факел
|
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_walllever
|
||||
|
||||
### init.lua ###
|
||||
Lever=Рычаг
|
4
mods/mesecons/mesecons_wires/locale/mesecons_wires.ru.tr
Normal file
4
mods/mesecons/mesecons_wires/locale/mesecons_wires.ru.tr
Normal file
|
@ -0,0 +1,4 @@
|
|||
# textdomain: mesecons_wires
|
||||
|
||||
### init.lua ###
|
||||
Mesecon=Мезекон
|
6
mods/minetest_mm/init.lua
Normal file
6
mods/minetest_mm/init.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
minetest.register_alias("stairs:stair_black", "bakedclay:stair_baked_clay_black")
|
||||
minetest.log("action", "[minetest_mm] Alias stairs:stair_black -> bakedclay:stair_baked_clay_black registered.")
|
||||
|
||||
minetest.register_alias("stairs:slab_apple_tree_planks", "moretrees:slab_apple_tree_planks")
|
||||
minetest.log("action", "[minetest_mm] Alias stairs:slab_apple_tree_planks -> moretrees:slab_apple_tree_planks registered.")
|
||||
|
Loading…
Reference in a new issue