Merge branch 'master' of https://github.com/minetest/minetest_gameC
BIN
menu/header.png
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 935 B |
|
@ -31,6 +31,7 @@ function beds.register_bed(name, def)
|
||||||
wield_image = def.wield_image,
|
wield_image = def.wield_image,
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
tiles = def.tiles.bottom,
|
tiles = def.tiles.bottom,
|
||||||
|
use_texture_alpha = "clip",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
|
@ -95,8 +96,7 @@ function beds.register_bed(name, def)
|
||||||
minetest.set_node(pos, {name = name .. "_bottom", param2 = dir})
|
minetest.set_node(pos, {name = name .. "_bottom", param2 = dir})
|
||||||
minetest.set_node(botpos, {name = name .. "_top", param2 = dir})
|
minetest.set_node(botpos, {name = name .. "_top", param2 = dir})
|
||||||
|
|
||||||
if not (creative and creative.is_enabled_for
|
if not minetest.is_creative_enabled(player_name) then
|
||||||
and creative.is_enabled_for(player_name)) then
|
|
||||||
itemstack:take_item()
|
itemstack:take_item()
|
||||||
end
|
end
|
||||||
return itemstack
|
return itemstack
|
||||||
|
@ -151,6 +151,7 @@ function beds.register_bed(name, def)
|
||||||
minetest.register_node(name .. "_top", {
|
minetest.register_node(name .. "_top", {
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
tiles = def.tiles.top,
|
tiles = def.tiles.top,
|
||||||
|
use_texture_alpha = "clip",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
|
|
|
@ -60,18 +60,19 @@ local function lay_down(player, pos, bed_pos, state, skip)
|
||||||
|
|
||||||
-- stand up
|
-- stand up
|
||||||
if state ~= nil and not state then
|
if state ~= nil and not state then
|
||||||
local p = beds.pos[name] or nil
|
if not beds.player[name] then
|
||||||
|
-- player not in bed, do nothing
|
||||||
|
return false
|
||||||
|
end
|
||||||
beds.bed_position[name] = nil
|
beds.bed_position[name] = nil
|
||||||
-- skip here to prevent sending player specific changes (used for leaving players)
|
-- skip here to prevent sending player specific changes (used for leaving players)
|
||||||
if skip then
|
if skip then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
if p then
|
player:set_pos(beds.pos[name])
|
||||||
player:set_pos(p)
|
|
||||||
end
|
|
||||||
|
|
||||||
-- physics, eye_offset, etc
|
-- physics, eye_offset, etc
|
||||||
local physics_override = assert(beds.player[name].physics_override)
|
local physics_override = beds.player[name].physics_override
|
||||||
beds.player[name] = nil
|
beds.player[name] = nil
|
||||||
player:set_physics_override({
|
player:set_physics_override({
|
||||||
speed = physics_override.speed,
|
speed = physics_override.speed,
|
||||||
|
@ -101,6 +102,11 @@ local function lay_down(player, pos, bed_pos, state, skip)
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if beds.player[name] then
|
||||||
|
-- player already in bed, do nothing
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
beds.pos[name] = pos
|
beds.pos[name] = pos
|
||||||
beds.bed_position[name] = bed_pos
|
beds.bed_position[name] = bed_pos
|
||||||
beds.player[name] = {physics_override = player:get_physics_override()}
|
beds.player[name] = {physics_override = player:get_physics_override()}
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
# textdomain: beds
|
# textdomain: beds
|
||||||
Fancy Bed=Schickes Bett
|
Fancy Bed=Schickes Bett
|
||||||
Simple Bed=Schlichtes Bett
|
Simple Bed=Schlichtes Bett
|
||||||
Leave Bed=Bett verlassen
|
This bed is already occupied!=Dieses Bett ist bereits belegt!
|
||||||
|
You have to stop moving before going to bed!=Sie müssen stehen bleiben, bevor Sie zu Bett gehen können!
|
||||||
Good morning.=Guten Morgen.
|
Good morning.=Guten Morgen.
|
||||||
@1 of @2 players are in bed=@1 von @2 Spielern sind im Bett
|
@1 of @2 players are in bed=@1 von @2 Spielern sind im Bett
|
||||||
Force night skip=Überspringen der Nacht erzwingen
|
Force night skip=Überspringen der Nacht erzwingen
|
||||||
You can only sleep at night.=Sie können nur nachts schlafen.
|
You can only sleep at night.=Sie können nur nachts schlafen.
|
||||||
|
Leave Bed=Bett verlassen
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
# textdomain: beds
|
# textdomain: beds
|
||||||
Fancy Bed=Cama de lujo
|
Fancy Bed=Cama de lujo
|
||||||
Simple Bed=Cama sencilla
|
Simple Bed=Cama sencilla
|
||||||
Leave Bed=Abandonar cama
|
This bed is already occupied!=Esta cama esta ocupada
|
||||||
|
You have to stop moving before going to bed!=Deja de moverte o no podras acostarte
|
||||||
Good morning.=Buenos días.
|
Good morning.=Buenos días.
|
||||||
@1 of @2 players are in bed=@1 de @2 jugadores están en cama
|
@1 of @2 players are in bed=@1 de @2 jugadores están durmiendo
|
||||||
Force night skip=Forzar evitar noche
|
Force night skip=Forzar hacer de dia
|
||||||
You can only sleep at night.=Sólo puedes dormir por la noche.
|
You can only sleep at night.=Sólo puedes dormir por la noche.
|
||||||
|
Leave Bed=Levantarse
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
# textdomain: beds
|
# textdomain: beds
|
||||||
Fancy Bed=Lit chic
|
Fancy Bed=Lit chic
|
||||||
Simple Bed=Lit simple
|
Simple Bed=Lit simple
|
||||||
Leave Bed=Se lever du lit
|
This bed is already occupied!=
|
||||||
|
You have to stop moving before going to bed!=
|
||||||
Good morning.=Bonjour.
|
Good morning.=Bonjour.
|
||||||
@1 of @2 players are in bed=@1 joueur(s) sur @2 sont au lit
|
@1 of @2 players are in bed=@1 joueur(s) sur @2 sont au lit
|
||||||
Force night skip=Forcer le passage de la nuit
|
Force night skip=Forcer le passage de la nuit
|
||||||
You can only sleep at night.=Vous ne pouvez dormir que la nuit.
|
You can only sleep at night.=Vous ne pouvez dormir que la nuit.
|
||||||
|
Leave Bed=Se lever du lit
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
# textdomain: beds
|
# textdomain: beds
|
||||||
Leave Bed=Tinggalkan Dipan
|
Fancy Bed=Ranjang Mewah
|
||||||
|
Simple Bed=Ranjang Sederhana
|
||||||
|
This bed is already occupied!=
|
||||||
|
You have to stop moving before going to bed!=
|
||||||
Good morning.=Selamat pagi.
|
Good morning.=Selamat pagi.
|
||||||
@1 of @2 players are in bed=@1 dari @2 pemain sedang tidur
|
@1 of @2 players are in bed=@1 dari @2 pemain sedang tidur
|
||||||
Force night skip=Paksa lewati malam
|
Force night skip=Paksa lewati malam
|
||||||
You can only sleep at night.=Anda hanya boleh tidur pada waktu malam.
|
You can only sleep at night.=Anda hanya dapat tidur pada waktu malam.
|
||||||
Fancy Bed=Dipan Mewah
|
Leave Bed=Tinggalkan Ranjang
|
||||||
Simple Bed=Dipan Sederhana
|
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
# textdomain: beds
|
# textdomain: beds
|
||||||
Fancy Bed=Letto decorato
|
Fancy Bed=Letto decorato
|
||||||
Simple Bed=Letto semplice
|
Simple Bed=Letto semplice
|
||||||
|
This bed is already occupied!=
|
||||||
|
You have to stop moving before going to bed!=
|
||||||
|
Good morning.=
|
||||||
|
@1 of @2 players are in bed=
|
||||||
|
Force night skip=
|
||||||
|
You can only sleep at night.=
|
||||||
Leave Bed=Alzati dal letto
|
Leave Bed=Alzati dal letto
|
10
mods/beds/locale/beds.jbo.tr
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
# textdomain: beds
|
||||||
|
Fancy Bed=lo selja'i ckana
|
||||||
|
Simple Bed=lo sampu ckana
|
||||||
|
This bed is already occupied!=.i lo ti ckana cu canlu
|
||||||
|
You have to stop moving before going to bed!=lo nu do cando cu sarcu lo nu do sipna
|
||||||
|
Good morning.=.i .uise'inai cerni
|
||||||
|
@1 of @2 players are in bed=.i @1 cmima be lu'i @2 le pilno cu vreta lo ckana
|
||||||
|
Force night skip=bapli le nu co'u nicte
|
||||||
|
You can only sleep at night.=.i steci le ka nicte kei fa le ka do kakne le ka sipna ca pa ckaji be ce'u
|
||||||
|
Leave Bed=cliva lo ckana
|
|
@ -1,8 +1,10 @@
|
||||||
# textdomain: beds
|
# textdomain: beds
|
||||||
Fancy Bed=Katil Beragam
|
Fancy Bed=Katil Beragam
|
||||||
Simple Bed=Katil Biasa
|
Simple Bed=Katil Biasa
|
||||||
Leave Bed=Bangun
|
This bed is already occupied!=
|
||||||
|
You have to stop moving before going to bed!=
|
||||||
Good morning.=Selamat pagi.
|
Good morning.=Selamat pagi.
|
||||||
@1 of @2 players are in bed=@1 daripada @2 pemain sedang tidur
|
@1 of @2 players are in bed=@1 daripada @2 pemain sedang tidur
|
||||||
Force night skip=Paksa langkau malam
|
Force night skip=Paksa langkau malam
|
||||||
You can only sleep at night.=Anda hanya boleh tidur pada waktu malam.
|
You can only sleep at night.=Anda hanya boleh tidur pada waktu malam.
|
||||||
|
Leave Bed=Bangun
|
||||||
|
|
10
mods/beds/locale/beds.pt_BR.tr
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
# textdomain: beds
|
||||||
|
Fancy Bed=Cama Bonita
|
||||||
|
Simple Bed=Cama Simples
|
||||||
|
This bed is already occupied!=Esta cama já está ocupada!
|
||||||
|
You have to stop moving before going to bed!=Você precisa parar de se mover antes de ir para cama!
|
||||||
|
Good morning.=Bom dia.
|
||||||
|
@1 of @2 players are in bed=@1 de @2 jogadores estão na cama
|
||||||
|
Force night skip=Forçar o amanhecer
|
||||||
|
You can only sleep at night.=Você só pode dormir à noite
|
||||||
|
Leave Bed=Sair da Cama
|
|
@ -1,8 +1,10 @@
|
||||||
# textdomain: beds
|
# textdomain: beds
|
||||||
Fancy Bed=Детализированная Кровать
|
Fancy Bed=Детализированная Кровать
|
||||||
Simple Bed=Обычная Кровать
|
Simple Bed=Обычная Кровать
|
||||||
Leave Bed=Встать с кровати
|
This bed is already occupied!=
|
||||||
|
You have to stop moving before going to bed!=
|
||||||
Good morning.=Доброе утро.
|
Good morning.=Доброе утро.
|
||||||
@1 of @2 players are in bed=@1 из @2 игроков в кровати
|
@1 of @2 players are in bed=@1 из @2 игроков в кровати
|
||||||
Force night skip=Пропустить ночь
|
Force night skip=Пропустить ночь
|
||||||
You can only sleep at night.=Вы можете спать только ночью.
|
You can only sleep at night.=Вы можете спать только ночью.
|
||||||
|
Leave Bed=Встать с кровати
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
# textdomain: beds
|
# textdomain: beds
|
||||||
Fancy Bed=Fin säng
|
Fancy Bed=Fin säng
|
||||||
Simple Bed=Enkel Säng
|
Simple Bed=Enkel Säng
|
||||||
Leave Bed=Lämna Säng
|
This bed is already occupied!=
|
||||||
|
You have to stop moving before going to bed!=
|
||||||
Good morning.= God morgon.
|
Good morning.= God morgon.
|
||||||
@1 of @2 players are in bed=@1 av @2 spelar försöker sover.
|
@1 of @2 players are in bed=@1 av @2 spelar försöker sover.
|
||||||
Force night skip=Tvinga över natten
|
Force night skip=Tvinga över natten
|
||||||
You can only sleep at night.=Du kan bara sova på natten.
|
You can only sleep at night.=Du kan bara sova på natten.
|
||||||
|
Leave Bed=Lämna Säng
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
# textdomain: beds
|
# textdomain: beds
|
||||||
Leave Bed=Opusti posteľ
|
Fancy Bed=Pekná posteľ
|
||||||
|
Simple Bed=Jednoduchá posteľ
|
||||||
|
This bed is already occupied!=
|
||||||
|
You have to stop moving before going to bed!=
|
||||||
Good morning.=Dobré ráno.
|
Good morning.=Dobré ráno.
|
||||||
@1 of @2 players are in bed=@1 z @2 hráčov sú v posteli
|
@1 of @2 players are in bed=@1 z @2 hráčov sú v posteli
|
||||||
Force night skip=Nútene preskočiť noc
|
Force night skip=Nútene preskočiť noc
|
||||||
You can only sleep at night.=Môžeš spať len v noci.
|
You can only sleep at night.=Môžeš spať len v noci.
|
||||||
Fancy Bed=Pekná posteľ
|
Leave Bed=Opusti posteľ
|
||||||
Simple Bed=Jednoduchá posteľ
|
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
# textdomain: beds
|
# textdomain: beds
|
||||||
Fancy Bed=花式床
|
Fancy Bed=花式床
|
||||||
Simple Bed=简易床
|
Simple Bed=简易床
|
||||||
Leave Bed=离开床
|
This bed is already occupied!=
|
||||||
|
You have to stop moving before going to bed!=
|
||||||
Good morning.=早安!
|
Good morning.=早安!
|
||||||
@1 of @2 players are in bed=@2位玩家中的@1位在床上
|
@1 of @2 players are in bed=@2位玩家中的@1位在床上
|
||||||
Force night skip=强制跳过夜晚
|
Force night skip=强制跳过夜晚
|
||||||
You can only sleep at night.=你只能在晚上睡觉。
|
You can only sleep at night.=你只能在晚上睡觉。
|
||||||
|
Leave Bed=离开床
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
# textdomain: beds
|
# textdomain: beds
|
||||||
Fancy Bed=花式床
|
Fancy Bed=花式床
|
||||||
Simple Bed=簡易床
|
Simple Bed=簡易床
|
||||||
Leave Bed=離開床
|
This bed is already occupied!=
|
||||||
|
You have to stop moving before going to bed!=
|
||||||
Good morning.=早安!
|
Good morning.=早安!
|
||||||
@1 of @2 players are in bed=@2位玩家中的@1位在床上
|
@1 of @2 players are in bed=@2位玩家中的@1位在床上
|
||||||
Force night skip=強制跳過夜晚
|
Force night skip=強制跳過夜晚
|
||||||
You can only sleep at night.=你只能在晚上睡覺。
|
You can only sleep at night.=你只能在晚上睡覺。
|
||||||
|
Leave Bed=離開床
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
# textdomain: beds
|
# textdomain: beds
|
||||||
Leave Bed=
|
Fancy Bed=
|
||||||
|
Simple Bed=
|
||||||
|
This bed is already occupied!=
|
||||||
|
You have to stop moving before going to bed!=
|
||||||
Good morning.=
|
Good morning.=
|
||||||
@1 of @2 players are in bed=
|
@1 of @2 players are in bed=
|
||||||
Force night skip=
|
Force night skip=
|
||||||
You can only sleep at night.=
|
You can only sleep at night.=
|
||||||
Fancy Bed=
|
Leave Bed=
|
||||||
Simple Bed=
|
|
||||||
|
|
Before Width: | Height: | Size: 540 B After Width: | Height: | Size: 490 B |
Before Width: | Height: | Size: 537 B After Width: | Height: | Size: 486 B |
Before Width: | Height: | Size: 390 B After Width: | Height: | Size: 340 B |
Before Width: | Height: | Size: 387 B After Width: | Height: | Size: 343 B |
Before Width: | Height: | Size: 296 B After Width: | Height: | Size: 248 B |
Before Width: | Height: | Size: 316 B After Width: | Height: | Size: 265 B |
Before Width: | Height: | Size: 561 B After Width: | Height: | Size: 431 B |
Before Width: | Height: | Size: 537 B After Width: | Height: | Size: 427 B |
Before Width: | Height: | Size: 611 B After Width: | Height: | Size: 464 B |
Before Width: | Height: | Size: 596 B After Width: | Height: | Size: 446 B |
Before Width: | Height: | Size: 583 B After Width: | Height: | Size: 474 B |
Before Width: | Height: | Size: 616 B After Width: | Height: | Size: 547 B |
Before Width: | Height: | Size: 495 B After Width: | Height: | Size: 425 B |
Before Width: | Height: | Size: 556 B After Width: | Height: | Size: 490 B |
Before Width: | Height: | Size: 304 B After Width: | Height: | Size: 251 B |
Before Width: | Height: | Size: 143 B After Width: | Height: | Size: 83 B |
|
@ -8,25 +8,16 @@ binoculars = {}
|
||||||
local S = minetest.get_translator("binoculars")
|
local S = minetest.get_translator("binoculars")
|
||||||
|
|
||||||
|
|
||||||
-- Detect creative mod
|
|
||||||
local creative_mod = minetest.get_modpath("creative")
|
|
||||||
-- Cache creative mode setting as fallback if creative mod not present
|
|
||||||
local creative_mode_cache = minetest.settings:get_bool("creative_mode")
|
|
||||||
|
|
||||||
|
|
||||||
-- Update player property
|
-- Update player property
|
||||||
-- Global to allow overriding
|
-- Global to allow overriding
|
||||||
|
|
||||||
function binoculars.update_player_property(player)
|
function binoculars.update_player_property(player)
|
||||||
local creative_enabled =
|
|
||||||
(creative_mod and creative.is_enabled_for(player:get_player_name())) or
|
|
||||||
creative_mode_cache
|
|
||||||
local new_zoom_fov = 0
|
local new_zoom_fov = 0
|
||||||
|
|
||||||
if player:get_inventory():contains_item(
|
if player:get_inventory():contains_item(
|
||||||
"main", "binoculars:binoculars") then
|
"main", "binoculars:binoculars") then
|
||||||
new_zoom_fov = 10
|
new_zoom_fov = 10
|
||||||
elseif creative_enabled then
|
elseif minetest.is_creative_enabled(player:get_player_name()) then
|
||||||
new_zoom_fov = 15
|
new_zoom_fov = 15
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
# textdomain: binoculars
|
# textdomain: binoculars
|
||||||
Binoculars=Binokular
|
Binoculars=Teropong
|
||||||
Use with 'Zoom' key=Pakai dengan tombol 'Zum'
|
Use with 'Zoom' key=Pakai dengan tombol 'Zoom'
|
||||||
|
|
3
mods/binoculars/locale/binoculars.jbo.tr
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# textdomain: binoculars
|
||||||
|
Binoculars=lo reldarvistci
|
||||||
|
Use with 'Zoom' key=.i tu'a le jvinu banro batke cu tadji lo nu pilno
|
3
mods/binoculars/locale/binoculars.pt_BR.tr
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# textdomain: binoculars
|
||||||
|
Binoculars=Binóculos
|
||||||
|
Use with 'Zoom' key=Use com a tecla de 'Zoom'
|
|
@ -1,4 +1,3 @@
|
||||||
name = binoculars
|
name = binoculars
|
||||||
description = Minetest Game mod: binoculars
|
description = Minetest Game mod: binoculars
|
||||||
depends = default
|
depends = default
|
||||||
optional_depends = creative
|
|
||||||
|
|
|
@ -119,8 +119,7 @@ function boat.on_punch(self, puncher)
|
||||||
if not self.driver then
|
if not self.driver then
|
||||||
self.removed = true
|
self.removed = true
|
||||||
local inv = puncher:get_inventory()
|
local inv = puncher:get_inventory()
|
||||||
if not (creative and creative.is_enabled_for
|
if not minetest.is_creative_enabled(name)
|
||||||
and creative.is_enabled_for(name))
|
|
||||||
or not inv:contains_item("main", "boats:boat") then
|
or not inv:contains_item("main", "boats:boat") then
|
||||||
local leftover = inv:add_item("main", "boats:boat")
|
local leftover = inv:add_item("main", "boats:boat")
|
||||||
-- if no room in inventory add a replacement boat to the world
|
-- if no room in inventory add a replacement boat to the world
|
||||||
|
@ -172,7 +171,8 @@ function boat.on_step(self, dtime)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local velo = self.object:get_velocity()
|
local velo = self.object:get_velocity()
|
||||||
if self.v == 0 and velo.x == 0 and velo.y == 0 and velo.z == 0 then
|
if not self.driver and
|
||||||
|
self.v == 0 and velo.x == 0 and velo.y == 0 and velo.z == 0 then
|
||||||
self.object:set_pos(self.object:get_pos())
|
self.object:set_pos(self.object:get_pos())
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
@ -268,8 +268,7 @@ minetest.register_craftitem("boats:boat", {
|
||||||
boat:set_yaw(placer:get_look_horizontal())
|
boat:set_yaw(placer:get_look_horizontal())
|
||||||
end
|
end
|
||||||
local player_name = placer and placer:get_player_name() or ""
|
local player_name = placer and placer:get_player_name() or ""
|
||||||
if not (creative and creative.is_enabled_for and
|
if not minetest.is_creative_enabled(player_name) then
|
||||||
creative.is_enabled_for(player_name)) then
|
|
||||||
itemstack:take_item()
|
itemstack:take_item()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
4
mods/boats/locale/boats.jbo.tr
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# textdomain: boats
|
||||||
|
Boat cruise mode on=.i lo bloti cu zmiku le ka klama
|
||||||
|
Boat cruise mode off=.i lo bloti cu macnu le ka klama
|
||||||
|
Boat=lo bloti
|
4
mods/boats/locale/boats.pt_BR.tr
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# textdomain: boats
|
||||||
|
Boat cruise mode on=Modo de cruseiro do barco ligado
|
||||||
|
Boat cruise mode off=Modo de cruseiro do barco desligado
|
||||||
|
Boat=Barco
|
|
@ -141,8 +141,18 @@ local function may_replace(pos, player)
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
-- allow replacing air and liquids
|
-- allow replacing air
|
||||||
if node_name == "air" or node_definition.liquidtype ~= "none" then
|
if node_name == "air" then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
|
||||||
|
-- don't replace nodes inside protections
|
||||||
|
if minetest.is_protected(pos, player:get_player_name()) then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
-- allow replacing liquids
|
||||||
|
if node_definition.liquidtype ~= "none" then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -154,8 +164,7 @@ local function may_replace(pos, player)
|
||||||
|
|
||||||
-- default to each nodes buildable_to; if a placed block would replace it, why shouldn't bones?
|
-- default to each nodes buildable_to; if a placed block would replace it, why shouldn't bones?
|
||||||
-- flowers being squished by bones are more realistical than a squished stone, too
|
-- flowers being squished by bones are more realistical than a squished stone, too
|
||||||
-- exception are of course any protected buildable_to
|
return node_definition.buildable_to
|
||||||
return node_definition.buildable_to and not minetest.is_protected(pos, player:get_player_name())
|
|
||||||
end
|
end
|
||||||
|
|
||||||
local drop = function(pos, itemstack)
|
local drop = function(pos, itemstack)
|
||||||
|
@ -182,7 +191,6 @@ local function is_all_empty(player_inv)
|
||||||
end
|
end
|
||||||
|
|
||||||
minetest.register_on_dieplayer(function(player)
|
minetest.register_on_dieplayer(function(player)
|
||||||
|
|
||||||
local bones_mode = minetest.settings:get("bones_mode") or "bones"
|
local bones_mode = minetest.settings:get("bones_mode") or "bones"
|
||||||
if bones_mode ~= "bones" and bones_mode ~= "drop" and bones_mode ~= "keep" then
|
if bones_mode ~= "bones" and bones_mode ~= "drop" and bones_mode ~= "keep" then
|
||||||
bones_mode = "bones"
|
bones_mode = "bones"
|
||||||
|
@ -194,8 +202,7 @@ minetest.register_on_dieplayer(function(player)
|
||||||
local pos_string = minetest.pos_to_string(pos)
|
local pos_string = minetest.pos_to_string(pos)
|
||||||
|
|
||||||
-- return if keep inventory set or in creative mode
|
-- return if keep inventory set or in creative mode
|
||||||
if bones_mode == "keep" or (creative and creative.is_enabled_for
|
if bones_mode == "keep" or minetest.is_creative_enabled(player_name) then
|
||||||
and creative.is_enabled_for(player:get_player_name())) then
|
|
||||||
minetest.log("action", player_name .. " dies at " .. pos_string ..
|
minetest.log("action", player_name .. " dies at " .. pos_string ..
|
||||||
". No bones placed")
|
". No bones placed")
|
||||||
if bones_position_message then
|
if bones_position_message then
|
||||||
|
|
8
mods/bones/locale/bones.jbo.tr
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# textdomain: bones
|
||||||
|
Bones=lo bongu gunma
|
||||||
|
@1's old bones=.i ti tolci'o ke bongu gunma po'a la'o zo'i.@1.zo'i
|
||||||
|
@1 died at @2.=.i la'o zo'i.@1.zo'i pu morsi di'o lo me zoi pos.@2.pos.
|
||||||
|
@1 died at @2, and dropped their inventory.=.i la'o zo'i.@1.zo'i goi ly. pu morsi di'o lo me zoi pos.@2.pos. .ije ly. te farlu lo me le dacti liste po ly.
|
||||||
|
@1 died at @2, and bones were placed.=.i la'o zo'i.@1.zo'i goi ly. pu morsi di'o lo me zoi pos.@2.pos. .ije lo bongu gunma pu se punji
|
||||||
|
@1's fresh bones=.i ti cnino ke bongu gunma po'a la'o zo'i.@1.zo'i
|
||||||
|
@1's bones=.i ti bongu gunma po'a la'o zo'i.@1.zo'i
|
8
mods/bones/locale/bones.pt_BR.tr
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# textdomain: bones
|
||||||
|
Bones=Ossos
|
||||||
|
@1's old bones=Ossos antigos de @1
|
||||||
|
@1 died at @2.=@1 morreu em @2.
|
||||||
|
@1 died at @2, and dropped their inventory.=@1 morreu em @2, e seu inventário foi derrubado.
|
||||||
|
@1 died at @2, and bones were placed.=@1 morreu em @2, e os ossos foram colocados.
|
||||||
|
@1's fresh bones=Ossos recentes de @1
|
||||||
|
@1's bones=Ossos de @1
|
Before Width: | Height: | Size: 740 B After Width: | Height: | Size: 349 B |
Before Width: | Height: | Size: 656 B After Width: | Height: | Size: 339 B |
Before Width: | Height: | Size: 637 B After Width: | Height: | Size: 341 B |
Before Width: | Height: | Size: 700 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 662 B After Width: | Height: | Size: 333 B |
5
mods/bucket/locale/bucket.jbo.tr
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# textdomain: bucket
|
||||||
|
Empty Bucket=lo baktu be no da
|
||||||
|
Water Bucket=lo baktu be lo djacu
|
||||||
|
River Water Bucket=lo baktu be lo rirxe djacu
|
||||||
|
Lava Bucket=lo baktu be lo likro'i
|
5
mods/bucket/locale/bucket.pt_BR.tr
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# textdomain: bucket
|
||||||
|
Empty Bucket=Balde Vazio
|
||||||
|
Water Bucket=Balde de Água
|
||||||
|
River Water Bucket=Balde de Água do Rio
|
||||||
|
Lava Bucket=Balde de Lava
|
4
mods/butterflies/locale/butterflies.jbo.tr
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# textdomain: butterflies
|
||||||
|
White Butterfly=lo blabi toldi
|
||||||
|
Red Butterfly=lo xunre toldi
|
||||||
|
Violet Butterfly=lo zirpu toldi
|
4
mods/butterflies/locale/butterflies.pt_BR.tr
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# textdomain: butterflies
|
||||||
|
White Butterfly=
|
||||||
|
Red Butterfly=
|
||||||
|
Violet Butterfly=
|
|
@ -108,8 +108,7 @@ function cart_entity:on_punch(puncher, time_from_last_punch, tool_capabilities,
|
||||||
end
|
end
|
||||||
-- Pick up cart
|
-- Pick up cart
|
||||||
local inv = puncher:get_inventory()
|
local inv = puncher:get_inventory()
|
||||||
if not (creative and creative.is_enabled_for
|
if not minetest.is_creative_enabled(puncher:get_player_name())
|
||||||
and creative.is_enabled_for(puncher:get_player_name()))
|
|
||||||
or not inv:contains_item("main", "carts:cart") then
|
or not inv:contains_item("main", "carts:cart") then
|
||||||
local leftover = inv:add_item("main", "carts:cart")
|
local leftover = inv:add_item("main", "carts:cart")
|
||||||
-- If no room in inventory add a replacement cart to the world
|
-- If no room in inventory add a replacement cart to the world
|
||||||
|
@ -416,8 +415,7 @@ minetest.register_craftitem("carts:cart", {
|
||||||
minetest.sound_play({name = "default_place_node_metal", gain = 0.5},
|
minetest.sound_play({name = "default_place_node_metal", gain = 0.5},
|
||||||
{pos = pointed_thing.above}, true)
|
{pos = pointed_thing.above}, true)
|
||||||
|
|
||||||
if not (creative and creative.is_enabled_for
|
if not minetest.is_creative_enabled(placer:get_player_name()) then
|
||||||
and creative.is_enabled_for(placer:get_player_name())) then
|
|
||||||
itemstack:take_item()
|
itemstack:take_item()
|
||||||
end
|
end
|
||||||
return itemstack
|
return itemstack
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# textdomain: carts
|
# textdomain: carts
|
||||||
|
Cart=Kereta
|
||||||
|
(Sneak+Click to pick up)=(Menyelinap + Klik untuk ambil)
|
||||||
Rail=Rel
|
Rail=Rel
|
||||||
Powered Rail=Rel Bertenaga
|
Powered Rail=Rel Bertenaga
|
||||||
Brake Rail=Rel Rem
|
Brake Rail=Rel Rem
|
||||||
Cart=Kereta
|
|
||||||
(Sneak+Click to pick up)=(selinap + klik untuk ambil)
|
|
||||||
|
|
6
mods/carts/locale/carts.jbo.tr
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# textdomain: carts
|
||||||
|
Cart=lo carce
|
||||||
|
(Sneak+Click to pick up)=to lo nu dzibi'o je cu samxa'e te cabra cu tadji lo nu lebna toi
|
||||||
|
Rail=lo teryre'e
|
||||||
|
Powered Rail=lo se dikca teryre'e
|
||||||
|
Brake Rail=lo terjabre teryre'e
|
6
mods/carts/locale/carts.pt_BR.tr
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# textdomain: carts
|
||||||
|
Cart=Carrinho
|
||||||
|
(Sneak+Click to pick up)=(Esgueirar + Clique para pegar)
|
||||||
|
Rail=Trilho
|
||||||
|
Powered Rail=Trilho Energizado
|
||||||
|
Brake Rail=Trilho de Freio
|
|
@ -1,6 +1,6 @@
|
||||||
# textdomain: carts
|
# textdomain: carts
|
||||||
Cart=Вагонетка
|
Cart=Вагонетка
|
||||||
(Sneak+Click to pick up)=(Пригнитесь и кликните по вагонетке, чтобы забрать)
|
(Sneak+Click to pick up)=(Пригнитесь и кликните по вагонетке, чтобы забрать)
|
||||||
Rail=Рельса
|
Rail=Рельсы
|
||||||
Powered Rail=Механизированная Рельса
|
Powered Rail=Запитанные рельсы
|
||||||
Brake Rail=Рельса с тормозом
|
Brake Rail=Тормозящие рельсы
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# textdomain: carts
|
# textdomain: carts
|
||||||
|
Cart=
|
||||||
|
(Sneak+Click to pick up)=
|
||||||
Rail=
|
Rail=
|
||||||
Powered Rail=
|
Powered Rail=
|
||||||
Brake Rail=
|
Brake Rail=
|
||||||
Cart=
|
|
||||||
(Sneak+Click to pick up)=
|
|
||||||
|
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 459 B After Width: | Height: | Size: 363 B |
Before Width: | Height: | Size: 486 B After Width: | Height: | Size: 388 B |
Before Width: | Height: | Size: 522 B After Width: | Height: | Size: 401 B |
Before Width: | Height: | Size: 612 B After Width: | Height: | Size: 301 B |
Before Width: | Height: | Size: 456 B After Width: | Height: | Size: 435 B |
Before Width: | Height: | Size: 676 B After Width: | Height: | Size: 423 B |
Before Width: | Height: | Size: 580 B After Width: | Height: | Size: 287 B |
Before Width: | Height: | Size: 436 B After Width: | Height: | Size: 415 B |
Before Width: | Height: | Size: 614 B After Width: | Height: | Size: 407 B |
Before Width: | Height: | Size: 602 B After Width: | Height: | Size: 304 B |
Before Width: | Height: | Size: 494 B After Width: | Height: | Size: 473 B |
Before Width: | Height: | Size: 661 B After Width: | Height: | Size: 457 B |
Before Width: | Height: | Size: 707 B After Width: | Height: | Size: 451 B |
Before Width: | Height: | Size: 434 B After Width: | Height: | Size: 413 B |
Before Width: | Height: | Size: 697 B After Width: | Height: | Size: 446 B |
|
@ -79,7 +79,7 @@ end
|
||||||
-- Unlimited node placement
|
-- Unlimited node placement
|
||||||
minetest.register_on_placenode(function(pos, newnode, placer, oldnode, itemstack)
|
minetest.register_on_placenode(function(pos, newnode, placer, oldnode, itemstack)
|
||||||
if placer and placer:is_player() then
|
if placer and placer:is_player() then
|
||||||
return creative.is_enabled_for(placer:get_player_name())
|
return minetest.is_creative_enabled(placer:get_player_name())
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
@ -87,7 +87,7 @@ end)
|
||||||
local old_handle_node_drops = minetest.handle_node_drops
|
local old_handle_node_drops = minetest.handle_node_drops
|
||||||
function minetest.handle_node_drops(pos, drops, digger)
|
function minetest.handle_node_drops(pos, drops, digger)
|
||||||
if not digger or not digger:is_player() or
|
if not digger or not digger:is_player() or
|
||||||
not creative.is_enabled_for(digger:get_player_name()) then
|
not minetest.is_creative_enabled(digger:get_player_name()) then
|
||||||
return old_handle_node_drops(pos, drops, digger)
|
return old_handle_node_drops(pos, drops, digger)
|
||||||
end
|
end
|
||||||
local inv = digger:get_inventory()
|
local inv = digger:get_inventory()
|
||||||
|
|
|
@ -33,7 +33,7 @@ function creative.init_creative_inventory(player)
|
||||||
minetest.create_detached_inventory("creative_" .. player_name, {
|
minetest.create_detached_inventory("creative_" .. player_name, {
|
||||||
allow_move = function(inv, from_list, from_index, to_list, to_index, count, player2)
|
allow_move = function(inv, from_list, from_index, to_list, to_index, count, player2)
|
||||||
local name = player2 and player2:get_player_name() or ""
|
local name = player2 and player2:get_player_name() or ""
|
||||||
if not creative.is_enabled_for(name) or
|
if not minetest.is_creative_enabled(name) or
|
||||||
to_list == "main" then
|
to_list == "main" then
|
||||||
return 0
|
return 0
|
||||||
end
|
end
|
||||||
|
@ -44,7 +44,7 @@ function creative.init_creative_inventory(player)
|
||||||
end,
|
end,
|
||||||
allow_take = function(inv, listname, index, stack, player2)
|
allow_take = function(inv, listname, index, stack, player2)
|
||||||
local name = player2 and player2:get_player_name() or ""
|
local name = player2 and player2:get_player_name() or ""
|
||||||
if not creative.is_enabled_for(name) then
|
if not minetest.is_creative_enabled(name) then
|
||||||
return 0
|
return 0
|
||||||
end
|
end
|
||||||
return -1
|
return -1
|
||||||
|
@ -143,7 +143,7 @@ function creative.register_tab(name, title, items)
|
||||||
sfinv.register_page("creative:" .. name, {
|
sfinv.register_page("creative:" .. name, {
|
||||||
title = title,
|
title = title,
|
||||||
is_in_nav = function(self, player, context)
|
is_in_nav = function(self, player, context)
|
||||||
return creative.is_enabled_for(player:get_player_name())
|
return minetest.is_creative_enabled(player:get_player_name())
|
||||||
end,
|
end,
|
||||||
get = function(self, player, context)
|
get = function(self, player, context)
|
||||||
local player_name = player:get_player_name()
|
local player_name = player:get_player_name()
|
||||||
|
@ -248,7 +248,7 @@ creative.register_tab("craftitems", S("Items"), registered_craftitems)
|
||||||
|
|
||||||
local old_homepage_name = sfinv.get_homepage_name
|
local old_homepage_name = sfinv.get_homepage_name
|
||||||
function sfinv.get_homepage_name(player)
|
function sfinv.get_homepage_name(player)
|
||||||
if creative.is_enabled_for(player:get_player_name()) then
|
if minetest.is_creative_enabled(player:get_player_name()) then
|
||||||
return "creative:all"
|
return "creative:all"
|
||||||
else
|
else
|
||||||
return old_homepage_name(player)
|
return old_homepage_name(player)
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
# textdomain: creative
|
# textdomain: creative
|
||||||
|
Allow player to use creative inventory=Bolehkan pemain memakai inventaris kreatif
|
||||||
Search=Cari
|
Search=Cari
|
||||||
Reset=Atur ulang
|
Reset=Atur ulang
|
||||||
Previous page=Halaman sebelumnya
|
Previous page=Halaman sebelumnya
|
||||||
|
@ -7,4 +8,3 @@ All=Semua
|
||||||
Nodes=Nodus
|
Nodes=Nodus
|
||||||
Tools=Perkakas
|
Tools=Perkakas
|
||||||
Items=Barang
|
Items=Barang
|
||||||
Allow player to use creative inventory=Bolehkan pemain memakai inventaris kreatif
|
|
||||||
|
|
10
mods/creative/locale/creative.jbo.tr
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
# textdomain: creative
|
||||||
|
Allow player to use creative inventory=zifre le ka pilno le finti ke dacti liste
|
||||||
|
Search=sisku
|
||||||
|
Reset=kraga'igau
|
||||||
|
Previous page=lidne
|
||||||
|
Next page=selyli'e
|
||||||
|
All=ro dacti
|
||||||
|
Nodes=bliku
|
||||||
|
Tools=tutci
|
||||||
|
Items=dacti
|
10
mods/creative/locale/creative.pt_BR.tr
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
# textdomain: creative
|
||||||
|
Allow player to use creative inventory=Permitir o jogador usar o inventário criativo
|
||||||
|
Search=Pesquisar
|
||||||
|
Reset=Redefinir
|
||||||
|
Previous page=Página anterior
|
||||||
|
Next page=Próxima página
|
||||||
|
All=Todos
|
||||||
|
Nodes=Blocos
|
||||||
|
Tools=Ferramentas
|
||||||
|
Items=Itens
|
|
@ -1,4 +1,5 @@
|
||||||
# textdomain: creative
|
# textdomain: creative
|
||||||
|
Allow player to use creative inventory=
|
||||||
Search=
|
Search=
|
||||||
Reset=
|
Reset=
|
||||||
Previous page=
|
Previous page=
|
||||||
|
@ -7,4 +8,3 @@ All=
|
||||||
Nodes=
|
Nodes=
|
||||||
Tools=
|
Tools=
|
||||||
Items=
|
Items=
|
||||||
Allow player to use creative inventory=
|
|
||||||
|
|
Before Width: | Height: | Size: 708 B After Width: | Height: | Size: 605 B |
Before Width: | Height: | Size: 727 B After Width: | Height: | Size: 578 B |
Before Width: | Height: | Size: 728 B After Width: | Height: | Size: 593 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 712 B After Width: | Height: | Size: 642 B |
|
@ -160,7 +160,8 @@ minetest.register_craftitem("default:skeleton_key", {
|
||||||
return itemstack
|
return itemstack
|
||||||
end
|
end
|
||||||
|
|
||||||
local on_skeleton_key_use = minetest.registered_nodes[node.name].on_skeleton_key_use
|
local node_reg = minetest.registered_nodes[node.name]
|
||||||
|
local on_skeleton_key_use = node_reg and node_reg.on_skeleton_key_use
|
||||||
if not on_skeleton_key_use then
|
if not on_skeleton_key_use then
|
||||||
return itemstack
|
return itemstack
|
||||||
end
|
end
|
||||||
|
|
|
@ -463,6 +463,7 @@ function default.register_mesepost(name, def)
|
||||||
},
|
},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
tiles = {def.texture, def.texture, post_texture_dark, post_texture_dark, post_texture, post_texture},
|
tiles = {def.texture, def.texture, post_texture_dark, post_texture_dark, post_texture, post_texture},
|
||||||
|
use_texture_alpha = "opaque",
|
||||||
light_source = default.LIGHT_MAX,
|
light_source = default.LIGHT_MAX,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
|
|
|
@ -4,36 +4,41 @@ Locked Chest (owned by @1)=Abgeschlossene Truhe (Eigentum von @1)
|
||||||
You do not own this chest.=Ihnen gehört diese Truhe nicht.
|
You do not own this chest.=Ihnen gehört diese Truhe nicht.
|
||||||
a locked chest=eine abgeschlossene Truhe
|
a locked chest=eine abgeschlossene Truhe
|
||||||
Chest=Truhe
|
Chest=Truhe
|
||||||
Stick=Stock
|
Title:=Titel:
|
||||||
Paper=Papier
|
Contents:=Inhalt:
|
||||||
|
Save=Speichern
|
||||||
|
by @1=von @1
|
||||||
|
Page @1 of @2=Seite @1 von @2
|
||||||
"@1" by @2=„@1“ von @2
|
"@1" by @2=„@1“ von @2
|
||||||
Book=Buch
|
|
||||||
Book with Text=Buch mit Text
|
|
||||||
Skeleton Key=Skelettschlüssel
|
Skeleton Key=Skelettschlüssel
|
||||||
Key to @1's @2=Schlüssel für @2 von @1
|
Key to @1's @2=Schlüssel für @2 von @1
|
||||||
Coal Lump=Kohleklumpen
|
|
||||||
Iron Lump=Eisenklumpen
|
|
||||||
Copper Lump=Kupferklumpen
|
|
||||||
Tin Lump=Zinnklumpen
|
|
||||||
Mese Crystal=Mesekristall
|
|
||||||
Gold Lump=Goldklumpen
|
|
||||||
Diamond=Diamant
|
|
||||||
Clay Lump=Tonklumpen
|
|
||||||
Steel Ingot=Stahlbarren
|
|
||||||
Copper Ingot=Kupferbarren
|
|
||||||
Tin Ingot=Zinnbarren
|
|
||||||
Bronze Ingot=Bronzebarren
|
|
||||||
Gold Ingot=Goldbarren
|
|
||||||
Mese Crystal Fragment=Mesekristallfragment
|
|
||||||
Clay Brick=Tonziegel
|
|
||||||
Obsidian Shard=Obsidianscherbe
|
|
||||||
Flint=Feuerstein
|
|
||||||
Blueberries=Blaubeeren
|
Blueberries=Blaubeeren
|
||||||
|
Book=Buch
|
||||||
|
Book with Text=Buch mit Text
|
||||||
|
Bronze Ingot=Bronzebarren
|
||||||
|
Clay Brick=Tonziegel
|
||||||
|
Clay Lump=Tonklumpen
|
||||||
|
Coal Lump=Kohleklumpen
|
||||||
|
Copper Ingot=Kupferbarren
|
||||||
|
Copper Lump=Kupferklumpen
|
||||||
|
Diamond=Diamant
|
||||||
|
Flint=Feuerstein
|
||||||
|
Gold Ingot=Goldbarren
|
||||||
|
Gold Lump=Goldklumpen
|
||||||
|
Iron Lump=Eisenklumpen
|
||||||
|
Mese Crystal=Mesekristall
|
||||||
|
Mese Crystal Fragment=Mesekristallfragment
|
||||||
|
Obsidian Shard=Obsidianscherbe
|
||||||
|
Paper=Papier
|
||||||
|
Steel Ingot=Stahlbarren
|
||||||
|
Stick=Stock
|
||||||
|
Tin Ingot=Zinnbarren
|
||||||
|
Tin Lump=Zinnklumpen
|
||||||
Furnace is empty=Ofen ist leer
|
Furnace is empty=Ofen ist leer
|
||||||
100% (output full)=100% (Ausgabe voll)
|
100% (output full)=100% (Ausgabe voll)
|
||||||
@1%=@1%
|
@1%=@1%
|
||||||
Empty=Leer
|
|
||||||
Not cookable=Nicht kochbar
|
Not cookable=Nicht kochbar
|
||||||
|
Empty=Leer
|
||||||
Furnace active=Ofen aktiv
|
Furnace active=Ofen aktiv
|
||||||
Furnace inactive=Ofen inaktiv
|
Furnace inactive=Ofen inaktiv
|
||||||
(Item: @1; Fuel: @2)=(Gegenstand: @1; Brennstoff: @2)
|
(Item: @1; Fuel: @2)=(Gegenstand: @1; Brennstoff: @2)
|
||||||
|
@ -156,6 +161,7 @@ Empty Bookshelf=Leeres Bücherregal
|
||||||
Bookshelf (@1 written, @2 empty books)=Bücherregal (@1 beschriebene, @2 leere Bücher)
|
Bookshelf (@1 written, @2 empty books)=Bücherregal (@1 beschriebene, @2 leere Bücher)
|
||||||
Bookshelf=Bücherregal
|
Bookshelf=Bücherregal
|
||||||
Text too long=Text zu lang
|
Text too long=Text zu lang
|
||||||
|
"@1"=„@1“
|
||||||
Wooden Sign=Holzschild
|
Wooden Sign=Holzschild
|
||||||
Steel Sign=Stahlschild
|
Steel Sign=Stahlschild
|
||||||
Wooden Ladder=Holzleiter
|
Wooden Ladder=Holzleiter
|
||||||
|
@ -174,7 +180,11 @@ Glass=Glas
|
||||||
Obsidian Glass=Obsidianglas
|
Obsidian Glass=Obsidianglas
|
||||||
Brick Block=Ziegelblock
|
Brick Block=Ziegelblock
|
||||||
Mese Lamp=Meselampe
|
Mese Lamp=Meselampe
|
||||||
Mese Post Light=Mesestandlampe
|
Apple Wood Mese Post Light=Apfelholzmesestandlampe
|
||||||
|
Acacia Wood Mese Post Light=Akazienholzmesestandlampe
|
||||||
|
Jungle Wood Mese Post Light=Dschungelholzmesestandlampe
|
||||||
|
Pine Wood Mese Post Light=Kiefernholzmesestandlampe
|
||||||
|
Aspen Wood Mese Post Light=Espenholzmesestandlampe
|
||||||
Cloud=Wolke
|
Cloud=Wolke
|
||||||
Wooden Pickaxe=Holzspitzhacke
|
Wooden Pickaxe=Holzspitzhacke
|
||||||
Stone Pickaxe=Steinspitzhacke
|
Stone Pickaxe=Steinspitzhacke
|
||||||
|
@ -203,9 +213,8 @@ Diamond Sword=Diamantschwert
|
||||||
Key=Schlüssel
|
Key=Schlüssel
|
||||||
Torch=Fackel
|
Torch=Fackel
|
||||||
@1 will intersect protection on growth.=@1 wird bei Wachstum mit geschützter Zone überlappen.
|
@1 will intersect protection on growth.=@1 wird bei Wachstum mit geschützter Zone überlappen.
|
||||||
Title:=Titel:
|
|
||||||
Contents:=Inhalt:
|
|
||||||
Save=Speichern
|
##### not used anymore #####
|
||||||
by @1=von @1
|
|
||||||
Page @1 of @2=Seite @1 von @2
|
Mese Post Light=Mesestandlampe
|
||||||
"@1"=„@1“
|
|
||||||
|
|
|
@ -1,39 +1,45 @@
|
||||||
# textdomain: default
|
# textdomain: default
|
||||||
|
|
||||||
Locked Chest=Cofre cerrado
|
Locked Chest=Cofre cerrado
|
||||||
Locked Chest (owned by @1)=Cofre cerrado (propiedad de @1)
|
Locked Chest (owned by @1)=Cofre cerrado (propiedad de @1)
|
||||||
You do not own this chest.=Este cofre no te pertenece.
|
You do not own this chest.=Este cofre no te pertenece.
|
||||||
a locked chest=un cofre cerrado
|
a locked chest=un cofre cerrado
|
||||||
Chest=Cofre
|
Chest=Cofre
|
||||||
Stick=Palo
|
Title:=Título:
|
||||||
Paper=Papel
|
Contents:=Contenidos:
|
||||||
|
Save=Guardar
|
||||||
|
by @1=por @1
|
||||||
|
Page @1 of @2=Página @1 de @2
|
||||||
"@1" by @2="@1" por @2
|
"@1" by @2="@1" por @2
|
||||||
Book=Libro
|
|
||||||
Book with Text=Libro escrito
|
|
||||||
Skeleton Key=Llave esqueleto
|
Skeleton Key=Llave esqueleto
|
||||||
Key to @1's @2=Llave para @2 de @1
|
Key to @1's @2=Llave para @2 de @1
|
||||||
Coal Lump=Fragmento de carbón
|
|
||||||
Iron Lump=Pepita de hierro
|
|
||||||
Copper Lump=Pepita de cobre
|
|
||||||
Tin Lump=Pepita de estaño
|
|
||||||
Mese Crystal=Cristal de mese
|
|
||||||
Gold Lump=Pepita de oro
|
|
||||||
Diamond=Diamante
|
|
||||||
Clay Lump=Fragmento de arcilla
|
|
||||||
Steel Ingot=Lingote de acero
|
|
||||||
Copper Ingot=Lingote de cobre
|
|
||||||
Tin Ingot=Lingote de estaño
|
|
||||||
Bronze Ingot=Lingote de bronce
|
|
||||||
Gold Ingot=Lingote de oro
|
|
||||||
Mese Crystal Fragment=Fragmento de cristal de mese
|
|
||||||
Clay Brick=Ladrillo de arcilla
|
|
||||||
Obsidian Shard=Esquirla de obsidiana
|
|
||||||
Flint=Pedernal
|
|
||||||
Blueberries=Arándanos
|
Blueberries=Arándanos
|
||||||
|
Book=Libro
|
||||||
|
Book with Text=Libro escrito
|
||||||
|
Bronze Ingot=Lingote de bronce
|
||||||
|
Clay Brick=Ladrillo de arcilla
|
||||||
|
Clay Lump=Bola de arcilla
|
||||||
|
Coal Lump=Carbón
|
||||||
|
Copper Ingot=Lingote de cobre
|
||||||
|
Copper Lump=Pepita de cobre
|
||||||
|
Diamond=Diamante
|
||||||
|
Flint=Pedernal
|
||||||
|
Gold Ingot=Lingote de oro
|
||||||
|
Gold Lump=Pepita de oro
|
||||||
|
Iron Lump=Pepita de hierro
|
||||||
|
Mese Crystal=Cristal de mese
|
||||||
|
Mese Crystal Fragment=Fragmento de cristal de mese
|
||||||
|
Obsidian Shard=Esquirla de obsidiana
|
||||||
|
Paper=Papel
|
||||||
|
Steel Ingot=Lingote de acero
|
||||||
|
Stick=Palo
|
||||||
|
Tin Ingot=Lingote de estaño
|
||||||
|
Tin Lump=Pepita de estaño
|
||||||
Furnace is empty=El horno está vacío
|
Furnace is empty=El horno está vacío
|
||||||
100% (output full)=100% (salida completa)
|
100% (output full)=100% (salida completa)
|
||||||
@1%=@1%
|
@1%=@1%
|
||||||
Empty=Vacío
|
|
||||||
Not cookable=No se puede cocinar
|
Not cookable=No se puede cocinar
|
||||||
|
Empty=Vacío
|
||||||
Furnace active=Horno activado
|
Furnace active=Horno activado
|
||||||
Furnace inactive=Horno desactivado
|
Furnace inactive=Horno desactivado
|
||||||
(Item: @1; Fuel: @2)=(Objeto: @1; Combustible: @2)
|
(Item: @1; Fuel: @2)=(Objeto: @1; Combustible: @2)
|
||||||
|
@ -62,19 +68,19 @@ Obsidian Block=Bloque de obsidiana
|
||||||
Dirt=Tierra
|
Dirt=Tierra
|
||||||
Dirt with Grass=Tierra con pasto
|
Dirt with Grass=Tierra con pasto
|
||||||
Dirt with Grass and Footsteps=Tierra con pasto y pisadas
|
Dirt with Grass and Footsteps=Tierra con pasto y pisadas
|
||||||
Dirt with Dry Grass=Tierra con pasto seco
|
Dirt with Savanna Grass=Tierra con hierba de sabana
|
||||||
Dirt with Snow=Tierra con nieve
|
Dirt with Snow=Tierra con nieve
|
||||||
Dirt with Rainforest Litter=Tierra con hojarasca de selva tropical
|
Dirt with Rainforest Litter=Tierra con hojarasca de selva tropical
|
||||||
Dirt with Coniferous Litter=Tierra con hojarasca de coníferas
|
Dirt with Coniferous Litter=Tierra con hojarasca de coníferas
|
||||||
Dry Dirt=Tierra Seca
|
Savanna Dirt=Tierra de sabana
|
||||||
Dry Dirt with Dry Grass=Tierra seca con pasto seco
|
Savanna Dirt with Savanna Grass=Tierra de sabana con hierba de sabana
|
||||||
Permafrost=Permafrost
|
Permafrost=Permafrost
|
||||||
Permafrost with Stones=Permafrost pedregoso
|
Permafrost with Stones=Permafrost pedregoso
|
||||||
Permafrost with Moss=Permafrost musgoso
|
Permafrost with Moss=Permafrost musgoso
|
||||||
Sand=Arena
|
Sand=Arena
|
||||||
Desert Sand=Arena desértica
|
Desert Sand=Arena desértica
|
||||||
Silver Sand=Arena plateada
|
Silver Sand=Arena plateada
|
||||||
Gravel=Gravilla
|
Gravel=Grava
|
||||||
Clay=Arcilla
|
Clay=Arcilla
|
||||||
Snow=Nieve
|
Snow=Nieve
|
||||||
Snow Block=Bloque de nieve
|
Snow Block=Bloque de nieve
|
||||||
|
@ -124,7 +130,7 @@ Papyrus=Papiro
|
||||||
Dry Shrub=Arbusto seco
|
Dry Shrub=Arbusto seco
|
||||||
Jungle Grass=Pasto de jungla
|
Jungle Grass=Pasto de jungla
|
||||||
Grass=Pasto
|
Grass=Pasto
|
||||||
Dry Grass=Pasto seco
|
Savanna Grass=Hierba de sabana
|
||||||
Fern=Helecho
|
Fern=Helecho
|
||||||
Marram Grass=Carrizo
|
Marram Grass=Carrizo
|
||||||
Bush Stem=Tallo de arbusto
|
Bush Stem=Tallo de arbusto
|
||||||
|
@ -156,6 +162,7 @@ Empty Bookshelf=Librería vacía
|
||||||
Bookshelf (@1 written, @2 empty books)=Librería(@1 escritos, @2 libros en blanco)
|
Bookshelf (@1 written, @2 empty books)=Librería(@1 escritos, @2 libros en blanco)
|
||||||
Bookshelf=Librería
|
Bookshelf=Librería
|
||||||
Text too long=Texto demasiado largo
|
Text too long=Texto demasiado largo
|
||||||
|
"@1"="@1"
|
||||||
Wooden Sign=Cartel de madera
|
Wooden Sign=Cartel de madera
|
||||||
Steel Sign=Cartel de acero
|
Steel Sign=Cartel de acero
|
||||||
Wooden Ladder=Escalera de madera
|
Wooden Ladder=Escalera de madera
|
||||||
|
@ -174,7 +181,11 @@ Glass=Vidrio
|
||||||
Obsidian Glass=Vidrio de obsidiana
|
Obsidian Glass=Vidrio de obsidiana
|
||||||
Brick Block=Bloque de ladrillo
|
Brick Block=Bloque de ladrillo
|
||||||
Mese Lamp=Lámpara de mese
|
Mese Lamp=Lámpara de mese
|
||||||
Mese Post Light=Poste de luz de mese
|
Apple Wood Mese Post Light=Poste de luz de madera de manzano
|
||||||
|
Acacia Wood Mese Post Light=Poste de luz de madera de acacia
|
||||||
|
Jungle Wood Mese Post Light=Poste de luz de madera de jungla
|
||||||
|
Pine Wood Mese Post Light=Poste de luz de madera de pino
|
||||||
|
Aspen Wood Mese Post Light=Poste de luz de madera de álamo
|
||||||
Cloud=Nube
|
Cloud=Nube
|
||||||
Wooden Pickaxe=Pico de madera
|
Wooden Pickaxe=Pico de madera
|
||||||
Stone Pickaxe=Pico de piedra
|
Stone Pickaxe=Pico de piedra
|
||||||
|
@ -203,9 +214,12 @@ Diamond Sword=Espada de diamante
|
||||||
Key=Llave
|
Key=Llave
|
||||||
Torch=Antorcha
|
Torch=Antorcha
|
||||||
@1 will intersect protection on growth.=@1 intersectará con protección cuando crezca.
|
@1 will intersect protection on growth.=@1 intersectará con protección cuando crezca.
|
||||||
Title:=Título:
|
|
||||||
Contents:=Contenidos:
|
|
||||||
Save=Guardar
|
##### not used anymore #####
|
||||||
by @1=por @1
|
|
||||||
Page @1 of @2=Página @1 de @2
|
Dirt with Dry Grass=Tierra con pasto seco
|
||||||
"@1"="@1"
|
Dry Dirt=Tierra Seca
|
||||||
|
Dry Dirt with Dry Grass=Tierra seca con pasto seco
|
||||||
|
Dry Grass=Pasto seco
|
||||||
|
Mese Post Light=Poste de luz de mese
|
||||||
|
|
|
@ -4,36 +4,41 @@ Locked Chest (owned by @1)=Coffre verrouillé (possédé par @1)
|
||||||
You do not own this chest.=Ce coffre ne vous appartient pas.
|
You do not own this chest.=Ce coffre ne vous appartient pas.
|
||||||
a locked chest=un coffre verrouillé
|
a locked chest=un coffre verrouillé
|
||||||
Chest=Coffre
|
Chest=Coffre
|
||||||
Stick=Baton
|
Title:=Titre :
|
||||||
Paper=Papier
|
Contents:=Contenu :
|
||||||
|
Save=Sauvegarder
|
||||||
|
by @1=de @1
|
||||||
|
Page @1 of @2=Page @1 sur @2
|
||||||
"@1" by @2=« @1 » de @2
|
"@1" by @2=« @1 » de @2
|
||||||
Book=Livre
|
|
||||||
Book with Text=Livre avec du texte
|
|
||||||
Skeleton Key=Squelette
|
Skeleton Key=Squelette
|
||||||
Key to @1's @2=Clé pour @2 de @1
|
Key to @1's @2=Clé pour @2 de @1
|
||||||
Coal Lump=Morceau de charbon
|
|
||||||
Iron Lump=Morceau de fer
|
|
||||||
Copper Lump=Morceau de cuivre
|
|
||||||
Tin Lump=Morceau d'étain
|
|
||||||
Mese Crystal=Cristal de Mese
|
|
||||||
Gold Lump=Morceau d'or
|
|
||||||
Diamond=Diamant
|
|
||||||
Clay Lump=Morceau d'argile
|
|
||||||
Steel Ingot=Lingot d'acier
|
|
||||||
Copper Ingot=Lingot de cuivre
|
|
||||||
Tin Ingot=Lingot d'étain
|
|
||||||
Bronze Ingot=Lingot de bronze
|
|
||||||
Gold Ingot=Lingot d'or
|
|
||||||
Mese Crystal Fragment=Fragment de cristal de Mese
|
|
||||||
Clay Brick=Brique d'argile
|
|
||||||
Obsidian Shard=Tesson d'obsidienne
|
|
||||||
Flint=Silex
|
|
||||||
Blueberries=Myrtille
|
Blueberries=Myrtille
|
||||||
|
Book=Livre
|
||||||
|
Book with Text=Livre avec du texte
|
||||||
|
Bronze Ingot=Lingot de bronze
|
||||||
|
Clay Brick=Brique d'argile
|
||||||
|
Clay Lump=Morceau d'argile
|
||||||
|
Coal Lump=Morceau de charbon
|
||||||
|
Copper Ingot=Lingot de cuivre
|
||||||
|
Copper Lump=Morceau de cuivre
|
||||||
|
Diamond=Diamant
|
||||||
|
Flint=Silex
|
||||||
|
Gold Ingot=Lingot d'or
|
||||||
|
Gold Lump=Morceau d'or
|
||||||
|
Iron Lump=Morceau de fer
|
||||||
|
Mese Crystal=Cristal de Mese
|
||||||
|
Mese Crystal Fragment=Fragment de cristal de Mese
|
||||||
|
Obsidian Shard=Tesson d'obsidienne
|
||||||
|
Paper=Papier
|
||||||
|
Steel Ingot=Lingot d'acier
|
||||||
|
Stick=Baton
|
||||||
|
Tin Ingot=Lingot d'étain
|
||||||
|
Tin Lump=Morceau d'étain
|
||||||
Furnace is empty=Le four est vide
|
Furnace is empty=Le four est vide
|
||||||
100% (output full)=100% (Sortie pleine)
|
100% (output full)=100% (Sortie pleine)
|
||||||
@1%=@1%
|
@1%=@1%
|
||||||
Empty=Vide
|
|
||||||
Not cookable=Ne se cuit pas
|
Not cookable=Ne se cuit pas
|
||||||
|
Empty=Vide
|
||||||
Furnace active=Four actif
|
Furnace active=Four actif
|
||||||
Furnace inactive=Four inactif
|
Furnace inactive=Four inactif
|
||||||
(Item: @1; Fuel: @2)=(Article: @1; Carburant: @2)
|
(Item: @1; Fuel: @2)=(Article: @1; Carburant: @2)
|
||||||
|
@ -62,12 +67,12 @@ Obsidian Block=Block d'obsidienne
|
||||||
Dirt=Terre
|
Dirt=Terre
|
||||||
Dirt with Grass=Terre avec de l'herbe
|
Dirt with Grass=Terre avec de l'herbe
|
||||||
Dirt with Grass and Footsteps=Terre avec de l'herbe et des traces de pas
|
Dirt with Grass and Footsteps=Terre avec de l'herbe et des traces de pas
|
||||||
Dirt with Dry Grass=Terre avec de l'herbe sèche
|
Dirt with Savanna Grass=
|
||||||
Dirt with Snow=Terre avec de la neige
|
Dirt with Snow=Terre avec de la neige
|
||||||
Dirt with Rainforest Litter=Terre avec sol de forêt humide
|
Dirt with Rainforest Litter=Terre avec sol de forêt humide
|
||||||
Dirt with Coniferous Litter=Terre avec sol de forêt de conifère
|
Dirt with Coniferous Litter=Terre avec sol de forêt de conifère
|
||||||
Dry Dirt=Terre sèche
|
Savanna Dirt=
|
||||||
Dry Dirt with Dry Grass=Terre sèche avec de l'herbe sèche
|
Savanna Dirt with Savanna Grass=
|
||||||
Permafrost=Pergélisol
|
Permafrost=Pergélisol
|
||||||
Permafrost with Stones=Pergélisol avec de la pierre
|
Permafrost with Stones=Pergélisol avec de la pierre
|
||||||
Permafrost with Moss=Pergélisol avec de la mousse
|
Permafrost with Moss=Pergélisol avec de la mousse
|
||||||
|
@ -124,7 +129,7 @@ Papyrus=Papyrus
|
||||||
Dry Shrub=Arbuste sec
|
Dry Shrub=Arbuste sec
|
||||||
Jungle Grass=Herbe de la jungle
|
Jungle Grass=Herbe de la jungle
|
||||||
Grass=Herbe
|
Grass=Herbe
|
||||||
Dry Grass=Herbe sèche
|
Savanna Grass=
|
||||||
Fern=Fougère
|
Fern=Fougère
|
||||||
Marram Grass=Ammophile
|
Marram Grass=Ammophile
|
||||||
Bush Stem=Tige de buisson
|
Bush Stem=Tige de buisson
|
||||||
|
@ -156,6 +161,7 @@ Empty Bookshelf=Bibliothèque vide
|
||||||
Bookshelf (@1 written, @2 empty books)=Bibliothèque (@1 écrits, @2 livres vides)
|
Bookshelf (@1 written, @2 empty books)=Bibliothèque (@1 écrits, @2 livres vides)
|
||||||
Bookshelf=Bibliothèque
|
Bookshelf=Bibliothèque
|
||||||
Text too long=Texte trop longue
|
Text too long=Texte trop longue
|
||||||
|
"@1"=« @1 »
|
||||||
Wooden Sign=Panneau en bois
|
Wooden Sign=Panneau en bois
|
||||||
Steel Sign=Panneau en acier
|
Steel Sign=Panneau en acier
|
||||||
Wooden Ladder=Echelle en bois
|
Wooden Ladder=Echelle en bois
|
||||||
|
@ -174,7 +180,11 @@ Glass=Verre
|
||||||
Obsidian Glass=Verre d'obsidienne
|
Obsidian Glass=Verre d'obsidienne
|
||||||
Brick Block=Bloc de brique
|
Brick Block=Bloc de brique
|
||||||
Mese Lamp=Lampe de Mese
|
Mese Lamp=Lampe de Mese
|
||||||
Mese Post Light=Réverbère de Mese
|
Apple Wood Mese Post Light=
|
||||||
|
Acacia Wood Mese Post Light=
|
||||||
|
Jungle Wood Mese Post Light=
|
||||||
|
Pine Wood Mese Post Light=
|
||||||
|
Aspen Wood Mese Post Light=
|
||||||
Cloud=Nuage
|
Cloud=Nuage
|
||||||
Wooden Pickaxe=Pioche en bois
|
Wooden Pickaxe=Pioche en bois
|
||||||
Stone Pickaxe=Pioche en pierre
|
Stone Pickaxe=Pioche en pierre
|
||||||
|
@ -203,9 +213,12 @@ Diamond Sword=Epée en diamant
|
||||||
Key=Clé
|
Key=Clé
|
||||||
Torch=Torche
|
Torch=Torche
|
||||||
@1 will intersect protection on growth.=@1 chevauchera la zone protégée avec la croissance.
|
@1 will intersect protection on growth.=@1 chevauchera la zone protégée avec la croissance.
|
||||||
Title:=Titre :
|
|
||||||
Contents:=Contenu :
|
|
||||||
Save=Sauvegarder
|
##### not used anymore #####
|
||||||
by @1=de @1
|
|
||||||
Page @1 of @2=Page @1 sur @2
|
Dirt with Dry Grass=Terre avec de l'herbe sèche
|
||||||
"@1"=« @1 »
|
Dry Dirt=Terre sèche
|
||||||
|
Dry Dirt with Dry Grass=Terre sèche avec de l'herbe sèche
|
||||||
|
Dry Grass=Herbe sèche
|
||||||
|
Mese Post Light=Réverbère de Mese
|
||||||
|
|
|
@ -1,4 +1,48 @@
|
||||||
# textdomain: default
|
# textdomain: default
|
||||||
|
Locked Chest=Peti Terkunci
|
||||||
|
Locked Chest (owned by @1)=Peti Terkunci (milik @1)
|
||||||
|
You do not own this chest.=Anda bukan pemilik peti ini.
|
||||||
|
a locked chest=peti terkunci
|
||||||
|
Chest=Peti
|
||||||
|
Title:=Judul:
|
||||||
|
Contents:=Isi:
|
||||||
|
Save=Simpan
|
||||||
|
by @1=oleh @1
|
||||||
|
Page @1 of @2=Halaman @1 dari @2
|
||||||
|
"@1" by @2="@1" oleh @2
|
||||||
|
Skeleton Key=Kunci Induk
|
||||||
|
Key to @1's @2=Kunci @2 milik @1
|
||||||
|
Blueberries=Blueberry
|
||||||
|
Book=Buku
|
||||||
|
Book with Text=Buku Tertulis
|
||||||
|
Bronze Ingot=Perunggu Batangan
|
||||||
|
Clay Brick=Bata
|
||||||
|
Clay Lump=Bongkahan Tanah Liat
|
||||||
|
Coal Lump=Bongkahan Batu Bara
|
||||||
|
Copper Ingot=Tembaga Batangan
|
||||||
|
Copper Lump=Bongkahan Tembaga
|
||||||
|
Diamond=Berlian
|
||||||
|
Flint=Batu Api
|
||||||
|
Gold Ingot=Emas Batangan
|
||||||
|
Gold Lump=Bongkahan Emas
|
||||||
|
Iron Lump=Bongkahan Besi
|
||||||
|
Mese Crystal=Kristal Mese
|
||||||
|
Mese Crystal Fragment=Pecahan Kristal Mese
|
||||||
|
Obsidian Shard=Pecahan Obsidian
|
||||||
|
Paper=Kertas
|
||||||
|
Steel Ingot=Baja Batangan
|
||||||
|
Stick=Tongkat
|
||||||
|
Tin Ingot=Timah Batangan
|
||||||
|
Tin Lump=Bongkahan Timah
|
||||||
|
Furnace is empty=Tungku kosong
|
||||||
|
100% (output full)=100% (keluaran penuh)
|
||||||
|
@1%=@1%
|
||||||
|
Not cookable=Tidak dapat dimasak
|
||||||
|
Empty=Kosong
|
||||||
|
Furnace active=Tungku nyala
|
||||||
|
Furnace inactive=Tungku mati
|
||||||
|
(Item: @1; Fuel: @2)=(Barang: @1; Bahan Bakar: @2)
|
||||||
|
Furnace=Tungku
|
||||||
Stone=Batu
|
Stone=Batu
|
||||||
Cobblestone=Bongkahan Batu
|
Cobblestone=Bongkahan Batu
|
||||||
Stone Brick=Tembok Batu
|
Stone Brick=Tembok Batu
|
||||||
|
@ -22,7 +66,7 @@ Obsidian Brick=Tembok Obsidian
|
||||||
Obsidian Block=Balok Obsidian
|
Obsidian Block=Balok Obsidian
|
||||||
Dirt=Tanah
|
Dirt=Tanah
|
||||||
Dirt with Grass=Tanah Berumput
|
Dirt with Grass=Tanah Berumput
|
||||||
Dirt with Grass and Footsteps=Tanah Berumput dan Tapak Kaki
|
Dirt with Grass and Footsteps=Tanah Berumput dengan Jejak Kaki
|
||||||
Dirt with Savanna Grass=Tanah Berumput Sabana
|
Dirt with Savanna Grass=Tanah Berumput Sabana
|
||||||
Dirt with Snow=Tanah Bersalju
|
Dirt with Snow=Tanah Bersalju
|
||||||
Dirt with Rainforest Litter=Tanah Berserasah Hutan Hujan
|
Dirt with Rainforest Litter=Tanah Berserasah Hutan Hujan
|
||||||
|
@ -36,37 +80,37 @@ Sand=Pasir
|
||||||
Desert Sand=Pasir Gurun
|
Desert Sand=Pasir Gurun
|
||||||
Silver Sand=Pasir Perak
|
Silver Sand=Pasir Perak
|
||||||
Gravel=Kerikil
|
Gravel=Kerikil
|
||||||
Clay=Semen
|
Clay=Tanah Liat
|
||||||
Snow=Salju
|
Snow=Salju
|
||||||
Snow Block=Balok Salju
|
Snow Block=Balok Salju
|
||||||
Ice=Es
|
Ice=Es
|
||||||
Cave Ice=Es Gua
|
Cave Ice=Gua Es
|
||||||
Apple Tree=Pohon Apel
|
Apple Tree=Pohon Apel
|
||||||
Apple Wood Planks=Papan Kayu Pohon Apel
|
Apple Wood Planks=Papan Kayu Pohon Apel
|
||||||
Apple Tree Sapling=Bibit Apel
|
Apple Tree Sapling=Anak Pohon Apel
|
||||||
Apple Tree Leaves=Daun Pohon Apel
|
Apple Tree Leaves=Daun Pohon Apel
|
||||||
Apple=Apel
|
Apple=Apel
|
||||||
Apple Marker=Penanda Apel
|
Apple Marker=Penanda Apel
|
||||||
Jungle Tree=Pohon Hutan Rimba
|
Jungle Tree=Pohon Hutan Rimba
|
||||||
Jungle Wood Planks=Papan Kayu Pohon Rimba
|
Jungle Wood Planks=Papan Kayu Pohon Rimba
|
||||||
Jungle Tree Leaves=Daun Pohon Rimba
|
Jungle Tree Leaves=Daun Pohon Rimba
|
||||||
Jungle Tree Sapling=Bibit Pohon Rimba
|
Jungle Tree Sapling=Anak Pohon Rimba
|
||||||
Emergent Jungle Tree Sapling=Bibit Bertumbuh Pohon Rimba
|
Emergent Jungle Tree Sapling=Anak Pohon Rimba Bertumbuh
|
||||||
Pine Tree=Pohon Pinus
|
Pine Tree=Pohon Pinus
|
||||||
Pine Wood Planks=Papan Kayu Pinus
|
Pine Wood Planks=Papan Kayu Pinus
|
||||||
Pine Needles=Daun Pinus
|
Pine Needles=Daun Pinus
|
||||||
Pine Tree Sapling=Bibit Pinus
|
Pine Tree Sapling=Anak Pohon Pinus
|
||||||
Acacia Tree=Pohon Akasia
|
Acacia Tree=Pohon Akasia
|
||||||
Acacia Wood Planks=Papan Kayu Akasia
|
Acacia Wood Planks=Papan Kayu Akasia
|
||||||
Acacia Tree Leaves=Daun Akasia
|
Acacia Tree Leaves=Daun Akasia
|
||||||
Acacia Tree Sapling=Bibit Akasia
|
Acacia Tree Sapling=Anak Pohon Akasia
|
||||||
Aspen Tree=Pohon Aspen
|
Aspen Tree=Pohon Aspen
|
||||||
Aspen Wood Planks=Papan Kayu Aspen
|
Aspen Wood Planks=Papan Kayu Aspen
|
||||||
Aspen Tree Leaves=Daun Aspen
|
Aspen Tree Leaves=Daun Aspen
|
||||||
Aspen Tree Sapling=Bibit Aspen
|
Aspen Tree Sapling=Anak Pohon Aspen
|
||||||
Coal Ore=Bijih Batu Bara
|
Coal Ore=Bijih Batu Bara
|
||||||
Coal Block=Balok Batu Bara
|
Coal Block=Balok Batu Bara
|
||||||
Iron Ore=Biji Besi
|
Iron Ore=Bijih Besi
|
||||||
Steel Block=Balok Baja
|
Steel Block=Balok Baja
|
||||||
Copper Ore=Bijih Tembaga
|
Copper Ore=Bijih Tembaga
|
||||||
Copper Block=Balok Tembaga
|
Copper Block=Balok Tembaga
|
||||||
|
@ -87,13 +131,13 @@ Jungle Grass=Rumput Rimba
|
||||||
Grass=Rumput
|
Grass=Rumput
|
||||||
Savanna Grass=Rumput Sabana
|
Savanna Grass=Rumput Sabana
|
||||||
Fern=Pakis
|
Fern=Pakis
|
||||||
Marram Grass=Rumput Pantai
|
Marram Grass=Rumput Maram
|
||||||
Bush Stem=Batang Semak
|
Bush Stem=Batang Semak
|
||||||
Bush Leaves=Daun Semak
|
Bush Leaves=Daun Semak
|
||||||
Bush Sapling=Bibit Semak
|
Bush Sapling=Anak Semak
|
||||||
Blueberry Bush Leaves with Berries=Daun Bluberi Berbuah
|
Blueberry Bush Leaves with Berries=Daun Semak Blueberry Berbuah
|
||||||
Blueberry Bush Leaves=Daun Bluberi
|
Blueberry Bush Leaves=Daun Semak Blueberry
|
||||||
Blueberry Bush Sapling=Bibit Bluberi
|
Blueberry Bush Sapling=Anak Semak Blueberry
|
||||||
Acacia Bush Stem=Batang Semak Akasia
|
Acacia Bush Stem=Batang Semak Akasia
|
||||||
Acacia Bush Leaves=Daun Semak Akasia
|
Acacia Bush Leaves=Daun Semak Akasia
|
||||||
Acacia Bush Sapling=Bibit Semak Akasia
|
Acacia Bush Sapling=Bibit Semak Akasia
|
||||||
|
@ -117,6 +161,7 @@ Empty Bookshelf=Rak Buku Kosong
|
||||||
Bookshelf (@1 written, @2 empty books)=Rak Buku (@1 buku tertulis, @2 buku kosong)
|
Bookshelf (@1 written, @2 empty books)=Rak Buku (@1 buku tertulis, @2 buku kosong)
|
||||||
Bookshelf=Rak Buku
|
Bookshelf=Rak Buku
|
||||||
Text too long=Teks terlalu panjang
|
Text too long=Teks terlalu panjang
|
||||||
|
"@1"="@1"
|
||||||
Wooden Sign=Penanda Kayu
|
Wooden Sign=Penanda Kayu
|
||||||
Steel Sign=Penanda Baja
|
Steel Sign=Penanda Baja
|
||||||
Wooden Ladder=Tangga Kayu
|
Wooden Ladder=Tangga Kayu
|
||||||
|
@ -135,16 +180,18 @@ Glass=Kaca
|
||||||
Obsidian Glass=Kaca Obsidian
|
Obsidian Glass=Kaca Obsidian
|
||||||
Brick Block=Balok Bata
|
Brick Block=Balok Bata
|
||||||
Mese Lamp=Lampu Mese
|
Mese Lamp=Lampu Mese
|
||||||
Mese Post Light=Lampu Taman Mese
|
Apple Wood Mese Post Light=
|
||||||
|
Acacia Wood Mese Post Light=
|
||||||
|
Jungle Wood Mese Post Light=
|
||||||
|
Pine Wood Mese Post Light=
|
||||||
|
Aspen Wood Mese Post Light=
|
||||||
Cloud=Awan
|
Cloud=Awan
|
||||||
@1 will intersect protection on growth.=@1 akan memotong perlindungan ketika tumbuh.
|
Wooden Pickaxe=Gancu Kayu
|
||||||
Torch=Obor
|
Stone Pickaxe=Gancu Batu
|
||||||
Wooden Pickaxe=Beliung Kayu
|
Bronze Pickaxe=Gancu Perunggu
|
||||||
Stone Pickaxe=Beliung Batu
|
Steel Pickaxe=Gancu Baja
|
||||||
Bronze Pickaxe=Beliung Perunggu
|
Mese Pickaxe=Gancu Mese
|
||||||
Steel Pickaxe=Beliung Baja
|
Diamond Pickaxe=Gancu Berlian
|
||||||
Mese Pickaxe=Beliung Mese
|
|
||||||
Diamond Pickaxe=Beliung Berlian
|
|
||||||
Wooden Shovel=Sekop Kayu
|
Wooden Shovel=Sekop Kayu
|
||||||
Stone Shovel=Sekop Batu
|
Stone Shovel=Sekop Batu
|
||||||
Bronze Shovel=Sekop Perunggu
|
Bronze Shovel=Sekop Perunggu
|
||||||
|
@ -164,48 +211,10 @@ Steel Sword=Pedang Baja
|
||||||
Mese Sword=Pedang Mese
|
Mese Sword=Pedang Mese
|
||||||
Diamond Sword=Pedang Berlian
|
Diamond Sword=Pedang Berlian
|
||||||
Key=Kunci
|
Key=Kunci
|
||||||
Furnace is empty=Tungku kosong
|
Torch=Obor
|
||||||
100% (output full)=100% (keluaran penuh)
|
@1 will intersect protection on growth.=@1 akan memotong perlindungan ketika tumbuh.
|
||||||
@1%=@1%
|
|
||||||
Not cookable=Tidak bisa dimasak
|
|
||||||
Empty=Kosong
|
##### not used anymore #####
|
||||||
Furnace active=Tungku nyala
|
|
||||||
Furnace inactive=Tungku mati
|
Mese Post Light=Lampu Taman Mese
|
||||||
(Item: @1; Fuel: @2)=(Barang: @1; Bahan Bakar: @2)
|
|
||||||
Furnace=Tungku
|
|
||||||
Title:=Judul:
|
|
||||||
Contents:=Isi:
|
|
||||||
Save=Simpan
|
|
||||||
by @1=oleh @1
|
|
||||||
Page @1 of @2=Halaman @1 dari @2
|
|
||||||
"@1"="@1"
|
|
||||||
"@1" by @2="@1" oleh @2
|
|
||||||
Skeleton Key=Kunci Induk
|
|
||||||
Key to @1's @2=Kunci @2 milik @1
|
|
||||||
Blueberries=Bluberi
|
|
||||||
Book=Buku
|
|
||||||
Book with Text=Buku Tertulis
|
|
||||||
Bronze Ingot=Perunggu Batangan
|
|
||||||
Clay Brick=Bata
|
|
||||||
Clay Lump=Bongkahan Semen
|
|
||||||
Coal Lump=Bongkahan Batu Bara
|
|
||||||
Copper Ingot=Tembaga Batangan
|
|
||||||
Copper Lump=Bongkahan Tembaga
|
|
||||||
Diamond=Berlian
|
|
||||||
Flint=Batu Api
|
|
||||||
Gold Ingot=Emas Batangan
|
|
||||||
Gold Lump=Bongkahan Emas
|
|
||||||
Iron Lump=Bongkahan Besi
|
|
||||||
Mese Crystal=Kristal Mese
|
|
||||||
Mese Crystal Fragment=Pecahan Kristal Mese
|
|
||||||
Obsidian Shard=Pecahan Obsidian
|
|
||||||
Paper=Kertas
|
|
||||||
Steel Ingot=Baja Batangan
|
|
||||||
Stick=Tongkat
|
|
||||||
Tin Ingot=Timah Batangan
|
|
||||||
Tin Lump=Bongkahan Timah
|
|
||||||
Locked Chest=Peti Terkunci
|
|
||||||
Locked Chest (owned by @1)=Peti Terkunci (milik @1)
|
|
||||||
You do not own this chest.=Anda bukan pemilik peti ini.
|
|
||||||
a locked chest=suatu peti terkunci
|
|
||||||
Chest=Peti
|
|
||||||
|
|
|
@ -4,36 +4,41 @@ Locked Chest (owned by @1)=Baule chiuso a chiave (di proprietà di @1)
|
||||||
You do not own this chest.=Questo baule non ti appartiene.
|
You do not own this chest.=Questo baule non ti appartiene.
|
||||||
a locked chest=un baule chiuso a chiave
|
a locked chest=un baule chiuso a chiave
|
||||||
Chest=Baule
|
Chest=Baule
|
||||||
Stick=Bastone
|
Title:=
|
||||||
Paper=Carta
|
Contents:=
|
||||||
|
Save=
|
||||||
|
by @1=
|
||||||
|
Page @1 of @2=
|
||||||
"@1" by @2="@1" di @2
|
"@1" by @2="@1" di @2
|
||||||
Book=Libro
|
|
||||||
Book with Text=Libro con testo
|
|
||||||
Skeleton Key=Chiave dello Scheletro
|
Skeleton Key=Chiave dello Scheletro
|
||||||
Key to @1's @2=Chiave per @2 di @1
|
Key to @1's @2=Chiave per @2 di @1
|
||||||
Coal Lump=Grumo di carbone
|
|
||||||
Iron Lump=Grumo di ferro
|
|
||||||
Copper Lump=Grumo di rame
|
|
||||||
Tin Lump=Grumo di stagno
|
|
||||||
Mese Crystal=Cristallo di mese
|
|
||||||
Gold Lump=Grumo d'oro
|
|
||||||
Diamond=Diamante
|
|
||||||
Clay Lump=Grumo d'argilla
|
|
||||||
Steel Ingot=Lingotto d'acciaio
|
|
||||||
Copper Ingot=Lingotto di rame
|
|
||||||
Tin Ingot=Lingotto di stagno
|
|
||||||
Bronze Ingot=Lingotto di bronzo
|
|
||||||
Gold Ingot=Lingotto d'oro
|
|
||||||
Mese Crystal Fragment=Frammento di cristallo di mese
|
|
||||||
Clay Brick=Mattone d'argilla
|
|
||||||
Obsidian Shard=Scheggia d'ossidiana
|
|
||||||
Flint=Selce
|
|
||||||
Blueberries=Mirtilli
|
Blueberries=Mirtilli
|
||||||
|
Book=Libro
|
||||||
|
Book with Text=Libro con testo
|
||||||
|
Bronze Ingot=Lingotto di bronzo
|
||||||
|
Clay Brick=Mattone d'argilla
|
||||||
|
Clay Lump=Grumo d'argilla
|
||||||
|
Coal Lump=Grumo di carbone
|
||||||
|
Copper Ingot=Lingotto di rame
|
||||||
|
Copper Lump=Grumo di rame
|
||||||
|
Diamond=Diamante
|
||||||
|
Flint=Selce
|
||||||
|
Gold Ingot=Lingotto d'oro
|
||||||
|
Gold Lump=Grumo d'oro
|
||||||
|
Iron Lump=Grumo di ferro
|
||||||
|
Mese Crystal=Cristallo di mese
|
||||||
|
Mese Crystal Fragment=Frammento di cristallo di mese
|
||||||
|
Obsidian Shard=Scheggia d'ossidiana
|
||||||
|
Paper=Carta
|
||||||
|
Steel Ingot=Lingotto d'acciaio
|
||||||
|
Stick=Bastone
|
||||||
|
Tin Ingot=Lingotto di stagno
|
||||||
|
Tin Lump=Grumo di stagno
|
||||||
Furnace is empty=La fornace è vuota
|
Furnace is empty=La fornace è vuota
|
||||||
100% (output full)=100% (uscita piena)
|
100% (output full)=100% (uscita piena)
|
||||||
@1%=@1%
|
@1%=@1%
|
||||||
Empty=Vuota
|
|
||||||
Not cookable=Non cucinabile
|
Not cookable=Non cucinabile
|
||||||
|
Empty=Vuota
|
||||||
Furnace active=Fornace attiva
|
Furnace active=Fornace attiva
|
||||||
Furnace inactive=Fornace inattiva
|
Furnace inactive=Fornace inattiva
|
||||||
(Item: @1; Fuel: @2)=(Oggetto: @1; Combustibile: @2)
|
(Item: @1; Fuel: @2)=(Oggetto: @1; Combustibile: @2)
|
||||||
|
@ -62,12 +67,12 @@ Obsidian Block=Blocco d'ossidiana
|
||||||
Dirt=Terra
|
Dirt=Terra
|
||||||
Dirt with Grass=Terra con erba
|
Dirt with Grass=Terra con erba
|
||||||
Dirt with Grass and Footsteps=Terra con erba e impronte
|
Dirt with Grass and Footsteps=Terra con erba e impronte
|
||||||
Dirt with Dry Grass=Terra con erba secca
|
Dirt with Savanna Grass=
|
||||||
Dirt with Snow=Terra con neve
|
Dirt with Snow=Terra con neve
|
||||||
Dirt with Rainforest Litter=Terra con detriti della foresta pluviale
|
Dirt with Rainforest Litter=Terra con detriti della foresta pluviale
|
||||||
Dirt with Coniferous Litter=Terra con detriti di conifera
|
Dirt with Coniferous Litter=Terra con detriti di conifera
|
||||||
Dry Dirt=Terra asciutta
|
Savanna Dirt=
|
||||||
Dry Dirt with Dry Grass=Terra asciutta con erba secca
|
Savanna Dirt with Savanna Grass=
|
||||||
Permafrost=Permafrost
|
Permafrost=Permafrost
|
||||||
Permafrost with Stones=Permafrost con pietra
|
Permafrost with Stones=Permafrost con pietra
|
||||||
Permafrost with Moss=Permafrost con muschio
|
Permafrost with Moss=Permafrost con muschio
|
||||||
|
@ -124,7 +129,7 @@ Papyrus=Papiro
|
||||||
Dry Shrub=Arbusto secco
|
Dry Shrub=Arbusto secco
|
||||||
Jungle Grass=Erba della giungla
|
Jungle Grass=Erba della giungla
|
||||||
Grass=Erba
|
Grass=Erba
|
||||||
Dry Grass=Erba secca
|
Savanna Grass=
|
||||||
Fern=Felce
|
Fern=Felce
|
||||||
Marram Grass=Ammofila arenaria
|
Marram Grass=Ammofila arenaria
|
||||||
Bush Stem=Fusto di cespuglio
|
Bush Stem=Fusto di cespuglio
|
||||||
|
@ -156,6 +161,7 @@ Empty Bookshelf=Libreria vuota
|
||||||
Bookshelf (@1 written, @2 empty books)=Libreria (@1 scritti, @2 vuoti)
|
Bookshelf (@1 written, @2 empty books)=Libreria (@1 scritti, @2 vuoti)
|
||||||
Bookshelf=Libreria
|
Bookshelf=Libreria
|
||||||
Text too long=Testo troppo lungo
|
Text too long=Testo troppo lungo
|
||||||
|
"@1"=
|
||||||
Wooden Sign=Cartello di legno
|
Wooden Sign=Cartello di legno
|
||||||
Steel Sign=Cartello d'acciaio
|
Steel Sign=Cartello d'acciaio
|
||||||
Wooden Ladder=Scala a pioli di legno
|
Wooden Ladder=Scala a pioli di legno
|
||||||
|
@ -174,7 +180,11 @@ Glass=Vetro
|
||||||
Obsidian Glass=Vetro d'ossidiana
|
Obsidian Glass=Vetro d'ossidiana
|
||||||
Brick Block=Blocco di mattone
|
Brick Block=Blocco di mattone
|
||||||
Mese Lamp=Lampada di mese
|
Mese Lamp=Lampada di mese
|
||||||
Mese Post Light=Lampioncino di mese
|
Apple Wood Mese Post Light=
|
||||||
|
Acacia Wood Mese Post Light=
|
||||||
|
Jungle Wood Mese Post Light=
|
||||||
|
Pine Wood Mese Post Light=
|
||||||
|
Aspen Wood Mese Post Light=
|
||||||
Cloud=Nuvola
|
Cloud=Nuvola
|
||||||
Wooden Pickaxe=Piccone di legno
|
Wooden Pickaxe=Piccone di legno
|
||||||
Stone Pickaxe=Piccone di pietra
|
Stone Pickaxe=Piccone di pietra
|
||||||
|
@ -203,3 +213,12 @@ Diamond Sword=Spada di diamante
|
||||||
Key=Chiave
|
Key=Chiave
|
||||||
Torch=Torcia
|
Torch=Torcia
|
||||||
@1 will intersect protection on growth.=@1 crescendo attraverserà la protezione.
|
@1 will intersect protection on growth.=@1 crescendo attraverserà la protezione.
|
||||||
|
|
||||||
|
|
||||||
|
##### not used anymore #####
|
||||||
|
|
||||||
|
Dirt with Dry Grass=Terra con erba secca
|
||||||
|
Dry Dirt=Terra asciutta
|
||||||
|
Dry Dirt with Dry Grass=Terra asciutta con erba secca
|
||||||
|
Dry Grass=Erba secca
|
||||||
|
Mese Post Light=Lampioncino di mese
|
||||||
|
|
215
mods/default/locale/default.jbo.tr
Normal file
|
@ -0,0 +1,215 @@
|
||||||
|
# textdomain: default
|
||||||
|
Locked Chest=lo selstela gairvau
|
||||||
|
Locked Chest (owned by @1)=.i ti selstela gairvau po la'o zo'i.@1.zo'i
|
||||||
|
You do not own this chest.=.i do na ponse lo ti gairvau
|
||||||
|
a locked chest=lo selstela gairvau
|
||||||
|
Chest=lo gairvau
|
||||||
|
Title:=cmene
|
||||||
|
Contents:=se cukta
|
||||||
|
Save=rejgau
|
||||||
|
by @1=la'o zo'i.@1.zo'i te cukta
|
||||||
|
Page @1 of @2=meirmoi fe li @1 li @2 le'i papri
|
||||||
|
"@1" by @2=lo cukta be la'o gy.@1.gy. bei la'o zo'i.@2.zo'i
|
||||||
|
Skeleton Key=lo greku ckiku
|
||||||
|
Key to @1's @2=lo ckiku be @2 po la'o zo'i.@1.zo'i
|
||||||
|
Blueberries=lo blajba
|
||||||
|
Book=lo cukta
|
||||||
|
Book with Text=lo cukta joi selci'a
|
||||||
|
Bronze Ingot=lo ransu manfybli
|
||||||
|
Clay Brick=lo kitybli
|
||||||
|
Clay Lump=lo kliti bakfu
|
||||||
|
Coal Lump=lo kolme bakfu
|
||||||
|
Copper Ingot=lo tunka manfybli
|
||||||
|
Copper Lump=lo tunka bakfu
|
||||||
|
Diamond=lo tabjme
|
||||||
|
Flint=lo fagyro'i
|
||||||
|
Gold Ingot=lo solji manfybli
|
||||||
|
Gold Lump=lo solji bakfu
|
||||||
|
Iron Lump=lo tirse bakfu
|
||||||
|
Mese Crystal=lo za'e krilrmese
|
||||||
|
Mese Crystal Fragment=lo za'e krilrmese spisa
|
||||||
|
Obsidian Shard=lo je'erma'ablaci spisa
|
||||||
|
Paper=lo pelji
|
||||||
|
Steel Ingot=lo gasta manfybli
|
||||||
|
Stick=lo grana
|
||||||
|
Tin Ingot=lo tinci manfybli
|
||||||
|
Tin Lump=lo tinci bakfu
|
||||||
|
Furnace is empty=.i lo toknu cu kunti
|
||||||
|
100% (output full)=100 ce'i to lo se zbasu cu culno toi
|
||||||
|
@1%=@1 ce'i
|
||||||
|
Not cookable=na kakne le ka se jukpa
|
||||||
|
Empty=ti kunti
|
||||||
|
Furnace active=.i lo toknu cu tolcando
|
||||||
|
Furnace inactive=.i lo toknu cu cando
|
||||||
|
(Item: @1; Fuel: @2)=to jukpa @1 @2
|
||||||
|
Furnace=lo toknu
|
||||||
|
Stone=lo rokci
|
||||||
|
Cobblestone=lo lolro'iboi
|
||||||
|
Stone Brick=lo morna rokci
|
||||||
|
Stone Block=lo rokci bliku
|
||||||
|
Mossy Cobblestone=lo clika lolro'iboi
|
||||||
|
Desert Stone=lo cantu'a rokci
|
||||||
|
Desert Cobblestone=lo cantu'a lolro'iboi
|
||||||
|
Desert Stone Brick=lo morna ke cantu'a rokci
|
||||||
|
Desert Stone Block=lo cantu'a rokci bliku
|
||||||
|
Sandstone=lo canro'i
|
||||||
|
Sandstone Brick=lo morna canro'i
|
||||||
|
Sandstone Block=lo canro'i bliku
|
||||||
|
Desert Sandstone=lo cantu'a canro'i
|
||||||
|
Desert Sandstone Brick=lo morna ke cantu'a canro'i
|
||||||
|
Desert Sandstone Block=lo cantu'a canro'i bliku
|
||||||
|
Silver Sandstone=lo rijyska sanro'i
|
||||||
|
Silver Sandstone Brick=lo morna ke rijyska canro'i
|
||||||
|
Silver Sandstone Block=lo rijyska canro'i bliku
|
||||||
|
Obsidian=lo je'erma'ablaci
|
||||||
|
Obsidian Brick=lo morna je'erma'ablaci
|
||||||
|
Obsidian Block=lo je'erma'ablaci bliku
|
||||||
|
Dirt=lo dertu
|
||||||
|
Dirt with Grass=lo dertu joi srasu
|
||||||
|
Dirt with Grass and Footsteps=lo dertu joi srasu jebo stapa bo prina
|
||||||
|
Dirt with Savanna Grass=lo dertu joi sudytu'a bo srasu
|
||||||
|
Dirt with Snow=lo dertu joi snime
|
||||||
|
Dirt with Rainforest Litter=lo dertu joi glatimdemricfoi bo festi
|
||||||
|
Dirt with Coniferous Litter=lo dertu joi ckunu bo festi
|
||||||
|
Savanna Dirt=lo sudytu'a dertu
|
||||||
|
Savanna Dirt with Savanna Grass=lo sudysu'a bo dertu joi sudytu'a bo srasu
|
||||||
|
Permafrost=le bislunsa dertu
|
||||||
|
Permafrost with Stones=le bislunsa bo dertu joi rokci
|
||||||
|
Permafrost with Moss=le bislunsa bo dertu joi clika
|
||||||
|
Sand=lo canre
|
||||||
|
Desert Sand=lo cantu'a canre
|
||||||
|
Silver Sand=lo rijyska canre
|
||||||
|
Gravel=lo cmaro'i
|
||||||
|
Clay=lo kliti
|
||||||
|
Snow=lo snime
|
||||||
|
Snow Block=lo snime bliku
|
||||||
|
Ice=lo bisli
|
||||||
|
Cave Ice=lo kevzda bisli
|
||||||
|
Apple Tree=lo plisytricu ricystani
|
||||||
|
Apple Wood Planks=lo plise mudri tanbo
|
||||||
|
Apple Tree Sapling=lo plisytricu ciftricu
|
||||||
|
Apple Tree Leaves=lo plisytricu pezli
|
||||||
|
Apple=lo plise
|
||||||
|
Apple Marker=lo plise barna
|
||||||
|
Jungle Tree=lo glatimdemricfoi ricystani
|
||||||
|
Jungle Wood Planks=lo glatimdemricfoi mudri tanbo
|
||||||
|
Jungle Tree Leaves=lo glatimdemricfoi pezli
|
||||||
|
Jungle Tree Sapling=lo glatimdemricfoi ciftricu
|
||||||
|
Emergent Jungle Tree Sapling=lo barda ke glatimdemricfoi ciftricu
|
||||||
|
Pine Tree=lo ckunu ricystani
|
||||||
|
Pine Wood Planks=lo ckunu mudri tanbo
|
||||||
|
Pine Needles=lo ckunu jezpezli
|
||||||
|
Pine Tree Sapling=lo ckunu ciftricu
|
||||||
|
Acacia Tree=lo atkaci,ia ricystani
|
||||||
|
Acacia Wood Planks=lo atkaci,ia mudri tanbo
|
||||||
|
Acacia Tree Leaves=lo atkaci,ia pezli
|
||||||
|
Acacia Tree Sapling=lo atkaci,ia ciftricu
|
||||||
|
Aspen Tree=lo ricrpopulu ricystani
|
||||||
|
Aspen Wood Planks=lo mudrpopulu tanbo
|
||||||
|
Aspen Tree Leaves=lo ricrpopulu pezli
|
||||||
|
Aspen Tree Sapling=lo ricrpopulu ciftricu
|
||||||
|
Coal Ore=lo kolme kunra
|
||||||
|
Coal Block=lo kolme bliku
|
||||||
|
Iron Ore=lo tirse kunra
|
||||||
|
Steel Block=lo gasta bliku
|
||||||
|
Copper Ore=lo tunka kunra
|
||||||
|
Copper Block=lo tunka bliku
|
||||||
|
Tin Ore=lo tinci kunra
|
||||||
|
Tin Block=lo tinci bliku
|
||||||
|
Bronze Block=lo ransu bliku
|
||||||
|
Mese Ore=lo za'e kunrmese
|
||||||
|
Mese Block=lo za'e blikrmese
|
||||||
|
Gold Ore=lo solji kunra
|
||||||
|
Gold Block=lo solji bliku
|
||||||
|
Diamond Ore=lo tabjme kunra
|
||||||
|
Diamond Block=lo tabjme bliku
|
||||||
|
Cactus=lo jesyspa
|
||||||
|
Large Cactus Seedling=lo barda ke jesyspa tsiju
|
||||||
|
Papyrus=lo misryplespa
|
||||||
|
Dry Shrub=lo sudga dzitricu
|
||||||
|
Jungle Grass=lo glatimdemricfoi srasu
|
||||||
|
Grass=lo srasu
|
||||||
|
Savanna Grass=lo sudytu'a srasu
|
||||||
|
Fern=lo filcina
|
||||||
|
Marram Grass=lo xaskoi srasu
|
||||||
|
Bush Stem=lo dzitricu stani
|
||||||
|
Bush Leaves=lo dzitricu pezli
|
||||||
|
Bush Sapling=lo dzitricu ciftricu
|
||||||
|
Blueberry Bush Leaves with Berries=lo ke blajba dzitricu pezli ke'e joi jbari
|
||||||
|
Blueberry Bush Leaves=lo blajba dzitricu pezli
|
||||||
|
Blueberry Bush Sapling=lo blajba dzitrcu ciftricu
|
||||||
|
Acacia Bush Stem=lo atkaci,ia dzitricu stani
|
||||||
|
Acacia Bush Leaves=lo atkaci,ia dzitricu pezli
|
||||||
|
Acacia Bush Sapling=lo atkaci,ia dzitricu ciftricu
|
||||||
|
Pine Bush Stem=lo ckunu dzitricu stani
|
||||||
|
Pine Bush Needles=lo ckunu dzitricu jezpezli
|
||||||
|
Pine Bush Sapling=lo ckunu dzitricu ciftricu
|
||||||
|
Kelp=lo vraike
|
||||||
|
Green Coral=lo crino pevypanje
|
||||||
|
Pink Coral=lo xunblabi pevypanje
|
||||||
|
Cyan Coral=lo cicna pevypanje
|
||||||
|
Brown Coral=lo bunre pevypanje
|
||||||
|
Orange Coral=lo narju pevypanje
|
||||||
|
Coral Skeleton=lo pevypanje greku
|
||||||
|
Water Source=lo djacu velflecu
|
||||||
|
Flowing Water=lo flecu djacu
|
||||||
|
River Water Source=lo rirxe djacu velflecu
|
||||||
|
Flowing River Water=lo flecu ke rirxe djacu
|
||||||
|
Lava Source=lo likro'i velflecu
|
||||||
|
Flowing Lava=lo flecu likro'i
|
||||||
|
Empty Bookshelf=.i ti kunti ckukajna
|
||||||
|
Bookshelf (@1 written, @2 empty books)=.i ti ckukajna to @1 cukta joi selci'a .ije @2 kunti cukta toi
|
||||||
|
Bookshelf=lo ckukajna
|
||||||
|
Text too long=.i lo lerpoi cu dukse lo ka clani
|
||||||
|
"@1"=zoi sy.@1.sy.
|
||||||
|
Wooden Sign=lo mudri sinxa
|
||||||
|
Steel Sign=lo gasta sinxa
|
||||||
|
Wooden Ladder=lo mudri rajyserti
|
||||||
|
Steel Ladder=lo gasta rajyserti
|
||||||
|
Apple Wood Fence=lo plise mudri garbi'u
|
||||||
|
Acacia Wood Fence=lo atkaci,ia mudri garbi'u
|
||||||
|
Jungle Wood Fence=lo glatimdemricfoi mudri garbi'u
|
||||||
|
Pine Wood Fence=lo ckunu mudri garbi'u
|
||||||
|
Aspen Wood Fence=lo mudrpopulu garbi'u
|
||||||
|
Apple Wood Fence Rail=lo plise mudri garbi'u garna
|
||||||
|
Acacia Wood Fence Rail=lo atkaci,ia mudri garbi'u garna
|
||||||
|
Jungle Wood Fence Rail=lo glatimdemricfoi mudri garbi'u garna
|
||||||
|
Pine Wood Fence Rail=lo ckunu mudri garbi'u garna
|
||||||
|
Aspen Wood Fence Rail=lo mudrpopulu garbi'u garna
|
||||||
|
Glass=lo blaci
|
||||||
|
Obsidian Glass=lo je'erma'ablaci blaci
|
||||||
|
Brick Block=lo kitybli bliku
|
||||||
|
Mese Lamp=lo za'e kunrmese tergu'i
|
||||||
|
Apple Wood Mese Post Light=lo plise mudri za'e kunrmese ke kamju tergu'i
|
||||||
|
Acacia Wood Mese Post Light=lo atkaci,ia mudri za'e kunrmese ke kamju tergu'i
|
||||||
|
Jungle Wood Mese Post Light=lo glatimdemricfoi mudri za'e kunrmese ke kamju tergu'i
|
||||||
|
Pine Wood Mese Post Light=lo ckunu mudri za'e kunrmese ke kamju tergu'i
|
||||||
|
Aspen Wood Mese Post Light=lo mudrpopulu za'e kunrmese ke kamju tergu'i
|
||||||
|
Cloud=lo dilnu
|
||||||
|
Wooden Pickaxe=lo mudri velkakpymru
|
||||||
|
Stone Pickaxe=lo rokci velkakpymru
|
||||||
|
Bronze Pickaxe=lo ransu velkakpymru
|
||||||
|
Steel Pickaxe=lo gasta velkakpymru
|
||||||
|
Mese Pickaxe=lo za'e kunrmese velkakpymru
|
||||||
|
Diamond Pickaxe=lo tabjme velkakpymru
|
||||||
|
Wooden Shovel=lo mudri canpa
|
||||||
|
Stone Shovel=lo rokci canpa
|
||||||
|
Bronze Shovel=lo ransu canpa
|
||||||
|
Steel Shovel=lo gasta canpa
|
||||||
|
Mese Shovel=lo za'e kunrmese canpa
|
||||||
|
Diamond Shovel=lo tabjme canpa
|
||||||
|
Wooden Axe=lo mudri ka'amru
|
||||||
|
Stone Axe=lo rokci ka'amru
|
||||||
|
Bronze Axe=lo ransu ka'amru
|
||||||
|
Steel Axe=lo gasta ka'amru
|
||||||
|
Mese Axe=lo za'e kunrmese ka'amru
|
||||||
|
Diamond Axe=lo tabjme ka'amru
|
||||||
|
Wooden Sword=lo mudri cladakyxa'i
|
||||||
|
Stone Sword=lo rokci cladakyxa'i
|
||||||
|
Bronze Sword=lo ransu cladakyxa'i
|
||||||
|
Steel Sword=lo gasta cladakyxa'i
|
||||||
|
Mese Sword=lo za'e kunrmese cladakyxa'i
|
||||||
|
Diamond Sword=lo tabjme cladakyxa'i
|
||||||
|
Key=lo ckiku
|
||||||
|
Torch=lo fagytergu'i
|
||||||
|
@1 will intersect protection on growth.=.i @1 cu ba kruca lo bandu ca lo nu banro
|
|
@ -4,36 +4,41 @@ Locked Chest (owned by @1)=Peti Berkunci (milik @1)
|
||||||
You do not own this chest.=Ini bukan peti milik anda.
|
You do not own this chest.=Ini bukan peti milik anda.
|
||||||
a locked chest=peti berkunci
|
a locked chest=peti berkunci
|
||||||
Chest=Peti
|
Chest=Peti
|
||||||
Stick=Serpihan Kayu
|
Title:=Tajuk:
|
||||||
Paper=Kertas
|
Contents:=Kandungan:
|
||||||
|
Save=Simpan
|
||||||
|
by @1=oleh @1
|
||||||
|
Page @1 of @2=Ms. @1 / @2
|
||||||
"@1" by @2="@1" oleh @2
|
"@1" by @2="@1" oleh @2
|
||||||
Book=Buku
|
|
||||||
Book with Text=Buku Bertulisan
|
|
||||||
Skeleton Key=Kunci Induk
|
Skeleton Key=Kunci Induk
|
||||||
Key to @1's @2=Kunci @2 milik @1
|
Key to @1's @2=Kunci @2 milik @1
|
||||||
Coal Lump=Longgokan Batu Arang
|
|
||||||
Iron Lump=Longgokan Besi
|
|
||||||
Copper Lump=Longgokan Tembaga
|
|
||||||
Tin Lump=Longgokan Timah
|
|
||||||
Mese Crystal=Kristal Mese
|
|
||||||
Gold Lump=Longgokan Emas
|
|
||||||
Diamond=Berlian
|
|
||||||
Clay Lump=Longgokan Tanah Liat
|
|
||||||
Steel Ingot=Jongkong Keluli
|
|
||||||
Copper Ingot=Jongkong Tembaga
|
|
||||||
Tin Ingot=Jongkong Timah
|
|
||||||
Bronze Ingot=Jongkong Gangsa
|
|
||||||
Gold Ingot=Jongkong Emas
|
|
||||||
Mese Crystal Fragment=Serpihan Mese
|
|
||||||
Clay Brick=Bata Tanah Liat
|
|
||||||
Obsidian Shard=Serpihan Obsidia
|
|
||||||
Flint=Batu Api
|
|
||||||
Blueberries=Beri Biru
|
Blueberries=Beri Biru
|
||||||
|
Book=Buku
|
||||||
|
Book with Text=Buku Bertulisan
|
||||||
|
Bronze Ingot=Jongkong Gangsa
|
||||||
|
Clay Brick=Bata Tanah Liat
|
||||||
|
Clay Lump=Longgokan Tanah Liat
|
||||||
|
Coal Lump=Longgokan Batu Arang
|
||||||
|
Copper Ingot=Jongkong Tembaga
|
||||||
|
Copper Lump=Longgokan Tembaga
|
||||||
|
Diamond=Berlian
|
||||||
|
Flint=Batu Api
|
||||||
|
Gold Ingot=Jongkong Emas
|
||||||
|
Gold Lump=Longgokan Emas
|
||||||
|
Iron Lump=Longgokan Besi
|
||||||
|
Mese Crystal=Kristal Mese
|
||||||
|
Mese Crystal Fragment=Serpihan Mese
|
||||||
|
Obsidian Shard=Serpihan Obsidia
|
||||||
|
Paper=Kertas
|
||||||
|
Steel Ingot=Jongkong Keluli
|
||||||
|
Stick=Serpihan Kayu
|
||||||
|
Tin Ingot=Jongkong Timah
|
||||||
|
Tin Lump=Longgokan Timah
|
||||||
Furnace is empty=Relau masih kosong
|
Furnace is empty=Relau masih kosong
|
||||||
100% (output full)=100% (keluaran penuh)
|
100% (output full)=100% (keluaran penuh)
|
||||||
@1%=@1%
|
@1%=@1%
|
||||||
Empty=Kosong
|
|
||||||
Not cookable=Tidak boleh dimasak
|
Not cookable=Tidak boleh dimasak
|
||||||
|
Empty=Kosong
|
||||||
Furnace active=Relau aktif
|
Furnace active=Relau aktif
|
||||||
Furnace inactive=Relau tidak aktif
|
Furnace inactive=Relau tidak aktif
|
||||||
(Item: @1; Fuel: @2)=(Item: @1; Bahan api: @2)
|
(Item: @1; Fuel: @2)=(Item: @1; Bahan api: @2)
|
||||||
|
@ -62,12 +67,12 @@ Obsidian Block=Bongkah Obsidia
|
||||||
Dirt=Tanah
|
Dirt=Tanah
|
||||||
Dirt with Grass=Tanah Berumput
|
Dirt with Grass=Tanah Berumput
|
||||||
Dirt with Grass and Footsteps=Tanah Berumput dan Tapak Kaki
|
Dirt with Grass and Footsteps=Tanah Berumput dan Tapak Kaki
|
||||||
Dirt with Dry Grass=Tanah Berumput Kering
|
Dirt with Savanna Grass=
|
||||||
Dirt with Snow=Tanah Bersalji
|
Dirt with Snow=Tanah Bersalji
|
||||||
Dirt with Rainforest Litter=Tanah Bersarap Hutan Hujan
|
Dirt with Rainforest Litter=Tanah Bersarap Hutan Hujan
|
||||||
Dirt with Coniferous Litter=Tanah Bersarap Hutan Konifer
|
Dirt with Coniferous Litter=Tanah Bersarap Hutan Konifer
|
||||||
Dry Dirt=Tanah Kering
|
Savanna Dirt=
|
||||||
Dry Dirt with Dry Grass=Tanah Kering Berumput Kering
|
Savanna Dirt with Savanna Grass=
|
||||||
Permafrost=Ibun Abadi
|
Permafrost=Ibun Abadi
|
||||||
Permafrost with Stones=Ibun Abadi Berbatu
|
Permafrost with Stones=Ibun Abadi Berbatu
|
||||||
Permafrost with Moss=Ibun Abadi Berlumut
|
Permafrost with Moss=Ibun Abadi Berlumut
|
||||||
|
@ -124,7 +129,7 @@ Papyrus=Papirus
|
||||||
Dry Shrub=Pokok Renek Kering
|
Dry Shrub=Pokok Renek Kering
|
||||||
Jungle Grass=Rumput Hutan
|
Jungle Grass=Rumput Hutan
|
||||||
Grass=Rumput
|
Grass=Rumput
|
||||||
Dry Grass=Rumput Kering
|
Savanna Grass=
|
||||||
Fern=Paku Pakis
|
Fern=Paku Pakis
|
||||||
Marram Grass=Rumput Maram
|
Marram Grass=Rumput Maram
|
||||||
Bush Stem=Batang Belukar
|
Bush Stem=Batang Belukar
|
||||||
|
@ -156,6 +161,7 @@ Empty Bookshelf=Rak Buku Kosong
|
||||||
Bookshelf (@1 written, @2 empty books)=Rak Buku (@1 buku bertulis, @2 buku kosong)
|
Bookshelf (@1 written, @2 empty books)=Rak Buku (@1 buku bertulis, @2 buku kosong)
|
||||||
Bookshelf=Rak Buku
|
Bookshelf=Rak Buku
|
||||||
Text too long=Tulisan terlalu panjang
|
Text too long=Tulisan terlalu panjang
|
||||||
|
"@1"="@1"
|
||||||
Wooden Sign=Papan Tanda Kayu
|
Wooden Sign=Papan Tanda Kayu
|
||||||
Steel Sign=Papan Tanda Keluli
|
Steel Sign=Papan Tanda Keluli
|
||||||
Wooden Ladder=Tangga Panjat Kayu
|
Wooden Ladder=Tangga Panjat Kayu
|
||||||
|
@ -174,7 +180,11 @@ Glass=Kaca
|
||||||
Obsidian Glass=Kaca Obsidia
|
Obsidian Glass=Kaca Obsidia
|
||||||
Brick Block=Bongkah Bata
|
Brick Block=Bongkah Bata
|
||||||
Mese Lamp=Lampu Mese
|
Mese Lamp=Lampu Mese
|
||||||
Mese Post Light=Lampu Tiang Mese
|
Apple Wood Mese Post Light=
|
||||||
|
Acacia Wood Mese Post Light=
|
||||||
|
Jungle Wood Mese Post Light=
|
||||||
|
Pine Wood Mese Post Light=
|
||||||
|
Aspen Wood Mese Post Light=
|
||||||
Cloud=Awan
|
Cloud=Awan
|
||||||
Wooden Pickaxe=Beliung Kayu
|
Wooden Pickaxe=Beliung Kayu
|
||||||
Stone Pickaxe=Beliung Batu
|
Stone Pickaxe=Beliung Batu
|
||||||
|
@ -203,9 +213,12 @@ Diamond Sword=Pedang Intan
|
||||||
Key=Kunci
|
Key=Kunci
|
||||||
Torch=Obor
|
Torch=Obor
|
||||||
@1 will intersect protection on growth.=@1 akan masuk kawasan perlindungan lain apabila ia tumbuh.
|
@1 will intersect protection on growth.=@1 akan masuk kawasan perlindungan lain apabila ia tumbuh.
|
||||||
Title:=Tajuk:
|
|
||||||
Contents:=Kandungan:
|
|
||||||
Save=Simpan
|
##### not used anymore #####
|
||||||
by @1=oleh @1
|
|
||||||
Page @1 of @2=Ms. @1 / @2
|
Dirt with Dry Grass=Tanah Berumput Kering
|
||||||
"@1"="@1"
|
Dry Dirt=Tanah Kering
|
||||||
|
Dry Dirt with Dry Grass=Tanah Kering Berumput Kering
|
||||||
|
Dry Grass=Rumput Kering
|
||||||
|
Mese Post Light=Lampu Tiang Mese
|
||||||
|
|
215
mods/default/locale/default.pt_BR.tr
Normal file
|
@ -0,0 +1,215 @@
|
||||||
|
# textdomain: default
|
||||||
|
Locked Chest=Baú Trancado
|
||||||
|
Locked Chest (owned by @1)=Baú Trancado (pertence a @1)
|
||||||
|
You do not own this chest.=Você não é dono deste baú.
|
||||||
|
a locked chest=um baú trancado
|
||||||
|
Chest=Baú
|
||||||
|
Title:=Título:
|
||||||
|
Contents:=Conteúdo:
|
||||||
|
Save=Salvar
|
||||||
|
by @1=por @1
|
||||||
|
Page @1 of @2=Página @1 de @2
|
||||||
|
"@1" by @2="@1" por @2
|
||||||
|
Skeleton Key=Chave de Mestra
|
||||||
|
Key to @1's @2=Chave para @2 de @1
|
||||||
|
Blueberries=Mirtilo
|
||||||
|
Book=Livro
|
||||||
|
Book with Text=Livro com Texto
|
||||||
|
Bronze Ingot=Lingote de Bronze
|
||||||
|
Clay Brick=Tijolo de Argila
|
||||||
|
Clay Lump=Pedaço de Argila
|
||||||
|
Coal Lump=Pedaço de Carvão
|
||||||
|
Copper Ingot=Lingote de Cobre
|
||||||
|
Copper Lump=Pedaço de Cobre
|
||||||
|
Diamond=Diamante
|
||||||
|
Flint=Sílex (Flint)
|
||||||
|
Gold Ingot=Lingote de Ouro
|
||||||
|
Gold Lump=Pedaço de Ouro
|
||||||
|
Iron Lump=Pedaço de Ferro
|
||||||
|
Mese Crystal=Cristal de Mese
|
||||||
|
Mese Crystal Fragment=Fragmento de Cristal de Mese
|
||||||
|
Obsidian Shard=Caco de Obsidian
|
||||||
|
Paper=Papel
|
||||||
|
Steel Ingot=Lingote de Aço
|
||||||
|
Stick=Graveto
|
||||||
|
Tin Ingot=Lingote de Estanho
|
||||||
|
Tin Lump=Pedaço de Estanho
|
||||||
|
Furnace is empty=A fornalha está vazia
|
||||||
|
100% (output full)=100% (saída cheia)
|
||||||
|
@1%=@1%
|
||||||
|
Not cookable=Não pode cozinhar
|
||||||
|
Empty=Vazio
|
||||||
|
Furnace active=Fornalha ativa
|
||||||
|
Furnace inactive=Fornalha inativa
|
||||||
|
(Item: @1; Fuel: @2)=(Item: @1; Combustível: @2)
|
||||||
|
Furnace=Fornalha
|
||||||
|
Stone=Pedra
|
||||||
|
Cobblestone=Pedregulho
|
||||||
|
Stone Brick=Tijolo de Pedra
|
||||||
|
Stone Block=Bloco de Pedra
|
||||||
|
Mossy Cobblestone=Pedregulho Musgoso
|
||||||
|
Desert Stone=Pedra do Deserto
|
||||||
|
Desert Cobblestone=Pedregulho do Deserto
|
||||||
|
Desert Stone Brick=Tijolo de Pedra do Deserto
|
||||||
|
Desert Stone Block=Bloco de Pedra do Deserto
|
||||||
|
Sandstone=Arenito
|
||||||
|
Sandstone Brick=Tijolo de Arenito
|
||||||
|
Sandstone Block=Bloco de Arenito
|
||||||
|
Desert Sandstone=Bloco de Arenito do Deserto
|
||||||
|
Desert Sandstone Brick=Tijolo de Arenito do Deserto
|
||||||
|
Desert Sandstone Block=Bloco de Arenito do Deserto
|
||||||
|
Silver Sandstone=Arenito Prateado
|
||||||
|
Silver Sandstone Brick=Tijolo de Arenito Prateado
|
||||||
|
Silver Sandstone Block=Bloco de Arenito Prateado
|
||||||
|
Obsidian=Obsidiana
|
||||||
|
Obsidian Brick=Tijolo de Obsidiana
|
||||||
|
Obsidian Block=Bloco de Obsidiana
|
||||||
|
Dirt=Terra
|
||||||
|
Dirt with Grass=Terra com Grama
|
||||||
|
Dirt with Grass and Footsteps=Terra com Grama e Pegadas
|
||||||
|
Dirt with Savanna Grass=Terra com Grama da Savana
|
||||||
|
Dirt with Snow=Terra com Neve
|
||||||
|
Dirt with Rainforest Litter=Terra com Serrapilheira Tropical
|
||||||
|
Dirt with Coniferous Litter=Terra com Serrapilheira
|
||||||
|
Savanna Dirt=Terra da Savana
|
||||||
|
Savanna Dirt with Savanna Grass=Terra da Savana com Grama da Savana
|
||||||
|
Permafrost=Terra Congelada
|
||||||
|
Permafrost with Stones=Terra Congelada com Pedras
|
||||||
|
Permafrost with Moss=Terra Congelada com Musgo
|
||||||
|
Sand=Areia
|
||||||
|
Desert Sand=Areia do Deserto
|
||||||
|
Silver Sand=Areia Prateada
|
||||||
|
Gravel=Cascalho
|
||||||
|
Clay=Argila
|
||||||
|
Snow=Neve
|
||||||
|
Snow Block=Bloco de Neve
|
||||||
|
Ice=Gelo
|
||||||
|
Cave Ice=Caverna de Gelo
|
||||||
|
Apple Tree=Macieira
|
||||||
|
Apple Wood Planks=Tábuas de Macieira
|
||||||
|
Apple Tree Sapling=Muda de Macieira
|
||||||
|
Apple Tree Leaves=Folhas de Macieira
|
||||||
|
Apple=Maçã
|
||||||
|
Apple Marker=Marcador de Maçã
|
||||||
|
Jungle Tree=Árvore da Selva
|
||||||
|
Jungle Wood Planks=Tábuas de Árvore da Selva
|
||||||
|
Jungle Tree Leaves=Folhas de Árvore da Selva
|
||||||
|
Jungle Tree Sapling=Muda de Árvore da Selva
|
||||||
|
Emergent Jungle Tree Sapling=Muda Crescida de Árvore da Selva
|
||||||
|
Pine Tree=Pinheiro
|
||||||
|
Pine Wood Planks=Tábuas de Pinheiro
|
||||||
|
Pine Needles=Agulhas de Pinheiro
|
||||||
|
Pine Tree Sapling=Muda de Pinheiro
|
||||||
|
Acacia Tree=Acácia
|
||||||
|
Acacia Wood Planks=Tábuas de Acácia
|
||||||
|
Acacia Tree Leaves=Folhas de Acácia
|
||||||
|
Acacia Tree Sapling=Mudas de Acácia
|
||||||
|
Aspen Tree=Álamo
|
||||||
|
Aspen Wood Planks=Tábuas de Álamo
|
||||||
|
Aspen Tree Leaves=Folhas de Álamo
|
||||||
|
Aspen Tree Sapling=Muda de Álamo
|
||||||
|
Coal Ore=Minério de Carvão
|
||||||
|
Coal Block=Bloco de Carvão
|
||||||
|
Iron Ore=Minério de Ferro
|
||||||
|
Steel Block=Bloco de Aço
|
||||||
|
Copper Ore=Minério de Cobre
|
||||||
|
Copper Block=Bloco de Cobre
|
||||||
|
Tin Ore=Minério de Estanho
|
||||||
|
Tin Block=Bloco de Estanho
|
||||||
|
Bronze Block=Bloco de Bronze
|
||||||
|
Mese Ore=Minério de Mese
|
||||||
|
Mese Block=Bloco de Mese
|
||||||
|
Gold Ore=Minério de Ouro
|
||||||
|
Gold Block=Bloco de Ouro
|
||||||
|
Diamond Ore=Minério de Diamante
|
||||||
|
Diamond Block=Bloco de Diamante
|
||||||
|
Cactus=Cacto
|
||||||
|
Large Cactus Seedling=Grande Muda de Cacto
|
||||||
|
Papyrus=Papiro
|
||||||
|
Dry Shrub=Arbusto Seco
|
||||||
|
Jungle Grass=Grama da Selva
|
||||||
|
Grass=Grama
|
||||||
|
Savanna Grass=Grama da Savana
|
||||||
|
Fern=Samambaia
|
||||||
|
Marram Grass=Grama de Feno
|
||||||
|
Bush Stem=Caule de Arbusto
|
||||||
|
Bush Leaves=Folhas de Arbusto
|
||||||
|
Bush Sapling=Muda de Arbusto
|
||||||
|
Blueberry Bush Leaves with Berries=Folhas de Arbusto de Mirtilo com Bagas
|
||||||
|
Blueberry Bush Leaves=Folhas de Arbusto de Mirtilo
|
||||||
|
Blueberry Bush Sapling=Muda de Arbusto de Mirtilo
|
||||||
|
Acacia Bush Stem=Caule de Arbusto de Acácia
|
||||||
|
Acacia Bush Leaves=Folhas de Arbusto de Acácia
|
||||||
|
Acacia Bush Sapling=Muda de Arbusto de Acácia
|
||||||
|
Pine Bush Stem=Caule de Arbusto de Pinheiro
|
||||||
|
Pine Bush Needles=Agulha de Arbusto de Pinheiro
|
||||||
|
Pine Bush Sapling=Muda de Arbusto de Pinheiro
|
||||||
|
Kelp=Alga
|
||||||
|
Green Coral=Coral Verde
|
||||||
|
Pink Coral=Coral Rosa
|
||||||
|
Cyan Coral=Coral Ciano
|
||||||
|
Brown Coral=Coral Marrom
|
||||||
|
Orange Coral=Coral Laranja
|
||||||
|
Coral Skeleton=Esqueleto de Coral
|
||||||
|
Water Source=Fonte de Água
|
||||||
|
Flowing Water=Água Corrente
|
||||||
|
River Water Source=Fonte de Água do Rio
|
||||||
|
Flowing River Water=Água Corrente do Rio
|
||||||
|
Lava Source=Fonte de Lava
|
||||||
|
Flowing Lava=Lava Corrente
|
||||||
|
Empty Bookshelf=Estante de Livros Vazia
|
||||||
|
Bookshelf (@1 written, @2 empty books)=Estante de Livros (@1 livros escritos, @2 livros em branco)
|
||||||
|
Bookshelf=Estante de Livros
|
||||||
|
Text too long=Texto muito longo
|
||||||
|
"@1"="@1"
|
||||||
|
Wooden Sign=Placa de Madeira
|
||||||
|
Steel Sign=Placa de Aço
|
||||||
|
Wooden Ladder=Escada de Madeira
|
||||||
|
Steel Ladder=Escada de Aço
|
||||||
|
Apple Wood Fence=Cerca de Macieira
|
||||||
|
Acacia Wood Fence=Cerca de Acácia
|
||||||
|
Jungle Wood Fence=Cerca de Madeira da Selva
|
||||||
|
Pine Wood Fence=Cerca de Pinheiro
|
||||||
|
Aspen Wood Fence=Cerca de Álamo
|
||||||
|
Apple Wood Fence Rail=Trilho de Cerca de Macieira
|
||||||
|
Acacia Wood Fence Rail=Trilho de Cerca de Acácia
|
||||||
|
Jungle Wood Fence Rail=Trilho de Cerca de Madeira da Selva
|
||||||
|
Pine Wood Fence Rail=Trilho de Cerca de Pinheiro
|
||||||
|
Aspen Wood Fence Rail=Trilho de Cerca de Álamo
|
||||||
|
Glass=Vidro
|
||||||
|
Obsidian Glass=Vidro de Obsidiana
|
||||||
|
Brick Block=Bloco de Tijolos
|
||||||
|
Mese Lamp=Lâmpada de Mese
|
||||||
|
Apple Wood Mese Post Light=Poste de Lâmpada de Mese de Macieira
|
||||||
|
Acacia Wood Mese Post Light=Poste de Lâmpada de Mese de Acácia
|
||||||
|
Jungle Wood Mese Post Light=Poste de Lâmpada de Mese de Madeira da Selva
|
||||||
|
Pine Wood Mese Post Light=Poste de Lâmpada de Mese de Pinheiro
|
||||||
|
Aspen Wood Mese Post Light=Poste de Lâmpada de Mese de Aspen
|
||||||
|
Cloud=Nuvem
|
||||||
|
Wooden Pickaxe=Picareta de Madeira
|
||||||
|
Stone Pickaxe=Picareta de Pedra
|
||||||
|
Bronze Pickaxe=Picareta de Bronze
|
||||||
|
Steel Pickaxe=Picareta de Aço
|
||||||
|
Mese Pickaxe=Picareta de Mese
|
||||||
|
Diamond Pickaxe=Picareta de Diamante
|
||||||
|
Wooden Shovel=Pá de Madeira
|
||||||
|
Stone Shovel=Pá de Pedra
|
||||||
|
Bronze Shovel=Pá de Bronze
|
||||||
|
Steel Shovel=Pá de Aço
|
||||||
|
Mese Shovel=Pá de Mese
|
||||||
|
Diamond Shovel=Pá de Diamante
|
||||||
|
Wooden Axe=Machado de Madeira
|
||||||
|
Stone Axe=Machado de Pedra
|
||||||
|
Bronze Axe=Machado de Bronze
|
||||||
|
Steel Axe=Machado de Aço
|
||||||
|
Mese Axe=Machado de Mese
|
||||||
|
Diamond Axe=Machado de Diamante
|
||||||
|
Wooden Sword=Espada de Madeira
|
||||||
|
Stone Sword=Espada de Pedra
|
||||||
|
Bronze Sword=Espada de Bronze
|
||||||
|
Steel Sword=Espada de Aço
|
||||||
|
Mese Sword=Espada de Mese
|
||||||
|
Diamond Sword=Espada de Diamante
|
||||||
|
Key=Chave
|
||||||
|
Torch=Tocha
|
||||||
|
@1 will intersect protection on growth.=@1 cruzará a proteção no crescimento.
|
|
@ -4,36 +4,41 @@ Locked Chest (owned by @1)=Заблокированный Сундук (влад
|
||||||
You do not own this chest.=Вы не владелец этого сундука.
|
You do not own this chest.=Вы не владелец этого сундука.
|
||||||
a locked chest=заблокированный сундук
|
a locked chest=заблокированный сундук
|
||||||
Chest=Сундук
|
Chest=Сундук
|
||||||
Stick=Палка
|
Title:=Заголовок:
|
||||||
Paper=Бумага
|
Contents:=Содержимое:
|
||||||
|
Save=Сохранить
|
||||||
|
by @1=@1
|
||||||
|
Page @1 of @2=Страница @1 из @2
|
||||||
"@1" by @2="@1" @2
|
"@1" by @2="@1" @2
|
||||||
Book=Книга
|
|
||||||
Book with Text=Книга с Текстом
|
|
||||||
Skeleton Key=Ключ Скелета
|
Skeleton Key=Ключ Скелета
|
||||||
Key to @1's @2=Ключ к @2 от @1
|
Key to @1's @2=Ключ к @2 от @1
|
||||||
Coal Lump=Кусок Угля
|
|
||||||
Iron Lump=Кусок Железа
|
|
||||||
Copper Lump=Кусок Меди
|
|
||||||
Tin Lump=Кусок Олова
|
|
||||||
Mese Crystal=Кристалл Месе
|
|
||||||
Gold Lump=Кусок Золота
|
|
||||||
Diamond=Алмаз
|
|
||||||
Clay Lump=Ком Глины
|
|
||||||
Steel Ingot=Железный Слиток
|
|
||||||
Copper Ingot=Медный Слиток
|
|
||||||
Tin Ingot=Оловянный Слиток
|
|
||||||
Bronze Ingot=Бронзовый Слиток
|
|
||||||
Gold Ingot=Золотой Слиток
|
|
||||||
Mese Crystal Fragment=Осколок Кристалла Месе
|
|
||||||
Clay Brick=Глиняный Кирпич
|
|
||||||
Obsidian Shard=Обсидиановый Осколок
|
|
||||||
Flint=Кремень
|
|
||||||
Blueberries=Черника
|
Blueberries=Черника
|
||||||
|
Book=Книга
|
||||||
|
Book with Text=Книга с Текстом
|
||||||
|
Bronze Ingot=Бронзовый Слиток
|
||||||
|
Clay Brick=Глиняный Кирпич
|
||||||
|
Clay Lump=Ком Глины
|
||||||
|
Coal Lump=Кусок Угля
|
||||||
|
Copper Ingot=Медный Слиток
|
||||||
|
Copper Lump=Кусок Меди
|
||||||
|
Diamond=Алмаз
|
||||||
|
Flint=Кремень
|
||||||
|
Gold Ingot=Золотой Слиток
|
||||||
|
Gold Lump=Кусок Золота
|
||||||
|
Iron Lump=Кусок Железа
|
||||||
|
Mese Crystal=Кристалл Месе
|
||||||
|
Mese Crystal Fragment=Осколок Кристалла Месе
|
||||||
|
Obsidian Shard=Обсидиановый Осколок
|
||||||
|
Paper=Бумага
|
||||||
|
Steel Ingot=Железный Слиток
|
||||||
|
Stick=Палка
|
||||||
|
Tin Ingot=Оловянный Слиток
|
||||||
|
Tin Lump=Кусок Олова
|
||||||
Furnace is empty=Печь пуста
|
Furnace is empty=Печь пуста
|
||||||
100% (output full)=100% (полное приготовление)
|
100% (output full)=100% (полное приготовление)
|
||||||
@1%=@1%
|
@1%=@1%
|
||||||
Empty=Пустое
|
|
||||||
Not cookable=Не может быть приготовлено
|
Not cookable=Не может быть приготовлено
|
||||||
|
Empty=Пустое
|
||||||
Furnace active=Печь зажжена
|
Furnace active=Печь зажжена
|
||||||
Furnace inactive=Печь не зажжена
|
Furnace inactive=Печь не зажжена
|
||||||
(Item: @1; Fuel: @2)=(Предмет: @1; Топливо: @2)
|
(Item: @1; Fuel: @2)=(Предмет: @1; Топливо: @2)
|
||||||
|
@ -62,12 +67,12 @@ Obsidian Block=Обсидиановый Блок
|
||||||
Dirt=Земля
|
Dirt=Земля
|
||||||
Dirt with Grass=Земля с Травой
|
Dirt with Grass=Земля с Травой
|
||||||
Dirt with Grass and Footsteps=Земля с Травой и Следами
|
Dirt with Grass and Footsteps=Земля с Травой и Следами
|
||||||
Dirt with Dry Grass=Земля с Сухой Травой
|
Dirt with Savanna Grass=
|
||||||
Dirt with Snow=Земля Со Снегом
|
Dirt with Snow=Земля Со Снегом
|
||||||
Dirt with Rainforest Litter=Земля с Тропической Подстилкой
|
Dirt with Rainforest Litter=Земля с Тропической Подстилкой
|
||||||
Dirt with Coniferous Litter=Земля с Сосновой Подстилкой
|
Dirt with Coniferous Litter=Земля с Сосновой Подстилкой
|
||||||
Dry Dirt=Сухая Земля
|
Savanna Dirt=
|
||||||
Dry Dirt with Dry Grass=Сухая Земля с Сухой Травой
|
Savanna Dirt with Savanna Grass=
|
||||||
Permafrost=Замороженная Почва
|
Permafrost=Замороженная Почва
|
||||||
Permafrost with Stones=Замороженная Почва с Камнями
|
Permafrost with Stones=Замороженная Почва с Камнями
|
||||||
Permafrost with Moss=Замороженная Почва с Мхом
|
Permafrost with Moss=Замороженная Почва с Мхом
|
||||||
|
@ -124,7 +129,7 @@ Papyrus=Папирус
|
||||||
Dry Shrub=Сухой Куст
|
Dry Shrub=Сухой Куст
|
||||||
Jungle Grass=Тропическая Трава
|
Jungle Grass=Тропическая Трава
|
||||||
Grass=Трава
|
Grass=Трава
|
||||||
Dry Grass=Сухая Трава
|
Savanna Grass=
|
||||||
Fern=Папоротник
|
Fern=Папоротник
|
||||||
Marram Grass=Песколюб
|
Marram Grass=Песколюб
|
||||||
Bush Stem=Стебли Куста
|
Bush Stem=Стебли Куста
|
||||||
|
@ -156,6 +161,7 @@ Empty Bookshelf=Пустая Книжная Полка
|
||||||
Bookshelf (@1 written, @2 empty books)=Книжная Полка (@1 написано, @2 чистые книги)
|
Bookshelf (@1 written, @2 empty books)=Книжная Полка (@1 написано, @2 чистые книги)
|
||||||
Bookshelf=Книжная Полка
|
Bookshelf=Книжная Полка
|
||||||
Text too long=Текст слишком длинный
|
Text too long=Текст слишком длинный
|
||||||
|
"@1"="@1"
|
||||||
Wooden Sign=Деревянная Табличка
|
Wooden Sign=Деревянная Табличка
|
||||||
Steel Sign=Стальная Табличка
|
Steel Sign=Стальная Табличка
|
||||||
Wooden Ladder=Деревянная Лестница
|
Wooden Ladder=Деревянная Лестница
|
||||||
|
@ -174,7 +180,11 @@ Glass=Стекло
|
||||||
Obsidian Glass=Обсидиановое Стекло
|
Obsidian Glass=Обсидиановое Стекло
|
||||||
Brick Block=Кирпичный Блок
|
Brick Block=Кирпичный Блок
|
||||||
Mese Lamp=Месе Лампа
|
Mese Lamp=Месе Лампа
|
||||||
Mese Post Light=Столб с Месе Фонарем
|
Apple Wood Mese Post Light=
|
||||||
|
Acacia Wood Mese Post Light=
|
||||||
|
Jungle Wood Mese Post Light=
|
||||||
|
Pine Wood Mese Post Light=
|
||||||
|
Aspen Wood Mese Post Light=
|
||||||
Cloud=Облако
|
Cloud=Облако
|
||||||
Wooden Pickaxe=Деревянная Кирка
|
Wooden Pickaxe=Деревянная Кирка
|
||||||
Stone Pickaxe=Каменная Кирка
|
Stone Pickaxe=Каменная Кирка
|
||||||
|
@ -203,9 +213,12 @@ Diamond Sword=Алмазный Меч
|
||||||
Key=Ключ
|
Key=Ключ
|
||||||
Torch=Факел
|
Torch=Факел
|
||||||
@1 will intersect protection on growth.=@1 пересечёт защиту по росту.
|
@1 will intersect protection on growth.=@1 пересечёт защиту по росту.
|
||||||
Title:=Заголовок:
|
|
||||||
Contents:=Содержимое:
|
|
||||||
Save=Сохранить
|
##### not used anymore #####
|
||||||
by @1=@1
|
|
||||||
Page @1 of @2=Страница @1 из @2
|
Dirt with Dry Grass=Земля с Сухой Травой
|
||||||
"@1"="@1"
|
Dry Dirt=Сухая Земля
|
||||||
|
Dry Dirt with Dry Grass=Сухая Земля с Сухой Травой
|
||||||
|
Dry Grass=Сухая Трава
|
||||||
|
Mese Post Light=Столб с Месе Фонарем
|
||||||
|
|
|
@ -1,39 +1,45 @@
|
||||||
|
# textdomain: default
|
||||||
## textdomain: default
|
## textdomain: default
|
||||||
Locked Chest=Låst kista
|
Locked Chest=Låst kista
|
||||||
Locked Chest (owned by @1)=Låst kista (Ägd av @1)
|
Locked Chest (owned by @1)=Låst kista (Ägd av @1)
|
||||||
You do not own this chest.=Du äger inte denna kistan.
|
You do not own this chest.=Du äger inte denna kistan.
|
||||||
a locked chest=en låst kista
|
a locked chest=en låst kista
|
||||||
Chest=Kista
|
Chest=Kista
|
||||||
Stick=Pinne
|
Title:=Titel:
|
||||||
Paper=Papper
|
Contents:=Innehåll:
|
||||||
|
Save=Spara
|
||||||
|
by @1=av @1
|
||||||
|
Page @1 of @2=Sida @1 av @2
|
||||||
"@1" by @2="@1" av @2
|
"@1" by @2="@1" av @2
|
||||||
Book=Bok
|
|
||||||
Book with Text=Bok med text
|
|
||||||
Skeleton Key=Skelett Nyckel
|
Skeleton Key=Skelett Nyckel
|
||||||
Key to @1's @2=Nyckel till @1s @2
|
Key to @1's @2=Nyckel till @1s @2
|
||||||
Coal Lump=Kol Klumo
|
|
||||||
Iron Lump=Järn Klump
|
|
||||||
Copper Lump=Koppar Klump
|
|
||||||
Tin Lump=Tenn Klump
|
|
||||||
Mese Crystal=Mese Kristall
|
|
||||||
Gold Lump=Guld Klump
|
|
||||||
Diamond=Diamant
|
|
||||||
Clay Lump=Lerklump
|
|
||||||
Steel Ingot=Stål tacka
|
|
||||||
Copper Ingot=Koppar tacka
|
|
||||||
Tin Ingot=Tenn tacka
|
|
||||||
Bronze Ingot=Brons tacka
|
|
||||||
Gold Ingot=Guld tacka
|
|
||||||
Mese Crystal Fragment=Mese Kristall Fragment
|
|
||||||
Clay Brick=Tegelsten
|
|
||||||
Obsidian Shard=Obsidian Skärva
|
|
||||||
Flint=Flinta
|
|
||||||
Blueberries=Blåbär
|
Blueberries=Blåbär
|
||||||
|
Book=Bok
|
||||||
|
Book with Text=Bok med text
|
||||||
|
Bronze Ingot=Brons tacka
|
||||||
|
Clay Brick=Tegelsten
|
||||||
|
Clay Lump=Lerklump
|
||||||
|
Coal Lump=Kol Klumo
|
||||||
|
Copper Ingot=Koppar tacka
|
||||||
|
Copper Lump=Koppar Klump
|
||||||
|
Diamond=Diamant
|
||||||
|
Flint=Flinta
|
||||||
|
Gold Ingot=Guld tacka
|
||||||
|
Gold Lump=Guld Klump
|
||||||
|
Iron Lump=Järn Klump
|
||||||
|
Mese Crystal=Mese Kristall
|
||||||
|
Mese Crystal Fragment=Mese Kristall Fragment
|
||||||
|
Obsidian Shard=Obsidian Skärva
|
||||||
|
Paper=Papper
|
||||||
|
Steel Ingot=Stål tacka
|
||||||
|
Stick=Pinne
|
||||||
|
Tin Ingot=Tenn tacka
|
||||||
|
Tin Lump=Tenn Klump
|
||||||
Furnace is empty=Ugnen är tom
|
Furnace is empty=Ugnen är tom
|
||||||
100% (output full)=100% (utgången full)
|
100% (output full)=100% (utgången full)
|
||||||
@1%=@1%
|
@1%=@1%
|
||||||
Empty=Tom
|
|
||||||
Not cookable=Inte kokbar
|
Not cookable=Inte kokbar
|
||||||
|
Empty=Tom
|
||||||
Furnace active=Ugn aktiv
|
Furnace active=Ugn aktiv
|
||||||
Furnace inactive=Ugn inaktiv
|
Furnace inactive=Ugn inaktiv
|
||||||
(Item: @1; Fuel: @2)=(Sak: @1; Bränsle: @2)
|
(Item: @1; Fuel: @2)=(Sak: @1; Bränsle: @2)
|
||||||
|
@ -62,12 +68,12 @@ Obsidian Block=Obsidian block
|
||||||
Dirt=Jord
|
Dirt=Jord
|
||||||
Dirt with Grass=Jord med gräs
|
Dirt with Grass=Jord med gräs
|
||||||
Dirt with Grass and Footsteps=Jord med gräs och fotsteg
|
Dirt with Grass and Footsteps=Jord med gräs och fotsteg
|
||||||
Dirt with Dry Grass=Jord med torrt gräs
|
Dirt with Savanna Grass=
|
||||||
Dirt with Snow=Jord med snö
|
Dirt with Snow=Jord med snö
|
||||||
Dirt with Rainforest Litter=Jord med regnskogströ
|
Dirt with Rainforest Litter=Jord med regnskogströ
|
||||||
Dirt with Coniferous Litter=Jord med Barrträd
|
Dirt with Coniferous Litter=Jord med Barrträd
|
||||||
Dry Dirt=Torr jord
|
Savanna Dirt=
|
||||||
Dry Dirt with Dry Grass=Torr jord med torrt gräs
|
Savanna Dirt with Savanna Grass=
|
||||||
Permafrost=Permafrost
|
Permafrost=Permafrost
|
||||||
Permafrost with Stones=Permafrost med sten
|
Permafrost with Stones=Permafrost med sten
|
||||||
Permafrost with Moss=Permafrost med mossa
|
Permafrost with Moss=Permafrost med mossa
|
||||||
|
@ -124,7 +130,7 @@ Papyrus=Papyrus
|
||||||
Dry Shrub=Torr Buske
|
Dry Shrub=Torr Buske
|
||||||
Jungle Grass=Djungel Gräs
|
Jungle Grass=Djungel Gräs
|
||||||
Grass=Gräs
|
Grass=Gräs
|
||||||
Dry Grass=Torrt Gräs
|
Savanna Grass=
|
||||||
Fern=Ormbunke
|
Fern=Ormbunke
|
||||||
Marram Grass=Marram Gräs
|
Marram Grass=Marram Gräs
|
||||||
Bush Stem=Busk Stam
|
Bush Stem=Busk Stam
|
||||||
|
@ -156,6 +162,7 @@ Empty Bookshelf=Tom Bokhylla
|
||||||
Bookshelf (@1 written, @2 empty books)=Bokhylla (@1 skriva, @2 tomma böcker)
|
Bookshelf (@1 written, @2 empty books)=Bokhylla (@1 skriva, @2 tomma böcker)
|
||||||
Bookshelf=Bokhylla
|
Bookshelf=Bokhylla
|
||||||
Text too long=Text för lång
|
Text too long=Text för lång
|
||||||
|
"@1"="@1"
|
||||||
Wooden Sign=Trä Skylt
|
Wooden Sign=Trä Skylt
|
||||||
Steel Sign=Stål Skylt
|
Steel Sign=Stål Skylt
|
||||||
Wooden Ladder=Trä Stege
|
Wooden Ladder=Trä Stege
|
||||||
|
@ -174,7 +181,11 @@ Glass=Glas
|
||||||
Obsidian Glass=Obsidian Glas
|
Obsidian Glass=Obsidian Glas
|
||||||
Brick Block=Tegelstens Block
|
Brick Block=Tegelstens Block
|
||||||
Mese Lamp=Mese Lampa
|
Mese Lamp=Mese Lampa
|
||||||
Mese Post Light=Mese Postljus
|
Apple Wood Mese Post Light=
|
||||||
|
Acacia Wood Mese Post Light=
|
||||||
|
Jungle Wood Mese Post Light=
|
||||||
|
Pine Wood Mese Post Light=
|
||||||
|
Aspen Wood Mese Post Light=
|
||||||
Cloud=Moln
|
Cloud=Moln
|
||||||
Wooden Pickaxe=Trä Hacka
|
Wooden Pickaxe=Trä Hacka
|
||||||
Stone Pickaxe=Sten Hacka
|
Stone Pickaxe=Sten Hacka
|
||||||
|
@ -203,9 +214,12 @@ Diamond Sword=Diamant Svärd
|
||||||
Key=Nyckel
|
Key=Nyckel
|
||||||
Torch=Fakla
|
Torch=Fakla
|
||||||
@1 will intersect protection on growth.=@1 kommer korsa skyddet mot tillväxt.
|
@1 will intersect protection on growth.=@1 kommer korsa skyddet mot tillväxt.
|
||||||
Title:=Titel:
|
|
||||||
Contents:=Innehåll:
|
|
||||||
Save=Spara
|
##### not used anymore #####
|
||||||
by @1=av @1
|
|
||||||
Page @1 of @2=Sida @1 av @2
|
Dirt with Dry Grass=Jord med torrt gräs
|
||||||
"@1"="@1"
|
Dry Dirt=Torr jord
|
||||||
|
Dry Dirt with Dry Grass=Torr jord med torrt gräs
|
||||||
|
Dry Grass=Torrt Gräs
|
||||||
|
Mese Post Light=Mese Postljus
|
||||||
|
|
|
@ -4,36 +4,41 @@ Locked Chest (owned by @1)=Uzamknutá truhlica (Vlastník - @1)
|
||||||
You do not own this chest.=Túto truhlicu nevlastníš.
|
You do not own this chest.=Túto truhlicu nevlastníš.
|
||||||
a locked chest=zamknutá truhlica
|
a locked chest=zamknutá truhlica
|
||||||
Chest=Truhlica
|
Chest=Truhlica
|
||||||
Stick=Palica
|
Title:=Názov:
|
||||||
Paper=Papier
|
Contents:=Obsah:
|
||||||
|
Save=Uložiť
|
||||||
|
by @1=od @1
|
||||||
|
Page @1 of @2=Strana @1 z @2
|
||||||
"@1" by @2=„@1“ z @2
|
"@1" by @2=„@1“ z @2
|
||||||
Book=Kniha
|
|
||||||
Book with Text=Kniha s textom
|
|
||||||
Skeleton Key=Základný kľuč
|
Skeleton Key=Základný kľuč
|
||||||
Key to @1's @2=Kľuč pre @2 hráča @1
|
Key to @1's @2=Kľuč pre @2 hráča @1
|
||||||
Coal Lump=Hruda uhlia
|
|
||||||
Iron Lump=Hruda železa
|
|
||||||
Copper Lump=Hruda medi
|
|
||||||
Tin Lump=Hruda cínu
|
|
||||||
Mese Crystal=Mese Krištáľ
|
|
||||||
Gold Lump=Hruda zlata
|
|
||||||
Diamond=Diamant
|
|
||||||
Clay Lump=Hruda ílu
|
|
||||||
Steel Ingot=Oceľový ingot
|
|
||||||
Copper Ingot=Medený ingot
|
|
||||||
Tin Ingot=Cínový ingot
|
|
||||||
Bronze Ingot=Bronzový ingot
|
|
||||||
Gold Ingot=Zlatý ingot
|
|
||||||
Mese Crystal Fragment=Fragment Mese krištáľu
|
|
||||||
Clay Brick=Nepálená tehla
|
|
||||||
Obsidian Shard=Úlomok obsidiánu
|
|
||||||
Flint=Kresací kamienok
|
|
||||||
Blueberries=Čučoriedky
|
Blueberries=Čučoriedky
|
||||||
|
Book=Kniha
|
||||||
|
Book with Text=Kniha s textom
|
||||||
|
Bronze Ingot=Bronzový ingot
|
||||||
|
Clay Brick=Nepálená tehla
|
||||||
|
Clay Lump=Hruda ílu
|
||||||
|
Coal Lump=Hruda uhlia
|
||||||
|
Copper Ingot=Medený ingot
|
||||||
|
Copper Lump=Hruda medi
|
||||||
|
Diamond=Diamant
|
||||||
|
Flint=Kresací kamienok
|
||||||
|
Gold Ingot=Zlatý ingot
|
||||||
|
Gold Lump=Hruda zlata
|
||||||
|
Iron Lump=Hruda železa
|
||||||
|
Mese Crystal=Mese Krištáľ
|
||||||
|
Mese Crystal Fragment=Fragment Mese krištáľu
|
||||||
|
Obsidian Shard=Úlomok obsidiánu
|
||||||
|
Paper=Papier
|
||||||
|
Steel Ingot=Oceľový ingot
|
||||||
|
Stick=Palica
|
||||||
|
Tin Ingot=Cínový ingot
|
||||||
|
Tin Lump=Hruda cínu
|
||||||
Furnace is empty=Pec je prázdna
|
Furnace is empty=Pec je prázdna
|
||||||
100% (output full)=100% (Výstup je plný)
|
100% (output full)=100% (Výstup je plný)
|
||||||
@1%=@1%
|
@1%=@1%
|
||||||
Empty=Prázdne
|
|
||||||
Not cookable=Nie je variteľné
|
Not cookable=Nie je variteľné
|
||||||
|
Empty=Prázdne
|
||||||
Furnace active=Pec je aktívna
|
Furnace active=Pec je aktívna
|
||||||
Furnace inactive=Pec je neaktívna
|
Furnace inactive=Pec je neaktívna
|
||||||
(Item: @1; Fuel: @2)=(Vec: @1; Palivo: @2)
|
(Item: @1; Fuel: @2)=(Vec: @1; Palivo: @2)
|
||||||
|
@ -156,6 +161,7 @@ Empty Bookshelf=Prázdna knižnica
|
||||||
Bookshelf (@1 written, @2 empty books)=Knižnica (@1 popísané, @2 prázdne knihy)
|
Bookshelf (@1 written, @2 empty books)=Knižnica (@1 popísané, @2 prázdne knihy)
|
||||||
Bookshelf=Knižnica
|
Bookshelf=Knižnica
|
||||||
Text too long=Text je príliš dlhý
|
Text too long=Text je príliš dlhý
|
||||||
|
"@1"=„@1“
|
||||||
Wooden Sign=Drevená tabuľka
|
Wooden Sign=Drevená tabuľka
|
||||||
Steel Sign=Oceľová tabuľka
|
Steel Sign=Oceľová tabuľka
|
||||||
Wooden Ladder=Drevený rebrík
|
Wooden Ladder=Drevený rebrík
|
||||||
|
@ -174,7 +180,11 @@ Glass=Sklo
|
||||||
Obsidian Glass=Obsidiánové sklo
|
Obsidian Glass=Obsidiánové sklo
|
||||||
Brick Block=Blok z tehál
|
Brick Block=Blok z tehál
|
||||||
Mese Lamp=Mese lampa
|
Mese Lamp=Mese lampa
|
||||||
Mese Post Light=Mese stĺpová lampa
|
Apple Wood Mese Post Light=
|
||||||
|
Acacia Wood Mese Post Light=
|
||||||
|
Jungle Wood Mese Post Light=
|
||||||
|
Pine Wood Mese Post Light=
|
||||||
|
Aspen Wood Mese Post Light=
|
||||||
Cloud=Oblak
|
Cloud=Oblak
|
||||||
Wooden Pickaxe=Drevený krompáč
|
Wooden Pickaxe=Drevený krompáč
|
||||||
Stone Pickaxe=Kamenný krompáč
|
Stone Pickaxe=Kamenný krompáč
|
||||||
|
@ -203,9 +213,8 @@ Diamond Sword=Diamantový meč
|
||||||
Key=Kľúč
|
Key=Kľúč
|
||||||
Torch=Fakľa
|
Torch=Fakľa
|
||||||
@1 will intersect protection on growth.=@1 prekročí pri raste chránenú zónu.
|
@1 will intersect protection on growth.=@1 prekročí pri raste chránenú zónu.
|
||||||
Title:=Názov:
|
|
||||||
Contents:=Obsah:
|
|
||||||
Save=Uložiť
|
##### not used anymore #####
|
||||||
by @1=od @1
|
|
||||||
Page @1 of @2=Strana @1 z @2
|
Mese Post Light=Mese stĺpová lampa
|
||||||
"@1"=„@1“
|
|
||||||
|
|
|
@ -4,36 +4,41 @@ Locked Chest (owned by @1)=已上锁的箱子(属于@1所有)
|
||||||
You do not own this chest.=这个箱子不属于你所有。
|
You do not own this chest.=这个箱子不属于你所有。
|
||||||
a locked chest=一个已上锁的箱子
|
a locked chest=一个已上锁的箱子
|
||||||
Chest=箱子
|
Chest=箱子
|
||||||
Stick=棒
|
Title:=标题:
|
||||||
Paper=纸
|
Contents:=内容:
|
||||||
|
Save=保存
|
||||||
|
by @1=由@1
|
||||||
|
Page @1 of @2=第@1页,共@2页。
|
||||||
"@1" by @2="@1" by @2
|
"@1" by @2="@1" by @2
|
||||||
Book=书
|
|
||||||
Book with Text=带文字的书
|
|
||||||
Skeleton Key=万能钥匙
|
Skeleton Key=万能钥匙
|
||||||
Key to @1's @2=@1的@2的钥匙
|
Key to @1's @2=@1的@2的钥匙
|
||||||
Coal Lump=煤块
|
|
||||||
Iron Lump=铁块
|
|
||||||
Copper Lump=铜块
|
|
||||||
Tin Lump=锡块
|
|
||||||
Mese Crystal=黄石晶体
|
|
||||||
Gold Lump=金块
|
|
||||||
Diamond=钻石
|
|
||||||
Clay Lump=粘土块
|
|
||||||
Steel Ingot=铁锭
|
|
||||||
Copper Ingot=铜锭
|
|
||||||
Tin Ingot=锡锭
|
|
||||||
Bronze Ingot=青铜锭
|
|
||||||
Gold Ingot=金锭
|
|
||||||
Mese Crystal Fragment=黄石晶体碎片
|
|
||||||
Clay Brick=粘土砖
|
|
||||||
Obsidian Shard=黑曜石碎片
|
|
||||||
Flint=燧石
|
|
||||||
Blueberries=蓝莓
|
Blueberries=蓝莓
|
||||||
|
Book=书
|
||||||
|
Book with Text=带文字的书
|
||||||
|
Bronze Ingot=青铜锭
|
||||||
|
Clay Brick=粘土砖
|
||||||
|
Clay Lump=粘土块
|
||||||
|
Coal Lump=煤块
|
||||||
|
Copper Ingot=铜锭
|
||||||
|
Copper Lump=铜块
|
||||||
|
Diamond=钻石
|
||||||
|
Flint=燧石
|
||||||
|
Gold Ingot=金锭
|
||||||
|
Gold Lump=金块
|
||||||
|
Iron Lump=铁块
|
||||||
|
Mese Crystal=黄石晶体
|
||||||
|
Mese Crystal Fragment=黄石晶体碎片
|
||||||
|
Obsidian Shard=黑曜石碎片
|
||||||
|
Paper=纸
|
||||||
|
Steel Ingot=铁锭
|
||||||
|
Stick=棒
|
||||||
|
Tin Ingot=锡锭
|
||||||
|
Tin Lump=锡块
|
||||||
Furnace is empty=熔炉是空的
|
Furnace is empty=熔炉是空的
|
||||||
100% (output full)=100%(输出已满)
|
100% (output full)=100%(输出已满)
|
||||||
@1%=@1%
|
@1%=@1%
|
||||||
Empty=空
|
|
||||||
Not cookable=不可烹饪
|
Not cookable=不可烹饪
|
||||||
|
Empty=空
|
||||||
Furnace active=熔炉正在运转
|
Furnace active=熔炉正在运转
|
||||||
Furnace inactive=熔炉未使用
|
Furnace inactive=熔炉未使用
|
||||||
(Item: @1; Fuel: @2)=(项目:@1;燃料:@2)
|
(Item: @1; Fuel: @2)=(项目:@1;燃料:@2)
|
||||||
|
@ -59,18 +64,15 @@ Silver Sandstone Block=银砂岩方块
|
||||||
Obsidian=黑曜石
|
Obsidian=黑曜石
|
||||||
Obsidian Brick=黑曜石砖
|
Obsidian Brick=黑曜石砖
|
||||||
Obsidian Block=黑曜石方块
|
Obsidian Block=黑曜石方块
|
||||||
|
|
||||||
Dirt=土方块
|
Dirt=土方块
|
||||||
Dirt with Grass=草方块
|
Dirt with Grass=草方块
|
||||||
Dirt with Grass and Footsteps=草方块及脚印
|
Dirt with Grass and Footsteps=草方块及脚印
|
||||||
Dirt with Dry Grass=干草土方块
|
Dirt with Savanna Grass=草原草方块
|
||||||
Dirt with Snow=雪土方块
|
Dirt with Snow=雪土方块
|
||||||
Dirt with Rainforest Litter=雨林腐土
|
Dirt with Rainforest Litter=雨林腐土
|
||||||
Dirt with Coniferous Litter=针叶林腐土
|
Dirt with Coniferous Litter=针叶林腐土
|
||||||
Savanna Dirt=草原土
|
Savanna Dirt=草原土
|
||||||
Dirt with Savanna Grass=草原草方块
|
|
||||||
Savanna Dirt with Savanna Grass=草原草方块(草原土)
|
Savanna Dirt with Savanna Grass=草原草方块(草原土)
|
||||||
|
|
||||||
Permafrost=多年冻土
|
Permafrost=多年冻土
|
||||||
Permafrost with Stones=带石头的多年冻土
|
Permafrost with Stones=带石头的多年冻土
|
||||||
Permafrost with Moss=生苔的多年冻土
|
Permafrost with Moss=生苔的多年冻土
|
||||||
|
@ -127,7 +129,7 @@ Papyrus=莎草纸
|
||||||
Dry Shrub=干灌木
|
Dry Shrub=干灌木
|
||||||
Jungle Grass=丛林草
|
Jungle Grass=丛林草
|
||||||
Grass=草
|
Grass=草
|
||||||
Dry Grass=干草
|
Savanna Grass=
|
||||||
Fern=蕨
|
Fern=蕨
|
||||||
Marram Grass=滨草
|
Marram Grass=滨草
|
||||||
Bush Stem=灌木
|
Bush Stem=灌木
|
||||||
|
@ -159,6 +161,7 @@ Empty Bookshelf=空书架
|
||||||
Bookshelf (@1 written, @2 empty books)=书架(@1本有字的书,@2本空书)
|
Bookshelf (@1 written, @2 empty books)=书架(@1本有字的书,@2本空书)
|
||||||
Bookshelf=书架
|
Bookshelf=书架
|
||||||
Text too long=文字太长
|
Text too long=文字太长
|
||||||
|
"@1"="@1"
|
||||||
Wooden Sign=木牌
|
Wooden Sign=木牌
|
||||||
Steel Sign=铁牌
|
Steel Sign=铁牌
|
||||||
Wooden Ladder=木梯子
|
Wooden Ladder=木梯子
|
||||||
|
@ -177,13 +180,11 @@ Glass=玻璃
|
||||||
Obsidian Glass=黑曜石玻璃
|
Obsidian Glass=黑曜石玻璃
|
||||||
Brick Block=砖方块
|
Brick Block=砖方块
|
||||||
Mese Lamp=黄石灯
|
Mese Lamp=黄石灯
|
||||||
|
|
||||||
Apple Wood Mese Post Light=苹果木黄石灯柱
|
Apple Wood Mese Post Light=苹果木黄石灯柱
|
||||||
Acacia Wood Mese Post Light=金合欢木黄石灯柱
|
Acacia Wood Mese Post Light=金合欢木黄石灯柱
|
||||||
Aspen Wood Mese Post Light=白杨木黄石灯柱
|
|
||||||
Jungle Wood Mese Post Light=丛林木黄石灯柱
|
Jungle Wood Mese Post Light=丛林木黄石灯柱
|
||||||
Pine Wood Mese Post Light=松木黄石灯柱
|
Pine Wood Mese Post Light=松木黄石灯柱
|
||||||
|
Aspen Wood Mese Post Light=白杨木黄石灯柱
|
||||||
Cloud=云
|
Cloud=云
|
||||||
Wooden Pickaxe=木镐
|
Wooden Pickaxe=木镐
|
||||||
Stone Pickaxe=石镐
|
Stone Pickaxe=石镐
|
||||||
|
@ -212,9 +213,9 @@ Diamond Sword=钻石剑
|
||||||
Key=钥匙
|
Key=钥匙
|
||||||
Torch=火把
|
Torch=火把
|
||||||
@1 will intersect protection on growth.=@1将与增长的保护相交。
|
@1 will intersect protection on growth.=@1将与增长的保护相交。
|
||||||
Title:=标题:
|
|
||||||
Contents:=内容:
|
|
||||||
Save=保存
|
##### not used anymore #####
|
||||||
by @1=由@1
|
|
||||||
Page @1 of @2=第@1页,共@2页。
|
Dirt with Dry Grass=干草土方块
|
||||||
"@1"="@1"
|
Dry Grass=干草
|
||||||
|
|