From a5eef1c5de77fa7770877802e66c3e1c53f9a0da Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Wed, 24 Apr 2019 18:59:36 -0400 Subject: update castles, areas, homedecor, plantlife, gloopblocks, hotbar, inspector, maptools, mesecons, moreblocks, moreores, technic, teleport_request, and worldedit switched to caverealms_lite (with minor fixes by me) switched to CWz's fork of player_textures The homedecor update brings in the big split, and will require you to re-enable all modpack components in order to avoid loss of content. --- technic/locale/pl.txt | 69 +++++++++++++++++++------------------- technic/machines/HV/forcefield.lua | 6 ++++ technic/machines/HV/quarry.lua | 6 ++++ 3 files changed, 46 insertions(+), 35 deletions(-) (limited to 'technic') diff --git a/technic/locale/pl.txt b/technic/locale/pl.txt index 7fe29fb..663f807 100644 --- a/technic/locale/pl.txt +++ b/technic/locale/pl.txt @@ -37,17 +37,17 @@ Machine cannot be removed because it is not empty = Nie można usunąć maszyny, Inventory move disallowed due to protection = Przenoszenie rzeczy z ekwipunku niemożliwe z powodu ochrony # $1: Machine name (Includes tier) @1 Active (@2 EU) = @1 Aktywny (@2 EU) -%s Active = %s Aktywny -%s Disabled = %s Wyłączony -%s Enabled = %s Włączony -%s Idle = %s Bezczynny -%s Improperly Placed = %s Ustawiony nieprawidłowo -%s is empty = %s jest pusty +%s Active = %s Aktywny/a +%s Disabled = %s Wyłączony/a +%s Enabled = %s Włączony/a +%s Idle = %s Bezczynny/a +%s Improperly Placed = %s Ustawiony/a nieprawidłowo +%s is empty = %s jest pusty/a %s Unpowered = %s brak zasilania %s Out Of Fuel = %s brak paliwa %s Has Bad Cabling = %s Źle podłączono kable %s (Slave) = -%s Has No Network = %s Nie podłączony do sieci +%s Has No Network = %s Nie podłączony/a do sieci %s Finished = %s Ukończony Enable/Disable = Włącz/Wyłącz Range = Zasięg @@ -60,17 +60,17 @@ Stackwise = Cały stack Ignoring Mesecon Signal = Ignoruj sygnał Mesecon Controlled by Mesecon Signal = Sterowany sygnałem Mesecon Owner: = Właściciel: -Unlocked = Odblokowany -Locked = Zablokowany +Unlocked = Odblokowany/a +Locked = Zablokowany/a Radius: = Promień: -Enabled = Włączony -Disabled = Wyłączony +Enabled = Włączony/a +Disabled = Wyłączony/a ## Machine names # $1: Tier %s Alloy Furnace = %s Piec stopowy %s Battery Box = %s Skrzynka baterii -%s Cable = %s Kabel +%s Cable = %s Przewód %s Centrifuge = %s Centryfuga %s Compressor = %s Kompresor %s Extractor = %s Ekstraktor @@ -118,7 +118,7 @@ Production at %d%% = Produkowanie w %d%% Choose Milling Program: = Wybierz program mielenia: Slim Elements half / normal height: = Małe elementy połowa / normalna wysokość: Current track %s = -Stopped = Zatrzymany +Stopped = Zatrzymany/a Keeping %d/%d map blocks loaded = Ciągle ładuję %d/%d bloki mapy Digging not started = Nie rozpoczęto kopania Digging finished = Kopanie skończone @@ -126,29 +126,28 @@ Digging %d m above machine = Kopię %d m nad maszyną Digging %d m below machine = Kopię %d m pod maszyną @1 (@2 @3 -> @4 @5) = @1 (@2 @3 -> @4 @5) - ## Grinder Recipes # $1: Name %s Dust = %s Pył -Akalin = Akalin -Alatro = Alatro -Arol = Arol -Brass = Mosiądz -Bronze = Brąz -Carbon Steel = Stal węglowa -Cast Iron = Żeliwo -Chromium = Chrom -Coal = Węgiel -Copper = Miedź -Gold = Złoto -Mithril = Mithril -Silver = Srebro -Stainless Steel = Stal nierdzewna -Talinite = Talinit -Tin = Cyna -Wrought Iron = Kute żelazo -Zinc = Cynk -%.1f%%-Fissile Uranium = %.1f%% Uran +Akalin = Akalinowy +Alatro = Alatrowy +Arol = Arolowy +Brass = Mosiądzu +Bronze = Brązu +Carbon Steel = Stali węglowej +Cast Iron = Żeliwa +Chromium = Chromu +Coal = Węglowy +Copper = Miedzi +Gold = Złoty +Mithril = Mithrilu +Silver = Srebrny +Stainless Steel = Stali nierdzewnej +Talinite = Talinitu +Tin = Cyny +Wrought Iron = Kutego żelaza +Zinc = Cynku +%.1f%%-Fissile Uranium = %.1f%% Uranu ## Tools RE Battery = Bateria ładowalna @@ -162,8 +161,8 @@ Flashlight = Latarka 3x3 nodes. = 3x3 bloki. Use while sneaking to change Mining Drill Mk%d modes. = Użyj podczas skradania, aby zmienić tryby wiertła górniczego Mk%d Mining Drill Mk%d Mode %d = Tryb wiertła górniczego Mk%d -Mining Drill Mk%d = Wiertła górniczego Mk%d -Mining Laser Mk%d = Laser górniczegy Mk%d +Mining Drill Mk%d = Wiertło górnicze Mk%d +Mining Laser Mk%d = Laser górniczy Mk%d Single node. = Pojedynczy blok. Sonic Screwdriver = Dźwiękowy śrubokręt Tree Tap = Nacinak drzewny diff --git a/technic/machines/HV/forcefield.lua b/technic/machines/HV/forcefield.lua index 7395284..29c023d 100644 --- a/technic/machines/HV/forcefield.lua +++ b/technic/machines/HV/forcefield.lua @@ -121,6 +121,12 @@ local function set_forcefield_formspec(meta) end local forcefield_receive_fields = function(pos, formname, fields, sender) + local player_name = sender:get_player_name() + if minetest.is_protected(pos, player_name) then + minetest.chat_send_player(player_name, "You are not allowed to edit this!") + minetest.record_protection_violation(pos, player_name) + return + end local meta = minetest.get_meta(pos) local range = nil if fields.range then diff --git a/technic/machines/HV/quarry.lua b/technic/machines/HV/quarry.lua index 1671c4e..9cf378f 100644 --- a/technic/machines/HV/quarry.lua +++ b/technic/machines/HV/quarry.lua @@ -60,6 +60,12 @@ local function set_quarry_demand(meta) end local function quarry_receive_fields(pos, formname, fields, sender) + local player_name = sender:get_player_name() + if minetest.is_protected(pos, player_name) then + minetest.chat_send_player(player_name, "You are not allowed to edit this!") + minetest.record_protection_violation(pos, player_name) + return + end local meta = minetest.get_meta(pos) if fields.size and string.find(fields.size, "^[0-9]+$") then local size = tonumber(fields.size) -- cgit v1.2.3