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,
|
||||
drawtype = "nodebox",
|
||||
tiles = def.tiles.bottom,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
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(botpos, {name = name .. "_top", param2 = dir})
|
||||
|
||||
if not (creative and creative.is_enabled_for
|
||||
and creative.is_enabled_for(player_name)) then
|
||||
if not minetest.is_creative_enabled(player_name) then
|
||||
itemstack:take_item()
|
||||
end
|
||||
return itemstack
|
||||
|
@ -151,6 +151,7 @@ function beds.register_bed(name, def)
|
|||
minetest.register_node(name .. "_top", {
|
||||
drawtype = "nodebox",
|
||||
tiles = def.tiles.top,
|
||||
use_texture_alpha = "clip",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
is_ground_content = false,
|
||||
|
|
|
@ -60,18 +60,19 @@ local function lay_down(player, pos, bed_pos, state, skip)
|
|||
|
||||
-- stand up
|
||||
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
|
||||
-- skip here to prevent sending player specific changes (used for leaving players)
|
||||
if skip then
|
||||
return
|
||||
end
|
||||
if p then
|
||||
player:set_pos(p)
|
||||
end
|
||||
player:set_pos(beds.pos[name])
|
||||
|
||||
-- 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
|
||||
player:set_physics_override({
|
||||
speed = physics_override.speed,
|
||||
|
@ -101,6 +102,11 @@ local function lay_down(player, pos, bed_pos, state, skip)
|
|||
return false
|
||||
end
|
||||
|
||||
if beds.player[name] then
|
||||
-- player already in bed, do nothing
|
||||
return false
|
||||
end
|
||||
|
||||
beds.pos[name] = pos
|
||||
beds.bed_position[name] = bed_pos
|
||||
beds.player[name] = {physics_override = player:get_physics_override()}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
# textdomain: beds
|
||||
Fancy Bed=Schickes 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.
|
||||
@1 of @2 players are in bed=@1 von @2 Spielern sind im Bett
|
||||
Force night skip=Überspringen der Nacht erzwingen
|
||||
You can only sleep at night.=Sie können nur nachts schlafen.
|
||||
Leave Bed=Bett verlassen
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
# textdomain: beds
|
||||
Fancy Bed=Cama de lujo
|
||||
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.
|
||||
@1 of @2 players are in bed=@1 de @2 jugadores están en cama
|
||||
Force night skip=Forzar evitar noche
|
||||
@1 of @2 players are in bed=@1 de @2 jugadores están durmiendo
|
||||
Force night skip=Forzar hacer de dia
|
||||
You can only sleep at night.=Sólo puedes dormir por la noche.
|
||||
Leave Bed=Levantarse
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
# textdomain: beds
|
||||
Fancy Bed=Lit chic
|
||||
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.
|
||||
@1 of @2 players are in bed=@1 joueur(s) sur @2 sont au lit
|
||||
Force night skip=Forcer le passage de 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
|
||||
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.
|
||||
@1 of @2 players are in bed=@1 dari @2 pemain sedang tidur
|
||||
Force night skip=Paksa lewati malam
|
||||
You can only sleep at night.=Anda hanya boleh tidur pada waktu malam.
|
||||
Fancy Bed=Dipan Mewah
|
||||
Simple Bed=Dipan Sederhana
|
||||
You can only sleep at night.=Anda hanya dapat tidur pada waktu malam.
|
||||
Leave Bed=Tinggalkan Ranjang
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
# textdomain: beds
|
||||
Fancy Bed=Letto decorato
|
||||
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
|
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
|
||||
Fancy Bed=Katil Beragam
|
||||
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.
|
||||
@1 of @2 players are in bed=@1 daripada @2 pemain sedang tidur
|
||||
Force night skip=Paksa langkau 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
|
||||
Fancy Bed=Детализированная Кровать
|
||||
Simple Bed=Обычная Кровать
|
||||
Leave Bed=Встать с кровати
|
||||
This bed is already occupied!=
|
||||
You have to stop moving before going to bed!=
|
||||
Good morning.=Доброе утро.
|
||||
@1 of @2 players are in bed=@1 из @2 игроков в кровати
|
||||
Force night skip=Пропустить ночь
|
||||
You can only sleep at night.=Вы можете спать только ночью.
|
||||
Leave Bed=Встать с кровати
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
# textdomain: beds
|
||||
Fancy Bed=Fin 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.
|
||||
@1 of @2 players are in bed=@1 av @2 spelar försöker sover.
|
||||
Force night skip=Tvinga över 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
|
||||
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.
|
||||
@1 of @2 players are in bed=@1 z @2 hráčov sú v posteli
|
||||
Force night skip=Nútene preskočiť noc
|
||||
You can only sleep at night.=Môžeš spať len v noci.
|
||||
Fancy Bed=Pekná posteľ
|
||||
Simple Bed=Jednoduchá posteľ
|
||||
Leave Bed=Opusti posteľ
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
# textdomain: beds
|
||||
Fancy Bed=花式床
|
||||
Simple Bed=简易床
|
||||
Leave Bed=离开床
|
||||
This bed is already occupied!=
|
||||
You have to stop moving before going to bed!=
|
||||
Good morning.=早安!
|
||||
@1 of @2 players are in bed=@2位玩家中的@1位在床上
|
||||
Force night skip=强制跳过夜晚
|
||||
You can only sleep at night.=你只能在晚上睡觉。
|
||||
Leave Bed=离开床
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
# textdomain: beds
|
||||
Fancy Bed=花式床
|
||||
Simple Bed=簡易床
|
||||
Leave Bed=離開床
|
||||
This bed is already occupied!=
|
||||
You have to stop moving before going to bed!=
|
||||
Good morning.=早安!
|
||||
@1 of @2 players are in bed=@2位玩家中的@1位在床上
|
||||
Force night skip=強制跳過夜晚
|
||||
You can only sleep at night.=你只能在晚上睡覺。
|
||||
|
||||
Leave Bed=離開床
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
# textdomain: beds
|
||||
Leave Bed=
|
||||
Fancy Bed=
|
||||
Simple Bed=
|
||||
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.=
|
||||
Fancy Bed=
|
||||
Simple Bed=
|
||||
Leave 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")
|
||||
|
||||
|
||||
-- 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
|
||||
-- Global to allow overriding
|
||||
|
||||
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
|
||||
|
||||
if player:get_inventory():contains_item(
|
||||
"main", "binoculars:binoculars") then
|
||||
new_zoom_fov = 10
|
||||
elseif creative_enabled then
|
||||
elseif minetest.is_creative_enabled(player:get_player_name()) then
|
||||
new_zoom_fov = 15
|
||||
end
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# textdomain: binoculars
|
||||
Binoculars=Binokular
|
||||
Use with 'Zoom' key=Pakai dengan tombol 'Zum'
|
||||
Binoculars=Teropong
|
||||
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
|
||||
description = Minetest Game mod: binoculars
|
||||
depends = default
|
||||
optional_depends = creative
|
||||
|
|
|
@ -119,8 +119,7 @@ function boat.on_punch(self, puncher)
|
|||
if not self.driver then
|
||||
self.removed = true
|
||||
local inv = puncher:get_inventory()
|
||||
if not (creative and creative.is_enabled_for
|
||||
and creative.is_enabled_for(name))
|
||||
if not minetest.is_creative_enabled(name)
|
||||
or not inv:contains_item("main", "boats:boat") then
|
||||
local leftover = inv:add_item("main", "boats:boat")
|
||||
-- if no room in inventory add a replacement boat to the world
|
||||
|
@ -172,7 +171,8 @@ function boat.on_step(self, dtime)
|
|||
end
|
||||
end
|
||||
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())
|
||||
return
|
||||
end
|
||||
|
@ -268,8 +268,7 @@ minetest.register_craftitem("boats:boat", {
|
|||
boat:set_yaw(placer:get_look_horizontal())
|
||||
end
|
||||
local player_name = placer and placer:get_player_name() or ""
|
||||
if not (creative and creative.is_enabled_for and
|
||||
creative.is_enabled_for(player_name)) then
|
||||
if not minetest.is_creative_enabled(player_name) then
|
||||
itemstack:take_item()
|
||||
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
|
||||
end
|
||||
|
||||
-- allow replacing air and liquids
|
||||
if node_name == "air" or node_definition.liquidtype ~= "none" then
|
||||
-- allow replacing air
|
||||
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
|
||||
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?
|
||||
-- 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 and not minetest.is_protected(pos, player:get_player_name())
|
||||
return node_definition.buildable_to
|
||||
end
|
||||
|
||||
local drop = function(pos, itemstack)
|
||||
|
@ -182,7 +191,6 @@ local function is_all_empty(player_inv)
|
|||
end
|
||||
|
||||
minetest.register_on_dieplayer(function(player)
|
||||
|
||||
local bones_mode = minetest.settings:get("bones_mode") or "bones"
|
||||
if bones_mode ~= "bones" and bones_mode ~= "drop" and bones_mode ~= "keep" then
|
||||
bones_mode = "bones"
|
||||
|
@ -194,8 +202,7 @@ minetest.register_on_dieplayer(function(player)
|
|||
local pos_string = minetest.pos_to_string(pos)
|
||||
|
||||
-- return if keep inventory set or in creative mode
|
||||
if bones_mode == "keep" or (creative and creative.is_enabled_for
|
||||
and creative.is_enabled_for(player:get_player_name())) then
|
||||
if bones_mode == "keep" or minetest.is_creative_enabled(player_name) then
|
||||
minetest.log("action", player_name .. " dies at " .. pos_string ..
|
||||
". No bones placed")
|
||||
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
|
||||
-- Pick up cart
|
||||
local inv = puncher:get_inventory()
|
||||
if not (creative and creative.is_enabled_for
|
||||
and creative.is_enabled_for(puncher:get_player_name()))
|
||||
if not minetest.is_creative_enabled(puncher:get_player_name())
|
||||
or not inv:contains_item("main", "carts:cart") then
|
||||
local leftover = inv:add_item("main", "carts:cart")
|
||||
-- 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},
|
||||
{pos = pointed_thing.above}, true)
|
||||
|
||||
if not (creative and creative.is_enabled_for
|
||||
and creative.is_enabled_for(placer:get_player_name())) then
|
||||
if not minetest.is_creative_enabled(placer:get_player_name()) then
|
||||
itemstack:take_item()
|
||||
end
|
||||
return itemstack
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# textdomain: carts
|
||||
Cart=Kereta
|
||||
(Sneak+Click to pick up)=(Menyelinap + Klik untuk ambil)
|
||||
Rail=Rel
|
||||
Powered Rail=Rel Bertenaga
|
||||
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
|
||||
Cart=Вагонетка
|
||||
(Sneak+Click to pick up)=(Пригнитесь и кликните по вагонетке, чтобы забрать)
|
||||
Rail=Рельса
|
||||
Powered Rail=Механизированная Рельса
|
||||
Brake Rail=Рельса с тормозом
|
||||
Rail=Рельсы
|
||||
Powered Rail=Запитанные рельсы
|
||||
Brake Rail=Тормозящие рельсы
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# textdomain: carts
|
||||
Cart=
|
||||
(Sneak+Click to pick up)=
|
||||
Rail=
|
||||
Powered 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
|
||||
minetest.register_on_placenode(function(pos, newnode, placer, oldnode, itemstack)
|
||||
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)
|
||||
|
||||
|
@ -87,7 +87,7 @@ end)
|
|||
local old_handle_node_drops = minetest.handle_node_drops
|
||||
function minetest.handle_node_drops(pos, drops, digger)
|
||||
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)
|
||||
end
|
||||
local inv = digger:get_inventory()
|
||||
|
|
|
@ -33,7 +33,7 @@ function creative.init_creative_inventory(player)
|
|||
minetest.create_detached_inventory("creative_" .. player_name, {
|
||||
allow_move = function(inv, from_list, from_index, to_list, to_index, count, player2)
|
||||
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
|
||||
return 0
|
||||
end
|
||||
|
@ -44,7 +44,7 @@ function creative.init_creative_inventory(player)
|
|||
end,
|
||||
allow_take = function(inv, listname, index, stack, player2)
|
||||
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
|
||||
end
|
||||
return -1
|
||||
|
@ -143,7 +143,7 @@ function creative.register_tab(name, title, items)
|
|||
sfinv.register_page("creative:" .. name, {
|
||||
title = title,
|
||||
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,
|
||||
get = function(self, player, context)
|
||||
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
|
||||
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"
|
||||
else
|
||||
return old_homepage_name(player)
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# textdomain: creative
|
||||
Allow player to use creative inventory=Bolehkan pemain memakai inventaris kreatif
|
||||
Search=Cari
|
||||
Reset=Atur ulang
|
||||
Previous page=Halaman sebelumnya
|
||||
|
@ -7,4 +8,3 @@ All=Semua
|
|||
Nodes=Nodus
|
||||
Tools=Perkakas
|
||||
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
|
||||
Allow player to use creative inventory=
|
||||
Search=
|
||||
Reset=
|
||||
Previous page=
|
||||
|
@ -7,4 +8,3 @@ All=
|
|||
Nodes=
|
||||
Tools=
|
||||
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
|
||||
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
|
||||
return itemstack
|
||||
end
|
||||
|
|
|
@ -463,6 +463,7 @@ function default.register_mesepost(name, def)
|
|||
},
|
||||
paramtype = "light",
|
||||
tiles = {def.texture, def.texture, post_texture_dark, post_texture_dark, post_texture, post_texture},
|
||||
use_texture_alpha = "opaque",
|
||||
light_source = default.LIGHT_MAX,
|
||||
sunlight_propagates = true,
|
||||
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.
|
||||
a locked chest=eine abgeschlossene Truhe
|
||||
Chest=Truhe
|
||||
Stick=Stock
|
||||
Paper=Papier
|
||||
Title:=Titel:
|
||||
Contents:=Inhalt:
|
||||
Save=Speichern
|
||||
by @1=von @1
|
||||
Page @1 of @2=Seite @1 von @2
|
||||
"@1" by @2=„@1“ von @2
|
||||
Book=Buch
|
||||
Book with Text=Buch mit Text
|
||||
Skeleton Key=Skelettschlüssel
|
||||
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
|
||||
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
|
||||
100% (output full)=100% (Ausgabe voll)
|
||||
@1%=@1%
|
||||
Empty=Leer
|
||||
Not cookable=Nicht kochbar
|
||||
Empty=Leer
|
||||
Furnace active=Ofen aktiv
|
||||
Furnace inactive=Ofen inaktiv
|
||||
(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=Bücherregal
|
||||
Text too long=Text zu lang
|
||||
"@1"=„@1“
|
||||
Wooden Sign=Holzschild
|
||||
Steel Sign=Stahlschild
|
||||
Wooden Ladder=Holzleiter
|
||||
|
@ -174,7 +180,11 @@ Glass=Glas
|
|||
Obsidian Glass=Obsidianglas
|
||||
Brick Block=Ziegelblock
|
||||
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
|
||||
Wooden Pickaxe=Holzspitzhacke
|
||||
Stone Pickaxe=Steinspitzhacke
|
||||
|
@ -203,9 +213,8 @@ Diamond Sword=Diamantschwert
|
|||
Key=Schlüssel
|
||||
Torch=Fackel
|
||||
@1 will intersect protection on growth.=@1 wird bei Wachstum mit geschützter Zone überlappen.
|
||||
Title:=Titel:
|
||||
Contents:=Inhalt:
|
||||
Save=Speichern
|
||||
by @1=von @1
|
||||
Page @1 of @2=Seite @1 von @2
|
||||
"@1"=„@1“
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Mese Post Light=Mesestandlampe
|
||||
|
|
|
@ -1,39 +1,45 @@
|
|||
# textdomain: default
|
||||
|
||||
Locked Chest=Cofre cerrado
|
||||
Locked Chest (owned by @1)=Cofre cerrado (propiedad de @1)
|
||||
You do not own this chest.=Este cofre no te pertenece.
|
||||
a locked chest=un cofre cerrado
|
||||
Chest=Cofre
|
||||
Stick=Palo
|
||||
Paper=Papel
|
||||
Title:=Título:
|
||||
Contents:=Contenidos:
|
||||
Save=Guardar
|
||||
by @1=por @1
|
||||
Page @1 of @2=Página @1 de @2
|
||||
"@1" by @2="@1" por @2
|
||||
Book=Libro
|
||||
Book with Text=Libro escrito
|
||||
Skeleton Key=Llave esqueleto
|
||||
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
|
||||
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
|
||||
100% (output full)=100% (salida completa)
|
||||
@1%=@1%
|
||||
Empty=Vacío
|
||||
Not cookable=No se puede cocinar
|
||||
Empty=Vacío
|
||||
Furnace active=Horno activado
|
||||
Furnace inactive=Horno desactivado
|
||||
(Item: @1; Fuel: @2)=(Objeto: @1; Combustible: @2)
|
||||
|
@ -62,19 +68,19 @@ Obsidian Block=Bloque de obsidiana
|
|||
Dirt=Tierra
|
||||
Dirt with Grass=Tierra con pasto
|
||||
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 Rainforest Litter=Tierra con hojarasca de selva tropical
|
||||
Dirt with Coniferous Litter=Tierra con hojarasca de coníferas
|
||||
Dry Dirt=Tierra Seca
|
||||
Dry Dirt with Dry Grass=Tierra seca con pasto seco
|
||||
Savanna Dirt=Tierra de sabana
|
||||
Savanna Dirt with Savanna Grass=Tierra de sabana con hierba de sabana
|
||||
Permafrost=Permafrost
|
||||
Permafrost with Stones=Permafrost pedregoso
|
||||
Permafrost with Moss=Permafrost musgoso
|
||||
Sand=Arena
|
||||
Desert Sand=Arena desértica
|
||||
Silver Sand=Arena plateada
|
||||
Gravel=Gravilla
|
||||
Gravel=Grava
|
||||
Clay=Arcilla
|
||||
Snow=Nieve
|
||||
Snow Block=Bloque de nieve
|
||||
|
@ -124,7 +130,7 @@ Papyrus=Papiro
|
|||
Dry Shrub=Arbusto seco
|
||||
Jungle Grass=Pasto de jungla
|
||||
Grass=Pasto
|
||||
Dry Grass=Pasto seco
|
||||
Savanna Grass=Hierba de sabana
|
||||
Fern=Helecho
|
||||
Marram Grass=Carrizo
|
||||
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=Librería
|
||||
Text too long=Texto demasiado largo
|
||||
"@1"="@1"
|
||||
Wooden Sign=Cartel de madera
|
||||
Steel Sign=Cartel de acero
|
||||
Wooden Ladder=Escalera de madera
|
||||
|
@ -174,7 +181,11 @@ Glass=Vidrio
|
|||
Obsidian Glass=Vidrio de obsidiana
|
||||
Brick Block=Bloque de ladrillo
|
||||
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
|
||||
Wooden Pickaxe=Pico de madera
|
||||
Stone Pickaxe=Pico de piedra
|
||||
|
@ -203,9 +214,12 @@ Diamond Sword=Espada de diamante
|
|||
Key=Llave
|
||||
Torch=Antorcha
|
||||
@1 will intersect protection on growth.=@1 intersectará con protección cuando crezca.
|
||||
Title:=Título:
|
||||
Contents:=Contenidos:
|
||||
Save=Guardar
|
||||
by @1=por @1
|
||||
Page @1 of @2=Página @1 de @2
|
||||
"@1"="@1"
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Dirt with Dry Grass=Tierra con pasto seco
|
||||
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.
|
||||
a locked chest=un coffre verrouillé
|
||||
Chest=Coffre
|
||||
Stick=Baton
|
||||
Paper=Papier
|
||||
Title:=Titre :
|
||||
Contents:=Contenu :
|
||||
Save=Sauvegarder
|
||||
by @1=de @1
|
||||
Page @1 of @2=Page @1 sur @2
|
||||
"@1" by @2=« @1 » de @2
|
||||
Book=Livre
|
||||
Book with Text=Livre avec du texte
|
||||
Skeleton Key=Squelette
|
||||
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
|
||||
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
|
||||
100% (output full)=100% (Sortie pleine)
|
||||
@1%=@1%
|
||||
Empty=Vide
|
||||
Not cookable=Ne se cuit pas
|
||||
Empty=Vide
|
||||
Furnace active=Four actif
|
||||
Furnace inactive=Four inactif
|
||||
(Item: @1; Fuel: @2)=(Article: @1; Carburant: @2)
|
||||
|
@ -62,12 +67,12 @@ Obsidian Block=Block d'obsidienne
|
|||
Dirt=Terre
|
||||
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 Dry Grass=Terre avec de l'herbe sèche
|
||||
Dirt with Savanna Grass=
|
||||
Dirt with Snow=Terre avec de la neige
|
||||
Dirt with Rainforest Litter=Terre avec sol de forêt humide
|
||||
Dirt with Coniferous Litter=Terre avec sol de forêt de conifère
|
||||
Dry Dirt=Terre sèche
|
||||
Dry Dirt with Dry Grass=Terre sèche avec de l'herbe sèche
|
||||
Savanna Dirt=
|
||||
Savanna Dirt with Savanna Grass=
|
||||
Permafrost=Pergélisol
|
||||
Permafrost with Stones=Pergélisol avec de la pierre
|
||||
Permafrost with Moss=Pergélisol avec de la mousse
|
||||
|
@ -124,7 +129,7 @@ Papyrus=Papyrus
|
|||
Dry Shrub=Arbuste sec
|
||||
Jungle Grass=Herbe de la jungle
|
||||
Grass=Herbe
|
||||
Dry Grass=Herbe sèche
|
||||
Savanna Grass=
|
||||
Fern=Fougère
|
||||
Marram Grass=Ammophile
|
||||
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=Bibliothèque
|
||||
Text too long=Texte trop longue
|
||||
"@1"=« @1 »
|
||||
Wooden Sign=Panneau en bois
|
||||
Steel Sign=Panneau en acier
|
||||
Wooden Ladder=Echelle en bois
|
||||
|
@ -174,7 +180,11 @@ Glass=Verre
|
|||
Obsidian Glass=Verre d'obsidienne
|
||||
Brick Block=Bloc de brique
|
||||
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
|
||||
Wooden Pickaxe=Pioche en bois
|
||||
Stone Pickaxe=Pioche en pierre
|
||||
|
@ -203,9 +213,12 @@ Diamond Sword=Epée en diamant
|
|||
Key=Clé
|
||||
Torch=Torche
|
||||
@1 will intersect protection on growth.=@1 chevauchera la zone protégée avec la croissance.
|
||||
Title:=Titre :
|
||||
Contents:=Contenu :
|
||||
Save=Sauvegarder
|
||||
by @1=de @1
|
||||
Page @1 of @2=Page @1 sur @2
|
||||
"@1"=« @1 »
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Dirt with Dry Grass=Terre avec de l'herbe sèche
|
||||
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
|
||||
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
|
||||
Cobblestone=Bongkahan Batu
|
||||
Stone Brick=Tembok Batu
|
||||
|
@ -22,7 +66,7 @@ Obsidian Brick=Tembok Obsidian
|
|||
Obsidian Block=Balok Obsidian
|
||||
Dirt=Tanah
|
||||
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 Snow=Tanah Bersalju
|
||||
Dirt with Rainforest Litter=Tanah Berserasah Hutan Hujan
|
||||
|
@ -36,37 +80,37 @@ Sand=Pasir
|
|||
Desert Sand=Pasir Gurun
|
||||
Silver Sand=Pasir Perak
|
||||
Gravel=Kerikil
|
||||
Clay=Semen
|
||||
Clay=Tanah Liat
|
||||
Snow=Salju
|
||||
Snow Block=Balok Salju
|
||||
Ice=Es
|
||||
Cave Ice=Es Gua
|
||||
Cave Ice=Gua Es
|
||||
Apple Tree=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=Apel
|
||||
Apple Marker=Penanda Apel
|
||||
Jungle Tree=Pohon Hutan Rimba
|
||||
Jungle Wood Planks=Papan Kayu Pohon Rimba
|
||||
Jungle Tree Leaves=Daun Pohon Rimba
|
||||
Jungle Tree Sapling=Bibit Pohon Rimba
|
||||
Emergent Jungle Tree Sapling=Bibit Bertumbuh Pohon Rimba
|
||||
Jungle Tree Sapling=Anak Pohon Rimba
|
||||
Emergent Jungle Tree Sapling=Anak Pohon Rimba Bertumbuh
|
||||
Pine Tree=Pohon Pinus
|
||||
Pine Wood Planks=Papan Kayu Pinus
|
||||
Pine Needles=Daun Pinus
|
||||
Pine Tree Sapling=Bibit Pinus
|
||||
Pine Tree Sapling=Anak Pohon Pinus
|
||||
Acacia Tree=Pohon Akasia
|
||||
Acacia Wood Planks=Papan Kayu Akasia
|
||||
Acacia Tree Leaves=Daun Akasia
|
||||
Acacia Tree Sapling=Bibit Akasia
|
||||
Acacia Tree Sapling=Anak Pohon Akasia
|
||||
Aspen Tree=Pohon Aspen
|
||||
Aspen Wood Planks=Papan Kayu Aspen
|
||||
Aspen Tree Leaves=Daun Aspen
|
||||
Aspen Tree Sapling=Bibit Aspen
|
||||
Aspen Tree Sapling=Anak Pohon Aspen
|
||||
Coal Ore=Bijih Batu Bara
|
||||
Coal Block=Balok Batu Bara
|
||||
Iron Ore=Biji Besi
|
||||
Iron Ore=Bijih Besi
|
||||
Steel Block=Balok Baja
|
||||
Copper Ore=Bijih Tembaga
|
||||
Copper Block=Balok Tembaga
|
||||
|
@ -87,13 +131,13 @@ Jungle Grass=Rumput Rimba
|
|||
Grass=Rumput
|
||||
Savanna Grass=Rumput Sabana
|
||||
Fern=Pakis
|
||||
Marram Grass=Rumput Pantai
|
||||
Marram Grass=Rumput Maram
|
||||
Bush Stem=Batang Semak
|
||||
Bush Leaves=Daun Semak
|
||||
Bush Sapling=Bibit Semak
|
||||
Blueberry Bush Leaves with Berries=Daun Bluberi Berbuah
|
||||
Blueberry Bush Leaves=Daun Bluberi
|
||||
Blueberry Bush Sapling=Bibit Bluberi
|
||||
Bush Sapling=Anak Semak
|
||||
Blueberry Bush Leaves with Berries=Daun Semak Blueberry Berbuah
|
||||
Blueberry Bush Leaves=Daun Semak Blueberry
|
||||
Blueberry Bush Sapling=Anak Semak Blueberry
|
||||
Acacia Bush Stem=Batang Semak Akasia
|
||||
Acacia Bush Leaves=Daun 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=Rak Buku
|
||||
Text too long=Teks terlalu panjang
|
||||
"@1"="@1"
|
||||
Wooden Sign=Penanda Kayu
|
||||
Steel Sign=Penanda Baja
|
||||
Wooden Ladder=Tangga Kayu
|
||||
|
@ -135,16 +180,18 @@ Glass=Kaca
|
|||
Obsidian Glass=Kaca Obsidian
|
||||
Brick Block=Balok Bata
|
||||
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
|
||||
@1 will intersect protection on growth.=@1 akan memotong perlindungan ketika tumbuh.
|
||||
Torch=Obor
|
||||
Wooden Pickaxe=Beliung Kayu
|
||||
Stone Pickaxe=Beliung Batu
|
||||
Bronze Pickaxe=Beliung Perunggu
|
||||
Steel Pickaxe=Beliung Baja
|
||||
Mese Pickaxe=Beliung Mese
|
||||
Diamond Pickaxe=Beliung Berlian
|
||||
Wooden Pickaxe=Gancu Kayu
|
||||
Stone Pickaxe=Gancu Batu
|
||||
Bronze Pickaxe=Gancu Perunggu
|
||||
Steel Pickaxe=Gancu Baja
|
||||
Mese Pickaxe=Gancu Mese
|
||||
Diamond Pickaxe=Gancu Berlian
|
||||
Wooden Shovel=Sekop Kayu
|
||||
Stone Shovel=Sekop Batu
|
||||
Bronze Shovel=Sekop Perunggu
|
||||
|
@ -164,48 +211,10 @@ Steel Sword=Pedang Baja
|
|||
Mese Sword=Pedang Mese
|
||||
Diamond Sword=Pedang Berlian
|
||||
Key=Kunci
|
||||
Furnace is empty=Tungku kosong
|
||||
100% (output full)=100% (keluaran penuh)
|
||||
@1%=@1%
|
||||
Not cookable=Tidak bisa dimasak
|
||||
Empty=Kosong
|
||||
Furnace active=Tungku nyala
|
||||
Furnace inactive=Tungku mati
|
||||
(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
|
||||
Torch=Obor
|
||||
@1 will intersect protection on growth.=@1 akan memotong perlindungan ketika tumbuh.
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Mese Post Light=Lampu Taman Mese
|
||||
|
|
|
@ -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.
|
||||
a locked chest=un baule chiuso a chiave
|
||||
Chest=Baule
|
||||
Stick=Bastone
|
||||
Paper=Carta
|
||||
Title:=
|
||||
Contents:=
|
||||
Save=
|
||||
by @1=
|
||||
Page @1 of @2=
|
||||
"@1" by @2="@1" di @2
|
||||
Book=Libro
|
||||
Book with Text=Libro con testo
|
||||
Skeleton Key=Chiave dello Scheletro
|
||||
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
|
||||
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
|
||||
100% (output full)=100% (uscita piena)
|
||||
@1%=@1%
|
||||
Empty=Vuota
|
||||
Not cookable=Non cucinabile
|
||||
Empty=Vuota
|
||||
Furnace active=Fornace attiva
|
||||
Furnace inactive=Fornace inattiva
|
||||
(Item: @1; Fuel: @2)=(Oggetto: @1; Combustibile: @2)
|
||||
|
@ -62,12 +67,12 @@ Obsidian Block=Blocco d'ossidiana
|
|||
Dirt=Terra
|
||||
Dirt with Grass=Terra con erba
|
||||
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 Rainforest Litter=Terra con detriti della foresta pluviale
|
||||
Dirt with Coniferous Litter=Terra con detriti di conifera
|
||||
Dry Dirt=Terra asciutta
|
||||
Dry Dirt with Dry Grass=Terra asciutta con erba secca
|
||||
Savanna Dirt=
|
||||
Savanna Dirt with Savanna Grass=
|
||||
Permafrost=Permafrost
|
||||
Permafrost with Stones=Permafrost con pietra
|
||||
Permafrost with Moss=Permafrost con muschio
|
||||
|
@ -124,7 +129,7 @@ Papyrus=Papiro
|
|||
Dry Shrub=Arbusto secco
|
||||
Jungle Grass=Erba della giungla
|
||||
Grass=Erba
|
||||
Dry Grass=Erba secca
|
||||
Savanna Grass=
|
||||
Fern=Felce
|
||||
Marram Grass=Ammofila arenaria
|
||||
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=Libreria
|
||||
Text too long=Testo troppo lungo
|
||||
"@1"=
|
||||
Wooden Sign=Cartello di legno
|
||||
Steel Sign=Cartello d'acciaio
|
||||
Wooden Ladder=Scala a pioli di legno
|
||||
|
@ -174,7 +180,11 @@ Glass=Vetro
|
|||
Obsidian Glass=Vetro d'ossidiana
|
||||
Brick Block=Blocco di mattone
|
||||
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
|
||||
Wooden Pickaxe=Piccone di legno
|
||||
Stone Pickaxe=Piccone di pietra
|
||||
|
@ -203,3 +213,12 @@ Diamond Sword=Spada di diamante
|
|||
Key=Chiave
|
||||
Torch=Torcia
|
||||
@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.
|
||||
a locked chest=peti berkunci
|
||||
Chest=Peti
|
||||
Stick=Serpihan Kayu
|
||||
Paper=Kertas
|
||||
Title:=Tajuk:
|
||||
Contents:=Kandungan:
|
||||
Save=Simpan
|
||||
by @1=oleh @1
|
||||
Page @1 of @2=Ms. @1 / @2
|
||||
"@1" by @2="@1" oleh @2
|
||||
Book=Buku
|
||||
Book with Text=Buku Bertulisan
|
||||
Skeleton Key=Kunci Induk
|
||||
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
|
||||
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
|
||||
100% (output full)=100% (keluaran penuh)
|
||||
@1%=@1%
|
||||
Empty=Kosong
|
||||
Not cookable=Tidak boleh dimasak
|
||||
Empty=Kosong
|
||||
Furnace active=Relau aktif
|
||||
Furnace inactive=Relau tidak aktif
|
||||
(Item: @1; Fuel: @2)=(Item: @1; Bahan api: @2)
|
||||
|
@ -62,12 +67,12 @@ Obsidian Block=Bongkah Obsidia
|
|||
Dirt=Tanah
|
||||
Dirt with Grass=Tanah Berumput
|
||||
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 Rainforest Litter=Tanah Bersarap Hutan Hujan
|
||||
Dirt with Coniferous Litter=Tanah Bersarap Hutan Konifer
|
||||
Dry Dirt=Tanah Kering
|
||||
Dry Dirt with Dry Grass=Tanah Kering Berumput Kering
|
||||
Savanna Dirt=
|
||||
Savanna Dirt with Savanna Grass=
|
||||
Permafrost=Ibun Abadi
|
||||
Permafrost with Stones=Ibun Abadi Berbatu
|
||||
Permafrost with Moss=Ibun Abadi Berlumut
|
||||
|
@ -124,7 +129,7 @@ Papyrus=Papirus
|
|||
Dry Shrub=Pokok Renek Kering
|
||||
Jungle Grass=Rumput Hutan
|
||||
Grass=Rumput
|
||||
Dry Grass=Rumput Kering
|
||||
Savanna Grass=
|
||||
Fern=Paku Pakis
|
||||
Marram Grass=Rumput Maram
|
||||
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=Rak Buku
|
||||
Text too long=Tulisan terlalu panjang
|
||||
"@1"="@1"
|
||||
Wooden Sign=Papan Tanda Kayu
|
||||
Steel Sign=Papan Tanda Keluli
|
||||
Wooden Ladder=Tangga Panjat Kayu
|
||||
|
@ -174,7 +180,11 @@ Glass=Kaca
|
|||
Obsidian Glass=Kaca Obsidia
|
||||
Brick Block=Bongkah Bata
|
||||
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
|
||||
Wooden Pickaxe=Beliung Kayu
|
||||
Stone Pickaxe=Beliung Batu
|
||||
|
@ -203,9 +213,12 @@ Diamond Sword=Pedang Intan
|
|||
Key=Kunci
|
||||
Torch=Obor
|
||||
@1 will intersect protection on growth.=@1 akan masuk kawasan perlindungan lain apabila ia tumbuh.
|
||||
Title:=Tajuk:
|
||||
Contents:=Kandungan:
|
||||
Save=Simpan
|
||||
by @1=oleh @1
|
||||
Page @1 of @2=Ms. @1 / @2
|
||||
"@1"="@1"
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Dirt with Dry Grass=Tanah Berumput Kering
|
||||
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.=Вы не владелец этого сундука.
|
||||
a locked chest=заблокированный сундук
|
||||
Chest=Сундук
|
||||
Stick=Палка
|
||||
Paper=Бумага
|
||||
Title:=Заголовок:
|
||||
Contents:=Содержимое:
|
||||
Save=Сохранить
|
||||
by @1=@1
|
||||
Page @1 of @2=Страница @1 из @2
|
||||
"@1" by @2="@1" @2
|
||||
Book=Книга
|
||||
Book with Text=Книга с Текстом
|
||||
Skeleton Key=Ключ Скелета
|
||||
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=Черника
|
||||
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=Печь пуста
|
||||
100% (output full)=100% (полное приготовление)
|
||||
@1%=@1%
|
||||
Empty=Пустое
|
||||
Not cookable=Не может быть приготовлено
|
||||
Empty=Пустое
|
||||
Furnace active=Печь зажжена
|
||||
Furnace inactive=Печь не зажжена
|
||||
(Item: @1; Fuel: @2)=(Предмет: @1; Топливо: @2)
|
||||
|
@ -62,12 +67,12 @@ Obsidian Block=Обсидиановый Блок
|
|||
Dirt=Земля
|
||||
Dirt with Grass=Земля с Травой
|
||||
Dirt with Grass and Footsteps=Земля с Травой и Следами
|
||||
Dirt with Dry Grass=Земля с Сухой Травой
|
||||
Dirt with Savanna Grass=
|
||||
Dirt with Snow=Земля Со Снегом
|
||||
Dirt with Rainforest Litter=Земля с Тропической Подстилкой
|
||||
Dirt with Coniferous Litter=Земля с Сосновой Подстилкой
|
||||
Dry Dirt=Сухая Земля
|
||||
Dry Dirt with Dry Grass=Сухая Земля с Сухой Травой
|
||||
Savanna Dirt=
|
||||
Savanna Dirt with Savanna Grass=
|
||||
Permafrost=Замороженная Почва
|
||||
Permafrost with Stones=Замороженная Почва с Камнями
|
||||
Permafrost with Moss=Замороженная Почва с Мхом
|
||||
|
@ -124,7 +129,7 @@ Papyrus=Папирус
|
|||
Dry Shrub=Сухой Куст
|
||||
Jungle Grass=Тропическая Трава
|
||||
Grass=Трава
|
||||
Dry Grass=Сухая Трава
|
||||
Savanna Grass=
|
||||
Fern=Папоротник
|
||||
Marram Grass=Песколюб
|
||||
Bush Stem=Стебли Куста
|
||||
|
@ -156,6 +161,7 @@ Empty Bookshelf=Пустая Книжная Полка
|
|||
Bookshelf (@1 written, @2 empty books)=Книжная Полка (@1 написано, @2 чистые книги)
|
||||
Bookshelf=Книжная Полка
|
||||
Text too long=Текст слишком длинный
|
||||
"@1"="@1"
|
||||
Wooden Sign=Деревянная Табличка
|
||||
Steel Sign=Стальная Табличка
|
||||
Wooden Ladder=Деревянная Лестница
|
||||
|
@ -174,7 +180,11 @@ Glass=Стекло
|
|||
Obsidian Glass=Обсидиановое Стекло
|
||||
Brick Block=Кирпичный Блок
|
||||
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=Облако
|
||||
Wooden Pickaxe=Деревянная Кирка
|
||||
Stone Pickaxe=Каменная Кирка
|
||||
|
@ -203,9 +213,12 @@ Diamond Sword=Алмазный Меч
|
|||
Key=Ключ
|
||||
Torch=Факел
|
||||
@1 will intersect protection on growth.=@1 пересечёт защиту по росту.
|
||||
Title:=Заголовок:
|
||||
Contents:=Содержимое:
|
||||
Save=Сохранить
|
||||
by @1=@1
|
||||
Page @1 of @2=Страница @1 из @2
|
||||
"@1"="@1"
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Dirt with Dry Grass=Земля с Сухой Травой
|
||||
Dry Dirt=Сухая Земля
|
||||
Dry Dirt with Dry Grass=Сухая Земля с Сухой Травой
|
||||
Dry Grass=Сухая Трава
|
||||
Mese Post Light=Столб с Месе Фонарем
|
||||
|
|
|
@ -1,39 +1,45 @@
|
|||
# textdomain: default
|
||||
## textdomain: default
|
||||
Locked Chest=Låst kista
|
||||
Locked Chest (owned by @1)=Låst kista (Ägd av @1)
|
||||
You do not own this chest.=Du äger inte denna kistan.
|
||||
a locked chest=en låst kista
|
||||
Chest=Kista
|
||||
Stick=Pinne
|
||||
Paper=Papper
|
||||
Title:=Titel:
|
||||
Contents:=Innehåll:
|
||||
Save=Spara
|
||||
by @1=av @1
|
||||
Page @1 of @2=Sida @1 av @2
|
||||
"@1" by @2="@1" av @2
|
||||
Book=Bok
|
||||
Book with Text=Bok med text
|
||||
Skeleton Key=Skelett Nyckel
|
||||
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
|
||||
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
|
||||
100% (output full)=100% (utgången full)
|
||||
@1%=@1%
|
||||
Empty=Tom
|
||||
Not cookable=Inte kokbar
|
||||
Empty=Tom
|
||||
Furnace active=Ugn aktiv
|
||||
Furnace inactive=Ugn inaktiv
|
||||
(Item: @1; Fuel: @2)=(Sak: @1; Bränsle: @2)
|
||||
|
@ -62,12 +68,12 @@ Obsidian Block=Obsidian block
|
|||
Dirt=Jord
|
||||
Dirt with Grass=Jord med gräs
|
||||
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 Rainforest Litter=Jord med regnskogströ
|
||||
Dirt with Coniferous Litter=Jord med Barrträd
|
||||
Dry Dirt=Torr jord
|
||||
Dry Dirt with Dry Grass=Torr jord med torrt gräs
|
||||
Savanna Dirt=
|
||||
Savanna Dirt with Savanna Grass=
|
||||
Permafrost=Permafrost
|
||||
Permafrost with Stones=Permafrost med sten
|
||||
Permafrost with Moss=Permafrost med mossa
|
||||
|
@ -124,7 +130,7 @@ Papyrus=Papyrus
|
|||
Dry Shrub=Torr Buske
|
||||
Jungle Grass=Djungel Gräs
|
||||
Grass=Gräs
|
||||
Dry Grass=Torrt Gräs
|
||||
Savanna Grass=
|
||||
Fern=Ormbunke
|
||||
Marram Grass=Marram Gräs
|
||||
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=Bokhylla
|
||||
Text too long=Text för lång
|
||||
"@1"="@1"
|
||||
Wooden Sign=Trä Skylt
|
||||
Steel Sign=Stål Skylt
|
||||
Wooden Ladder=Trä Stege
|
||||
|
@ -174,7 +181,11 @@ Glass=Glas
|
|||
Obsidian Glass=Obsidian Glas
|
||||
Brick Block=Tegelstens Block
|
||||
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
|
||||
Wooden Pickaxe=Trä Hacka
|
||||
Stone Pickaxe=Sten Hacka
|
||||
|
@ -203,9 +214,12 @@ Diamond Sword=Diamant Svärd
|
|||
Key=Nyckel
|
||||
Torch=Fakla
|
||||
@1 will intersect protection on growth.=@1 kommer korsa skyddet mot tillväxt.
|
||||
Title:=Titel:
|
||||
Contents:=Innehåll:
|
||||
Save=Spara
|
||||
by @1=av @1
|
||||
Page @1 of @2=Sida @1 av @2
|
||||
"@1"="@1"
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Dirt with Dry Grass=Jord med torrt gräs
|
||||
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íš.
|
||||
a locked chest=zamknutá truhlica
|
||||
Chest=Truhlica
|
||||
Stick=Palica
|
||||
Paper=Papier
|
||||
Title:=Názov:
|
||||
Contents:=Obsah:
|
||||
Save=Uložiť
|
||||
by @1=od @1
|
||||
Page @1 of @2=Strana @1 z @2
|
||||
"@1" by @2=„@1“ z @2
|
||||
Book=Kniha
|
||||
Book with Text=Kniha s textom
|
||||
Skeleton Key=Základný kľuč
|
||||
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
|
||||
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
|
||||
100% (output full)=100% (Výstup je plný)
|
||||
@1%=@1%
|
||||
Empty=Prázdne
|
||||
Not cookable=Nie je variteľné
|
||||
Empty=Prázdne
|
||||
Furnace active=Pec je aktívna
|
||||
Furnace inactive=Pec je neaktívna
|
||||
(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=Knižnica
|
||||
Text too long=Text je príliš dlhý
|
||||
"@1"=„@1“
|
||||
Wooden Sign=Drevená tabuľka
|
||||
Steel Sign=Oceľová tabuľka
|
||||
Wooden Ladder=Drevený rebrík
|
||||
|
@ -174,7 +180,11 @@ Glass=Sklo
|
|||
Obsidian Glass=Obsidiánové sklo
|
||||
Brick Block=Blok z tehál
|
||||
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
|
||||
Wooden Pickaxe=Drevený krompáč
|
||||
Stone Pickaxe=Kamenný krompáč
|
||||
|
@ -203,9 +213,8 @@ Diamond Sword=Diamantový meč
|
|||
Key=Kľúč
|
||||
Torch=Fakľa
|
||||
@1 will intersect protection on growth.=@1 prekročí pri raste chránenú zónu.
|
||||
Title:=Názov:
|
||||
Contents:=Obsah:
|
||||
Save=Uložiť
|
||||
by @1=od @1
|
||||
Page @1 of @2=Strana @1 z @2
|
||||
"@1"=„@1“
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Mese Post Light=Mese stĺpová lampa
|
||||
|
|
|
@ -4,36 +4,41 @@ Locked Chest (owned by @1)=已上锁的箱子(属于@1所有)
|
|||
You do not own this chest.=这个箱子不属于你所有。
|
||||
a locked chest=一个已上锁的箱子
|
||||
Chest=箱子
|
||||
Stick=棒
|
||||
Paper=纸
|
||||
Title:=标题:
|
||||
Contents:=内容:
|
||||
Save=保存
|
||||
by @1=由@1
|
||||
Page @1 of @2=第@1页,共@2页。
|
||||
"@1" by @2="@1" by @2
|
||||
Book=书
|
||||
Book with Text=带文字的书
|
||||
Skeleton Key=万能钥匙
|
||||
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=蓝莓
|
||||
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=熔炉是空的
|
||||
100% (output full)=100%(输出已满)
|
||||
@1%=@1%
|
||||
Empty=空
|
||||
Not cookable=不可烹饪
|
||||
Empty=空
|
||||
Furnace active=熔炉正在运转
|
||||
Furnace inactive=熔炉未使用
|
||||
(Item: @1; Fuel: @2)=(项目:@1;燃料:@2)
|
||||
|
@ -59,18 +64,15 @@ Silver Sandstone Block=银砂岩方块
|
|||
Obsidian=黑曜石
|
||||
Obsidian Brick=黑曜石砖
|
||||
Obsidian Block=黑曜石方块
|
||||
|
||||
Dirt=土方块
|
||||
Dirt with Grass=草方块
|
||||
Dirt with Grass and Footsteps=草方块及脚印
|
||||
Dirt with Dry Grass=干草土方块
|
||||
Dirt with Savanna Grass=草原草方块
|
||||
Dirt with Snow=雪土方块
|
||||
Dirt with Rainforest Litter=雨林腐土
|
||||
Dirt with Coniferous Litter=针叶林腐土
|
||||
Savanna Dirt=草原土
|
||||
Dirt with Savanna Grass=草原草方块
|
||||
Savanna Dirt with Savanna Grass=草原草方块(草原土)
|
||||
|
||||
Permafrost=多年冻土
|
||||
Permafrost with Stones=带石头的多年冻土
|
||||
Permafrost with Moss=生苔的多年冻土
|
||||
|
@ -127,7 +129,7 @@ Papyrus=莎草纸
|
|||
Dry Shrub=干灌木
|
||||
Jungle Grass=丛林草
|
||||
Grass=草
|
||||
Dry Grass=干草
|
||||
Savanna Grass=
|
||||
Fern=蕨
|
||||
Marram Grass=滨草
|
||||
Bush Stem=灌木
|
||||
|
@ -159,6 +161,7 @@ Empty Bookshelf=空书架
|
|||
Bookshelf (@1 written, @2 empty books)=书架(@1本有字的书,@2本空书)
|
||||
Bookshelf=书架
|
||||
Text too long=文字太长
|
||||
"@1"="@1"
|
||||
Wooden Sign=木牌
|
||||
Steel Sign=铁牌
|
||||
Wooden Ladder=木梯子
|
||||
|
@ -177,13 +180,11 @@ Glass=玻璃
|
|||
Obsidian Glass=黑曜石玻璃
|
||||
Brick Block=砖方块
|
||||
Mese Lamp=黄石灯
|
||||
|
||||
Apple Wood Mese Post Light=苹果木黄石灯柱
|
||||
Acacia Wood Mese Post Light=金合欢木黄石灯柱
|
||||
Aspen Wood Mese Post Light=白杨木黄石灯柱
|
||||
Jungle Wood Mese Post Light=丛林木黄石灯柱
|
||||
Pine Wood Mese Post Light=松木黄石灯柱
|
||||
|
||||
Aspen Wood Mese Post Light=白杨木黄石灯柱
|
||||
Cloud=云
|
||||
Wooden Pickaxe=木镐
|
||||
Stone Pickaxe=石镐
|
||||
|
@ -212,9 +213,9 @@ Diamond Sword=钻石剑
|
|||
Key=钥匙
|
||||
Torch=火把
|
||||
@1 will intersect protection on growth.=@1将与增长的保护相交。
|
||||
Title:=标题:
|
||||
Contents:=内容:
|
||||
Save=保存
|
||||
by @1=由@1
|
||||
Page @1 of @2=第@1页,共@2页。
|
||||
"@1"="@1"
|
||||
|
||||
|
||||
##### not used anymore #####
|
||||
|
||||
Dirt with Dry Grass=干草土方块
|
||||
Dry Grass=干草
|
||||
|
|