This commit is contained in:
Louis Royer 2021-03-10 01:09:35 +00:00 committed by GitHub
commit 6b644e91d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
202 changed files with 5306 additions and 2706 deletions

View File

@ -11,7 +11,7 @@ read_globals = {
string = {fields = {"split", "trim"}},
table = {fields = {"copy", "getn"}},
"intllib", "VoxelArea",
"VoxelArea",
"default", "stairsplus",
"PseudoRandom", "ItemStack",
@ -28,6 +28,8 @@ read_globals = {
"protector", "isprotect",
"homedecor_expect_infinite_stacks",
"toolranks",
}
files["concrete/init.lua"].ignore = { "steel_ingot" }

View File

@ -1,4 +0,0 @@
default
basic_materials
intllib?
moreblocks?

View File

@ -4,8 +4,8 @@
local technic = rawget(_G, "technic") or {}
technic.concrete_posts = {}
-- Boilerplate to support localized strings if intllib mod is installed.
local S = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end
-- Translation support
local S = minetest.get_translator("concrete")
for i = 0, 31 do
minetest.register_alias("technic:concrete_post"..i,
@ -63,6 +63,7 @@ minetest.register_node(":technic:blast_resistant_concrete", {
if minetest.get_modpath("moreblocks") then
stairsplus:register_all("technic","blast_resistant_concrete","technic:blast_resistant_concrete",{
-- TODO: translation
description = "Blast-resistant Concrete",
tiles = {"technic_blast_resistant_concrete_block.png",},
groups = {cracky=1, level=3, concrete=1},

View File

@ -0,0 +1,12 @@
# textdomain: concrete
# German Translation for technic_concrete
# Deutsche Übersetzung von technic_concrete
# by Xanthin
### init.lua ###
Blast-resistant Concrete Block=Explosionsbestaendiger Betonblock
Concrete Post Platform=Betonpfostenplattform
Concrete Post=Betonpfosten

View File

@ -0,0 +1,10 @@
# textdomain: concrete
# traducido por Carlos Barraza
### init.lua ###
Blast-resistant Concrete Block=Bloque de concreto resistente a explosiones
Concrete Post Platform=Plataforma de concreto
Concrete Post=Postes de concreto

View File

@ -0,0 +1,9 @@
# textdomain: concrete
### init.lua ###
Blast-resistant Concrete Block=Bloc de béton anti explosions
Concrete Post Platform=Plateforme en béton
Concrete Post=Pilier en béton

View File

@ -0,0 +1,12 @@
# textdomain: concrete
# Polish Translation for technic_concrete
# Polskie tłumaczenie technic_concrete
# by mat9117
### init.lua ###
Blast-resistant Concrete Block=Przeciwwybuchowy blok betonu
Concrete Post Platform=Betonowa platforma
Concrete Post=Betonowy słup

View File

@ -0,0 +1,12 @@
# textdomain: concrete
# Braziliam portuguese translation for concrete
# Tradução portuguesa brasileira para concrete
# By Sires
### init.lua ###
Blast-resistant Concrete Block=Bloco de Concreto resistente-a-explosões
Concrete Post Platform=Plataforma para Poste de Concreto
Concrete Post=Poste de Concreto

View File

@ -0,0 +1,10 @@
# textdomain: concrete
# turkish translation by mahmutelmas06
### init.lua ###
Blast-resistant Concrete Block=Patlamaya dayanıklı beton blok
Concrete Post Platform=Beton direk platformu
Concrete Post=Beton direk

View File

@ -1,10 +0,0 @@
# German Translation for technic_concrete
# Deutsche Übersetzung von technic_concrete
# by Xanthin
Rebar = Bewehrungsstab
Concrete Block = Betonblock
Blast-resistant Concrete Block = Explosionsbestaendiger Betonblock
Concrete Post Platform = Betonpfostenplattform
Concrete Post = Betonpfosten

View File

@ -1,8 +0,0 @@
# technic_concrete traducido por Carlos Barraza
Rebar = Barra de refuerzo
Concrete Block = Bloque de concreto
Blast-resistant Concrete Block = Bloque de concreto resistente a explosiones
Concrete Post Platform = Plataforma de concreto
Concrete Post = Postes de concreto

View File

@ -1,7 +0,0 @@
# technic_concrete translation template
Rebar = Armature
Concrete Block = Bloc de béton
Blast-resistant Concrete Block = Bloc de béton anti explosions
Concrete Post Platform = Plateforme en béton
Concrete Post = Pilier en béton

View File

@ -1,10 +0,0 @@
# Polish Translation for technic_concrete
# Polskie tłumaczenie technic_concrete
# by mat9117
Rebar = Pręt zbrojeniowy
Concrete Block = Blok betonu
Blast-resistant Concrete Block = Przeciwwybuchowy blok betonu
Concrete Post Platform = Betonowa platforma
Concrete Post = Betonowy słup

View File

@ -1,10 +0,0 @@
# Braziliam portuguese translation for technic_concrete
# Tradução portuguesa brasileira para technic_concrete
# By Sires
Rebar = Vergalhão
Concrete Block = Bloco de Concreto
Blast-resistant Concrete Block = Bloco de Concreto resistente-a-explosões
Concrete Post Platform = Plataforma para Poste de Concreto
Concrete Post = Poste de Concreto

View File

@ -1,8 +1,9 @@
# technic_concrete translation template
# textdomain: concrete
Rebar =
Concrete Block =
Blast-resistant Concrete Block =
Concrete Post Platform =
Concrete Post =
### init.lua ###
Blast-resistant Concrete Block=
Concrete Post Platform=
Concrete Post=

View File

@ -1,7 +0,0 @@
# turkish translation by mahmutelmas06
Rebar = Beton demiri
Concrete Block = Beton blok
Blast-resistant Concrete Block = Patlamaya dayanıklı beton blok
Concrete Post Platform = Beton direk platformu
Concrete Post = Beton direk

View File

@ -1,3 +1,4 @@
name = concrete
depends = default
optional_depends = basic_materials, intllib, moreblocks
optional_depends = basic_materials, moreblocks
min_minetest_version = 5.0.0

View File

@ -1,9 +0,0 @@
default
technic_worldgen
basic_materials
concrete
unifieddyes?
intllib?
moreblocks?
steel?
streetsmod?

View File

@ -1,7 +1,7 @@
-- Minetest 0.4.6 mod: extranodes
-- namespace: technic
-- Boilerplate to support localized strings if intllib mod is installed.
local S = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end
-- Translation support
local S = minetest.get_translator("extranodes")
if minetest.get_modpath("moreblocks") then

View File

@ -1,9 +0,0 @@
# German Translation for technic_extranodes
# Deutsche Übersetzung von technic_extranodes
# by Xanthin
Marble = Marmor
Marble Bricks = Marmorziegel
Granite = Granit
Concrete = Beton

View File

@ -1,7 +0,0 @@
# technic_extranodes traducido por Carlos Barraza
Marble = Mármol
Marble Bricks = Ladrillos de mármol
Granite = Granito
Concrete = Concreto

View File

@ -0,0 +1,19 @@
# textdomain: extranodes
# German Translation for technic_extranodes
# Deutsche Übersetzung von technic_extranodes
# by Xanthin
### init.lua ###
Marble=Marmor
Marble Bricks=Marmorziegel
Granite=Granit
Concrete=Beton
Zinc Block=Zinkblock
Cast Iron Block=Gusseisenblock
Carbon Steel Block=Kohlenstoffstahlblock
Stainless Steel Block=Edelstahlblock
Insulator/cable clip=
Steel strut with insulator/cable clip=

View File

@ -0,0 +1,17 @@
# textdomain: extranodes
# traducido por Carlos Barraza
### init.lua ###
Marble=Mármol
Marble Bricks=Ladrillos de mármol
Granite=Granito
Concrete=Concreto
Zinc Block=Bloque de Zinc
Cast Iron Block=Bloque de Hierro Fundido
Carbon Steel Block=Bloque de Acero al Carbon
Stainless Steel Block=Bloque de Acero Inoxidable
Insulator/cable clip=
Steel strut with insulator/cable clip=

View File

@ -0,0 +1,16 @@
# textdomain: extranodes
### init.lua ###
Marble=Marbre
Marble Bricks=Briques en marbre
Granite=Granite
Concrete=Béton
Zinc Block=Bloc de zinc
Cast Iron Block=Bloc de fonte
Carbon Steel Block=Bloc dacier au carbone
Stainless Steel Block=Bloc dacier inoxydable
Insulator/cable clip=Isolateur/pince câble
Steel strut with insulator/cable clip=

View File

@ -0,0 +1,19 @@
# textdomain: extranodes
# Polish Translation for extranodes
# Polskie tłumaczenie extranodes
# by mat9117
### init.lua ###
Marble=Marmur
Marble Bricks=Marmurowe cegły
Granite=Granit
Concrete=Beton
Zinc Block=Blok cynku
Cast Iron Block=Blok żelaziwa
Carbon Steel Block=Blok stali węglowej
Stainless Steel Block=Blok stali nierdzewnej
Insulator/cable clip=
Steel strut with insulator/cable clip=

View File

@ -0,0 +1,19 @@
# textdomain: extranodes
# Braziliam portuguese translation for extranodes
# Tradução portuguesa brasileira para extranodes
# By Sires
### init.lua ###
Marble=Mármore
Marble Bricks=Tijolos de Mármore
Granite=Granito
Concrete=Concreto
Zinc Block=Bloco de Zinco
Cast Iron Block=Bloco de Ferro Fundido
Carbon Steel Block=Bloco de Aço Carbono
Stainless Steel Block=Bloco de Aço Inoxidável
Insulator/cable clip=
Steel strut with insulator/cable clip=

View File

@ -0,0 +1,17 @@
# textdomain: extranodes
# turkish translation by mahmutelmas06
### init.lua ###
Marble=Mermer
Marble Bricks=Mermer tuğla
Granite=Granit
Concrete=Beton
Zinc Block=Çinko blok
Cast Iron Block=Döküm demir blok
Carbon Steel Block=
Stainless Steel Block=Paslanmaz çelik blok
Insulator/cable clip=
Steel strut with insulator/cable clip=

View File

@ -1,7 +0,0 @@
# technic_extranodes translation template
Marble = Marbre
Marble Bricks = Briques en marbre
Granite = Granite
Concrete = Béton

View File

@ -1,9 +0,0 @@
# Polish Translation for technic_extranodes
# Polskie tłumaczenie technic_extranodes
# by mat9117
Marble = Marmur
Marble Bricks = Marmurowe cegły
Granite = Granit
Concrete = Beton

View File

@ -1,9 +0,0 @@
# Braziliam portuguese translation for technic_extranodes
# Tradução portuguesa brasileira para technic_extranodes
# By Sires
Marble = Mármore
Marble Bricks = Tijolos de Mármore
Granite = Granito
Concrete = Concreto

View File

@ -1,7 +1,17 @@
# technic_extranodes translation template
# textdomain: extranodes
Marble =
Marble Bricks =
Granite =
Concrete =
# extranodes translation template
### init.lua ###
Marble=
Marble Bricks=
Granite=
Concrete=
Zinc Block=
Cast Iron Block=
Carbon Steel Block=
Stainless Steel Block=
Insulator/cable clip=
Steel strut with insulator/cable clip=

View File

@ -1,6 +0,0 @@
# turkish translation by mahmutelmas06
Marble = Mermer
Marble Bricks = Mermer tuğla
Granite = Granit
Concrete = Beton

View File

@ -1,3 +1,4 @@
name = extranodes
depends = default, technic_worldgen, basic_materials, concrete
optional_depends = unifieddyes, intllib, moreblocks, steel, streetsmod
optional_depends = unifieddyes, moreblocks, steel, streetsmod
min_minetest_version = 5.0.0

View File

@ -1,14 +0,0 @@
default
pipeworks
technic_worldgen
basic_materials
bucket?
screwdriver?
mesecons?
mesecons_mvps?
digilines?
digiline_remote?
intllib?
unified_inventory?
vector_extras?
dye?

View File

@ -12,10 +12,9 @@ Tier are network types. List of pre-registered tiers:
Available functions:
* `technic.register_tier(tier, description)`
* `technic.register_tier(tier)`
* Registers a network type (tier)
* `tier`: string, short name (ex. `LV`)
* `description`: string, long name (ex. `Low Voltage`)
* See also `tiers`

View File

@ -12,14 +12,6 @@ local modpath = minetest.get_modpath("technic")
technic.modpath = modpath
-- Boilerplate to support intllib
if rawget(_G, "intllib") then
technic.getter = intllib.Getter()
else
technic.getter = function(s,a,...)if a==nil then return s end a={a,...}return s:gsub("(@?)@(%(?)(%d+)(%)?)",function(e,o,n,c)if e==""then return a[tonumber(n)]..(o==""and c or"")else return"@"..o..n..c end end) end
end
local S = technic.getter
-- Read configuration file
dofile(modpath.."/config.lua")
@ -48,6 +40,6 @@ dofile(modpath.."/tools/init.lua")
dofile(modpath.."/legacy.lua")
if minetest.settings:get_bool("log_mods") then
print(S("[Technic] Loaded in %f seconds"):format(os.clock() - load_start))
print(string.format("[Technic] Loaded in %f seconds", os.clock() - load_start))
end

View File

@ -1,6 +1,5 @@
local S = technic.getter
local S = minetest.get_translator("technic")
minetest.register_craftitem("technic:silicon_wafer", {
description = S("Silicon Wafer"),
inventory_image = "technic_silicon_wafer.png",
@ -146,7 +145,7 @@ for p = 0, 35 do
local block = "technic:uranium"..psuffix.."_block"
local ov = p == 7 and minetest.override_item or nil;
(ov or minetest.register_craftitem)(ingot, {
description = string.format(S("%.1f%%-Fissile Uranium Ingot"), p/10),
description = S("@1%-Fissile Uranium Ingot", string.format("%.1f", p/10)),
inventory_image = "technic_uranium_ingot.png",
groups = {uranium_ingot=1, not_in_creative_inventory=nici},
});
@ -183,7 +182,7 @@ for p = 0, 35 do
-- a 3.5%-fissile uranium block.
local radioactivity = math.floor(math.sqrt((1+5.55*p/35) * 18 / (1+5.55*7/35)) + 0.5);
(ov or minetest.register_node)(block, {
description = string.format(S("%.1f%%-Fissile Uranium Block"), p/10),
description = S("@1%-Fissile Uranium Block", string.format("%.1f", p/10)),
tiles = {"technic_uranium_block.png"},
is_ground_content = true,
groups = {uranium_block=1, not_in_creative_inventory=nici,

View File

@ -1,168 +0,0 @@
# German Translation for Technic Mod
# Deutsche Uebersetzung des Technic Mods
# by Xanthin
## Misc
[Technic] Loaded in %f seconds = [Technic] ist in %f Sekunden geladen
## Items
Silicon Wafer = Siliziumscheibe
Doped Silicon Wafer = Dotierte Siliziumscheibe
Enriched Uranium = Angereichertes Uran
Uranium Fuel = Uranbrennstoff
Diamond Drill Head = Diamantbohrkopf
Blue Energy Crystal = Blauer Energiekristall
Green Energy Crystal = Gruener Energiekristall
Red Energy Crystal = Roter Energiekristall
Fine Copper Wire = Feinkupferdraht
Copper Coil = Kupferspule
Electric Motor = Elektromotor
Low Voltage Transformer = Niederspannungstransformator
Medium Voltage Transformer = Mittelspannungstransformator
High Voltage Transformer = Hochspannungstransformator
Control Logic Unit = Steuer- und Regelungseinheit
Mixed Metal Ingot = Mischmetallbarren
Composite Plate = Verbundplatte
Copper Plate = Kupferplatte
Carbon Plate = Kohlefaserplatte
Graphite = Graphit
Carbon Cloth = Kohlefasergewebe
Raw Latex = Rohlatex
Rubber Fiber = Gummifaser
%.1f%%-Fissile Uranium Ingot =
%.1f%%-Fissile Uranium Block =
## Machine misc
Machine cannot be removed because it is not empty = Die Maschine kann nicht entfernt werden, weil sie noch nicht leer ist.
Inventory move disallowed due to protection = Das Inventar ist geschuetzt, Zugriff verweigert.
# $1: Machine name (Includes tier)
@1 Active (@2 EU) = @1 ist eingeschaltet (@2 EU)
%s Active = %s ist eingeschaltet
%s Disabled = %s ist ausgeschaltet
%s Enabled =
%s Idle = %s ist bereit
%s Improperly Placed = %s ist falsch plaziert
%s Unpowered = %s hat keine Stromversorgung
%s Out Of Fuel = %s hat keinen Brennstoff
%s Has Bad Cabling = %s ist falsch verkabelt
%s Has No Network = %s hat kein Netzwerk
%s Finished = %s ist fertig
Enable/Disable = Einschalten/Ausschalten
Range = Reichweite
Upgrade Slots = Verbesserungsfaecher
In: = Rein:
Out: = Raus:
Slot %d = Fach %d
Itemwise = Einzelstuecke
Stackwise = Ganzer Stapel
Owner: =
Unlocked =
Locked =
Radius: =
Enabled =
Disabled =
## Machine names
# $1: Tier
%s Alloy Furnace = %s Legierungsofen
%s Battery Box = %s Batteriebox
%s Cable = %s Kabel
%s Compressor = %s Kompressor
%s Extractor = %s Extraktor
%s Forcefield Emitter = %s Kraftfeld-Emitter
%s Furnace = %s Ofen
%s Grinder = %s Schleifmaschine
%s Music Player = %s Musikspieler
%s Quarry = %s Steinbruch
%s Tool Workshop = %s Werkzeugwerkstatt
Arrayed Solar %s Generator = %s Solaranlage
Fuel-Fired %s Generator = %s Kohle-Generator
Geothermal %s Generator = %s Geothermie-Generator
Hydro %s Generator = %s Wassermuehle
Nuclear %s Generator Core = %s Reaktorkern
Small Solar %s Generator = %s Solarmodul
Wind %s Generator = %s Windmuehle
Self-Contained Injector = Selbstversorger-Injektor
Constructor Mk%d = Konstruktor Modell %d
Frame = Rahmen
Frame Motor = Rahmenmotor
Template = Schablone
Template (replacing) = Schablone (ersetzend)
Template motor = Schablonenmotor
Template tool = Schablonenwerkzeug
Battery Box = Batteriebox
Supply Converter = Stromumwandler
Switching Station = Schaltanlage
Fuel-Fired Alloy Furnace = Kohle-Legierungsofen
Fuel-Fired Furnace = Kohle-Ofen
Wind Mill Frame = Windmuehlengeruest
Forcefield = Kraftfeld
Nuclear Reactor Rod Compartment = Brennstabfaecher
Administrative World Anchor =
## Machine-specific
# $1: Pruduced EU
Charge = Aufladen
Discharge = Entladen
Power level = Energiestufe
# $1: Tier $2: current_charge $3: max_charge
@1 Battery Box: @2/@3 = @1 Batteriebox: @2/@3
# $1: Machine name $2: Supply $3: Demand
@1. Supply: @2 Demand: @3 = @1. Versorgung: @2 Bedarf: @3
Production at %d%% = Produktion bei %d%%
Choose Milling Program: = Waehle ein Fraesprogramm:
Slim Elements half / normal height: = Schmale Elemente von halber / normaler Hoehe:
Current track %s = Aktueller Titel %s
Stopped =
Keeping %d/%d map blocks loaded =
Digging not started =
Digging finished =
Digging %d m above machine =
Digging %d m below machine =
## Grinder Recipes
# $1: Name
%s Dust = %sstaub
Akalin = Akalin
Alatro = Alatro
Arol = Arol
Brass = Messing
Bronze = Bronze
Carbon Steel = Kohlenstoffstahl
Cast Iron = Gusseisen
Chromium = Chrom
Coal = Kohle
Copper = Kupfer
Gold = Gold
Mithril = Mithril
Silver = Silber
Stainless Steel = Edelstahl
Talinite = Talinite
Tin = Zinn
Wrought Iron = Schmiedeeisen
Zinc = Zink
%.1f%%-Fissile Uranium =
## Tools
RE Battery = Akkubatterie
Water Can = Wasserkanister
Lava Can = Lavakanister
Chainsaw = Kettensaege
Flashlight = Taschenlampe
3 nodes deep. = 3 Bloecke tief.
3 nodes tall. = 3 Bloecke hoch.
3 nodes wide. = 3 Bloecke breit.
3x3 nodes. = 3x3 Bloecke.
Use while sneaking to change Mining Drill Mk%d modes. = Halte die Shift-Taste beim Benutzen gedrueckt, um die Funktion des Bergbaubohrers Modell %d zu aendern.
Mining Drill Mk%d Mode %d = Bergbaubohrer Modell %d Funktion %d
Mining Drill Mk%d = Bergbaubohrer Modell %d
Mining Laser Mk%d = Bergbaulaser Modell %d
Single node. = Einzelblock
Sonic Screwdriver = Schallschraubendreher
Tree Tap = Baumzapfhahn
## Craft descriptions
Alloy cooking =
Grinding =
Compressing =
Extracting =

View File

@ -1,162 +0,0 @@
# Spanish Translation for Technic Mod
# Traduccion al Español del Mod Technic
# Autor: Diego Martínez <kaeza>
## Misc
[Technic] Loaded in %f seconds = [Technic] Cargado en %f segundos
## Items
Silicon Wafer = Oblea de Silicio
Doped Silicon Wafer = Oblea de Silicio Dopada
Enriched Uranium = Uranio Enriquecido
Uranium Fuel = Combustible de Uranio
Diamond Drill Head = Mecha de Taladro de Diamante
Blue Energy Crystal = Cristal de Energia Azul
Green Energy Crystal = Cristal de Energia Verde
Red Energy Crystal = Cristal de Energia Rojo
Fine Copper Wire = Cable Fino de Cobre
Copper Coil = Resorte de Cobre
Electric Motor = Motor Electrico
Low Voltage Transformer = Transformador de Bajo Voltaje
Medium Voltage Transformer = Transformador de Voltaje Medio
High Voltage Transformer = Transformador de Alto Voltaje
Control Logic Unit = Unidad Logica de Control
Mixed Metal Ingot = Lingote de Metal Mezclado
Composite Plate = Placa de Compuestos
Copper Plate = Placa de Cobre
Carbon Plate = Placa de Carbon
Graphite = Grafito
Carbon Cloth = Tela de Carbon
Raw Latex = Latex Crudo
Rubber Fiber = Fibra de Hule
%.1f%%-Fissile Uranium Ingot =
%.1f%%-Fissile Uranium Block =
## Machine misc
Machine cannot be removed because it is not empty = La maquina no puede removerse porque no esta vacia
Inventory move disallowed due to protection =
# $1: Machine name (Includes tier)
@1 Active (@2 EU) = @1 Activo (@2 EU)
%s Active = %s Activo
%s Enabled =
%s Idle = %s Quieto
%s Unpowered = %s Sin Energia
%s Out Of Fuel = %s Sin Combustible
%s Has Bad Cabling = %s Tiene Mal Cableado
%s Has No Network = %s No Tiene Una Red
%s Finished = %s Terminado
%s Disabled = %s Deshabilitado
%s Improperly Placed = %s No Colocado Apropiadamente
Range = Alcance
Enable/Disable = Habilitar/Deshabilitar
Itemwise =
Stackwise =
Owner: =
Unlocked =
Locked =
Radius: =
Enabled =
Disabled =
## Machine names
# $1: Tier
%s Alloy Furnace = Horno de Aleacion %s
%s Battery Box = Caja de Bateria %s
%s Cable = Cable %s
%s Compressor = Compresor %s
%s Extractor = Extractor %s
%s Forcefield Emitter = Emisor de Campo de Fuerza %s
%s Furnace = Horno %s
%s Grinder = Amoladora %s
%s Music Player = Reproductor de Musica %s
%s Quarry = Cantera %s
%s Tool Workshop = Taller de Herramientas %s
Arrayed Solar %s Generator = Panel Solar %s
Fuel-Fired %s Generator = Generador a Carbon %s
Geothermal %s Generator = Generador Geotermico %s
Hydro %s Generator = Molino de Agua %s
Nuclear %s Generator Core = Nucleo de Reactor Nuclear %s
Small Solar %s Generator = Panel Solar %s
Wind %s Generator = Molino de Viento %s
Self-Contained Injector =
Constructor Mk%d =
Frame =
Frame Motor =
Template =
Template (replacing) =
Template Motor =
Template Tool =
Supply Converter = Convertidor de Alimentacion
Switching Station = Estacion de Conmutacion
Battery Box = Caja de Baterias
Fuel-Fired Alloy Furnace = Horno de Aleacion a Carbon
Fuel-Fired Furnace = Horno a Carbon
Forcefield = Campo de Fuerza
Nuclear Reactor Rod Compartment = Compartimiento para Vara de Reactor Nuclear
Wind Mill Frame = Armazon de Molino de Viento
Administrative World Anchor =
## Machine-specific
# $1: Pruduced EU
Charge = Cargar
Discharge = Descargar
Power level = Nivel de Poder
# $1: Tier $2: current_charge $3: max_charge
@1 Battery Box: @2/@3 = Caja de Bateria @1: @2/@3
# $1: Machine name $2: Supply $3: Demand
@1. Supply: @2 Demand: @3 = @1. Alimentacion: @2 Demanda: @3
# $1: Production percent
Production at %d%% = Produccion en %d%%
Stopped =
Keeping %d/%d map blocks loaded =
Digging not started =
Digging finished =
Digging %d m above machine =
Digging %d m below machine =
## Grinder Recipes
# $1: Name
%s Dust = Polvo de %s
Akalin = Akalina
Alatro = Alatro
Arol = Arol
Brass = Laton
Bronze = Bronce
Carbon Steel = Acero al Carbono
Cast Iron = Hierro Fundido
Chromium = Cromo
Coal = Carbon
Copper = Cobre
Gold = Oro
Mithril = Mitrilo
Silver = Plata
Stainless Steel = Acero Inoxidable
Talinite = Talinita
Tin = Estanio
Wrought Iron = Hierro Forjado
Zinc = Zinc
%.1f%%-Fissile Uranium =
## Tools
RE Battery =
Water Can = Bidon de Agua
Lava Can = Bidon de Lava
Chainsaw = Motosierra
Flashlight = Linterna
3 nodes deep. = 3 nodos de profundo.
3 nodes tall. = 3 nodos de alto.
3 nodes wide. = 3 nodos de ancho.
3x3 nodes. = 3x3 nodos.
Use while sneaking to change Mining Drill Mk%d modes. = Manten pulsado Mayus y Usar para cambiar el modo del Taladro de Mineria Mk%d.
Mining Drill Mk%d Mode %d = Taladro de Mineria Mk%d Modo %d
Mining Drill Mk%d = Taladro de Mineria Mk%d
Mining Laser Mk%d = Laser de Mineria Mk%d
Single node. = Nodo simple.
Sonic Screwdriver = Destonillador Sonico
Tree Tap = Grifo de Arbol
## Craft descriptions
Alloy cooking =
Grinding =
Compressing =
Extracting =

View File

@ -1,215 +0,0 @@
# template.txt
# Template for translations of Technic
## Misc
[Technic] Loaded in %f seconds = [Technic] Chargement en %f secondes
## Items
Silicon Wafer = Tranche de silicium
Doped Silicon Wafer = Tranche de silicium doppée
Enriched Uranium = Uranium enrichi
Uranium Fuel = Uranium 235
Diamond Drill Head = Tête de forage en diamant
Blue Energy Crystal = Cristal d'énergie bleu
Green Energy Crystal = Cristal d'énergie vert
Red Energy Crystal = Cristal d'énergie rouge
Fine Copper Wire = Fil en cuivre fin
Fine Gold Wire = Fil en or fin
Fine Silver Wire = Fil en argent fin
Copper Coil = Bobine de cuivre
Electric Motor = Moteur électrique
Low Voltage Transformer = Transformateur basse tension
Medium Voltage Transformer = Transformateur moyenne tension
High Voltage Transformer = Transformateur haute tension
Control Logic Unit = Unité de contrôle logique
Mixed Metal Ingot = Lingot de métal allié
Composite Plate = Plaque composite
Copper Plate = Plaque de cuivre
Carbon Plate = Plaque de carbone
Graphite = Graphite
Carbon Cloth = Fibre de carbone
Raw Latex = Latex brut
Rubber Fiber = Fibre de caoutchouc
%.1f%%-Fissile Uranium Ingot = Lingot d'uranium fissile (%.1f%%)
%.1f%%-Fissile Uranium Block = Bloc d'uranium fissile (%.1f%%)
## Machine misc
Machine cannot be removed because it is not empty = La machine ne peut pas être retirée car elle n'est pas vide
Inventory move disallowed due to protection = Le mouvement d'inventaire n'est pas autorisé en raison de la protection
# $1: Machine name (Includes tier)
@1 Active (@2 EU) = @1 Active (@2 EU)
%s Active = %s actif
%s Disabled = %s désactivé
%s Enabled = %s activé
%s Idle = %s au repos
%s Improperly Placed = %s est mal placé
%s is empty = %s est vide
%s Unpowered = %s non alimenté en énergie
%s Out Of Fuel = %s plus de carburant
%s Has Bad Cabling = %s est mal cablé
%s (Slave) = %s (esclave)
%s Has No Network = %s n'a pas de réseau
%s Finished = %s a fini
Enable/Disable = Activer/Désactiver
Range = Plage
Upgrade Slots = Emplacement d'amélioration
In: = Entrée :
Out: = Sortie :
Slot %d = Emplacement %d
Itemwise = Item par Item
Stackwise = Stack par Stack
Ignoring Mesecon Signal = Ignorer le signal Mesecon
Controlled by Mesecon Signal = Contrôlé par signal Mesecon
Owner: = Propriétaire :
Unlocked = Déverrouillé
Locked = Verrouillé
Radius: = Rayon :
Enabled = Activé
Disabled = Désactivé
## Machine names
# $1: Tier
%s Alloy Furnace = Four à alliage %s
%s Battery Box = Batterie %s
%s Cable = Câble %s
%s CNC Machine = Machine-outils %s
%s Centrifuge = Centrifugeuse %s
%s Compressor = Compresseur %s
%s Extractor = Extracteur %s
%s Forcefield Emitter = Emetteur de champ de force %s
%s Furnace = Four %s
%s Grinder = Broyeur %s
%s Music Player = Grammophone %s
%s Quarry = Carrière %s
%s Tool Workshop = Atelier d'outillage %s
Arrayed Solar %s Generator = Générateur solaire %s
Fuel-Fired %s Generator = Générateur thermique %s
Geothermal %s Generator = Géénarteur géothermique %s
Hydro %s Generator = Générateur hydroélectrique %s
Nuclear %s Generator Core = Générateur nucléaire %
Small Solar %s Generator = Petit générateur solaire %s
Wind %s Generator = Générateur éolien %s
Self-Contained Injector = Injecteur autonome
Constructor Mk%d = Constructeur Mk%d
Frame = Cadre
Frame Motor = Cadre de moteur
Template = Modèle
Template (replacing) =
Template Motor =
Template Tool =
Battery Box = Compartiment à batterie
Supply Converter = Convertisseur de tension
Switching Station = Station de commutation
Fuel-Fired Alloy Furnace = Four à alliage à carburant
Fuel-Fired Furnace = Four à carburant
Wind Mill Frame = Cadre d'éolienne
Forcefield = Champ de force
Nuclear Reactor Rod Compartment = Compartiment à barres du réacteur nucléaire
Administrative World Anchor =
## Machine-specific
# $1: Pruduced EU
Charge = Charger
Discharge = Décharger
Power level = Niveau d'énergie
# $1: Tier $2: current_charge $3: max_charge
@1 Battery Box: @2/@3 = @1 batterie : @2/@3
# $1: Machine name $2: Supply $3: Demand
@1. Supply: @2 Demand: @3 = @1. fournit : @2 demande : @3
Production at %d%% = Production à %d%%
Choose Milling Program: = Choisissez le programme de fraisage :
Slim Elements half / normal height: =
Current track %s = Morceau actuel %s
Stopped = Arrêté
Keeping %d/%d map blocks loaded =
Digging not started = Creusement non démarré
Digging finished = Creusement terminé
Digging %d m above machine = Creusement à %dm au dessus de la machine
Digging %d m below machine = Creusement à %dm en dessous de la machine
@1 (@2 @3 -> @4 @5) = @1 (@2 @3 -> @4 @5)
## CNC
Cylinder =
Element Cross = Elément croisé
Element Cross Double = Elément croisé (double)
Element Edge = Elément de bordure
Element Edge Double = Elément de bordure (double)
Element End = Elément de fin
Element End Double = Elément de fin (double)
Element Straight = Elément droit
Element Straight Double = Elément droit (double)
Element T = Elément en T
Element T Double = Elément en T (double)
Horizontal Cylinder = Cylindre horizontal
One Curved Edge Block = Bloc à un bord incurvé
Pyramid = Pyramide
Slope = Pente
Slope Edge =
Slope Inner Edge =
Slope Lying =
Slope Upside Down =
Slope Upside Down Edge =
Slope Upside Down Inner Edge =
Sphere = Sphère
Spike = Pointe
Stick = Bâton
Two Curved Edge Block = Bloc à deux bords incurvés
Brick = Brique
Cobble = Pierre taillée
Dirt = Terre
Leaves = Feuilles
Sandstone = Grès
Stone = Pierre
Tree = Arbre
Wooden = Bois
## Grinder Recipes
# $1: Name
%s Dust = Poudre de %s
Akalin =
Alatro =
Arol =
Brass = Laiton
Bronze = Bronze
Carbon Steel = Acier au carbone
Cast Iron = Fonte
Chromium = Chrome
Coal = Charbon
Copper = Cuivre
Gold = Or
Mithril = Mithril
Silver = Argent
Stainless Steel = Acier inoxydable
Talinite = Talanite
Tin = Etain
Wrought Iron = Fer
Zinc = Zinc
%.1f%%-Fissile Uranium = Uranium fissile (%.1f%%)
## Tools
RE Battery = Batterie RE
Water Can = Jerrycan d'eau
Lava Can = Jerrycan de lave
Chainsaw = Tronçonneuse
Flashlight = Lampe-torche
3 nodes deep. =
3 nodes tall. =
3 nodes wide. =
3x3 nodes. =
Use while sneaking to change Mining Drill Mk%d modes. =
Mining Drill Mk%d Mode %d = Foreuse Mk%d Mode %d
Mining Drill Mk%d = Foreuse Mk%d
Mining Laser Mk%d = Foreuse laser Mk%d
Single node. = Mode simple.
Sonic Screwdriver = Tournevis supersonique
Tree Tap = Robinet à sève
## Craft descriptions
Alloy cooking = Fonderie d'alliage
Grinding = Broyage
Compressing = Compression
Extracting = Extraction
Separating = Séparation

View File

@ -1,165 +0,0 @@
## Misc
[Technic] Loaded in %f seconds = [Technic] caricato in %f secondi
## Items
Silicon Wafer = Wafer di silicone
Doped Silicon Wafer = Wafer di silicone dopato
Enriched Uranium = Uranio arricchito
Uranium Fuel = Uranio Combustibile
Diamond Drill Head = Trivella diamantata
Blue Energy Crystal = Cristallo energetico blu
Green Energy Crystal = Cristallo energetico verde
Red Energy Crystal = Cristallo energetico rosso
Fine Copper Wire = Filo di rame fine
Copper Coil = Bobina di rame
Electric Motor = Motore elettrico
Low Voltage Transformer = Trasformatore in bassa tensione
Medium Voltage Transformer = Trasformatore in media tensione
High Voltage Transformer = Trasformatore in alta tensione
Control Logic Unit = Unità di controllo logica
Mixed Metal Ingot = Lingotto in lega ibrida
Composite Plate = Lastra composita
Copper Plate = Lastra di rame
Carbon Plate = Lastra in carbonio
Graphite = Lastra in graffite
Carbon Cloth = Fibra di carbonio
Raw Latex = Latex grezzo
Rubber Fiber = Fibra di gomma
%.1f%%-Fissile Uranium Ingot = %.1f%%-Lingotto di uranio fissile
%.1f%%-Fissile Uranium Block = %.1f%%-Blocco di uranio fissile
## Machine misc
Machine cannot be removed because it is not empty = La macchina non può essere rimossa perchè non è vuota
Inventory move disallowed due to protection = Impossibile muovere l'inventario a causa della protezione
# $1: Machine name (Includes tier)
@1 Active (@2 EU) = @1 Attivo (@2 EU)
%s Active = %s Attivo
%s Disabled = %s Disabilitato
%s Enabled = %s Abilitato
%s Idle = %s Inattivo
%s Improperly Placed = %s Piazzato impropiamente
%s Unpowered = %s Non alimentato
%s Out Of Fuel = %s senza carburante
%s Has Bad Cabling = %s ha un cablaggio scorretto
%s Has No Network = %s non è collegata
%s Finished = %s Finito
Enable/Disable = Abilita/Disabilita
Range = Raggio
Upgrade Slots = Alloggi di aggiornamento
In: = Ingresso:
Out: = Uscita:
Slot %d = Alloggio %d
Itemwise = Singolo elemento
Stackwise = pila completa
Owner: = Proprietario:
Unlocked = Non chiuso a chiave
Locked = Chiuso a chiave
Radius: = Raggio:
Enabled = Abilitato
Disabled = Disabilitato
## Machine names
# $1: Tier
%s Alloy Furnace = %s Fornace per leghe
%s Battery Box = %s Box batterie
%s Cable = Cavo %s
%s Compressor = Compressore %s
%s Extractor = Estrattore %s
%s Forcefield Emitter = Emettitore di campo di forza %s
%s Furnace = %s Fornace
%s Grinder = %s Tritatutto
%s Music Player = Music Player %s
%s Quarry = Cava %s
%s Tool Workshop = Officina per attrezzi %s
Arrayed Solar %s Generator = %s Pannello Solare
Fuel-Fired %s Generator = %s Generatore a carbone
Geothermal %s Generator = %s Generatore Geotermico
Hydro %s Generator = Turbina Elettrica %s
Nuclear %s Generator Core = Reattore nucleare %s
Small Solar %s Generator = %s Pannello solare
Wind %s Generator = %s Generatore eolico
Self-Contained Injector = Ignettore
Constructor Mk%d = Costruttore Mk%d
Frame = Cornice
Frame Motor = Cornice del motore
Template = Sagoma
Template (replacing) = Sagoma (di rimpiazzo)
Template Motor = Motore per sagome
Template Tool = Strumento per sagome
Battery Box = Box batterie
Supply Converter = Trasformatore
Switching Station = Stazione di controllo
Fuel-Fired Alloy Furnace = Fornace per leghe a carbone
Fuel-Fired Furnace = Fornace a carbone
Wind Mill Frame = Pala eolica
Forcefield = Campo di forza
Nuclear Reactor Rod Compartment = Compartimento combustibile nucleare
Administrative World Anchor = Ancora-mondo amministrativa
## Machine-specific
# $1: Pruduced EU
Charge = Carica
Discharge = Scarica
Power level = Livello di potenza
# $1: Tier $2: current_charge $3: max_charge
@1 Battery Box: @2/@3 = @1 Box Batterie: @2/@3
# $1: Machine name $2: Supply $3: Demand
@1. Supply: @2 Demand: @3 = @1. Prodotto: @2 Consumato: @3
Production at %d%% = Produzione a %d%%
Choose Milling Program: = Scegliere un programma di Fresatura
Slim Elements half / normal height: = Metà elementi sottili / altezza normale:
Current track %s = Traccia corrente %s
Stopped = Fermato
Keeping %d/%d map blocks loaded = Mantenimento di %d/%d blocchi mappa caricati
Digging not started = Scavo non iniziato
Digging finished = Scavo finito
Digging %d m above machine = Scavo di %d m sopra la macchina
Digging %d m below machine = Scavo di %d m sotto la macchina
## Grinder Recipes
# $1: Name
%s Dust = Polvere di %s
Akalin = Alcalino
Alatro = Alatro
Arol = Arol
Brass = Ottone
Bronze = Bronzo
Carbon Steel = Acciaio al Carbonio
Cast Iron = Ghisa
Chromium = Cromo
Coal = Carbone
Copper = Rame
Gold = Oro
Mithril = Mithril
Silver = Argento
Stainless Steel = Acciaio Inossidabile
Talinite = Talinite
Tin = Stagno
Wrought Iron = Ferro Battuto
Zinc = Zinco
%.1f%%-Fissile Uranium = %.1f%%-Uranio fissile
## Tools
RE Battery = Batteria RE
Water Can = Serbatoio d'acqua
Lava Can = Serbatoio di lava
Chainsaw = Motosega
Flashlight = Torcia
3 nodes deep. = 3 nodi in profondità.
3 nodes tall. = 3 nodi in altezza.
3 nodes wide. = 3 nodi in larghezza.
3x3 nodes. = 3x3 nodi.
Use while sneaking to change Mining Drill Mk%d modes. = Premi shift (freccia grossa) e usa per cambiare modalità nella trivella da miniera Mk%d.
Mining Drill Mk%d Mode %d = Trivella mk%d in modalità %d
Mining Drill Mk%d = Trivella da miniera mk%d
Mining Laser Mk%d = Laser da miniera mk%d
Single node. = Nodo singolo.
Sonic Screwdriver = Cacciavite sonico
Tree Tap = Batti albero
## Craft descriptions
Alloy cooking = Cottura lege
Grinding = Macinazione
Compressing = Compressione
Extracting = Estrazione

View File

@ -1,175 +0,0 @@
# Polish Translation for Technic mod
# Polskie tłumaczenie Technic mod
# by mat9117
## Misc
[Technic] Loaded in %f seconds = [Technic] Wczytany w %f sekund
## Items
Silicon Wafer = Płytka krzemowa
Doped Silicon Wafer = Domieszkowana płytka krzemowa
Enriched Uranium = Wzbogacony uran
Uranium Fuel = Paliwo uranowe
Diamond Drill Head = Diamentowa głowica wiertła
Blue Energy Crystal = Niebieski kryształ energii
Green Energy Crystal = Zielony kryształ energii
Red Energy Crystal = Czerwony kryształ energii
Fine Copper Wire = Cienki miedziany drut
Copper Coil = Miedziana cewka
Electric Motor = Silnik elektryczny
Low Voltage Transformer = Transformator niskiego napięcia
Medium Voltage Transformer = Transformator średniego napięcia
High Voltage Transformer = Transformator wysokiego napięcia
Control Logic Unit = Jednostka sterująca
Mixed Metal Ingot = Sztabka zmieszanych metali
Composite Plate = Płytka kompozytowa
Copper Plate = Płytka miedziana
Carbon Plate = Płytka węglowa
Graphite = Grafit
Carbon Cloth = Włókno węglowe
Raw Latex = Lateks naturalny
Rubber Fiber = Włókno gumowe
%.1f%%-Fissile Uranium Ingot = %.1f%% Sztabka uranu
%.1f%%-Fissile Uranium Block = %.1f%% Blok uranu
## Machine misc
Machine cannot be removed because it is not empty = Nie można usunąć maszyny, ponieważ nie jest pusta
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/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/a do sieci
%s Finished = %s Ukończony
Enable/Disable = Włącz/Wyłącz
Range = Zasięg
Upgrade Slots = Miejsca na ulepszenia
In: = Wejście
Out: = Wyjście
Slot %d = Otwór %d
Itemwise = Jeden przedmiot
Stackwise = Cały stack
Ignoring Mesecon Signal = Ignoruj sygnał Mesecon
Controlled by Mesecon Signal = Sterowany sygnałem Mesecon
Owner: = Właściciel:
Unlocked = Odblokowany/a
Locked = Zablokowany/a
Radius: = Promień:
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 Przewód
%s Centrifuge = %s Centryfuga
%s Compressor = %s Kompresor
%s Extractor = %s Ekstraktor
%s Forcefield Emitter = %s Emiter pola siłowego
%s Furnace = %s Piec
%s Grinder = %s Młynek
%s Music Player = %s Odtwarzacz muzyki
%s Quarry = %s Kamieniołom
%s Tool Workshop = %s Warsztat narzędzi
Arrayed Solar %s Generator = %s Szeregowy generator słoneczny
Fuel-Fired %s Generator = %s Generator zasilany paliwem
Geothermal %s Generator = %s Generator geotermalny
Hydro %s Generator = %s Hydrogenerator
Nuclear %s Generator Core = %s Reaktor atomowy
Small Solar %s Generator = %s Mały generator słoneczny
Wind %s Generator = %s Generator wiatrowy
Self-Contained Injector = Samowystarczalny wtryskiwacz
Constructor Mk%d = Konstruktor Mk%d
Frame = Klatka
Frame Motor = Silnik klatkowy
Template = Szablon
Template (replacing) = Szablon (zastępczy)
Template Motor =Szablon silnika
Template Tool = Szablon narzędzia
Battery Box = Skrzynka baterii
Supply Converter = Konwerter zasilania
Switching Station = Rozdzielnia
Fuel-Fired Alloy Furnace = Piec stopowy zasilany paliwem
Fuel-Fired Furnace = Piec zasilany paliwem
Wind Mill Frame = Klatka wiatraka
Forcefield = Pole siłowe
Nuclear Reactor Rod Compartment = Komora rdzenia reaktora atomowego
Administrative World Anchor = Administracyjna kotwica świata
## Machine-specific
# $1: Pruduced EU
Charge = Ładuj
Discharge = Rozładuj
Power level = Poziom zasilania
# $1: Tier $2: current_charge $3: max_charge
@1 Battery Box: @2/@3 = @1 Skrzynka baterii: @2/@3
# $1: Machine name $2: Supply $3: Demand
@1. Supply: @2 Demand: @3 = @1. Zapas: @2 Pobór: @3
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/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
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 = 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
Water Can = Kanister wody
Lava Can = Kanister lawy
Chainsaw = Piła łańcuchowa
Flashlight = Latarka
3 nodes deep. = Głęboki na 3 bloki.
3 nodes tall. = Wysoki na 3 bloki.
3 nodes wide. = Szeroki na 3 bloki.
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ł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
## Craft descriptions
Alloy cooking = Stapianie
Grinding = Mielenie
Compressing = Kompresowanie
Extracting = Ekstrakcja
Separating = Oddzielanie

View File

@ -1,211 +0,0 @@
# Braziliam portuguese translation for technic
# Tradução portuguesa brasileira para technic
# By Sires
## Misc
[Technic] Loaded in %f seconds = [Technic] Carregado em %f segundos
## Items
Silicon Wafer = Pastilha de Silício
Doped Silicon Wafer = Pastilha de Silício Dopada
Enriched Uranium = Urânio Enriquecido
Uranium Fuel = Combustivel de Urânio
Diamond Drill Head = Cabeça de Broca de Diamante
Blue Energy Crystal = Cristal de Energia Azul
Green Energy Crystal = Cristal de Energia Verde
Red Energy Crystal = Cristal de Energia Vermelho
Fine Copper Wire = Fio Fino de Cobre
Copper Coil = Bobina de Cobre
Electric Motor = Motor Elétrico
Low Voltage Transformer = Transformador de Baixa Voltagem
Medium Voltage Transformer = Transformador de Média Voltagem
High Voltage Transformer = Transformador de Alta Voltagem
Control Logic Unit = Unidade de Controle Lógico
Mixed Metal Ingot = Lingote de Metal Misturado
Composite Plate = Placa Composta
Copper Plate = Placa de Cobre
Carbon Plate = Placa de Carbono
Graphite = Grafite
Carbon Cloth = Recido de Carbono
Raw Latex = Latex bruto
Rubber Fiber = Fibra de Borracha
%.1f%%-Fissile Uranium Ingot = Lingote de Urânio %.1f%%-Físsil
%.1f%%-Fissile Uranium Block = Bloco de Urânio %.1f%%-Físsil
## Machine Misc
Machine cannot be removed because it is not empty = A máquina não pode ser removida porque ela não está vazia
Inventory move disallowed due to protection = Movimento de inventário não permitido pela proteção
# $1: Machine name (includes tier)
@1 Active (@2 EU) = @1 Ativo (@2 EU)
%s Active = %s Ativo
%s Disabled = %s Ativado
%s Enabled = %s Desativado
%s Idle = Ócio
%s Improperly Placed = %s Colocado Inapropriadamente
%s is empty = %s está vazio
%s Unpowered = %s Sem energia
%s Out Of Fuel = %s Sem Combustível
%s Has Bad Cabling = %s Tem Cabeamento Ruim
%s (Slave) = %s (Servo)
%s Has No Network = %s Não Tem Rede
%s Finished = %s Acabou
Enable/Disable = Ativar/Desativar
Range = Alcance
Upgrade Slots = Lugares para Melhoria
In: = Entrada:
Out: = Saída:
Slot %d = Lugar %d
Itemwise = Por item
Stackwise = Por pilha
Ignoring Mesecon Signal = Ignorar Sinaal de Mesecon
Controlled by Mesecon Signal = Controlado por Sinal de Mesecon
Owner: = Dono:
Unlocked = Destravado
Locked = Travado
Radius: = Raio:
Enabled = Ativado
Disabled = Desativado
## Machine names
# $1: Tier
%s Alloy Furnace = Fornalha de Liga %s
%s Battery Box = Caixa de Bateria %s
%s Cable = Cabo %s
%s CNC Machine = Máquina CNC %s
%s Centrifuge = Centrifuga %s
%s Compressor = Compresso %s
%s Extractor = Extrator %s
%s Forcefield Emitter = Emissor de Campo de Força %s
%s Furnace = Fornalha %s
%s Grinder = Triturador %s
%s Music Player = Tocador de Música %s
%s Quarry = Pedreira %s
%s Tool Workshop = Oficina de Ferramentas %s
Arrayed Solar %s Generator = Gerador Solar Equipado %s
Fuel-Fired %s Generator = Gerador Alimentado-por-Combustível %s
Geothermal %s Generator = Gerador Geotermal %s
Hydro %s Generator = Gerador Hidráulico %s
Nuclear %s Generator Core = Núcleo de Gerador Nuclear %s
Small Solar %s Generator = Gerador Solar Pequeno %s
Wind %s Generator = Gerador de Energia Eólica %s
Self-Contained Injector = Injetor Auto-Contido
Constructor Mk%d = Construtor Nv%d
Frame = Armação
Frame Motor = Motor de Armação
Template = Modelo
Template (replacing) = Modelo (recolocando)
Template Motor = Modelo de Motor
Template Tool = Modelo de Ferramenta
Battery Box = Caixa de Bateria
Supply Converter = Conversor de Energia
Switching Station = Estação de Comutação
Fuel-Fired Alloy Furnace = Fornalha de Liga Alimentada-por-Combustível
Fuel-Fired Furnace = Fornalha Alimentada-por-Combustível
Wind Mill Frame = Armação de Moinho de Vento
Forcefield = Campo de Força
Nuclear Reactor Rod Compartment = Compartimento de Barra do Reator Nuclear
Administrative World Anchor = Âncora de Mundo Administrativa
## Machine-specific
# $1: Pruduced EU
Charge = Carregar
Discharge = Descarregar
Power level = Nível de Energia
# $1: Tier $2: current_charge $3: max_charge
@1 Battery Box: @2/@3 = Caixa de Baterias @1: @2/@3
# $1: Machine name $2: Supply $3: Demand
@1. Supply: @2 Demand: @3 = @1. Suprimento: @2 Demanda: @3
Production at %d%% = Produção em %d%%
Choose Milling Program: = Escolha o Programa de Serragem:
Slim Elements half / normal height: = Metade de Elementos Finos / altura normal:
Current track %s = Música Atual %s
Stopped = Parado
Keeping %d/%d map blocks loaded = Mantendo %d/%d blocos de mapa carregados
Digging not started = Escavação não começada
Digging finished = Escavação terminada
Digging %d m above machine = Escavando %d m acima da máquina
Digging %d m below machine = Escavando %d m abaixo da máquina
@1 (@2 @3 -> @4 @5) = @1 (@2 @3 -> @4 @5)
## CNC
Cylinder = Cilindro
Element Cross = Cruz do Elemento
Element Cross Double = Cruz Dupla do Elemento
Element Edge = Borda do Elemento
Element Edge Double = Borda Dupla do Elemento
Element End = Final do Elemento
Element End Double = Final Duplo do Elemento
Element Straight = Elemento Contínuo
Element Straight Double = Elemento Contínuo duplo
Element T = Elemento em T
Element T Double = Elemento em T Duplo
Horizontal Cylinder = Cilindro Horizontal
One Curved Edge Block = Uma Borda de Bloco Curvada
Pyramid = Pirâmide
Slope = Ladeira
Slope Edge = Canto de Ladeira
Slope Inner Edge = Canto de Dentro de Ladeira
Slope Lying = Ladeira Deitada
Slope Upside Down = Ladeira de Cabeça para Baixo
Slope Upside Down Edge = Cande de Ladeira de Cabeça para Baixo
Slope Upside Down Inner Edge = Canto de Dentro de Ladeira de Cabeça para Baixo
Sphere = Esfera
Spike = Espinho
Stick = Graveto
Two Curved Edge Block = Bloco de Duas Bordas Curvadas
Brick = Tijolo
Cobble = Pedregulho
Dirt = Terra
Leaves = Folhas
Sandstone = Arenito
Stone = Pedra
Tree = Árvore
Wooden = de Madeira
## Grinder Recipes
# $1: Name
%s Dust = Pó de %s
Akalin = Akalin
Alatro = Alatro
Arol = Arol
Brass = Latão
Bronze = Bronze
Carbon Steel = Aço Carbono
Cast Iron = Ferro Fundido
Chromium = Crômio
Coal = Carvão
Copper = Cobre
Gold = Ouro
Mithril = Mithril
Silver = Prata
Stainless Steel = Aço Inoxidável
Talinite = Talinite
Tin = Estanho
Wrought Iron = Ferro Forjado
Zinc = Zinco
%.1f%%-Fissile Uranium = Urânio %.1f%%-Físsil
## Tools
RE Battery = Bateria RE
Water Can = Lata de Água
Lava Can = Lata de Lava
Chainsaw = Motosserra
Flashlight = Lanterna
3 nodes deep. = 3 nodes de profundidade.
3 nodes tall. = 3 nodes de altura.
3 nodes wide. = 3 nodes de largura.
3x3 nodes. = 3x3 nodes.
Use while sneaking to change Mining Drill Mk%d modes. = Use enquanto esgueirando para mudar os modos da Broca de Mineração Nv%d.
Mining Drill Mk%d Mode %d = Broca de Mineração Nv%d Modo %d
Mining Drill Mk%d = Broca de Mineração Nv%d
Mining Laser Mk%d = Laser de Mineração Nv%d
Single node. = Unico node.
Sonic Screwdriver = Chave de Fenda Sônica.
Tree Tap = Torneira de Árvore
## Craft descriptions
Alloy cooking = Cozinhando em liga
Grinding = Triturando
Compressing = Comprimindo
Extracting = Extraindo
Separating = Separando

View File

@ -0,0 +1,477 @@
# textdomain: technic
### alloy_furnace.lua ###
@1 Alloy Furnace=@1 Legierungsofen
### alloy_recipes.lua ###
## Craft descriptions
Alloying=
### anchor.lua ###
Administrative World Anchor=
Owner: @1=
Unlocked=
Locked=
Keeping @1/@2 map blocks loaded=
### battery_box.lua ###
## Tools
RE Battery=Akkubatterie
Allow splitting incoming 'charge' stacks from tubes=
Allow splitting incoming 'discharge' stacks=
@1 Battery Box=@1 Batteriebox
Charge=Aufladen
Discharge=Entladen
Power level=Energiestufe
edit Channel=
@1 Battery Box: @2 / @3=
### cables.lua ###
@1 Cable=@1 Kabel
@1 Cable Plate=
### cans.lua ###
Water Can=Wasserkanister
Lava Can=Lavakanister
River Water Can=
### centrifuge.lua ###
@1 Centrifuge=
### centrifuge_recipes.lua ###
Separating=
### chainsaw.lua ###
Chainsaw=Kettensaege
### coal_alloy_furnace.lua ###
Fuel-Fired Alloy Furnace=Kohle-Legierungsofen
Machines: run coal alloy furnace=
@1 Active (@2%)=@1 ist eingeschaltet (@2 %)
@1 is empty=
### coal_alloy_furnace.lua ###
### generator.lua ###
@1 Out Of Fuel=@1 hat keinen Brennstoff
### coal_furnace.lua ###
Fuel-Fired Furnace=Kohle-Ofen
### common.lua ###
## Machine misc
Machine cannot be removed because it is not empty=Die Maschine kann nicht entfernt werden, weil sie noch nicht leer ist.
Inventory move disallowed due to protection=Das Inventar ist geschuetzt, Zugriff verweigert.
### compressor.lua ###
@1 Compressor=@1 Kompressor
### compressor_recipes.lua ###
Compressing=
### constructor.lua ###
Constructor Mk@1=Konstruktor Modell @1
Slot @1=Fach @1
### electric_furnace.lua ###
@1 Furnace=@1 Ofen
### extractor.lua ###
@1 Extractor=@1 Extraktor
### extractor_recipes.lua ###
Extracting=
### flashlight.lua ###
Flashlight=Taschenlampe
### forcefield.lua ###
Range=Reichweite
Sphere=
Cube=
@1 Forcefield Emitter=@1 Kraftfeld-Emitter
@1 Forcefield=@1 Kraftfeld
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Enabled=
### forcefield.lua ###
### battery_box.lua ###
### supply_converter.lua ###
Digiline Channel=
### forcefield.lua ###
### generator.lua ###
### quarry.lua ###
### cables.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
HV=
### forcefield.lua ###
### machine_base.lua ###
### tool_workshop.lua ###
### quarry.lua ###
### music_player.lua ###
@1 Unpowered=@1 hat keine Stromversorgung
@1 Active=@1 ist eingeschaltet
### forcefield.lua ###
### supply_converter.lua ###
Ignoring Mesecon Signal=
Controlled by Mesecon Signal=
### frames.lua ###
Frame=Rahmen
Frame Motor=Rahmenmotor
Template=Schablone
Template (replacing)=Schablone (ersetzend)
Template Tool=Schablonenwerkzeug
Template Motor=Schablonenmotor
### freezer.lua ###
@1 Freezer=
### freezer_recipes.lua ###
Freezing=
### generator.lua ###
Fuel-Fired @1 Generator=@1 Kohle-Generator
### generator.lua ###
### water_mill.lua ###
### hydro_turbine.lua ###
### geothermal.lua ###
### nuclear_reactor.lua ###
@1 (@2%)=
### geothermal.lua ###
Geothermal @1 Generator=@1 Geothermie-Generator
### grinder.lua ###
@1 Grinder=@1 Schleifmaschine
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### water_mill.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### cables.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### compressor.lua ###
### geothermal.lua ###
### alloy_furnace.lua ###
LV=
### grinder_recipes.lua ###
Grinding=
@1 Dust=@1staub
@1%-Fissile Uranium=
### grindings.lua ###
## Grinder Recipes
Sawdust=
@1 Grinding=
### injector.lua ###
Self-Contained Injector=Selbstversorger-Injektor
Stackwise=Ganzer Stapel
Itemwise=Einzelstuecke
Public=
Private=
Machines: run injector=
### items.lua ###
# textdomain: technic
# German Translation for Technic Mod
# Deutsche Uebersetzung des Technic Mods
# by Xanthin
## Items
Silicon Wafer=Siliziumscheibe
Doped Silicon Wafer=Dotierte Siliziumscheibe
Uranium Fuel=Uranbrennstoff
Diamond Drill Head=Diamantbohrkopf
Blue Energy Crystal=Blauer Energiekristall
Green Energy Crystal=Gruener Energiekristall
Red Energy Crystal=Roter Energiekristall
Copper Coil=Kupferspule
Low Voltage Transformer=Niederspannungstransformator
Medium Voltage Transformer=Mittelspannungstransformator
High Voltage Transformer=Hochspannungstransformator
Control Logic Unit=Steuer- und Regelungseinheit
Mixed Metal Ingot=Mischmetallbarren
Composite Plate=Verbundplatte
Copper Plate=Kupferplatte
Carbon Plate=Kohlefaserplatte
Graphite=Graphit
Carbon Cloth=Kohlefasergewebe
Machine Casing=
Rubber Goo=
@1%-Fissile Uranium Ingot=
@1%-Fissile Uranium Block=
### lighting.lua ###
someone=
Sorry, @1 owns that spot.=
Yellow Glowlight (thick)=
Yellow Glowlight (thin)=
White Glowlight (thick)=
White Glowlight (thin)=
Yellow Glowlight (small cube)=
White Glowlight (small cube)=
### machine_base.lua ###
### battery_box.lua ###
### tool_workshop.lua ###
Upgrade Slots=Verbesserungsfaecher
### machine_base.lua ###
### tool_workshop.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
@1 Idle=@1 ist bereit
### mining_drill.lua ###
Single node.=Einzelblock
3 nodes deep.=3 Bloecke tief.
3 nodes wide.=3 Bloecke breit.
3 nodes tall.=3 Bloecke hoch.
3x3 nodes.=3x3 Bloecke.
Use while sneaking to change Mining Drill Mk@1 modes.=Halte die Shift-Taste beim Benutzen gedrueckt, um die Funktion des Bergbaubohrers Modell @1 zu aendern.
Mining Drill Mk@1 Mode @2: =
Mining Drill Mk@1=Bergbaubohrer Modell @1
Mining Drill Mk@1 Mode @2=Bergbaubohrer Modell @1 Funktion @2
### mining_lasers.lua ###
Mining Laser Mk@1=Bergbaulaser Modell @1
### music_player.lua ###
@1 Music Player=@1 Musikspieler
Stop=
Stopped=
Current track @1=
### nuclear_reactor.lua ###
@1 Nuclear Reactor Core=
Nuclear Reactor Rod Compartment=Brennstabfaecher
Start=
automatic Start=
Enable Digiline=
Save=
Digiline Remote Channel=
Error: You need to insert @1 pieces of Uranium Fuel.=
Error: The power plant seems to be built incorrectly.=
Machines: reactor melt-down check=
Start successful=
### power_monitor.lua ###
## Machine names
Power Monitor=
Machines: run power monitor=
# $1: Machine name $2: Supply $3: Demand
@1. Supply: @2 Demand: @3=@1. Versorgung: @2 Bedarf: @3
### power_monitor.lua ###
### switching_station.lua ###
### battery_box.lua ###
@1 Has No Network=@1 hat kein Netzwerk
### power_radiator.lua ###
@1 Power Radiator=
Machines: run power radiator=
@1 is unpowered=
@1 is powered (@2% of maximum power)=
### power_radiator.lua ###
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### freezer.lua ###
### tool_workshop.lua ###
### hydro_turbine.lua ###
### cables.lua ###
### wind_mill.lua ###
### battery_box.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### centrifuge.lua ###
### compressor.lua ###
### alloy_furnace.lua ###
MV=
### prospector.lua ###
Prospector=
Right-click to set target block type=
Current target:=
No target set=
May set new target:=
Set target=
No new target available=
Region cross section:=
Set region cross section:=
Region depth:=
Set region depth:=
Accuracy:=
### quarry.lua ###
@1 Quarry=@1 Steinbruch
Digging not started=
Digging finished=
Purging cache=
Digging @1 m @2 machine=
above=
below=
Restart=
@1 purging cache=
@1 Finished=@1 ist fertig
Manually taking/removing from cache by hand is not possible. If you can't wait, restart or disable the quarry to start automatic purge.=
### quarry.lua ###
### anchor.lua ###
Radius:=
Disabled=
Enabled=
### quarry.lua ###
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Disabled=
### quarry.lua ###
### forcefield.lua ###
### nuclear_reactor.lua ###
You are not allowed to edit this!=
### radiation.lua ###
## Radiation
Radiation damage=
Corium Source=
Flowing Corium=
Corium Bucket=
Chernobylite Block=
Corium: griefing=
### solar_array.lua ###
Arrayed Solar @1 Generator=@1 Solaranlage
@1 Active (@2)=
### solar_panel.lua ###
Small Solar @1 Generator=@1 Solarmodul
# $1: Machine name (Includes tier)
@1 Active (@2 EU)=@1 ist eingeschaltet (@2 EU)
### sonic_screwdriver.lua ###
Sonic Screwdriver (left-click rotates face, right-click rotates axis)=Schallschraubendreher
### supply_converter.lua ###
## Machine-specific
Input Power=
Supply Converter=Stromumwandler
@1 (@2 @3 -> @4 @5)=
@1 Has Bad Cabling=@1 ist falsch verkabelt
### switching_station.lua ###
Switching Station=Schaltanlage
Channel=
Enables or disables technic's switching station ABM=
@1 Already Present=
@1. Supply: @2 Demand: @3=
Machines: timeout check=
### tool_workshop.lua ###
@1 Tool Workshop=@1 Werkzeugwerkstatt
### tree_tap.lua ###
Tree Tap=Baumzapfhahn
Raw Latex=Rohlatex
Rubber Fiber=Gummifaser
Tools: tree tap=
### vacuum.lua ###
Vacuum Cleaner=
### water_mill.lua ###
### hydro_turbine.lua ###
Hydro @1 Generator=@1 Wassermuehle
### wind_mill.lua ###
Wind Mill Frame=Windmuehlengeruest
Wind @1 Generator=@1 Windmuehle
@1 Improperly Placed=@1 ist falsch plaziert
Active @1 (@2 EU)=

View File

@ -0,0 +1,475 @@
# textdomain: technic
### alloy_furnace.lua ###
@1 Alloy Furnace=Horno de Aleacion @1
### alloy_recipes.lua ###
## Craft descriptions
Alloying=
### anchor.lua ###
Administrative World Anchor=
Owner: @1=
Unlocked=
Locked=
Keeping @1/@2 map blocks loaded=
### battery_box.lua ###
RE Battery=
Allow splitting incoming 'charge' stacks from tubes=
Allow splitting incoming 'discharge' stacks=
@1 Battery Box=Caja de Bateria @1
Charge=Cargar
Discharge=Descargar
Power level=Nivel de Poder
edit Channel=
@1 Battery Box: @2 / @3=
### cables.lua ###
@1 Cable=Cable @1
@1 Cable Plate=
### cans.lua ###
Water Can=Bidon de Agua
Lava Can=Bidon de Lava
River Water Can=
### centrifuge.lua ###
@1 Centrifuge=
### centrifuge_recipes.lua ###
Separating=
### chainsaw.lua ###
Chainsaw=Motosierra
### coal_alloy_furnace.lua ###
Fuel-Fired Alloy Furnace=Horno de Aleacion a Carbon
Machines: run coal alloy furnace=
@1 Active (@2%)=@1 Activo (@2%)
@1 is empty=
### coal_alloy_furnace.lua ###
### generator.lua ###
@1 Out Of Fuel=@1 Sin Combustible
### coal_furnace.lua ###
Fuel-Fired Furnace=Horno a Carbon
### common.lua ###
## Machine misc
Machine cannot be removed because it is not empty=La maquina no puede removerse porque no esta vacia
Inventory move disallowed due to protection=
### compressor.lua ###
@1 Compressor=Compresor @1
### compressor_recipes.lua ###
Compressing=
### constructor.lua ###
Constructor Mk@1=
Slot @1=
### electric_furnace.lua ###
@1 Furnace=Horno @1
### extractor.lua ###
@1 Extractor=Extractor @1
### extractor_recipes.lua ###
Extracting=
### flashlight.lua ###
Flashlight=Linterna
### forcefield.lua ###
Range=Alcance
Sphere=
Cube=
@1 Forcefield Emitter=Emisor de Campo de Fuerza @1
@1 Forcefield=Campo de Fuerza @1
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Enabled=
### forcefield.lua ###
### battery_box.lua ###
### supply_converter.lua ###
Digiline Channel=
### forcefield.lua ###
### generator.lua ###
### quarry.lua ###
### cables.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
HV=
### forcefield.lua ###
### machine_base.lua ###
### tool_workshop.lua ###
### quarry.lua ###
### music_player.lua ###
@1 Unpowered=@1 Sin Energia
@1 Active=@1 Activo
### forcefield.lua ###
### supply_converter.lua ###
Ignoring Mesecon Signal=
Controlled by Mesecon Signal=
### frames.lua ###
Frame=
Frame Motor=
Template=
Template (replacing)=
Template Tool=
Template Motor=
### freezer.lua ###
@1 Freezer=
### freezer_recipes.lua ###
Freezing=
### generator.lua ###
Fuel-Fired @1 Generator=Generador a Carbon @1
### generator.lua ###
### water_mill.lua ###
### hydro_turbine.lua ###
### geothermal.lua ###
### nuclear_reactor.lua ###
@1 (@2%)=
### geothermal.lua ###
Geothermal @1 Generator=Generador Geotermico @1
### grinder.lua ###
@1 Grinder=Amoladora @1
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### water_mill.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### cables.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### compressor.lua ###
### geothermal.lua ###
### alloy_furnace.lua ###
LV=
### grinder_recipes.lua ###
Grinding=
@1 Dust=
@1%-Fissile Uranium=
### grindings.lua ###
## Grinder Recipes
Sawdust=
@1 Grinding=
### injector.lua ###
Self-Contained Injector=
Stackwise=
Itemwise=
Public=
Private=
Machines: run injector=
### items.lua ###
# textdomain: technic
# Spanish Translation for Technic Mod
# Traduccion al Español del Mod Technic
# Autor: Diego Martínez <kaeza>
## Items
Silicon Wafer=Oblea de Silicio
Doped Silicon Wafer=Oblea de Silicio Dopada
Uranium Fuel=Combustible de Uranio
Diamond Drill Head=Mecha de Taladro de Diamante
Blue Energy Crystal=Cristal de Energia Azul
Green Energy Crystal=Cristal de Energia Verde
Red Energy Crystal=Cristal de Energia Rojo
Copper Coil=Resorte de Cobre
Low Voltage Transformer=Transformador de Bajo Voltaje
Medium Voltage Transformer=Transformador de Voltaje Medio
High Voltage Transformer=Transformador de Alto Voltaje
Control Logic Unit=Unidad Logica de Control
Mixed Metal Ingot=Lingote de Metal Mezclado
Composite Plate=Placa de Compuestos
Copper Plate=Placa de Cobre
Carbon Plate=Placa de Carbon
Graphite=Grafito
Carbon Cloth=Tela de Carbon
Machine Casing=
Rubber Goo=
@1%-Fissile Uranium Ingot=
@1%-Fissile Uranium Block=
### lighting.lua ###
someone=
Sorry, @1 owns that spot.=
Yellow Glowlight (thick)=
Yellow Glowlight (thin)=
White Glowlight (thick)=
White Glowlight (thin)=
Yellow Glowlight (small cube)=
White Glowlight (small cube)=
### machine_base.lua ###
### battery_box.lua ###
### tool_workshop.lua ###
Upgrade Slots=
### machine_base.lua ###
### tool_workshop.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
@1 Idle=@1 Quieto
### mining_drill.lua ###
Single node.=Nodo simple.
3 nodes deep.=3 nodos de profundo.
3 nodes wide.=3 nodos de ancho.
3 nodes tall.=3 nodos de alto.
3x3 nodes.=3x3 nodos.
Use while sneaking to change Mining Drill Mk@1 modes.=Manten pulsado Mayus y Usar para cambiar el modo del Taladro de Mineria Mk@1.
Mining Drill Mk@1 Mode @2: =
Mining Drill Mk@1=Taladro de Mineria Mk@1
Mining Drill Mk@1 Mode @2=Taladro de Mineria Mk@1 Modo @2
### mining_lasers.lua ###
Mining Laser Mk@1=Laser de Mineria Mk@1
### music_player.lua ###
@1 Music Player=Reproductor de Musica @1
Stop=
Stopped=
Current track @1=
### nuclear_reactor.lua ###
@1 Nuclear Reactor Core=
Nuclear Reactor Rod Compartment=Compartimiento para Vara de Reactor Nuclear
Start=
automatic Start=
Enable Digiline=
Save=
Digiline Remote Channel=
Error: You need to insert @1 pieces of Uranium Fuel.=
Error: The power plant seems to be built incorrectly.=
Machines: reactor melt-down check=
Start successful=
### power_monitor.lua ###
## Machine names
Power Monitor=
Machines: run power monitor=
# $1: Machine name $2: Supply $3: Demand
@1. Supply: @2 Demand: @3=@1. Alimentacion: @2 Demanda: @3
### power_monitor.lua ###
### switching_station.lua ###
### battery_box.lua ###
@1 Has No Network=@1 No Tiene Una Red
### power_radiator.lua ###
@1 Power Radiator=
Machines: run power radiator=
@1 is unpowered=
@1 is powered (@2% of maximum power)=
### power_radiator.lua ###
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### freezer.lua ###
### tool_workshop.lua ###
### hydro_turbine.lua ###
### cables.lua ###
### wind_mill.lua ###
### battery_box.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### centrifuge.lua ###
### compressor.lua ###
### alloy_furnace.lua ###
MV=
### prospector.lua ###
Prospector=
Right-click to set target block type=
Current target:=
No target set=
May set new target:=
Set target=
No new target available=
Region cross section:=
Set region cross section:=
Region depth:=
Set region depth:=
Accuracy:=
### quarry.lua ###
@1 Quarry=Cantera @1
Digging not started=
Digging finished=
Purging cache=
Digging @1 m @2 machine=
above=
below=
Restart=
@1 purging cache=
@1 Finished=@1 Terminado
Manually taking/removing from cache by hand is not possible. If you can't wait, restart or disable the quarry to start automatic purge.=
### quarry.lua ###
### anchor.lua ###
Radius:=
Disabled=
Enabled=
### quarry.lua ###
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Disabled=
### quarry.lua ###
### forcefield.lua ###
### nuclear_reactor.lua ###
You are not allowed to edit this!=
### radiation.lua ###
## Radiation
Radiation damage=
Corium Source=
Flowing Corium=
Corium Bucket=
Chernobylite Block=
Corium: griefing=
### solar_array.lua ###
Arrayed Solar @1 Generator=Panel Solar @1
@1 Active (@2)=
### solar_panel.lua ###
Small Solar @1 Generator=Panel Solar @1
@1 Active (@2 EU)=@1 Activo (@2 EU)
### sonic_screwdriver.lua ###
Sonic Screwdriver (left-click rotates face, right-click rotates axis)=Destonillador Sonico
### supply_converter.lua ###
## Machine-specific
Input Power=
Supply Converter=Convertidor de Alimentacion
@1 (@2 @3 -> @4 @5)=
@1 Has Bad Cabling=@1 Tiene Mal Cableado
### switching_station.lua ###
Switching Station=Estacion de Conmutacion
Channel=
Enables or disables technic's switching station ABM=
@1 Already Present=
@1. Supply: @2 Demand: @3=
Machines: timeout check=
### tool_workshop.lua ###
@1 Tool Workshop=Taller de Herramientas @1
### tree_tap.lua ###
Tree Tap=Grifo de Arbol
Raw Latex=Latex Crudo
Rubber Fiber=Fibra de Hule
Tools: tree tap=
### vacuum.lua ###
Vacuum Cleaner=
### water_mill.lua ###
### hydro_turbine.lua ###
Hydro @1 Generator=Molino de Agua @1
### wind_mill.lua ###
Wind Mill Frame=Armazon de Molino de Viento
Wind @1 Generator=Molino de Viento @1
@1 Improperly Placed=@1 No Colocado Apropiadamente
Active @1 (@2 EU)=

View File

@ -0,0 +1,475 @@
# textdomain: technic
### alloy_furnace.lua ###
@1 Alloy Furnace=Four à alliages @1
### alloy_recipes.lua ###
## Craft descriptions
Alloying=Fonderie dalliage
### anchor.lua ###
Administrative World Anchor=Ancre pour les administrateurs du monde
Owner: @1=Propriétaire : @1
Unlocked=Déverrouillé
Locked=Verrouillé
Keeping @1/@2 map blocks loaded=Garde @1/@2 blocs du monde chargés
### battery_box.lua ###
## Tools
RE Battery=Batterie RE
Allow splitting incoming 'charge' stacks from tubes=Autoriser à séparer les piles de 'charges' entrantes venant des tuyaux
Allow splitting incoming 'discharge' stacks=Autoriser à séparer les piles de 'décharges'
@1 Battery Box=Batterie @1
Charge=Charger
Discharge=Décharger
Power level=Niveau d'énergie
edit Channel=choisir le cannal
@1 Battery Box: @2 / @3=@Batterie @1 : @2/@3
### cables.lua ###
@1 Cable=Câble @1
@1 Cable Plate=Plaque de câble @1
### cans.lua ###
Water Can=Jerrican deau
Lava Can=Jerrican de lave
River Water Can=Jerrican deau de rivière
### centrifuge.lua ###
@1 Centrifuge=Centrifugeuse @1
### centrifuge_recipes.lua ###
Separating=Séparation
### chainsaw.lua ###
Chainsaw=Tronçonneuse
### coal_alloy_furnace.lua ###
Fuel-Fired Alloy Furnace=Four à alliage à carburant
Machines: run coal alloy furnace=Machines : fonctionnement du four à alliages au charbon
@1 Active (@2%)=@1 actif (@2 %)
@1 is empty=@1 est vide
### coal_alloy_furnace.lua ###
### generator.lua ###
@1 Out Of Fuel=@1 na plus de carburant
### coal_furnace.lua ###
Fuel-Fired Furnace=Four à carburant
### common.lua ###
## Machine misc
Machine cannot be removed because it is not empty=La machine ne peut pas être retirée car elle nest pas vide
Inventory move disallowed due to protection=Le déplacement dinventaire nest pas autorisé en raison de la protection
### compressor.lua ###
@1 Compressor=Compresseur @1
### compressor_recipes.lua ###
Compressing=Compression
### constructor.lua ###
Constructor Mk@1=Constructeur Mk@1
Slot @1=Emplacement @1
### electric_furnace.lua ###
@1 Furnace=Four @1
### extractor.lua ###
@1 Extractor=Extracteur @1
### extractor_recipes.lua ###
Extracting=Extraction
### flashlight.lua ###
Flashlight=Lampe-torche
### forcefield.lua ###
Range=Plage
Sphere=Sphère
Cube=Cube
@1 Forcefield Emitter=Émetteur de champ de force @1
@1 Forcefield=Champ de force @1
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Enabled=@1 activé
### forcefield.lua ###
### battery_box.lua ###
### supply_converter.lua ###
Digiline Channel=Cannal Digiline
### forcefield.lua ###
### generator.lua ###
### quarry.lua ###
### cables.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
HV=haute tension
### forcefield.lua ###
### machine_base.lua ###
### tool_workshop.lua ###
### quarry.lua ###
### music_player.lua ###
@1 Unpowered=@1 non alimenté en énergie
@1 Active=@1 actif
### forcefield.lua ###
### supply_converter.lua ###
Ignoring Mesecon Signal=Ignorer le signal Mesecon
Controlled by Mesecon Signal=Contrôlé par signal Mesecon
### frames.lua ###
Frame=Cadre
Frame Motor=Cadre de moteur
Template=Modèle
Template (replacing)=Modèle (remplacement)
Template Tool=Modèle doutil
Template Motor=Modèle de moteur
### freezer.lua ###
@1 Freezer=Congélateur @1
### freezer_recipes.lua ###
Freezing=Congélation
### generator.lua ###
Fuel-Fired @1 Generator=Générateur thermique @1
### generator.lua ###
### water_mill.lua ###
### hydro_turbine.lua ###
### geothermal.lua ###
### nuclear_reactor.lua ###
@1 (@2%)=@1 (@2 %)
### geothermal.lua ###
Geothermal @1 Generator=Générateur géothermique @1
### grinder.lua ###
@1 Grinder=Broyeur @1
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### water_mill.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### cables.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### compressor.lua ###
### geothermal.lua ###
### alloy_furnace.lua ###
LV=faible tension
### grinder_recipes.lua ###
Grinding=Broyage
@1 Dust=Poudre @1
@1%-Fissile Uranium=duranium fissile (@1 %)
### grindings.lua ###
## Grinder Recipes
Sawdust=sciures de bois
@1 Grinding=Broyage d@1
### injector.lua ###
Self-Contained Injector=Injecteur autonome
Stackwise=Stack par stack
Itemwise=Item par item
Public=Public
Private=Privé
Machines: run injector= fonctionnement de linjecteur
### items.lua ###
# textdomain: technic
# template.txt
# Template for translations of Technic
## Items
Silicon Wafer=Tranche de silicium
Doped Silicon Wafer=Tranche de silicium doppé
Uranium Fuel=Uranium 235
Diamond Drill Head=Tête de forage en diamant
Blue Energy Crystal=Cristal d'énergie bleu
Green Energy Crystal=Cristal d'énergie vert
Red Energy Crystal=Cristal d'énergie rouge
Copper Coil=Bobine de cuivre
Low Voltage Transformer=Transformateur basse tension
Medium Voltage Transformer=Transformateur moyenne tension
High Voltage Transformer=Transformateur haute tension
Control Logic Unit=Unité de contrôle logique
Mixed Metal Ingot=Lingot de métal allié
Composite Plate=Plaque composite
Copper Plate=Plaque de cuivre
Carbon Plate=Plaque de carbone
Graphite=Graphite
Carbon Cloth=Fibre de carbone
Machine Casing=Boîtier de machine
Rubber Goo=
@1%-Fissile Uranium Ingot=Lingot d'uranium fissile (@1 %)
@1%-Fissile Uranium Block=Bloc d'uranium fissile (@1 %)
### lighting.lua ###
someone=quelquun
Sorry, @1 owns that spot.=Désolé, cet endroit est la propriété de @1.
Yellow Glowlight (thick)=Lumière jaune (forte)
Yellow Glowlight (thin)=Lumière jaune (faible)
White Glowlight (thick)=Lumière blanche (faible)
White Glowlight (thin)=Lumière blanche (forte)
Yellow Glowlight (small cube)=Lumière jaune (petit cube)
White Glowlight (small cube)=Lumière blanche (petit cube)
### machine_base.lua ###
### battery_box.lua ###
### tool_workshop.lua ###
Upgrade Slots=Emplacements d'amélioration
### machine_base.lua ###
### tool_workshop.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
@1 Idle=@1 au repos
### mining_drill.lua ###
Single node.=Mode simple.
3 nodes deep.=3 blocs de profondeur.
3 nodes wide.=3 blocs de large.
3 nodes tall.=3 blocs de long.
3x3 nodes.=3×3 blocs.
Use while sneaking to change Mining Drill Mk@1 modes.=À utiliser acroupis pour changer le mode de la foreuse Mk@1.
Mining Drill Mk@1 Mode @2: =Foreuse Mk@1 Mode @2 :
Mining Drill Mk@1=Foreuse Mk@1
Mining Drill Mk@1 Mode @2=Foreuse Mk@1 Mode @2
### mining_lasers.lua ###
Mining Laser Mk@1=Foreuse laser Mk@1
### music_player.lua ###
@1 Music Player=Grammophone @1
Stop=Stop
Stopped=Arrêté
Current track @1=Morceau actuel @1
### nuclear_reactor.lua ###
@1 Nuclear Reactor Core=Cœur de réacteur nucléaire @1
Nuclear Reactor Rod Compartment=Compartiment à barres du réacteur nucléaire
Start=Démarrer
automatic Start=démarrage automatique
Enable Digiline=Activer Digiline
Save=Sauvegarder
Digiline Remote Channel=Cannal Digiline distant
Error: You need to insert @1 pieces of Uranium Fuel.=Erreur : vous devez insérer @1 morceaux dUranium 235.
Error: The power plant seems to be built incorrectly.=Erreur : la centrale électrique est construite de manière incorrecte.
Machines: reactor melt-down check=Machines : vérification de la fusion des réacteurs
Start successful=Démarrage réussit
### power_monitor.lua ###
## Machine names
Power Monitor=Contrôleur de puissance
Machines: run power monitor=Machines : fonctionnement du contrôleur de puissance
# @1: Machine name @2: Supply @3: Demand
@1. Supply: @2 Demand: @3=@1. fournit : @2 demande : @3
### power_monitor.lua ###
### switching_station.lua ###
### battery_box.lua ###
@1 Has No Network=@1 na pas de réseau
### power_radiator.lua ###
@1 Power Radiator=Radiateur de puissance @1
Machines: run power radiator=Machines : fonctionnement du radiateur de puissance
@1 is unpowered=@1 est hors tension
@1 is powered (@2% of maximum power)=@1 est alimenté (@2 % de la puissance maximale)
### power_radiator.lua ###
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### freezer.lua ###
### tool_workshop.lua ###
### hydro_turbine.lua ###
### cables.lua ###
### wind_mill.lua ###
### battery_box.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### centrifuge.lua ###
### compressor.lua ###
### alloy_furnace.lua ###
MV=moyenne tension
### prospector.lua ###
Prospector=Prospecteur
Right-click to set target block type=Clic droit pour définir un type de bloc cible
Current target:=Cible actuelle :
No target set=Pas de cible définie
May set new target:=Peut définir une nouvelle cible :
Set target=Définir une cible
No new target available=Pas de cible disponible
Region cross section:=Section de la zone en commun :
Set region cross section:=Définir une section en commun :
Region depth:=Profondeur de la zone :
Set region depth:=Définir la profondeur de la zone :
Accuracy:=Précision :
### quarry.lua ###
@1 Quarry=Carrière @1
Digging not started=Creusage non démarré
Digging finished=Creusage terminé
Purging cache=Purge du cache
Digging @1 m @2 machine=Creusage de @1 m @2 de la machine
above=au dessus
below=en dessous
Restart=Redémarrer
@1 purging cache=@1 purge le cache
@1 Finished=@1 a fini
Manually taking/removing from cache by hand is not possible. If you can't wait, restart or disable the quarry to start automatic purge.=Intéragir avec le cache manuellement nest pas possible. Si vous ne pouvez pas attendre, redémarrez ou désactivez la carrière pour commencer la purge automatique.
### quarry.lua ###
### anchor.lua ###
Radius:=Rayon :
Disabled=Désactivé
Enabled=Activé
### quarry.lua ###
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Disabled=@1 désactivé
### quarry.lua ###
### forcefield.lua ###
### nuclear_reactor.lua ###
You are not allowed to edit this!=Vous nêtes pas autorisé à modifier cela !
### radiation.lua ###
## Radiation
Radiation damage=Dommages dus aux radiations
Corium Source=Source de corium
Flowing Corium=Corium liquide
Corium Bucket=Seau de corium
Chernobylite Block=Bloc de Chernobylite
Corium: griefing=Corium : griefing
### solar_array.lua ###
Arrayed Solar @1 Generator=Générateur solaire @1
@1 Active (@2)=@1 actif (@2)
### solar_panel.lua ###
Small Solar @1 Generator=Petit générateur solaire @1
@1 Active (@2 EU)=@1 actif (@2 EU)
### sonic_screwdriver.lua ###
Sonic Screwdriver (left-click rotates face, right-click rotates axis)=Tournevis supersonique (clic gauche pour tourner lavant, clic droit pour tourner laxe)
### supply_converter.lua ###
## Machine-specific
Input Power=Puissance dentrée
Supply Converter=Convertisseur de tension
@1 (@2 @3 -> @4 @5)=@1 (@2 @3 -> @4 @5)
@1 Has Bad Cabling=@1 est mal cablé
### switching_station.lua ###
Switching Station=Station de commutation
Channel=Cannal
Enables or disables technic's switching station ABM=Active ou desactive la station de commutation de technic
@1 Already Present=@1 déja présent
@1. Supply: @2 Demand: @3=@1. Alimentation : @2 Consommation : @3
Machines: timeout check=Machines : vérification de timeout
### tool_workshop.lua ###
@1 Tool Workshop=Atelier doutillage @1
### tree_tap.lua ###
Tree Tap=Robinet à sève
Raw Latex=Latex brut
Rubber Fiber=Fibre de caoutchouc
Tools: tree tap=Outils : Robinet à sève
### vacuum.lua ###
Vacuum Cleaner=Aspirateur
### water_mill.lua ###
### hydro_turbine.lua ###
Hydro @1 Generator=Générateur hydroélectrique @1
### wind_mill.lua ###
Wind Mill Frame=Cadre déolienne
Wind @1 Generator=Générateur éolien @1
@1 Improperly Placed=@1 est mal placé
Active @1 (@2 EU)=Active @1 (@2 EU)

View File

@ -0,0 +1,473 @@
# textdomain: technic
### alloy_furnace.lua ###
@1 Alloy Furnace=@1 Fornace per leghe
### alloy_recipes.lua ###
## Craft descriptions
Alloying=Cottura lege
### anchor.lua ###
Administrative World Anchor=Ancora-mondo amministrativa
Owner: @1=
Unlocked=Non chiuso a chiave
Locked=Chiuso a chiave
Keeping @1/@2 map blocks loaded=Mantenimento di @1/@2 blocchi mappa caricati
### battery_box.lua ###
## Tools
RE Battery=Batteria RE
Allow splitting incoming 'charge' stacks from tubes=
Allow splitting incoming 'discharge' stacks=
@1 Battery Box= @1 Box batterie
Charge=Carica
Discharge=Scarica
Power level=Livello di potenza
edit Channel=
@1 Battery Box: @2 / @3=
### cables.lua ###
@1 Cable=Cavo @1
@1 Cable Plate=
### cans.lua ###
Water Can=Serbatoio d'acqua
Lava Can=Serbatoio di lava
River Water Can=
### centrifuge.lua ###
@1 Centrifuge=
### centrifuge_recipes.lua ###
Separating=
### chainsaw.lua ###
Chainsaw=Motosega
### coal_alloy_furnace.lua ###
Fuel-Fired Alloy Furnace=Fornace per leghe a carbone
Machines: run coal alloy furnace=
@1 Active (@2%)=@1 Attivo (@2%)
@1 is empty=
### coal_alloy_furnace.lua ###
### generator.lua ###
@1 Out Of Fuel=@1 senza carburante
### coal_furnace.lua ###
Fuel-Fired Furnace=Fornace a carbone
### common.lua ###
## Machine misc
Machine cannot be removed because it is not empty=La macchina non può essere rimossa perchè non è vuota
Inventory move disallowed due to protection=Impossibile muovere l'inventario a causa della protezione
### compressor.lua ###
@1 Compressor=Compressore @1
### compressor_recipes.lua ###
Compressing=Compressione
### constructor.lua ###
Constructor Mk@1=Costruttore Mk@1
Slot @1=Alloggio @1
### electric_furnace.lua ###
@1 Furnace=@1 Fornace
### extractor.lua ###
@1 Extractor=Estrattore @1
### extractor_recipes.lua ###
Extracting=Estrazione
### flashlight.lua ###
Flashlight=Torcia
### forcefield.lua ###
Range=Raggio
Sphere=
Cube=
@1 Forcefield Emitter=Emettitore di campo di forza @1
@1 Forcefield=Campo di forza @1
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Enabled=@1 Abilitato
### forcefield.lua ###
### battery_box.lua ###
### supply_converter.lua ###
Digiline Channel=
### forcefield.lua ###
### generator.lua ###
### quarry.lua ###
### cables.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
HV=
### forcefield.lua ###
### machine_base.lua ###
### tool_workshop.lua ###
### quarry.lua ###
### music_player.lua ###
@1 Unpowered=@1 Non alimentato
@1 Active=@1 Attivo
### forcefield.lua ###
### supply_converter.lua ###
Ignoring Mesecon Signal=
Controlled by Mesecon Signal=
### frames.lua ###
Frame=Cornice
Frame Motor=Cornice del motore
Template=Sagoma
Template (replacing)=Sagoma (di rimpiazzo)
Template Tool=Strumento per sagome
Template Motor=Motore per sagome
### freezer.lua ###
@1 Freezer=
### freezer_recipes.lua ###
Freezing=
### generator.lua ###
Fuel-Fired @1 Generator=@1 Generatore a carbone
### generator.lua ###
### water_mill.lua ###
### hydro_turbine.lua ###
### geothermal.lua ###
### nuclear_reactor.lua ###
@1 (@2%)=
### geothermal.lua ###
Geothermal @1 Generator=@1 Generatore Geotermico
### grinder.lua ###
@1 Grinder=@1 Tritatutto
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### water_mill.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### cables.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### compressor.lua ###
### geothermal.lua ###
### alloy_furnace.lua ###
LV=
### grinder_recipes.lua ###
Grinding=Macinazione
@1 Dust=Polvere di @1
@1%-Fissile Uranium=@1%-Uranio fissile
### grindings.lua ###
## Grinder Recipes
Sawdust=
@1 Grinding=Macinazione @1
### injector.lua ###
Self-Contained Injector=Ignettore
Stackwise=pila completa
Itemwise=Singolo elemento
Public=
Private=
Machines: run injector=
### items.lua ###
# textdomain: technic
## Items
Silicon Wafer=Wafer di silicone
Doped Silicon Wafer=Wafer di silicone dopato
Uranium Fuel=Uranio Combustibile
Diamond Drill Head=Trivella diamantata
Blue Energy Crystal=Cristallo energetico blu
Green Energy Crystal=Cristallo energetico verde
Red Energy Crystal=Cristallo energetico rosso
Copper Coil=Bobina di rame
Low Voltage Transformer=Trasformatore in bassa tensione
Medium Voltage Transformer=Trasformatore in media tensione
High Voltage Transformer=Trasformatore in alta tensione
Control Logic Unit=Unità di controllo logica
Mixed Metal Ingot=Lingotto in lega ibrida
Composite Plate=Lastra composita
Copper Plate=Lastra di rame
Carbon Plate=Lastra in carbonio
Graphite=Lastra in graffite
Carbon Cloth=Fibra di carbonio
Machine Casing=
Rubber Goo=
@1%-Fissile Uranium Ingot=@1%-Lingotto di uranio fissile
@1%-Fissile Uranium Block=@1%-Blocco di uranio fissile
### lighting.lua ###
someone=
Sorry, @1 owns that spot.=
Yellow Glowlight (thick)=
Yellow Glowlight (thin)=
White Glowlight (thick)=
White Glowlight (thin)=
Yellow Glowlight (small cube)=
White Glowlight (small cube)=
### machine_base.lua ###
### battery_box.lua ###
### tool_workshop.lua ###
Upgrade Slots=Alloggi di aggiornamento
### machine_base.lua ###
### tool_workshop.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
@1 Idle=@1 Inattivo
### mining_drill.lua ###
Single node.=
3 nodes deep.=3 nodi in profondità.
3 nodes wide.=3 nodi in larghezza.
3 nodes tall.=3 nodi in altezza.
3x3 nodes.=3x3 nodi.
Use while sneaking to change Mining Drill Mk@1 modes.=Premi shift (freccia grossa) e usa per cambiare modalità nella trivella da miniera Mk@1.
Mining Drill Mk@1 Mode @2: =
Mining Drill Mk@1=Trivella da miniera mk@1
Mining Drill Mk@1 Mode @2=Trivella mk@1 in modalità @2
### mining_lasers.lua ###
Mining Laser Mk@1=Laser da miniera mk@1
### music_player.lua ###
@1 Music Player=Music Player @1
Stop=
Stopped=Fermato
Current track @1=Traccia corrente @1
### nuclear_reactor.lua ###
@1 Nuclear Reactor Core=
Nuclear Reactor Rod Compartment=Compartimento combustibile nucleare
Start=
automatic Start=
Enable Digiline=
Save=
Digiline Remote Channel=
Error: You need to insert @1 pieces of Uranium Fuel.=
Error: The power plant seems to be built incorrectly.=
Machines: reactor melt-down check=
Start successful=
### power_monitor.lua ###
## Machine names
Power Monitor=
Machines: run power monitor=
# $1: Machine name $2: Supply $3: Demand
@1. Supply: @2 Demand: @3=@1. Prodotto: @2 Consumato: @3
### power_monitor.lua ###
### switching_station.lua ###
### battery_box.lua ###
@1 Has No Network=@1 non è collegata
### power_radiator.lua ###
@1 Power Radiator=
Machines: run power radiator=
@1 is unpowered=
@1 is powered (@2% of maximum power)=
### power_radiator.lua ###
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### freezer.lua ###
### tool_workshop.lua ###
### hydro_turbine.lua ###
### cables.lua ###
### wind_mill.lua ###
### battery_box.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### centrifuge.lua ###
### compressor.lua ###
### alloy_furnace.lua ###
MV=
### prospector.lua ###
Prospector=
Right-click to set target block type=
Current target:=
No target set=
May set new target:=
Set target=
No new target available=
Region cross section:=
Set region cross section:=
Region depth:=
Set region depth:=
Accuracy:=
### quarry.lua ###
@1 Quarry=Cava @1
Digging not started=Scavo non iniziato
Digging finished=Scavo finito
Purging cache=
Digging @1 m @2 machine=Scavo di @1 m @2 la macchina
above=sopra
below=sotto
Restart=
@1 purging cache=
@1 Finished=@1 Finito
Manually taking/removing from cache by hand is not possible. If you can't wait, restart or disable the quarry to start automatic purge.=
### quarry.lua ###
### anchor.lua ###
Radius:=Raggio:
Disabled=Disabilitato
Enabled=Abilitato
### quarry.lua ###
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Disabled=
### quarry.lua ###
### forcefield.lua ###
### nuclear_reactor.lua ###
You are not allowed to edit this!=
### radiation.lua ###
## Radiation
Radiation damage=
Corium Source=
Flowing Corium=
Corium Bucket=
Chernobylite Block=
Corium: griefing=
### solar_array.lua ###
Arrayed Solar @1 Generator=@1 Pannello Solare
@1 Active (@2)=
### solar_panel.lua ###
Small Solar @1 Generator=@1 Pannello solare
@1 Active (@2 EU)=@1 Attivo (@2 EU)
### sonic_screwdriver.lua ###
Sonic Screwdriver (left-click rotates face, right-click rotates axis)=Cacciavite sonico
### supply_converter.lua ###
## Machine-specific
Input Power=
Supply Converter=Trasformatore
@1 (@2 @3 -> @4 @5)=
@1 Has Bad Cabling=@1 ha un cablaggio scorretto
### switching_station.lua ###
Switching Station=Stazione di controllo
Channel=
Enables or disables technic's switching station ABM=
@1 Already Present=
@1. Supply: @2 Demand: @3=
Machines: timeout check=
### tool_workshop.lua ###
@1 Tool Workshop=Officina per attrezzi @1
### tree_tap.lua ###
Tree Tap=Batti albero
Raw Latex=Latex grezzo
Rubber Fiber=Fibra di gomma
Tools: tree tap=
### vacuum.lua ###
Vacuum Cleaner=
### water_mill.lua ###
### hydro_turbine.lua ###
Hydro @1 Generator=Turbina Elettrica @1
### wind_mill.lua ###
Wind Mill Frame=Pala eolica
Wind @1 Generator=@1 Generatore eolico
@1 Improperly Placed=@1 Piazzato impropiamente
Active @1 (@2 EU)=

View File

@ -0,0 +1,477 @@
# textdomain: technic
### alloy_furnace.lua ###
## Machine names
@1 Alloy Furnace=@1 Piec stopowy
### alloy_recipes.lua ###
## Craft descriptions
Alloying=Stapianie
### anchor.lua ###
Administrative World Anchor=Administracyjna kotwica świata
Owner: @1=
Unlocked=Odblokowany/a
Locked=Zablokowany/a
Keeping @1/@2 map blocks loaded=Ciągle ładuję @1/@2 bloki mapy
### battery_box.lua ###
## Tools
RE Battery=Bateria ładowalna
Allow splitting incoming 'charge' stacks from tubes=
Allow splitting incoming 'discharge' stacks=
@1 Battery Box=@1 Skrzynka baterii
Charge=Ładuj
Discharge=Rozładuj
Power level=Poziom zasilania
edit Channel=
@1 Battery Box: @2 / @3=
### cables.lua ###
@1 Cable=@1 Przewód
@1 Cable Plate=
### cans.lua ###
Water Can=Kanister wody
Lava Can=Kanister lawy
River Water Can=
### centrifuge.lua ###
@1 Centrifuge=@1 Centryfuga
### centrifuge_recipes.lua ###
Separating=Oddzielanie
### chainsaw.lua ###
Chainsaw=Piła łańcuchowa
### coal_alloy_furnace.lua ###
Fuel-Fired Alloy Furnace=Piec stopowy zasilany paliwem
Machines: run coal alloy furnace=
@1 Active (@2%)=
@1 is empty=@1 jest pusty/a
### coal_alloy_furnace.lua ###
### generator.lua ###
@1 Out Of Fuel=@1 brak paliwa
### coal_furnace.lua ###
Fuel-Fired Furnace=Piec zasilany paliwem
### common.lua ###
## Machine misc
Machine cannot be removed because it is not empty=Nie można usunąć maszyny, ponieważ nie jest pusta
Inventory move disallowed due to protection=Przenoszenie rzeczy z ekwipunku niemożliwe z powodu ochrony
### compressor.lua ###
@1 Compressor=@1 Kompresor
### compressor_recipes.lua ###
Compressing=Kompresowanie
### constructor.lua ###
Constructor Mk@1=Konstruktor Mk@1
Slot @1=Otwór @1
### electric_furnace.lua ###
@1 Furnace=@1 Piec
### extractor.lua ###
@1 Extractor=@1 Ekstraktor
### extractor_recipes.lua ###
Extracting=Ekstrakcja
### flashlight.lua ###
Flashlight=Latarka
### forcefield.lua ###
Range=Zasięg
Sphere=
Cube=
@1 Forcefield Emitter=@1 Emiter pola siłowego
@1 Forcefield=@1 Pole siłowe
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Enabled=@1 Włączony/a
### forcefield.lua ###
### battery_box.lua ###
### supply_converter.lua ###
Digiline Channel=
### forcefield.lua ###
### generator.lua ###
### quarry.lua ###
### cables.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
HV=
### forcefield.lua ###
### machine_base.lua ###
### tool_workshop.lua ###
### quarry.lua ###
### music_player.lua ###
@1 Unpowered=@1 brak zasilania
@1 Active=@1 Aktywny/a
### forcefield.lua ###
### supply_converter.lua ###
Ignoring Mesecon Signal=Ignoruj sygnał Mesecon
Controlled by Mesecon Signal=Sterowany sygnałem Mesecon
### frames.lua ###
Frame=Klatka
Frame Motor=Silnik klatkowy
Template=Szablon
Template (replacing)=Szablon (zastępczy)
Template Tool=Szablon narzędzia
Template Motor=
### freezer.lua ###
@1 Freezer=
### freezer_recipes.lua ###
Freezing=
### generator.lua ###
Fuel-Fired @1 Generator=@1 Generator zasilany paliwem
### generator.lua ###
### water_mill.lua ###
### hydro_turbine.lua ###
### geothermal.lua ###
### nuclear_reactor.lua ###
@1 (@2%)=
### geothermal.lua ###
Geothermal @1 Generator=@1 Generator geotermalny
### grinder.lua ###
@1 Grinder=@1 Młynek
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### water_mill.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### cables.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### compressor.lua ###
### geothermal.lua ###
### alloy_furnace.lua ###
LV=
### grinder_recipes.lua ###
Grinding=Mielenie
@1 Dust=@1 Pył
@1%-Fissile Uranium=@1% Uranu
### grindings.lua ###
## Grinder Recipes
# $1: Name
Sawdust=
@1 Grinding=@1 Mielenie
### injector.lua ###
Self-Contained Injector=Samowystarczalny wtryskiwacz
Stackwise=Cały stack
Itemwise=Jeden przedmiot
Public=
Private=
Machines: run injector=
### items.lua ###
# textdomain: technic
# Polish Translation for Technic mod
# Polskie tłumaczenie Technic mod
# by mat9117
## Items
Silicon Wafer=Płytka krzemowa
Doped Silicon Wafer=Domieszkowana płytka krzemowa
Uranium Fuel=Paliwo uranowe
Diamond Drill Head=Diamentowa głowica wiertła
Blue Energy Crystal=Niebieski kryształ energii
Green Energy Crystal=Zielony kryształ energii
Red Energy Crystal=Czerwony kryształ energii
Copper Coil=Miedziana cewka
Low Voltage Transformer=Transformator niskiego napięcia
Medium Voltage Transformer=Transformator średniego napięcia
High Voltage Transformer=Transformator wysokiego napięcia
Control Logic Unit=Jednostka sterująca
Mixed Metal Ingot=Sztabka zmieszanych metali
Composite Plate=Płytka kompozytowa
Copper Plate=Płytka miedziana
Carbon Plate=Płytka węglowa
Graphite=Grafit
Carbon Cloth=Włókno węglowe
Machine Casing=
Rubber Goo=
@1%-Fissile Uranium Ingot=@1% Sztabka uranu
@1%-Fissile Uranium Block=@1% Blok uranu
### lighting.lua ###
someone=
Sorry, @1 owns that spot.=
Yellow Glowlight (thick)=
Yellow Glowlight (thin)=
White Glowlight (thick)=
White Glowlight (thin)=
Yellow Glowlight (small cube)=
White Glowlight (small cube)=
### machine_base.lua ###
### battery_box.lua ###
### tool_workshop.lua ###
Upgrade Slots=Miejsca na ulepszenia
### machine_base.lua ###
### tool_workshop.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
@1 Idle=@1 Bezczynny/a
### mining_drill.lua ###
Single node.=Pojedynczy blok.
3 nodes deep.=Głęboki na 3 bloki.
3 nodes wide.=Szeroki na 3 bloki.
3 nodes tall.=Wysoki na 3 bloki.
3x3 nodes.=3x3 bloki.
Use while sneaking to change Mining Drill Mk@1 modes.=Użyj podczas skradania, aby zmienić tryby wiertła górniczego Mk@1
Mining Drill Mk@1 Mode @2: =
Mining Drill Mk@1=Wiertło górnicze Mk@1
Mining Drill Mk@1 Mode @2=Tryb wiertła górniczego Mk@1
### mining_lasers.lua ###
Mining Laser Mk@1=Laser górniczy Mk@1
### music_player.lua ###
@1 Music Player=@1 Odtwarzacz muzyki
Stop=
Stopped=Zatrzymany/a
Current track @1=
### nuclear_reactor.lua ###
@1 Nuclear Reactor Core=
Nuclear Reactor Rod Compartment=Komora rdzenia reaktora atomowego
Start=
automatic Start=
Enable Digiline=
Save=
Digiline Remote Channel=
Error: You need to insert @1 pieces of Uranium Fuel.=
Error: The power plant seems to be built incorrectly.=
Machines: reactor melt-down check=
Start successful=
### power_monitor.lua ###
Power Monitor=
Machines: run power monitor=
# $1: Machine name $2: Supply $3: Demand
@1. Supply: @2 Demand: @3=@1. Zapas: @2 Pobór: @3
### power_monitor.lua ###
### switching_station.lua ###
### battery_box.lua ###
@1 Has No Network=@1 Nie podłączony/a do sieci
### power_radiator.lua ###
@1 Power Radiator=
Machines: run power radiator=
@1 is unpowered=
@1 is powered (@2% of maximum power)=
### power_radiator.lua ###
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### freezer.lua ###
### tool_workshop.lua ###
### hydro_turbine.lua ###
### cables.lua ###
### wind_mill.lua ###
### battery_box.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### centrifuge.lua ###
### compressor.lua ###
### alloy_furnace.lua ###
MV=
### prospector.lua ###
Prospector=
Right-click to set target block type=
Current target:=
No target set=
May set new target:=
Set target=
No new target available=
Region cross section:=
Set region cross section:=
Region depth:=
Set region depth:=
Accuracy:=
### quarry.lua ###
@1 Quarry=@1 Kamieniołom
Digging not started=Nie rozpoczęto kopania
Digging finished=Kopanie skończone
Purging cache=
Digging @1 m @2 machine=Kopię @1 m @2 maszyną
above=nad
below=pod
Restart=
@1 purging cache=
@1 Finished=@1 Ukończony
Manually taking/removing from cache by hand is not possible. If you can't wait, restart or disable the quarry to start automatic purge.=
### quarry.lua ###
### anchor.lua ###
Radius:=Promień:
Disabled=Wyłączony/a
Enabled=Włączony/a
### quarry.lua ###
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Disabled=
### quarry.lua ###
### forcefield.lua ###
### nuclear_reactor.lua ###
You are not allowed to edit this!=
### radiation.lua ###
## Radiation
Radiation damage=
Corium Source=
Flowing Corium=
Corium Bucket=
Chernobylite Block=
Corium: griefing=
### solar_array.lua ###
Arrayed Solar @1 Generator=@1 Szeregowy generator słoneczny
@1 Active (@2)=
### solar_panel.lua ###
Small Solar @1 Generator=@1 Mały generator słoneczny
@1 Active (@2 EU)=
### sonic_screwdriver.lua ###
Sonic Screwdriver (left-click rotates face, right-click rotates axis)=Dźwiękowy śrubokręt
### supply_converter.lua ###
## Machine-specific
Input Power=
Supply Converter=Konwerter zasilania
@1 (@2 @3 -> @4 @5)=@1 (@2 @3 -> @4 @5)
@1 Has Bad Cabling=@1 Źle podłączono kable
### switching_station.lua ###
Switching Station=Rozdzielnia
Channel=
Enables or disables technic's switching station ABM=
@1 Already Present=
@1. Supply: @2 Demand: @3=
Machines: timeout check=
### tool_workshop.lua ###
@1 Tool Workshop=@1 Warsztat narzędzi
### tree_tap.lua ###
Tree Tap=Nacinak drzewny
Raw Latex=Lateks naturalny
Rubber Fiber=Włókno gumowe
Tools: tree tap=
### vacuum.lua ###
Vacuum Cleaner=
### water_mill.lua ###
### hydro_turbine.lua ###
Hydro @1 Generator=@1 Hydrogenerator
### wind_mill.lua ###
Wind Mill Frame=Klatka wiatraka
Wind @1 Generator=@1 Generator wiatrowy
@1 Improperly Placed=@1 Ustawiony/a nieprawidłowo
Active @1 (@2 EU)=

View File

@ -0,0 +1,476 @@
# textdomain: technic
### alloy_furnace.lua ###
@1 Alloy Furnace=Fornalha de Liga @1
### alloy_recipes.lua ###
## Craft descriptions
Alloying=Cozinhando em liga
### anchor.lua ###
Administrative World Anchor=Âncora de Mundo Administrativa
Owner: @1=
Unlocked=Destravado
Locked=Travado
Keeping @1/@2 map blocks loaded=Mantendo @1/@2 blocos de mapa carregados
### battery_box.lua ###
## Tools
RE Battery=Bateria RE
Allow splitting incoming 'charge' stacks from tubes=
Allow splitting incoming 'discharge' stacks=
@1 Battery Box=Caixa de Bateria @1
Charge=Carregar
Discharge=Descarregar
Power level=Nível de Energia
edit Channel=
@1 Battery Box: @2 / @3=
### cables.lua ###
@1 Cable=Cabo @1
@1 Cable Plate=
### cans.lua ###
Water Can=Lata de Água
Lava Can=Lata de Lava
River Water Can=
### centrifuge.lua ###
@1 Centrifuge=Centrifuga @1
### centrifuge_recipes.lua ###
Separating=Separando
### chainsaw.lua ###
Chainsaw=Motosserra
### coal_alloy_furnace.lua ###
Fuel-Fired Alloy Furnace=Fornalha de Liga Alimentada-por-Combustível
Machines: run coal alloy furnace=
@1 Active (@2%)=@1 Ativo (@2%)
@1 is empty=@1 está vazio
### coal_alloy_furnace.lua ###
### generator.lua ###
@1 Out Of Fuel=@1 Sem Combustível
### coal_furnace.lua ###
Fuel-Fired Furnace=Fornalha Alimentada-por-Combustível
### common.lua ###
## Machine Misc
Machine cannot be removed because it is not empty=A máquina não pode ser removida porque ela não está vazia
Inventory move disallowed due to protection=Movimento de inventário não permitido pela proteção
### compressor.lua ###
@1 Compressor=Compresso @1
### compressor_recipes.lua ###
Compressing=Comprimindo
### constructor.lua ###
Constructor Mk@1=Construtor Nv@1
Slot @1=Lugar @1
### electric_furnace.lua ###
@1 Furnace=Fornalha @1
### extractor.lua ###
@1 Extractor=Extrator @1
### extractor_recipes.lua ###
Extracting=Extraindo
### flashlight.lua ###
Flashlight=Lanterna
### forcefield.lua ###
Range=
Sphere=
Cube=
@1 Forcefield Emitter=Emissor de Campo de Força @1
@1 Forcefield=Campo de Força @1
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Enabled=@1 Desativado
### forcefield.lua ###
### battery_box.lua ###
### supply_converter.lua ###
Digiline Channel=
### forcefield.lua ###
### generator.lua ###
### quarry.lua ###
### cables.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
HV=
### forcefield.lua ###
### machine_base.lua ###
### tool_workshop.lua ###
### quarry.lua ###
### music_player.lua ###
@1 Unpowered=@1 Sem energia
@1 Active=@1 Ativo
### forcefield.lua ###
### supply_converter.lua ###
Ignoring Mesecon Signal=Ignorar Sinaal de Mesecon
Controlled by Mesecon Signal=Controlado por Sinal de Mesecon
### frames.lua ###
Frame=Armação
Frame Motor=Motor de Armação
Template=Modelo
Template (replacing)=Modelo (recolocando)
Template Tool=Modelo de Ferramenta
Template Motor=Modelo de Motor
### freezer.lua ###
@1 Freezer=
### freezer_recipes.lua ###
Freezing=
### generator.lua ###
Fuel-Fired @1 Generator=Gerador Alimentado-por-Combustível @1
### generator.lua ###
### water_mill.lua ###
### hydro_turbine.lua ###
### geothermal.lua ###
### nuclear_reactor.lua ###
@1 (@2%)=
### geothermal.lua ###
Geothermal @1 Generator=Gerador Geotermal @1
### grinder.lua ###
@1 Grinder=Triturador @1
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### water_mill.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### cables.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### compressor.lua ###
### geothermal.lua ###
### alloy_furnace.lua ###
LV=
### grinder_recipes.lua ###
Grinding=Triturando
@1 Dust=Pó de @1
@1%-Fissile Uranium=Urânio @1%-Físsil
### grindings.lua ###
## Grinder Recipes
Sawdust=
@1 Grinding=@1 Triturando
### injector.lua ###
Self-Contained Injector=Injetor Auto-Contido
Stackwise=Por pilha
Itemwise=Por item
Public=
Private=
Machines: run injector=
### items.lua ###
# textdomain: technic
# Braziliam portuguese translation for technic
# Tradução portuguesa brasileira para technic
# By Sires
## Items
Silicon Wafer=Pastilha de Silício
Doped Silicon Wafer=Pastilha de Silício Dopada
Uranium Fuel=Combustivel de Urânio
Diamond Drill Head=Cabeça de Broca de Diamante
Blue Energy Crystal=Cristal de Energia Azul
Green Energy Crystal=Cristal de Energia Verde
Red Energy Crystal=Cristal de Energia Vermelho
Copper Coil=Bobina de Cobre
Low Voltage Transformer=Transformador de Baixa Voltagem
Medium Voltage Transformer=Transformador de Média Voltagem
High Voltage Transformer=Transformador de Alta Voltagem
Control Logic Unit=Unidade de Controle Lógico
Mixed Metal Ingot=Lingote de Metal Misturado
Composite Plate=Placa Composta
Copper Plate=Placa de Cobre
Carbon Plate=Placa de Carbono
Graphite=Grafite
Carbon Cloth=Recido de Carbono
Machine Casing=
Rubber Goo=
@1%-Fissile Uranium Ingot=Lingote de Urânio @1%-Físsil
@1%-Fissile Uranium Block=Bloco de Urânio @1%-Físsil
### lighting.lua ###
someone=
Sorry, @1 owns that spot.=
Yellow Glowlight (thick)=
Yellow Glowlight (thin)=
White Glowlight (thick)=
White Glowlight (thin)=
Yellow Glowlight (small cube)=
White Glowlight (small cube)=
### machine_base.lua ###
### battery_box.lua ###
### tool_workshop.lua ###
Upgrade Slots=Lugares para Melhoria
### machine_base.lua ###
### tool_workshop.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
@1 Idle=Ócio
### mining_drill.lua ###
Single node.=Unico node.
3 nodes deep.=3 nodes de profundidade.
3 nodes wide.=3 nodes de largura.
3 nodes tall.=3 nodes de altura.
3x3 nodes.=3x3 nodes.
Use while sneaking to change Mining Drill Mk@1 modes.=Use enquanto esgueirando para mudar os modos da Broca de Mineração Nv@1.
Mining Drill Mk@1 Mode @2: =
Mining Drill Mk@1=Broca de Mineração Nv@1
Mining Drill Mk@1 Mode @2=Broca de Mineração Nv@1 Modo @2
### mining_lasers.lua ###
Mining Laser Mk@1=Laser de Mineração Nv@1
### music_player.lua ###
@1 Music Player=Tocador de Música @1
Stop=
Stopped=Parado
Current track @1=Música Atual @1
### nuclear_reactor.lua ###
@1 Nuclear Reactor Core=
Nuclear Reactor Rod Compartment=Compartimento de Barra do Reator Nuclear
Start=
automatic Start=
Enable Digiline=
Save=
Digiline Remote Channel=
Error: You need to insert @1 pieces of Uranium Fuel.=
Error: The power plant seems to be built incorrectly.=
Machines: reactor melt-down check=
Start successful=
### power_monitor.lua ###
## Machine names
Power Monitor=
Machines: run power monitor=
# $1: Machine name $2: Supply $3: Demand
@1. Supply: @2 Demand: @3=@1. Suprimento: @2 Demanda: @3
### power_monitor.lua ###
### switching_station.lua ###
### battery_box.lua ###
@1 Has No Network=@1 Não Tem Rede
### power_radiator.lua ###
@1 Power Radiator=
Machines: run power radiator=
@1 is unpowered=
@1 is powered (@2% of maximum power)=
### power_radiator.lua ###
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### freezer.lua ###
### tool_workshop.lua ###
### hydro_turbine.lua ###
### cables.lua ###
### wind_mill.lua ###
### battery_box.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### centrifuge.lua ###
### compressor.lua ###
### alloy_furnace.lua ###
MV=
### prospector.lua ###
Prospector=
Right-click to set target block type=
Current target:=
No target set=
May set new target:=
Set target=
No new target available=
Region cross section:=
Set region cross section:=
Region depth:=
Set region depth:=
Accuracy:=
### quarry.lua ###
@1 Quarry=Pedreira @1
Digging not started=Escavação não começada
Digging finished=Escavação terminada
Purging cache=
Digging @1 m @2 machine=Escavando @1 m @2 da máquina
above=acima
below=abaixo
Restart=
@1 purging cache=
@1 Finished=@1 Acabou
Manually taking/removing from cache by hand is not possible. If you can't wait, restart or disable the quarry to start automatic purge.=
### quarry.lua ###
### anchor.lua ###
Radius:=Raio:
Disabled=Desativado
Enabled=Ativado
### quarry.lua ###
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Disabled=
### quarry.lua ###
### forcefield.lua ###
### nuclear_reactor.lua ###
You are not allowed to edit this!=
### radiation.lua ###
## Radiation
Radiation damage=
Corium Source=
Flowing Corium=
Corium Bucket=
Chernobylite Block=
Corium: griefing=
### solar_array.lua ###
Arrayed Solar @1 Generator=Gerador Solar Equipado @1
@1 Active (@2)=
### solar_panel.lua ###
Small Solar @1 Generator=Gerador Solar Pequeno @1
@1 Active (@2 EU)=@1 Ativo (@2 EU)
### sonic_screwdriver.lua ###
Sonic Screwdriver (left-click rotates face, right-click rotates axis)=Chave de Fenda Sônica.
### supply_converter.lua ###
## Machine-specific
Input Power=
Supply Converter=Conversor de Energia
@1 (@2 @3 -> @4 @5)=@1 (@2 @3 -> @4 @5)
@1 Has Bad Cabling=@1 Tem Cabeamento Ruim
### switching_station.lua ###
Switching Station=Estação de Comutação
Channel=
Enables or disables technic's switching station ABM=
@1 Already Present=
@1. Supply: @2 Demand: @3=
Machines: timeout check=
### tool_workshop.lua ###
@1 Tool Workshop=Oficina de Ferramentas @1
### tree_tap.lua ###
Tree Tap=Torneira de Árvore
Raw Latex=Latex bruto
Rubber Fiber=Fibra de Borracha
Tools: tree tap=
### vacuum.lua ###
Vacuum Cleaner=
### water_mill.lua ###
### hydro_turbine.lua ###
Hydro @1 Generator=Gerador Hidráulico @1
### wind_mill.lua ###
Wind Mill Frame=Armação de Moinho de Vento
Wind @1 Generator=Gerador de Energia Eólica @1
@1 Improperly Placed=@1 Colocado Inapropriadamente
Active @1 (@2 EU)=

View File

@ -1,178 +1,475 @@
# template.txt
# Template for translations of Technic
# textdomain: technic
## Misc
[Technic] Loaded in %f seconds =
## Items
Silicon Wafer =
Doped Silicon Wafer =
Enriched Uranium =
Uranium Fuel =
Diamond Drill Head =
Blue Energy Crystal =
Green Energy Crystal =
Red Energy Crystal =
Fine Copper Wire =
Fine Gold Wire =
Fine Silver Wire =
Copper Coil =
Electric Motor =
Low Voltage Transformer =
Medium Voltage Transformer =
High Voltage Transformer =
Control Logic Unit =
Mixed Metal Ingot =
Composite Plate =
Copper Plate =
Carbon Plate =
Graphite =
Carbon Cloth =
Raw Latex =
Rubber Fiber =
%.1f%%-Fissile Uranium Ingot =
%.1f%%-Fissile Uranium Block =
### alloy_furnace.lua ###
## Machine misc
Machine cannot be removed because it is not empty =
Inventory move disallowed due to protection =
# $1: Machine name (Includes tier)
@1 Active (@2 EU) =
%s Active =
%s Disabled =
%s Enabled =
%s Idle =
%s Improperly Placed =
%s is empty =
%s Unpowered =
%s Out Of Fuel =
%s Has Bad Cabling =
%s (Slave) =
%s Has No Network =
%s Finished =
Enable/Disable =
Range =
Upgrade Slots =
In: =
Out: =
Slot %d =
Itemwise =
Stackwise =
Ignoring Mesecon Signal =
Controlled by Mesecon Signal =
Owner: =
Unlocked =
Locked =
Radius: =
Enabled =
Disabled =
@1 Alloy Furnace=
## Machine names
# $1: Tier
%s Alloy Furnace =
%s Battery Box =
%s Cable =
%s Centrifuge =
%s Compressor =
%s Extractor =
%s Forcefield Emitter =
%s Furnace =
%s Grinder =
%s Music Player =
%s Quarry =
%s Tool Workshop =
Arrayed Solar %s Generator =
Fuel-Fired %s Generator =
Geothermal %s Generator =
Hydro %s Generator =
Nuclear %s Generator Core =
Small Solar %s Generator =
Wind %s Generator =
Self-Contained Injector =
Constructor Mk%d =
Frame =
Frame Motor =
Template =
Template (replacing) =
Template Motor =
Template Tool =
Battery Box =
Supply Converter =
Switching Station =
Fuel-Fired Alloy Furnace =
Fuel-Fired Furnace =
Wind Mill Frame =
Forcefield =
Nuclear Reactor Rod Compartment =
Administrative World Anchor =
## Machine-specific
# $1: Pruduced EU
Charge =
Discharge =
Power level =
# $1: Tier $2: current_charge $3: max_charge
@1 Battery Box: @2/@3 =
# $1: Machine name $2: Supply $3: Demand
@1. Supply: @2 Demand: @3 =
Production at %d%% =
Choose Milling Program: =
Slim Elements half / normal height: =
Current track %s =
Stopped =
Keeping %d/%d map blocks loaded =
Digging not started =
Digging finished =
Digging %d m above machine =
Digging %d m below machine =
@1 (@2 @3 -> @4 @5) =
## Grinder Recipes
# $1: Name
%s Dust =
Akalin =
Alatro =
Arol =
Brass =
Bronze =
Carbon Steel =
Cast Iron =
Chromium =
Coal =
Copper =
Gold =
Mithril =
Silver =
Stainless Steel =
Talinite =
Tin =
Wrought Iron =
Zinc =
%.1f%%-Fissile Uranium =
## Tools
RE Battery =
Water Can =
Lava Can =
Chainsaw =
Flashlight =
3 nodes deep. =
3 nodes tall. =
3 nodes wide. =
3x3 nodes. =
Use while sneaking to change Mining Drill Mk%d modes. =
Mining Drill Mk%d Mode %d =
Mining Drill Mk%d =
Mining Laser Mk%d =
Single node. =
Sonic Screwdriver =
Tree Tap =
### alloy_recipes.lua ###
## Craft descriptions
Alloy cooking =
Grinding =
Compressing =
Extracting =
Separating =
Alloying=
### anchor.lua ###
Administrative World Anchor=
Owner: @1=
Unlocked=
Locked=
Keeping @1/@2 map blocks loaded=
### battery_box.lua ###
## Tools
RE Battery=
Allow splitting incoming 'charge' stacks from tubes=
Allow splitting incoming 'discharge' stacks=
@1 Battery Box=
Charge=
Discharge=
Power level=
edit Channel=
@1 Battery Box: @2 / @3=
### cables.lua ###
@1 Cable=
@1 Cable Plate=
### cans.lua ###
Water Can=
Lava Can=
River Water Can=
### centrifuge.lua ###
@1 Centrifuge=
### centrifuge_recipes.lua ###
Separating=
### chainsaw.lua ###
Chainsaw=
### coal_alloy_furnace.lua ###
Fuel-Fired Alloy Furnace=
Machines: run coal alloy furnace=
@1 Active (@2%)=
@1 is empty=
### coal_alloy_furnace.lua ###
### generator.lua ###
@1 Out Of Fuel=
### coal_furnace.lua ###
Fuel-Fired Furnace=
### common.lua ###
## Machine misc
Machine cannot be removed because it is not empty=
Inventory move disallowed due to protection=
### compressor.lua ###
@1 Compressor=
### compressor_recipes.lua ###
Compressing=
### constructor.lua ###
Constructor Mk@1=
Slot @1=
### electric_furnace.lua ###
@1 Furnace=
### extractor.lua ###
@1 Extractor=
### extractor_recipes.lua ###
Extracting=
### flashlight.lua ###
Flashlight=
### forcefield.lua ###
Range=
Sphere=
Cube=
@1 Forcefield Emitter=
@1 Forcefield=
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Enabled=
### forcefield.lua ###
### battery_box.lua ###
### supply_converter.lua ###
Digiline Channel=
### forcefield.lua ###
### generator.lua ###
### quarry.lua ###
### cables.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
HV=
### forcefield.lua ###
### machine_base.lua ###
### tool_workshop.lua ###
### quarry.lua ###
### music_player.lua ###
@1 Unpowered=
@1 Active=
### forcefield.lua ###
### supply_converter.lua ###
Ignoring Mesecon Signal=
Controlled by Mesecon Signal=
### frames.lua ###
Frame=
Frame Motor=
Template=
Template (replacing)=
Template Tool=
Template Motor=
### freezer.lua ###
@1 Freezer=
### freezer_recipes.lua ###
Freezing=
### generator.lua ###
Fuel-Fired @1 Generator=
### generator.lua ###
### water_mill.lua ###
### hydro_turbine.lua ###
### geothermal.lua ###
### nuclear_reactor.lua ###
@1 (@2%)=
### geothermal.lua ###
Geothermal @1 Generator=
### grinder.lua ###
@1 Grinder=
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### water_mill.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### cables.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### compressor.lua ###
### geothermal.lua ###
### alloy_furnace.lua ###
LV=
### grinder_recipes.lua ###
Grinding=
@1 Dust=
@1%-Fissile Uranium=
### grindings.lua ###
## Grinder Recipes
Sawdust=
@1 Grinding=
### injector.lua ###
Self-Contained Injector=
Stackwise=
Itemwise=
Public=
Private=
Machines: run injector=
### items.lua ###
# textdomain: technic
# template.txt
# Template for translations of Technic
## Items
Silicon Wafer=
Doped Silicon Wafer=
Uranium Fuel=
Diamond Drill Head=
Blue Energy Crystal=
Green Energy Crystal=
Red Energy Crystal=
Copper Coil=
Low Voltage Transformer=
Medium Voltage Transformer=
High Voltage Transformer=
Control Logic Unit=
Mixed Metal Ingot=
Composite Plate=
Copper Plate=
Carbon Plate=
Graphite=
Carbon Cloth=
Machine Casing=
Rubber Goo=
@1%-Fissile Uranium Ingot=
@1%-Fissile Uranium Block=
### lighting.lua ###
someone=
Sorry, @1 owns that spot.=
Yellow Glowlight (thick)=
Yellow Glowlight (thin)=
White Glowlight (thick)=
White Glowlight (thin)=
Yellow Glowlight (small cube)=
White Glowlight (small cube)=
### machine_base.lua ###
### battery_box.lua ###
### tool_workshop.lua ###
Upgrade Slots=
### machine_base.lua ###
### tool_workshop.lua ###
### music_player.lua ###
### solar_panel.lua ###
### battery_box.lua ###
### solar_array.lua ###
### nuclear_reactor.lua ###
@1 Idle=
### mining_drill.lua ###
Single node.=
3 nodes deep.=
3 nodes wide.=
3 nodes tall.=
3x3 nodes.=
Use while sneaking to change Mining Drill Mk@1 modes.=
Mining Drill Mk@1 Mode @2: =
Mining Drill Mk@1=
Mining Drill Mk@1 Mode @2=
### mining_lasers.lua ###
Mining Laser Mk@1=
### music_player.lua ###
@1 Music Player=
Stop=
Stopped=
Current track @1=
### nuclear_reactor.lua ###
@1 Nuclear Reactor Core=
Nuclear Reactor Rod Compartment=
Start=
automatic Start=
Enable Digiline=
Save=
Digiline Remote Channel=
Error: You need to insert @1 pieces of Uranium Fuel.=
Error: The power plant seems to be built incorrectly.=
Machines: reactor melt-down check=
Start successful=
### power_monitor.lua ###
## Machine names
Power Monitor=
Machines: run power monitor=
#@1: Machine name @2: Supply @3: Demand
@1. Supply: @2 Demand: @3=
### power_monitor.lua ###
### switching_station.lua ###
### battery_box.lua ###
@1 Has No Network=
### power_radiator.lua ###
@1 Power Radiator=
Machines: run power radiator=
@1 is unpowered=
@1 is powered (@2% of maximum power)=
### power_radiator.lua ###
### grinder.lua ###
### generator.lua ###
### extractor.lua ###
### freezer.lua ###
### tool_workshop.lua ###
### hydro_turbine.lua ###
### cables.lua ###
### wind_mill.lua ###
### battery_box.lua ###
### electric_furnace.lua ###
### solar_array.lua ###
### centrifuge.lua ###
### compressor.lua ###
### alloy_furnace.lua ###
MV=
### prospector.lua ###
Prospector=
Right-click to set target block type=
Current target:=
No target set=
May set new target:=
Set target=
No new target available=
Region cross section:=
Set region cross section:=
Region depth:=
Set region depth:=
Accuracy:=
### quarry.lua ###
@1 Quarry=
Digging not started=
Digging finished=
Purging cache=
Digging @1 m @2 machine=
above=
below=
Restart=
@1 purging cache=
@1 Finished=
Manually taking/removing from cache by hand is not possible. If you can't wait, restart or disable the quarry to start automatic purge.=
### quarry.lua ###
### anchor.lua ###
Radius:=
Disabled=
Enabled=
### quarry.lua ###
### forcefield.lua ###
### anchor.lua ###
### supply_converter.lua ###
@1 Disabled=
### quarry.lua ###
### forcefield.lua ###
### nuclear_reactor.lua ###
You are not allowed to edit this!=
### radiation.lua ###
## Radiation
Radiation damage=
Corium Source=
Flowing Corium=
Corium Bucket=
Chernobylite Block=
Corium: griefing=
### solar_array.lua ###
Arrayed Solar @1 Generator=
@1 Active (@2)=
### solar_panel.lua ###
Small Solar @1 Generator=
@1 Active (@2 EU)=
### sonic_screwdriver.lua ###
Sonic Screwdriver (left-click rotates face, right-click rotates axis)=
### supply_converter.lua ###
## Machine-specific
Input Power=
Supply Converter=
@1 (@2 @3 -> @4 @5)=
@1 Has Bad Cabling=
### switching_station.lua ###
Switching Station=
Channel=
Enables or disables technic's switching station ABM=
@1 Already Present=
@1. Supply: @2 Demand: @3=
Machines: timeout check=
### tool_workshop.lua ###
@1 Tool Workshop=
### tree_tap.lua ###
Tree Tap=
Raw Latex=
Rubber Fiber=
Tools: tree tap=
### vacuum.lua ###
Vacuum Cleaner=
### water_mill.lua ###
### hydro_turbine.lua ###
Hydro @1 Generator=
### wind_mill.lua ###
Wind Mill Frame=
Wind @1 Generator=
@1 Improperly Placed=
Active @1 (@2 EU)=

View File

@ -1,5 +1,5 @@
-- HV battery box
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:hv_battery_box0',
recipe = {
@ -18,5 +18,6 @@ technic.register_battery_box({
discharge_step = 40000,
upgrade = 1,
tube = 1,
tier_localized = S("HV")
})

View File

@ -1,4 +1,4 @@
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:hv_cable 3',
recipe = {
@ -8,5 +8,5 @@ minetest.register_craft({
}
})
technic.register_cable("HV", 3/16)
technic.register_cable(S("HV"), 3/16, "HV")

View File

@ -10,14 +10,14 @@ local digilines_path = minetest.get_modpath("digilines")
local forcefield_power_drain = 10
local S = technic.getter
local S = minetest.get_translator("technic")
local cable_entry = "^technic_cable_connection_overlay.png"
minetest.register_craft({
output = "technic:forcefield_emitter_off",
recipe = {
{"default:mese", "basic_materials:motor", "default:mese" },
{"default:mese", "basic_materials:motor", "default:mese" },
{"technic:deployer_off", "technic:machine_casing", "technic:deployer_off"},
{"default:mese", "technic:hv_cable", "default:mese" },
}
@ -92,7 +92,7 @@ local function set_forcefield_formspec(meta)
local formspec
if digilines_path then
formspec = "size[5,3.25]"..
"field[0.3,3;5,1;channel;Digiline Channel;"..meta:get_string("channel").."]"
"field[0.3,3;5,1;channel;"..S("Digiline Channel")..";"..meta:get_string("channel").."]"
else
formspec = "size[5,2.25]"
end
@ -113,9 +113,9 @@ local function set_forcefield_formspec(meta)
formspec = formspec.."button[0,1;5,1;mesecon_mode_0;"..S("Controlled by Mesecon Signal").."]"
end
if meta:get_int("enabled") == 0 then
formspec = formspec.."button[0,1.75;5,1;enable;"..S("%s Disabled"):format(S("%s Forcefield Emitter"):format("HV")).."]"
formspec = formspec.."button[0,1.75;5,1;enable;"..S("@1 Disabled", S("@1 Forcefield Emitter", S("HV"))).."]"
else
formspec = formspec.."button[0,1.75;5,1;disable;"..S("%s Enabled"):format(S("%s Forcefield Emitter"):format("HV")).."]"
formspec = formspec.."button[0,1.75;5,1;disable;"..S("@1 Enabled", S("@1 Forcefield Emitter", S("HV"))).."]"
end
meta:set_string("formspec", formspec)
end
@ -123,7 +123,7 @@ 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.chat_send_player(player_name, S("You are not allowed to edit this!"))
minetest.record_protection_violation(pos, player_name)
return
end
@ -246,7 +246,7 @@ local function run(pos, node)
local eu_input = meta:get_int("HV_EU_input")
local enabled = meta:get_int("enabled") ~= 0 and
(meta:get_int("mesecon_mode") == 0 or meta:get_int("mesecon_effect") ~= 0)
local machine_name = S("%s Forcefield Emitter"):format("HV")
local machine_name = S("@1 Forcefield Emitter", S("HV"))
local range = meta:get_int("range")
local power_requirement
@ -261,14 +261,14 @@ local function run(pos, node)
if node.name == "technic:forcefield_emitter_on" then
update_forcefield(pos, meta, false)
technic.swap_node(pos, "technic:forcefield_emitter_off")
meta:set_string("infotext", S("%s Disabled"):format(machine_name))
meta:set_string("infotext", S("@1 Disabled", machine_name))
end
meta:set_int("HV_EU_demand", 0)
return
end
meta:set_int("HV_EU_demand", power_requirement)
if eu_input < power_requirement then
meta:set_string("infotext", S("%s Unpowered"):format(machine_name))
meta:set_string("infotext", S("@1 Unpowered", machine_name))
if node.name == "technic:forcefield_emitter_on" then
update_forcefield(pos, meta, false)
technic.swap_node(pos, "technic:forcefield_emitter_off")
@ -276,14 +276,14 @@ local function run(pos, node)
elseif eu_input >= power_requirement then
if node.name == "technic:forcefield_emitter_off" then
technic.swap_node(pos, "technic:forcefield_emitter_on")
meta:set_string("infotext", S("%s Active"):format(machine_name))
meta:set_string("infotext", S("@1 Active", machine_name))
end
update_forcefield(pos, meta, true)
end
end
minetest.register_node("technic:forcefield_emitter_off", {
description = S("%s Forcefield Emitter"):format("HV"),
description = S("@1 Forcefield Emitter", S("HV")),
tiles = {
"technic_forcefield_emitter_off.png",
"technic_machine_bottom.png"..cable_entry,
@ -305,7 +305,7 @@ minetest.register_node("technic:forcefield_emitter_off", {
if digilines_path then
meta:set_string("channel", "forcefield"..minetest.pos_to_string(pos))
end
meta:set_string("infotext", S("%s Forcefield Emitter"):format("HV"))
meta:set_string("infotext", S("@1 Forcefield Emitter", S("HV")))
set_forcefield_formspec(meta)
end,
mesecons = mesecons,
@ -314,7 +314,7 @@ minetest.register_node("technic:forcefield_emitter_off", {
})
minetest.register_node("technic:forcefield_emitter_on", {
description = S("%s Forcefield Emitter"):format("HV"),
description = S("@1 Forcefield Emitter", S("HV")),
tiles = {
"technic_forcefield_emitter_on.png",
"technic_machine_bottom.png"..cable_entry,
@ -346,7 +346,7 @@ minetest.register_node("technic:forcefield_emitter_on", {
})
minetest.register_node("technic:forcefield", {
description = S("%s Forcefield"):format("HV"),
description = S("@1 Forcefield", S("HV")),
sunlight_propagates = true,
drawtype = "glasslike",
groups = {not_in_creative_inventory=1},

View File

@ -1,3 +1,4 @@
local S = minetest.get_translator("technic")
minetest.register_alias("hv_generator", "technic:hv_generator")
minetest.register_craft({
@ -9,5 +10,5 @@ minetest.register_craft({
}
})
technic.register_generator({tier="HV", tube=1, supply=1200})
technic.register_generator({tier="HV", tube=1, supply=1200, tier_localized=S("HV")})

View File

@ -1,5 +1,5 @@
technic.register_tier("HV", "High Voltage")
technic.register_tier("HV")
local path = technic.modpath.."/machines/HV"

View File

@ -15,7 +15,7 @@ local fuel_type = "technic:uranium_fuel" -- The reactor burns this
local digiline_meltdown = technic.config:get_bool("enable_nuclear_reactor_digiline_selfdestruct")
local digiline_remote_path = minetest.get_modpath("digiline_remote")
local S = technic.getter
local S = minetest.get_translator("technic")
local reactor_desc = S("@1 Nuclear Reactor Core", S("HV"))
local cable_entry = "^technic_cable_connection_overlay.png"
@ -36,19 +36,19 @@ local function make_reactor_formspec(meta)
"list[current_name;src;2,1;3,2;]"..
"list[current_player;main;0,5;8,4;]"..
"listring[]"..
"button[5.5,1.5;2,1;start;Start]"..
"checkbox[5.5,2.5;autostart;automatic Start;"..meta:get_string("autostart").."]"
"button[5.5,1.5;2,1;start;"..S("Start").."]"..
"checkbox[5.5,2.5;autostart;"..S("automatic Start")..";"..meta:get_string("autostart").."]"
if not digiline_remote_path then
return f
end
local digiline_enabled = meta:get_string("enable_digiline")
f = f.."checkbox[0.5,2.8;enable_digiline;Enable Digiline;"..digiline_enabled.."]"
f = f.."checkbox[0.5,2.8;enable_digiline;"..S("Enable Digiline")..";"..digiline_enabled.."]"
if digiline_enabled ~= "true" then
return f
end
return f..
"button_exit[4.6,3.69;2,1;save;Save]"..
"field[1,4;4,1;remote_channel;Digiline Remote Channel;${remote_channel}]"
"button_exit[4.6,3.69;2,1;save;"..S("Save").."]"..
"field[1,4;4,1;remote_channel;"..S("Digiline Remote Channel")..";${remote_channel}]"
end
local SS_OFF = 0
@ -218,7 +218,7 @@ end
local function start_reactor(pos, meta)
local correct_fuel_count = 6
local msg_fuel_missing = "Error: You need to insert " .. correct_fuel_count .. " pieces of Uranium Fuel."
local msg_fuel_missing = S("Error: You need to insert @1 pieces of Uranium Fuel.", correct_fuel_count)
if minetest.get_node(pos).name ~= "technic:hv_nuclear_reactor_core" then
return msg_fuel_missing
@ -241,7 +241,7 @@ local function start_reactor(pos, meta)
-- Check that the reactor is complete
if reactor_structure_badness(pos) ~= 0 then
return "Error: The power plant seems to be built incorrectly."
return S("Error: The power plant seems to be built incorrectly.")
end
meta:set_int("burn_time", 1)
@ -257,7 +257,7 @@ end
minetest.register_abm({
label = "Machines: reactor melt-down check",
label = S("Machines: reactor melt-down check"),
nodenames = {"technic:hv_nuclear_reactor_core_active"},
interval = 4,
chance = 1,
@ -297,7 +297,7 @@ local function run(pos, node)
end
meta:set_int("HV_EU_supply", 0)
meta:set_int("burn_time", 0)
meta:set_string("infotext", S("%s Idle"):format(reactor_desc))
meta:set_string("infotext", S("@1 Idle", reactor_desc))
technic.swap_node(pos, "technic:hv_nuclear_reactor_core")
meta:set_int("structure_accumulated_badness", 0)
siren_clear(pos, meta)
@ -305,7 +305,7 @@ local function run(pos, node)
burn_time = burn_time + 1
meta:set_int("burn_time", burn_time)
local percent = math.floor(burn_time / burn_ticks * 100)
meta:set_string("infotext", reactor_desc.." ("..percent.."%)")
meta:set_string("infotext", S("@1 (@2%)", reactor_desc, percent))
meta:set_int("HV_EU_supply", power_supply)
end
end
@ -313,7 +313,7 @@ end
local nuclear_reactor_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.chat_send_player(player_name, S("You are not allowed to edit this!"))
minetest.record_protection_violation(pos, player_name)
return
end
@ -325,7 +325,7 @@ local nuclear_reactor_receive_fields = function(pos, formname, fields, sender)
if fields.start then
local start_error_msg = start_reactor(pos, meta)
if not start_error_msg then
minetest.chat_send_player(player_name, "Start successful")
minetest.chat_send_player(player_name, S("Start successful"))
else
minetest.chat_send_player(player_name, start_error_msg)
end

View File

@ -1,5 +1,5 @@
local S = technic.getter
local S = minetest.get_translator("technic")
local tube_entry = "^pipeworks_tube_connection_metallic.png"
local cable_entry = "^technic_cable_connection_overlay.png"
@ -22,7 +22,7 @@ local function set_quarry_formspec(meta)
local formspec = "size[6,4.3]"..
"list[context;cache;0,1;4,3;]"..
"item_image[4.8,0;1,1;technic:quarry]"..
"label[0,0.2;"..S("%s Quarry"):format("HV").."]"..
"label[0,0.2;"..S("@1 Quarry", S("HV")).."]"..
"field[4.3,3.5;2,1;size;"..S("Radius:")..";"..radius.."]"
if meta:get_int("enabled") == 0 then
formspec = formspec.."button[4,1;2,1;enable;"..S("Disabled").."]"
@ -36,8 +36,8 @@ local function set_quarry_formspec(meta)
nd == 0 and S("Digging not started") or
(rel_y < -quarry_max_depth and S("Digging finished") or
(meta:get_int("purge_on") == 1 and S("Purging cache") or
S("Digging %d m "..(rel_y > 0 and "above" or "below").." machine")
:format(math.abs(rel_y))))
S("Digging @1 m @2 machine", string.format("%d", math.abs(rel_y)),
(rel_y > 0) and S("above") or S("below"))))
).."]"
formspec = formspec.."button[4,2;2,1;restart;"..S("Restart").."]"
meta:set_string("formspec", formspec)
@ -46,15 +46,17 @@ end
local function set_quarry_demand(meta)
local radius = meta:get_int("size")
local diameter = radius*2 + 1
local machine_name = S("%s Quarry"):format("HV")
local machine_name = S("@1 Quarry", S("HV"))
if meta:get_int("enabled") == 0 or meta:get_int("purge_on") == 1 then
meta:set_string("infotext", S(meta:get_int("purge_on") == 1 and "%s purging cache" or "%s Disabled"):format(machine_name))
meta:set_string("infotext", meta:get_int("purge_on") == 1 and S("@1 purging cache", machine_name)
or S("@1 Disabled", machine_name))
meta:set_int("HV_EU_demand", 0)
elseif meta:get_int("dug") == diameter*diameter * (quarry_dig_above_nodes+1+quarry_max_depth) then
meta:set_string("infotext", S("%s Finished"):format(machine_name))
meta:set_string("infotext", S("@1 Finished", machine_name))
meta:set_int("HV_EU_demand", 0)
else
meta:set_string("infotext", S(meta:get_int("HV_EU_input") >= quarry_demand and "%s Active" or "%s Unpowered"):format(machine_name))
meta:set_string("infotext", meta:get_int("HV_EU_input") >= quarry_demand and S("@1 Active", machine_name)
or S("@1 Unpowered", machine_name))
meta:set_int("HV_EU_demand", quarry_demand)
end
end
@ -62,7 +64,7 @@ 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.chat_send_player(player_name, S("You are not allowed to edit this!"))
minetest.record_protection_violation(pos, player_name)
return
end
@ -215,7 +217,7 @@ local function send_move_error(player)
end
minetest.register_node("technic:quarry", {
description = S("%s Quarry"):format("HV"),
description = S("@1 Quarry", S("HV")),
tiles = {
"technic_carbon_steel_block.png"..tube_entry,
"technic_carbon_steel_block.png"..cable_entry,
@ -242,7 +244,7 @@ minetest.register_node("technic:quarry", {
},
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("infotext", S("%s Quarry"):format("HV"))
meta:set_string("infotext", S("@1 Quarry", S("HV")))
meta:set_int("size", 4)
set_quarry_formspec(meta)
set_quarry_demand(meta)

View File

@ -1,6 +1,8 @@
-- The high voltage solar array is an assembly of medium voltage arrays.
-- Solar arrays are not able to store large amounts of energy.
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:solar_array_hv 1',
recipe = {
@ -10,5 +12,5 @@ minetest.register_craft({
}
})
technic.register_solar_array({tier="HV", power=100})
technic.register_solar_array({tier="HV", power=100, tier_localized=S("HV")})

View File

@ -1,4 +1,5 @@
-- LV Alloy furnace
local S = minetest.get_translator("technic")
-- FIXME: kpoppel: I'd like to introduce an induction heating element here...
minetest.register_craft({
@ -10,5 +11,5 @@ minetest.register_craft({
}
})
technic.register_alloy_furnace({tier = "LV", speed = 1, demand = {300}})
technic.register_alloy_furnace({tier = "LV", speed = 1, demand = {300}, tier_localized=S("LV")})

View File

@ -1,4 +1,5 @@
-- LV Battery box
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:lv_battery_box0',
@ -16,5 +17,6 @@ technic.register_battery_box({
discharge_rate = 4000,
charge_step = 500,
discharge_step = 800,
tier_localized = S("LV"),
})

View File

@ -1,4 +1,4 @@
local S = minetest.get_translator("technic")
minetest.register_alias("lv_cable", "technic:lv_cable")
minetest.register_craft({
@ -10,5 +10,5 @@ minetest.register_craft({
}
})
technic.register_cable("LV", 2/16)
technic.register_cable(S("LV"), 2/16, "LV")

View File

@ -1,4 +1,4 @@
local S = minetest.get_translator("technic")
minetest.register_alias("compressor", "technic:lv_compressor")
minetest.register_craft({
@ -14,4 +14,4 @@ minetest.register_craft({
},
})
technic.register_compressor({tier = "LV", demand = {300}, speed = 1})
technic.register_compressor({tier = "LV", demand = {300}, speed = 1, tier_localized=S("LV")})

View File

@ -2,6 +2,7 @@
-- This is a faster version of the stone furnace which runs on EUs
-- FIXME: kpoppel I'd like to introduce an induction heating element here also
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:electric_furnace',
recipe = {
@ -11,6 +12,6 @@ minetest.register_craft({
}
})
technic.register_electric_furnace({tier="LV", demand={300}, speed = 2})
technic.register_electric_furnace({tier="LV", demand={300}, speed = 2, tier_localized=S("LV")})

View File

@ -1,4 +1,4 @@
local S = minetest.get_translator("technic")
minetest.register_alias("extractor", "technic:lv_extractor")
minetest.register_craft({
@ -10,4 +10,4 @@ minetest.register_craft({
}
})
technic.register_extractor({tier = "LV", demand = {300}, speed = 1})
technic.register_extractor({tier = "LV", demand = {300}, speed = 1, tier_localized = S("LV")})

View File

@ -3,6 +3,7 @@
-- Inefficient and expensive in fuel (200EU per tick)
-- Also only allows for LV machinery to run.
local S = minetest.get_translator("technic")
minetest.register_alias("lv_generator", "technic:lv_generator")
minetest.register_craft({
@ -14,5 +15,5 @@ minetest.register_craft({
}
})
technic.register_generator({tier="LV", supply=200})
technic.register_generator({tier="LV", supply=200, tier_localized=S("LV")})

View File

@ -5,7 +5,7 @@
minetest.register_alias("geothermal", "technic:geothermal")
local S = technic.getter
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:geothermal',
@ -21,7 +21,7 @@ minetest.register_craft({
})
minetest.register_craftitem("technic:geothermal", {
description = S("Geothermal %s Generator"):format("LV"),
description = S("Geothermal @1 Generator", S("LV")),
})
local check_node_around = function(pos)
@ -70,7 +70,7 @@ local run = function(pos, node)
end
meta:set_string("infotext",
S("Geothermal %s Generator"):format("LV").." ("..production_level.."%)")
S("@1 (@2%)", S("Geothermal @1 Generator", S("LV")), production_level))
if production_level > 0 and minetest.get_node(pos).name == "technic:geothermal" then
technic.swap_node (pos, "technic:geothermal_active")
@ -83,7 +83,7 @@ local run = function(pos, node)
end
minetest.register_node("technic:geothermal", {
description = S("Geothermal %s Generator"):format("LV"),
description = S("Geothermal @1 Generator", S("LV")),
tiles = {"technic_geothermal_top.png", "technic_machine_bottom.png", "technic_geothermal_side.png",
"technic_geothermal_side.png", "technic_geothermal_side.png", "technic_geothermal_side.png"},
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2,
@ -93,14 +93,14 @@ minetest.register_node("technic:geothermal", {
sounds = default.node_sound_wood_defaults(),
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("infotext", S("Geothermal %s Generator"):format("LV"))
meta:set_string("infotext", S("Geothermal @1 Generator", S("LV")))
meta:set_int("LV_EU_supply", 0)
end,
technic_run = run,
})
minetest.register_node("technic:geothermal_active", {
description = S("Geothermal %s Generator"):format("LV"),
description = S("Geothermal @1 Generator", S("LV")),
tiles = {"technic_geothermal_top_active.png", "technic_machine_bottom.png", "technic_geothermal_side.png",
"technic_geothermal_side.png", "technic_geothermal_side.png", "technic_geothermal_side.png"},
paramtype2 = "facedir",

View File

@ -1,4 +1,4 @@
local S = minetest.get_translator("technic")
minetest.register_alias("grinder", "technic:lv_grinder")
minetest.register_craft({
output = 'technic:lv_grinder',
@ -9,5 +9,5 @@ minetest.register_craft({
}
})
technic.register_grinder({tier="LV", demand={200}, speed=1})
technic.register_grinder({tier="LV", demand={200}, speed=1, tier_localized=S("LV")})

View File

@ -1,5 +1,5 @@
technic.register_tier("LV", "Low Voltage")
technic.register_tier("LV")
local path = technic.modpath.."/machines/LV"

View File

@ -1,7 +1,7 @@
-- LV Music player.
-- The player can play music. But it is high ampage!
local S = technic.getter
local S = minetest.get_translator("technic")
minetest.register_alias("music_player", "technic:music_player")
minetest.register_craft({
@ -23,7 +23,7 @@ end
local run = function(pos, node)
local meta = minetest.get_meta(pos)
local eu_input = meta:get_int("LV_EU_input")
local machine_name = S("%s Music Player"):format("LV")
local machine_name = S("@1 Music Player", S("LV"))
local demand = 150
local current_track = meta:get_int("current_track")
@ -38,19 +38,19 @@ local run = function(pos, node)
end
if meta:get_int("active") == 0 then
meta:set_string("infotext", S("%s Idle"):format(machine_name))
meta:set_string("infotext", S("@1 Idle", machine_name))
meta:set_int("LV_EU_demand", 0)
return
end
if eu_input < demand then
meta:set_string("infotext", S("%s Unpowered"):format(machine_name))
meta:set_string("infotext", S("@1 Unpowered", machine_name))
if music_handle then
minetest.sound_stop(music_handle)
music_handle = nil
end
elseif eu_input >= demand then
meta:set_string("infotext", S("%s Active"):format(machine_name))
meta:set_string("infotext", S("@1 Active", machine_name))
if not music_handle then
music_handle = play_track(pos, current_track)
end
@ -72,7 +72,7 @@ local function set_display(meta)
meta:set_string("formspec",
"size[4,4.5]"..
"item_image[0,0;1,1;technic:music_player]"..
"label[1,0;"..S("%s Music Player"):format("LV").."]"..
"label[1,0;"..S("@1 Music Player", S("LV")).."]"..
"button[0,1;1,1;track1;1]"..
"button[1,1;1,1;track2;2]"..
"button[2,1;1,1;track3;3]"..
@ -82,15 +82,15 @@ local function set_display(meta)
"button[0,3;1,1;track7;7]"..
"button[1,3;1,1;track8;8]"..
"button[2,3;1,1;track9;9]"..
"button[3,1;1,1;stop;Stop]"..
"button[3,1;1,1;stop;"..S("Stop").."]"..
"label[0,4;"..minetest.formspec_escape(
meta:get_int("active") == 0 and
S("Stopped") or
S("Current track %s"):format(meta:get_int("current_track"))).."]")
S("Current track @1", meta:get_int("current_track"))).."]")
end
minetest.register_node("technic:music_player", {
description = S("%s Music Player"):format("LV"),
description = S("@1 Music Player", S("LV")),
tiles = {"technic_music_player_top.png", "technic_machine_bottom.png", "technic_music_player_side.png",
"technic_music_player_side.png", "technic_music_player_side.png", "technic_music_player_side.png"},
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2,
@ -99,7 +99,7 @@ minetest.register_node("technic:music_player", {
sounds = default.node_sound_wood_defaults(),
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("infotext", S("%s Music Player"):format("LV"))
meta:set_string("infotext", S("@1 Music Player", S("LV")))
set_display(meta)
end,
on_receive_fields = function(pos, formanme, fields, sender)

View File

@ -5,6 +5,7 @@
-- Solar arrays are not able to store large amounts of energy.
-- The LV arrays are used to make medium voltage arrays.
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:solar_array_lv 1',
recipe = {
@ -14,5 +15,5 @@ minetest.register_craft({
}
})
technic.register_solar_array({tier="LV", power=10})
technic.register_solar_array({tier="LV", power=10, tier_localized=S("LV")})

View File

@ -2,7 +2,8 @@
-- They can however also be used separately but with reduced efficiency due to the missing transformer.
-- Individual panels are less efficient than when the panels are combined into full arrays.
local S = technic.getter
local S = minetest.get_translator("technic")
minetest.register_craft({
@ -23,7 +24,7 @@ local run = function(pos, node)
-- To take care of some of it solar panels do not work outside daylight hours or if
-- built below 0m
local pos1 = {x=pos.x, y=pos.y+1, z=pos.z}
local machine_name = S("Small Solar %s Generator"):format("LV")
local machine_name = S("Small Solar @1 Generator", S("LV"))
local light = minetest.get_node_light(pos1, nil)
local time_of_day = minetest.get_timeofday()
@ -35,11 +36,11 @@ local run = function(pos, node)
local charge_to_give = math.floor((light + pos1.y) * 3)
charge_to_give = math.max(charge_to_give, 0)
charge_to_give = math.min(charge_to_give, 200)
meta:set_string("infotext", S("@1 Active (@2)", machine_name,
technic.EU_string(charge_to_give)))
meta:set_string("infotext", S("@1 Active (@2 EU)", machine_name,
technic.pretty_num(charge_to_give)))
meta:set_int("LV_EU_supply", charge_to_give)
else
meta:set_string("infotext", S("%s Idle"):format(machine_name))
meta:set_string("infotext", S("@1 Idle", machine_name))
meta:set_int("LV_EU_supply", 0)
end
end
@ -51,7 +52,7 @@ minetest.register_node("technic:solar_panel", {
technic_machine=1, technic_lv=1},
connect_sides = {"bottom"},
sounds = default.node_sound_wood_defaults(),
description = S("Small Solar %s Generator"):format("LV"),
description = S("Small Solar @1 Generator", S("LV")),
active = false,
drawtype = "nodebox",
paramtype = "light",
@ -63,7 +64,7 @@ minetest.register_node("technic:solar_panel", {
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_int("LV_EU_supply", 0)
meta:set_string("infotext", S("Small Solar %s Generator"):format("LV"))
meta:set_string("infotext", S("Small Solar @1 Generator", S("LV")))
end,
technic_run = run,
})

View File

@ -2,7 +2,8 @@
-- It is a LV EU supplier and fairly low yield (max 180EUs)
-- It is a little over half as good as the thermal generator.
local S = technic.getter
local S = minetest.get_translator("technic")
local cable_entry = "^technic_cable_connection_overlay.png"
@ -53,7 +54,7 @@ local run = function(pos, node)
meta:set_int("LV_EU_supply", eu_supply)
meta:set_string("infotext",
S("Hydro %s Generator"):format("LV").." ("..production_level.."%)")
S("@1 (@2%)", S("Hydro @1 Generator", S("LV")), production_level))
if production_level > 0 and
minetest.get_node(pos).name == "technic:water_mill" then
@ -67,7 +68,7 @@ local run = function(pos, node)
end
minetest.register_node("technic:water_mill", {
description = S("Hydro %s Generator"):format("LV"),
description = S("Hydro @1 Generator", S("LV")),
tiles = {
"technic_water_mill_top.png",
"technic_machine_bottom.png"..cable_entry,
@ -83,14 +84,14 @@ minetest.register_node("technic:water_mill", {
sounds = default.node_sound_wood_defaults(),
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("infotext", S("Hydro %s Generator"):format("LV"))
meta:set_string("infotext", S("Hydro @1 Generator", S("LV")))
meta:set_int("LV_EU_supply", 0)
end,
technic_run = run,
})
minetest.register_node("technic:water_mill_active", {
description = S("Hydro %s Generator"):format("LV"),
description = S("Hydro @1 Generator", S("LV")),
tiles = {"technic_water_mill_top_active.png", "technic_machine_bottom.png",
"technic_water_mill_side.png", "technic_water_mill_side.png",
"technic_water_mill_side.png", "technic_water_mill_side.png"},

View File

@ -1,4 +1,5 @@
-- MV alloy furnace
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:mv_alloy_furnace',
@ -10,5 +11,5 @@ minetest.register_craft({
})
technic.register_alloy_furnace({tier = "MV", speed = 1.5, upgrade = 1, tube = 1, demand = {3000, 2000, 1000}})
technic.register_alloy_furnace({tier = "MV", speed = 1.5, upgrade = 1, tube = 1, demand = {3000, 2000, 1000}, tier_localized=S("MV")})

View File

@ -1,5 +1,7 @@
-- MV Battery box
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:mv_battery_box0',
recipe = {
@ -18,5 +20,6 @@ technic.register_battery_box({
discharge_step = 8000,
upgrade = 1,
tube = 1,
tier_localized = S("MV"),
})

View File

@ -1,4 +1,4 @@
local S = minetest.get_translator("technic")
minetest.register_alias("mv_cable", "technic:mv_cable")
minetest.register_craft({
@ -10,5 +10,5 @@ minetest.register_craft({
}
})
technic.register_cable("MV", 2.5/16)
technic.register_cable(S("MV"), 2.5/16, "MV")

View File

@ -1,3 +1,5 @@
local S = minetest.get_translator("technic")
minetest.register_craft({
output = "technic:mv_centrifuge",
recipe = {
@ -13,4 +15,5 @@ technic.register_centrifuge({
speed = 2,
upgrade = 1,
tube = 1,
tier_localized = S("MV"),
})

View File

@ -1,5 +1,5 @@
-- MV compressor
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:mv_compressor',
recipe = {
@ -9,4 +9,4 @@ minetest.register_craft({
}
})
technic.register_compressor({tier = "MV", demand = {800, 600, 400}, speed = 2, upgrade = 1, tube = 1})
technic.register_compressor({tier = "MV", demand = {800, 600, 400}, speed = 2, upgrade = 1, tube = 1, tier_localized=S("MV")})

View File

@ -5,6 +5,8 @@
-- Also in addition this furnace can be attached to the pipe system from the pipeworks mod.
-- FIXME: kpoppel I'd like to introduce an induction heating element here also
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:mv_electric_furnace',
recipe = {
@ -14,5 +16,5 @@ minetest.register_craft({
}
})
technic.register_electric_furnace({tier="MV", upgrade=1, tube=1, demand={2000, 1000, 500}, speed=4})
technic.register_electric_furnace({tier="MV", upgrade=1, tube=1, demand={2000, 1000, 500}, speed=4, tier_localized=S("MV")})

View File

@ -1,4 +1,6 @@
-- MV extractor
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:mv_extractor',
@ -9,4 +11,4 @@ minetest.register_craft({
}
})
technic.register_extractor({tier = "MV", demand = {800, 600, 400}, speed = 2, upgrade = 1, tube = 1})
technic.register_extractor({tier = "MV", demand = {800, 600, 400}, speed = 2, upgrade = 1, tube = 1, tier_localized=S("MV")})

View File

@ -1,4 +1,6 @@
-- MV freezer
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:mv_freezer',
@ -9,4 +11,4 @@ minetest.register_craft({
}
})
technic.register_freezer({tier = "MV", demand = {800, 600, 400}, speed = 0.5, upgrade = 1, tube = 1})
technic.register_freezer({tier = "MV", demand = {800, 600, 400}, speed = 0.5, upgrade = 1, tube = 1, tier_localized=S("MV")})

View File

@ -1,3 +1,4 @@
local S = minetest.get_translator("technic")
minetest.register_alias("generator_mv", "technic:generator_mv")
minetest.register_craft({
@ -9,5 +10,5 @@ minetest.register_craft({
}
})
technic.register_generator({tier="MV", tube=1, supply=600})
technic.register_generator({tier="MV", tube=1, supply=600, tier_localized=S("MV")})

View File

@ -1,4 +1,6 @@
-- MV grinder
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:mv_grinder',
@ -9,5 +11,5 @@ minetest.register_craft({
}
})
technic.register_grinder({tier="MV", demand={600, 450, 300}, speed=2, upgrade=1, tube=1})
technic.register_grinder({tier="MV", demand={600, 450, 300}, speed=2, upgrade=1, tube=1, tier_localized=S("MV")})

View File

@ -1,7 +1,8 @@
-- A Hydro Turbine produces MV EUs by exploiting flowing water across it
-- It is a MV EU supplier and fairly high yield (max 1800EUs)
local S = technic.getter
local S = minetest.get_translator("technic")
local cable_entry = "^technic_cable_connection_overlay.png"
@ -51,7 +52,7 @@ local run = function(pos, node)
meta:set_int("MV_EU_supply", eu_supply)
meta:set_string("infotext",
S("Hydro %s Generator"):format("MV").." ("..production_level.."%)")
S("@1 (@2%)", S("Hydro @1 Generator", S("MV")), production_level))
if production_level > 0 and
minetest.get_node(pos).name == "technic:hydro_turbine" then
technic.swap_node(pos, "technic:hydro_turbine_active")
@ -64,7 +65,7 @@ local run = function(pos, node)
end
minetest.register_node("technic:hydro_turbine", {
description = S("Hydro %s Generator"):format("MV"),
description = S("Hydro @1 Generator", S("MV")),
tiles = {
"technic_hydro_turbine_top.png",
"technic_machine_bottom.png"..cable_entry,
@ -80,14 +81,14 @@ minetest.register_node("technic:hydro_turbine", {
sounds = default.node_sound_wood_defaults(),
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("infotext", S("Hydro %s Generator"):format("MV"))
meta:set_string("infotext", S("Hydro @1 Generator", S("MV")))
meta:set_int("MV_EU_supply", 0)
end,
technic_run = run,
})
minetest.register_node("technic:hydro_turbine_active", {
description = S("Hydro %s Generator"):format("MV"),
description = S("Hydro @1 Generator", S("MV")),
tiles = {"technic_hydro_turbine_top_active.png", "technic_machine_bottom.png",
"technic_hydro_turbine_side.png", "technic_hydro_turbine_side.png",
"technic_hydro_turbine_side.png", "technic_hydro_turbine_side.png"},

View File

@ -1,5 +1,5 @@
technic.register_tier("MV", "Medium Voltage")
technic.register_tier("MV")
local path = technic.modpath.."/machines/MV"

View File

@ -3,14 +3,8 @@
-- This file supplies electric powered glowlights
-- Boilerplate to support localized strings if intllib mod is installed.
local S
if (minetest.get_modpath("intllib")) then
dofile(minetest.get_modpath("intllib").."/intllib.lua")
S = intllib.Getter(minetest.get_current_modname())
else
S = function (s) return s end
end
local S = minetest.get_translator("technic")
function technic_homedecor_node_is_owned(pos, placer)
local ownername = false
@ -25,7 +19,7 @@ function technic_homedecor_node_is_owned(pos, placer)
end
if ownername ~= false then
minetest.chat_send_player(placer:get_player_name(), S("Sorry, %s owns that spot."):format(ownername) )
minetest.chat_send_player(placer:get_player_name(), S("Sorry, @1 owns that spot.", ownername) )
return true
else
return false
@ -113,7 +107,7 @@ minetest.register_node('technic:homedecor_glowlight_half_yellow', {
return itemstack
end,
on_construct = function(pos)
technic.inductive_on_construct(pos, 100, "Yellow Glowlight (thick)")
technic.inductive_on_construct(pos, 100, S("Yellow Glowlight (thick)"))
end,
on_punch = function(pos, node, puncher)
technic.inductive_on_punch_off(pos, 100, "technic:homedecor_glowlight_half_yellow_active")
@ -154,7 +148,7 @@ minetest.register_node('technic:homedecor_glowlight_half_yellow_active', {
return itemstack
end,
on_construct = function(pos)
technic.inductive_on_construct(pos, 100, "Yellow Glowlight (thick)")
technic.inductive_on_construct(pos, 100, S("Yellow Glowlight (thick)"))
end,
on_punch = function(pos, node, puncher)
technic.inductive_on_punch_on(pos, 0, "technic:homedecor_glowlight_half_yellow")
@ -194,7 +188,7 @@ minetest.register_node('technic:homedecor_glowlight_quarter_yellow', {
return itemstack
end,
on_construct = function(pos)
technic.inductive_on_construct(pos, 100, "Yellow Glowlight (thin)")
technic.inductive_on_construct(pos, 100, S("Yellow Glowlight (thin)"))
end,
on_punch = function(pos, node, puncher)
technic.inductive_on_punch_off(pos, 100, "technic:homedecor_glowlight_quarter_yellow_active")
@ -235,7 +229,7 @@ minetest.register_node('technic:homedecor_glowlight_quarter_yellow_active', {
return itemstack
end,
on_construct = function(pos)
technic.inductive_on_construct(pos, 100, "Yellow Glowlight (thin)")
technic.inductive_on_construct(pos, 100, S("Yellow Glowlight (thin)"))
end,
on_punch = function(pos, node, puncher)
technic.inductive_on_punch_on(pos, 0, "technic:homedecor_glowlight_quarter_yellow")
@ -276,7 +270,7 @@ minetest.register_node('technic:homedecor_glowlight_half_white', {
return itemstack
end,
on_construct = function(pos)
technic.inductive_on_construct(pos, 100, "White Glowlight (thick)")
technic.inductive_on_construct(pos, 100, S("White Glowlight (thick)"))
end,
on_punch = function(pos, node, puncher)
technic.inductive_on_punch_off(pos, 100, "technic:homedecor_glowlight_half_white_active")
@ -317,7 +311,7 @@ minetest.register_node('technic:homedecor_glowlight_half_white_active', {
return itemstack
end,
on_construct = function(pos)
technic.inductive_on_construct(pos, 100, "White Glowlight (thick)")
technic.inductive_on_construct(pos, 100, S("White Glowlight (thick)"))
end,
on_punch = function(pos, node, puncher)
technic.inductive_on_punch_on(pos, 0, "technic:homedecor_glowlight_half_white")
@ -357,7 +351,7 @@ minetest.register_node('technic:homedecor_glowlight_quarter_white', {
return itemstack
end,
on_construct = function(pos)
technic.inductive_on_construct(pos, 100, "White Glowlight (thin)")
technic.inductive_on_construct(pos, 100, S("White Glowlight (thin)"))
end,
on_punch = function(pos, node, puncher)
technic.inductive_on_punch_off(pos, 100, "technic:homedecor_glowlight_quarter_white_active")
@ -398,7 +392,7 @@ minetest.register_node('technic:homedecor_glowlight_quarter_white_active', {
return itemstack
end,
on_construct = function(pos)
technic.inductive_on_construct(pos, 100, "White Glowlight (thin)")
technic.inductive_on_construct(pos, 100, S("White Glowlight (thin)"))
end,
on_punch = function(pos, node, puncher)
technic.inductive_on_punch_on(pos, 0, "technic:homedecor_glowlight_quarter_white")
@ -438,7 +432,7 @@ minetest.register_node('technic:homedecor_glowlight_small_cube_yellow', {
return itemstack
end,
on_construct = function(pos)
technic.inductive_on_construct(pos, 50, "Yellow Glowlight (small cube)")
technic.inductive_on_construct(pos, 50, S("Yellow Glowlight (small cube)"))
end,
on_punch = function(pos, node, puncher)
technic.inductive_on_punch_off(pos, 50, "technic:homedecor_glowlight_small_cube_yellow_active")
@ -479,7 +473,7 @@ minetest.register_node('technic:homedecor_glowlight_small_cube_yellow_active', {
return itemstack
end,
on_construct = function(pos)
technic.inductive_on_construct(pos, 50, "Yellow Glowlight (small cube)")
technic.inductive_on_construct(pos, 50, S("Yellow Glowlight (small cube)"))
end,
on_punch = function(pos, node, puncher)
technic.inductive_on_punch_on(pos, 0, "technic:homedecor_glowlight_small_cube_yellow")
@ -519,7 +513,7 @@ minetest.register_node('technic:homedecor_glowlight_small_cube_white', {
return itemstack
end,
on_construct = function(pos)
technic.inductive_on_construct(pos, 50, "White Glowlight (small cube)")
technic.inductive_on_construct(pos, 50, S("White Glowlight (small cube)"))
end,
on_punch = function(pos, node, puncher)
technic.inductive_on_punch_off(pos, 50, "technic:homedecor_glowlight_small_cube_white_active")
@ -560,7 +554,7 @@ minetest.register_node('technic:homedecor_glowlight_small_cube_white_active', {
return itemstack
end,
on_construct = function(pos)
technic.inductive_on_construct(pos, 50, "White Glowlight (small cube)")
technic.inductive_on_construct(pos, 50, S("White Glowlight (small cube)"))
end,
on_punch = function(pos, node, puncher)
technic.inductive_on_punch_on(pos, 0, "technic:homedecor_glowlight_small_cube_white")

View File

@ -10,6 +10,8 @@
--
-- Punching the radiator will toggle the power state of all attached appliances.
local S = minetest.get_translator("technic")
local power_radius = 12
@ -118,7 +120,7 @@ local toggle_on_off_inductive_appliances = function(pos, node, puncher)
end
minetest.register_node("technic:power_radiator", {
description = "MV Power Radiator",
description = S("@1 Power Radiator", S("MV")),
tiles = {"technic_lv_cable.png", "technic_lv_cable.png", "technic_lv_cable.png",
"technic_lv_cable.png", "technic_lv_cable.png", "technic_lv_cable.png"},
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2},
@ -134,7 +136,7 @@ minetest.register_node("technic:power_radiator", {
local meta = minetest.get_meta(pos)
meta:set_int("MV_EU_demand",1) -- Demand on the primary side when idle
meta:set_int("connected_EU_demand",0) -- Potential demand of connected appliances
meta:set_string("infotext", "MV Power Radiator")
meta:set_string("infotext", S("@1 Power Radiator", S("MV")))
end,
on_dig = function(pos, node, digger)
shutdown_inductive_appliances(pos)
@ -146,7 +148,7 @@ minetest.register_node("technic:power_radiator", {
})
minetest.register_abm({
label = "Machines: run power radiator",
label = S("Machines: run power radiator"),
nodenames = {"technic:power_radiator"},
interval = 1,
chance = 1,
@ -160,7 +162,7 @@ minetest.register_abm({
if eu_input == 0 then
-- No power
meta:set_string("infotext", "MV Power Radiator is unpowered");
meta:set_string("infotext", S("@1 is unpowered", S("@1 Power Radiator", S("MV"))));
-- meta:set_int("active", 1) -- used for setting textures someday maybe
shutdown_inductive_appliances(pos)
meta:set_int("connected_EU_demand", 0)
@ -201,9 +203,8 @@ minetest.register_abm({
-- The appliance has power from this node. Spend power if it is on.
used_charge = used_charge + math.floor(meta1:get_int("EU_charge") / eff_factor)
end
meta:set_string("infotext", "MV Power Radiator is powered ("
..math.floor(used_charge / max_charge * 100)
.."% of maximum power)");
meta:set_string("infotext", S("@1 is powered (@2% of maximum power)", S("@1 Power Radiator", S("MV")),
math.floor(used_charge / max_charge * 100)))
if used_charge == 0 then
meta:set_int("MV_EU_demand", 1) -- Still idle
else

View File

@ -1,4 +1,4 @@
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:solar_array_mv 1',
recipe = {
@ -8,7 +8,7 @@ minetest.register_craft({
}
})
technic.register_solar_array({tier="MV", power=30})
technic.register_solar_array({tier="MV", power=30, tier_localized=S("MV")})
-- compatibility alias for upgrading from old versions of technic
minetest.register_alias("technic:solar_panel_mv", "technic:solar_array_mv")

View File

@ -3,7 +3,8 @@
minetest.register_alias("tool_workshop", "technic:tool_workshop")
local S = technic.getter
local S = minetest.get_translator("technic")
local tube_entry = "^pipeworks_tube_connection_wooden.png"
@ -21,7 +22,7 @@ local workshop_demand = {5000, 3500, 2000}
local workshop_formspec =
"size[8,9;]"..
"list[current_name;src;3,1;1,1;]"..
"label[0,0;"..S("%s Tool Workshop"):format("MV").."]"..
"label[0,0;"..S("@1 Tool Workshop", S("MV")).."]"..
"list[current_name;upgrade1;1,3;1,1;]"..
"list[current_name;upgrade2;2,3;1,1;]"..
"label[1,4;"..S("Upgrade Slots").."]"..
@ -38,7 +39,7 @@ local run = function(pos, node)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
local eu_input = meta:get_int("MV_EU_input")
local machine_name = S("%s Tool Workshop"):format("MV")
local machine_name = S("@1 Tool Workshop", S("MV"))
-- Setup meta data if it does not exist.
if not eu_input then
@ -66,15 +67,15 @@ local run = function(pos, node)
end
end)
if not repairable then
meta:set_string("infotext", S("%s Idle"):format(machine_name))
meta:set_string("infotext", S("@1 Idle", machine_name))
meta:set_int("MV_EU_demand", 0)
return
end
if eu_input < workshop_demand[EU_upgrade+1] then
meta:set_string("infotext", S("%s Unpowered"):format(machine_name))
meta:set_string("infotext", S("@1 Unpowered", machine_name))
elseif eu_input >= workshop_demand[EU_upgrade+1] then
meta:set_string("infotext", S("%s Active"):format(machine_name))
meta:set_string("infotext", S("@1 Active", machine_name))
srcstack:add_wear(-1000)
inv:set_stack("src", 1, srcstack)
end
@ -82,7 +83,7 @@ local run = function(pos, node)
end
minetest.register_node("technic:tool_workshop", {
description = S("%s Tool Workshop"):format("MV"),
description = S("@1 Tool Workshop", S("MV")),
paramtype2 = "facedir",
tiles = {
"technic_workshop_top.png"..tube_entry,
@ -98,7 +99,7 @@ minetest.register_node("technic:tool_workshop", {
sounds = default.node_sound_wood_defaults(),
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("infotext", S("%s Tool Workshop"):format("MV"))
meta:set_string("infotext", S("@1 Tool Workshop", S("MV")))
meta:set_string("formspec", workshop_formspec)
local inv = meta:get_inventory()
inv:set_size("src", 1)

View File

@ -1,5 +1,4 @@
local S = technic.getter
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:wind_mill_frame 5',
@ -51,23 +50,23 @@ end
local run = function(pos, node)
local meta = minetest.get_meta(pos)
local machine_name = S("Wind %s Generator"):format("MV")
local machine_name = S("Wind @1 Generator", S("MV"))
local check = check_wind_mill(pos)
if check == false then
meta:set_int("MV_EU_supply", 0)
meta:set_string("infotext", S("%s Improperly Placed"):format(machine_name))
meta:set_string("infotext", S("@1 Improperly Placed", machine_name))
elseif check == true then
local power = math.min(pos.y * 100, 5000)
meta:set_int("MV_EU_supply", power)
meta:set_string("infotext", S("@1 (@2)", machine_name,
technic.EU_string(power)))
meta:set_string("infotext", S("Active @1 (@2 EU)", machine_name,
technic.pretty_num(power)))
end
-- check == nil: assume nothing has changed
end
minetest.register_node("technic:wind_mill", {
description = S("Wind %s Generator"):format("MV"),
description = S("Wind @1 Generator", S("MV")),
tiles = {"technic_carbon_steel_block.png"},
paramtype2 = "facedir",
groups = {cracky=1, technic_machine=1, technic_mv=1},
@ -86,7 +85,7 @@ minetest.register_node("technic:wind_mill", {
},
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("infotext", S("Wind %s Generator"):format("MV"))
meta:set_string("infotext", S("Wind @1 Generator", S("MV")))
meta:set_int("MV_EU_supply", 0)
end,
technic_run = run,

View File

@ -1,4 +1,5 @@
local S = technic.getter
local S = minetest.get_translator("technic")
local desc = S("Administrative World Anchor")
@ -48,12 +49,12 @@ local function forceload_on(pos, meta)
end
local function set_display(pos, meta)
meta:set_string("infotext", S(meta:get_int("enabled") ~= 0 and "%s Enabled" or "%s Disabled"):format(desc))
meta:set_string("infotext", meta:get_int("enabled") ~= 0 and S("@1 Enabled", desc) or S("@1 Disabled", desc))
meta:set_string("formspec",
"size[5,3.5]"..
"item_image[0,0;1,1;technic:admin_anchor]"..
"label[1,0;"..minetest.formspec_escape(desc).."]"..
"label[0,1;"..minetest.formspec_escape(S("Owner:").." "..meta:get_string("owner")).."]"..
"label[0,1;"..minetest.formspec_escape(S("Owner: @1", meta:get_string("owner"))).."]"..
(meta:get_int("locked") == 0 and
"button[3,1;2,1;lock;"..minetest.formspec_escape(S("Unlocked")).."]" or
"button[3,1;2,1;unlock;"..minetest.formspec_escape(S("Locked")).."]")..
@ -61,7 +62,9 @@ local function set_display(pos, meta)
(meta:get_int("enabled") == 0 and
"button[3,2;2,1;enable;"..minetest.formspec_escape(S("Disabled")).."]" or
"button[3,2;2,1;disable;"..minetest.formspec_escape(S("Enabled")).."]")..
"label[0,3;"..minetest.formspec_escape(S("Keeping %d/%d map blocks loaded"):format(#currently_forceloaded_positions(meta), #compute_forceload_positions(pos, meta))).."]")
"label[0,3;"..minetest.formspec_escape(S("Keeping @1/@2 map blocks loaded",
string.format("%d", #currently_forceloaded_positions(meta)),
string.format("%d", #compute_forceload_positions(pos, meta)))).."]")
end
minetest.register_node("technic:admin_anchor", {

View File

@ -1,7 +1,6 @@
-- Fuel driven alloy furnace. This uses no EUs:
local S = technic.getter
local S = minetest.get_translator("technic")
minetest.register_craft({
output = 'technic:coal_alloy_furnace',
@ -70,7 +69,7 @@ minetest.register_node("technic:coal_alloy_furnace_active", {
})
minetest.register_abm({
label = "Machines: run coal alloy furnace",
label = S("Machines: run coal alloy furnace"),
nodenames = {"technic:coal_alloy_furnace", "technic:coal_alloy_furnace_active"},
interval = 1,
chance = 1,
@ -120,7 +119,7 @@ minetest.register_abm({
if meta:get_float("fuel_time") < meta:get_float("fuel_totaltime") then
local percent = math.floor(meta:get_float("fuel_time") /
meta:get_float("fuel_totaltime") * 100)
meta:set_string("infotext", S("%s Active"):format(machine_name).." ("..percent.."%)")
meta:set_string("infotext", S("@1 Active (@2%)", machine_name, percent))
technic.swap_node(pos, "technic:coal_alloy_furnace_active")
meta:set_string("formspec",
"size[8,9]"..
@ -144,7 +143,7 @@ minetest.register_abm({
if not recipe then
if was_active then
meta:set_string("infotext", S("%s is empty"):format(machine_name))
meta:set_string("infotext", S("@1 is empty", machine_name))
technic.swap_node(pos, "technic:coal_alloy_furnace")
meta:set_string("formspec", formspec)
end
@ -161,7 +160,7 @@ minetest.register_abm({
end
if fuel.time <= 0 then
meta:set_string("infotext", S("%s Out Of Fuel"):format(machine_name))
meta:set_string("infotext", S("@1 Out Of Fuel", machine_name))
technic.swap_node(pos, "technic:coal_alloy_furnace")
meta:set_string("formspec", formspec)
return

View File

@ -1,4 +1,4 @@
local S = technic.getter
local S = minetest.get_translator("technic")
if minetest.registered_nodes["default:furnace"].description == "Furnace" then
minetest.override_item("default:furnace", { description = S("Fuel-Fired Furnace") })

View File

@ -1,5 +1,4 @@
local S = technic.getter
local S = minetest.get_translator("technic")
local function deploy_node(inv, slot_name, pos, node, machine_node)
if node.param2 > 3 then return end
@ -131,7 +130,7 @@ end
local function make_constructor(mark, length)
minetest.register_node("technic:constructor_mk"..mark.."_off", {
description = S("Constructor Mk%d"):format(mark),
description = S("Constructor Mk@1", string.format("%d", mark)),
tiles = {"technic_constructor_mk"..mark.."_top_off.png",
"technic_constructor_mk"..mark.."_bottom_off.png",
"technic_constructor_mk"..mark.."_side2_off.png",
@ -146,16 +145,16 @@ local function make_constructor(mark, length)
on_construct = function(pos)
local meta = minetest.get_meta(pos)
local formspec = "size[8,9;]"..
"label[0,0;"..S("Constructor Mk%d"):format(mark).."]"..
"label[0,0;"..S("Constructor Mk@1", string.format("%d", mark)).."]"..
"list[current_player;main;0,5;8,4;]"
for i = 1, length do
formspec = formspec
.."label[5,"..(i - 1)..";"..S("Slot %d"):format(i).."]"
.."label[5,"..(i - 1)..";"..S("Slot @1", string.format("%d", i)).."]"
.."list[current_name;slot"..i
..";6,"..(i - 1)..";1,1;]"
end
meta:set_string("formspec", formspec)
meta:set_string("infotext", S("Constructor Mk%d"):format(mark))
meta:set_string("infotext", S("Constructor Mk@1", string.format("%d", mark)))
local inv = meta:get_inventory()
for i = 1, length do
inv:set_size("slot"..i, 1)

View File

@ -1,4 +1,4 @@
local S = technic.getter
local S = minetest.get_translator("technic")
local infinite_stacks = minetest.settings:get_bool("creative_mode")
and minetest.get_modpath("unified_inventory") == nil
@ -296,10 +296,7 @@ for zp = 0, 1 do
local pos = pointed_thing.above
if minetest.is_protected(pos, placer:get_player_name()) then
minetest.log("action", placer:get_player_name()
.. " tried to place " .. itemstack:get_name()
.. " at protected position "
.. minetest.pos_to_string(pos))
minetest.log("action", placer:get_player_name().." tried to place "..itemstack:get_name().." at protected position "..minetest.pos_to_string(pos))
minetest.record_protection_violation(pos, placer:get_player_name())
return itemstack
end
@ -325,10 +322,7 @@ for zp = 0, 1 do
on_rightclick = function(pos, node, placer, itemstack, pointed_thing)
if is_supported_node(itemstack:get_name()) then
if minetest.is_protected(pos, placer:get_player_name()) then
minetest.log("action", placer:get_player_name()
.. " tried to place " .. itemstack:get_name()
.. " at protected position "
.. minetest.pos_to_string(pos))
minetest.log("action", placer:get_player_name().." tried to place "..itemstack:get_name().." at protected position "..minetest.pos_to_string(pos))
minetest.record_protection_violation(pos, placer:get_player_name())
return itemstack
end

View File

@ -1,5 +1,4 @@
local S = technic.getter
local S = minetest.get_translator("technic")
local fs_helpers = pipeworks.fs_helpers
@ -144,7 +143,7 @@ minetest.register_node("technic:injector", {
})
minetest.register_abm({
label = "Machines: run injector",
label = S("Machines: run injector"),
nodenames = {"technic:injector"},
interval = 1,
chance = 1,

View File

@ -2,7 +2,7 @@
-- The power monitor can be used to monitor how much power is available on a network,
-- similarly to the old "slave" switching stations.
local S = technic.getter
local S = minetest.get_translator("technic")
local cable_entry = "^technic_cable_connection_overlay.png"
@ -37,7 +37,7 @@ minetest.register_node("technic:power_monitor",{
minetest.register_abm({
nodenames = {"technic:power_monitor"},
label = "Machines: run power monitor",
label = S("Machines: run power monitor"),
interval = 1,
chance = 1,
action = function(pos, node, active_object_count, active_object_count_wider)
@ -54,10 +54,10 @@ minetest.register_abm({
local supply = sw_meta:get_int("supply")
local demand = sw_meta:get_int("demand")
meta:set_string("infotext",
S("Power Monitor. Supply: @1 Demand: @2",
S("@1. Supply: @2 Demand: @3", S("Power Monitor"),
technic.EU_string(supply), technic.EU_string(demand)))
else
meta:set_string("infotext",S("Power Monitor Has No Network"))
meta:set_string("infotext",S("@1 Has No Network",S("Power Monitor")))
end
end,
})

View File

@ -1,6 +1,4 @@
local S = technic.getter
local S = minetest.get_translator("technic")
function technic.insert_object_unique_stack(pos, node, incoming_stack, direction)
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
@ -40,7 +38,7 @@ end
function technic.register_alloy_furnace(data)
data.typename = "alloy"
data.machine_name = "alloy_furnace"
data.machine_desc = S("%s Alloy Furnace")
data.machine_desc = S("@1 Alloy Furnace", data.tier_localized)
data.insert_object = technic.insert_object_unique_stack
data.can_insert = technic.can_insert_unique_stack

View File

@ -1,5 +1,4 @@
local S = technic.getter
local S = minetest.get_translator("technic")
technic.register_recipe_type("alloy", {
description = S("Alloying"),

View File

@ -1,7 +1,6 @@
local digilines_path = minetest.get_modpath("digilines")
local S = technic.getter
local S = minetest.get_translator("technic")
local tube_entry = "^pipeworks_tube_connection_metallic.png"
local cable_entry = "^technic_cable_connection_overlay.png"
@ -142,7 +141,7 @@ local function add_on_off_buttons(meta, ltier, charge_percent)
pipeworks.button_off,
pipeworks.button_on
}
).."label[3.9,2.01;Allow splitting incoming 'charge' stacks from tubes]"..
).."label[3.9,2.01;"..S("Allow splitting incoming 'charge' stacks from tubes").."]"..
fs_helpers.cycling_button(
meta,
"image_button[3,2.5;1,0.6",
@ -151,7 +150,7 @@ local function add_on_off_buttons(meta, ltier, charge_percent)
pipeworks.button_off,
pipeworks.button_on
}
).."label[3.9,2.51;Allow splitting incoming 'discharge' stacks]"
).."label[3.9,2.51;"..S("Allow splitting incoming 'discharge' stacks").."]"
end
return formspec
end
@ -166,7 +165,7 @@ function technic.register_battery_box(data)
"list[context;src;3,1;1,1;]"..
"image[4,1;1,1;technic_battery_reload.png]"..
"list[context;dst;5,1;1,1;]"..
"label[0,0;"..S("%s Battery Box"):format(tier).."]"..
"label[0,0;"..S("@1 Battery Box", data.tier_localized).."]"..
"label[3,0;"..S("Charge").."]"..
"label[5,0;"..S("Discharge").."]"..
"label[1,3;"..S("Power level").."]"..
@ -177,7 +176,7 @@ function technic.register_battery_box(data)
"listring[current_player;main]"
if digilines_path then
formspec = formspec.."button[0.6,3.7;2,1;edit_channel;edit Channel]"
formspec = formspec.."button[0.6,3.7;2,1;edit_channel;"..S("edit Channel").."]"
end
if data.upgrade then
@ -196,7 +195,7 @@ function technic.register_battery_box(data)
local meta = minetest.get_meta(pos)
if not technic.is_tier_cable(below.name, tier) then
meta:set_string("infotext", S("%s Battery Box Has No Network"):format(tier))
meta:set_string("infotext", S("@1 Has No Network", S("@1 Battery Box", data.tier_localized)))
return
end
@ -255,11 +254,11 @@ function technic.register_battery_box(data)
local charge_percent = math.floor(current_charge / max_charge * 100)
meta:set_string("formspec", formspec..add_on_off_buttons(meta, ltier, charge_percent))
local infotext = S("@1 Battery Box: @2 / @3", tier,
local infotext = S("@1 Battery Box: @2 / @3", data.tier_localized,
technic.EU_string(current_charge),
technic.EU_string(max_charge))
if eu_input == 0 then
infotext = S("%s Idle"):format(infotext)
infotext = S("@1 Idle", infotext)
end
meta:set_string("infotext", infotext)
end
@ -288,7 +287,7 @@ function technic.register_battery_box(data)
end
minetest.register_node("technic:"..ltier.."_battery_box"..i, {
description = S("%s Battery Box"):format(tier),
description = S("@1 Battery Box", data.tier_localized),
tiles = {
top_tex,
bottom_tex,
@ -312,7 +311,7 @@ function technic.register_battery_box(data)
local charge = meta:get_int("internal_EU_charge")
local cpercent = math.floor(charge / max_charge * 100)
local inv = meta:get_inventory()
meta:set_string("infotext", S("%s Battery Box"):format(tier))
meta:set_string("infotext", S("@1 Battery Box", data.tier_localized))
meta:set_string("formspec", formspec..add_on_off_buttons(meta, ltier, cpercent))
meta:set_string("channel", ltier.."_battery_box"..minetest.pos_to_string(pos))
meta:set_int(tier.."_EU_demand", 0)
@ -337,7 +336,7 @@ function technic.register_battery_box(data)
if fields.edit_channel then
minetest.show_formspec(sender:get_player_name(),
"technic:battery_box_edit_channel"..minetest.pos_to_string(pos),
"field[channel;Digiline Channel;"..meta:get_string("channel").."]")
"field[channel;"..S("Digiline Channel")..";"..meta:get_string("channel").."]")
elseif fields["fs_helpers_cycling:0:split_src_stacks"]
or fields["fs_helpers_cycling:0:split_dst_stacks"]
or fields["fs_helpers_cycling:1:split_src_stacks"]

View File

@ -1,5 +1,5 @@
local S = technic.getter
local S = minetest.get_translator("technic")
local cable_tier = {}
@ -130,7 +130,7 @@ local function item_place_override_node(itemstack, placer, pointed, node)
return itemstack
end
function technic.register_cable(tier, size)
function technic.register_cable(tier_localized, size, tier)
local ltier = string.lower(tier)
cable_tier["technic:"..ltier.."_cable"] = tier
@ -149,7 +149,7 @@ function technic.register_cable(tier, size)
}
minetest.register_node("technic:"..ltier.."_cable", {
description = S("%s Cable"):format(tier),
description = S("@1 Cable", tier_localized),
tiles = {"technic_"..ltier.."_cable.png"},
inventory_image = "technic_"..ltier.."_cable_wield.png",
wield_image = "technic_"..ltier.."_cable_wield.png",
@ -191,7 +191,7 @@ function technic.register_cable(tier, size)
end
for p, i in pairs(xyz) do
local def = {
description = S("%s Cable Plate"):format(tier),
description = S("@1 Cable Plate", tier_localized),
tiles = {"technic_"..ltier.."_cable.png"},
groups = table.copy(groups),
sounds = default.node_sound_wood_defaults(),

Some files were not shown because too many files have changed in this diff Show More