mirror of
https://github.com/minetest-mods/mesecons.git
synced 2024-12-27 10:40:21 +01:00
Russian translation, gates localization (#692)
This commit is contained in:
parent
5883a0ce65
commit
8051129f82
4
mesecons/locale/mesecons.ru.tr
Normal file
4
mesecons/locale/mesecons.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons
|
||||
|
||||
### oldwires.lua ###
|
||||
Mesecons=Мезеконы
|
4
mesecons_blinkyplant/locale/mesecons_blinkyplant.ru.tr
Normal file
4
mesecons_blinkyplant/locale/mesecons_blinkyplant.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_blinkyplant
|
||||
|
||||
### init.lua ###
|
||||
Blinky Plant=Мигающий цветок
|
4
mesecons_button/locale/mesecons_button.ru.tr
Normal file
4
mesecons_button/locale/mesecons_button.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_button
|
||||
|
||||
### init.lua ###
|
||||
Button=Кнопка
|
7
mesecons_commandblock/locale/mesecons_commandblock.ru.tr
Normal file
7
mesecons_commandblock/locale/mesecons_commandblock.ru.tr
Normal file
@ -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=Комадный блок
|
5
mesecons_delayer/locale/mesecons_delayer.ru.tr
Normal file
5
mesecons_delayer/locale/mesecons_delayer.ru.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: mesecons_delayer
|
||||
|
||||
### init.lua ###
|
||||
Delayer=Элемент задержки
|
||||
You hacker you=Ти хакер, ти
|
5
mesecons_detector/locale/mesecons_detector.ru.tr
Normal file
5
mesecons_detector/locale/mesecons_detector.ru.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: mesecons_detector
|
||||
|
||||
### init.lua ###
|
||||
Player Detector=Детектор игрока
|
||||
Node Detector=Детектор блока
|
20
mesecons_extrawires/locale/mesecons_extrawires.ru.tr
Normal file
20
mesecons_extrawires/locale/mesecons_extrawires.ru.tr
Normal file
@ -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
mesecons_fpga/locale/mesecons_fpga.ru.tr
Normal file
7
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
mesecons_gates/locale/mesecons_gates.ru.tr
Normal file
8
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
mesecons_gates/locale/template.txt
Normal file
8
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=
|
4
mesecons_hydroturbine/locale/mesecons_hydroturbine.ru.tr
Normal file
4
mesecons_hydroturbine/locale/mesecons_hydroturbine.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_hydroturbine
|
||||
|
||||
### init.lua ###
|
||||
Water Turbine=Гидротурбина
|
4
mesecons_insulated/locale/mesecons_insulated.ru.tr
Normal file
4
mesecons_insulated/locale/mesecons_insulated.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_insulated
|
||||
|
||||
### init.lua ###
|
||||
Straight Insulated Mesecon=Прямой изолированный мезекон
|
4
mesecons_lamp/locale/mesecons_lamp.ru.tr
Normal file
4
mesecons_lamp/locale/mesecons_lamp.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_lamp
|
||||
|
||||
### init.lua ###
|
||||
Mesecon Lamp=Мезеконовая лампа
|
15
mesecons_lightstone/locale/mesecons_lightstone.ru.tr
Normal file
15
mesecons_lightstone/locale/mesecons_lightstone.ru.tr
Normal file
@ -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-контроллер
|
6
mesecons_materials/locale/mesecons_materials.ru.tr
Normal file
6
mesecons_materials/locale/mesecons_materials.ru.tr
Normal file
@ -0,0 +1,6 @@
|
||||
# textdomain: mesecons_materials
|
||||
|
||||
### init.lua ###
|
||||
Glue=Клей
|
||||
Fiber=Волокно
|
||||
Silicon=Кремний
|
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_microcontroller
|
||||
|
||||
### init.lua ###
|
||||
Microcontroller=Микроконтроллер
|
7
mesecons_movestones/locale/mesecons_movestones.ru.tr
Normal file
7
mesecons_movestones/locale/mesecons_movestones.ru.tr
Normal file
@ -0,0 +1,7 @@
|
||||
# textdomain: mesecons_movestones
|
||||
|
||||
### init.lua ###
|
||||
Movestone=Ходовой камень
|
||||
Sticky Movestone=Липкий ходовой камень
|
||||
Vertical Movestone=Вертикальный ходовой камень
|
||||
Vertical Sticky Movestone=Вертикальный липкий ходовой камень
|
4
mesecons_noteblock/locale/mesecons_noteblock.ru.tr
Normal file
4
mesecons_noteblock/locale/mesecons_noteblock.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_noteblock
|
||||
|
||||
### init.lua ###
|
||||
Noteblock=Нотный блок
|
9
mesecons_pistons/locale/mesecons_pistons.ru.tr
Normal file
9
mesecons_pistons/locale/mesecons_pistons.ru.tr
Normal file
@ -0,0 +1,9 @@
|
||||
# textdomain: mesecons_pistons
|
||||
|
||||
### init.lua ###
|
||||
Piston=Поршень
|
||||
Activated Piston Base=Основание активированного поршня
|
||||
Piston Pusher=Толкающая часть поршня
|
||||
Sticky Piston=Липкий поршень
|
||||
Activated Sticky Piston Base=Основание активированного липкого поршня
|
||||
Sticky Piston Pusher=Толкающая часть липкого поршня
|
4
mesecons_powerplant/locale/mesecons_powerplant.ru.tr
Normal file
4
mesecons_powerplant/locale/mesecons_powerplant.ru.tr
Normal file
@ -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=Каменная нажимная пластина
|
5
mesecons_random/locale/mesecons_random.ru.tr
Normal file
5
mesecons_random/locale/mesecons_random.ru.tr
Normal file
@ -0,0 +1,5 @@
|
||||
# textdomain: mesecons_random
|
||||
|
||||
### init.lua ###
|
||||
Removestone=Исчезающий камень
|
||||
Ghoststone=Призрачный камень
|
4
mesecons_solarpanel/locale/mesecons_solarpanel.ru.tr
Normal file
4
mesecons_solarpanel/locale/mesecons_solarpanel.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_solarpanel
|
||||
|
||||
### init.lua ###
|
||||
Solar Panel=Солнечная панель
|
4
mesecons_stickyblocks/locale/mesecons_stickyblocks.ru.tr
Normal file
4
mesecons_stickyblocks/locale/mesecons_stickyblocks.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_stickyblocks
|
||||
|
||||
### init.lua ###
|
||||
Sticky Block=Липкий блок
|
4
mesecons_switch/locale/mesecons_switch.ru.tr
Normal file
4
mesecons_switch/locale/mesecons_switch.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_switch
|
||||
|
||||
### init.lua ###
|
||||
Switch=Выключатель
|
4
mesecons_torch/locale/mesecons_torch.ru.tr
Normal file
4
mesecons_torch/locale/mesecons_torch.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_torch
|
||||
|
||||
### init.lua ###
|
||||
Mesecon Torch=Мезе-факел
|
4
mesecons_walllever/locale/mesecons_walllever.ru.tr
Normal file
4
mesecons_walllever/locale/mesecons_walllever.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_walllever
|
||||
|
||||
### init.lua ###
|
||||
Lever=Рычаг
|
4
mesecons_wires/locale/mesecons_wires.ru.tr
Normal file
4
mesecons_wires/locale/mesecons_wires.ru.tr
Normal file
@ -0,0 +1,4 @@
|
||||
# textdomain: mesecons_wires
|
||||
|
||||
### init.lua ###
|
||||
Mesecon=Мезекон
|
Loading…
Reference in New Issue
Block a user