forked from mtcontrib/farming
update translations, description changes
This commit is contained in:
parent
e6aa8f9997
commit
e3f705a804
@ -1,4 +1,6 @@
|
|||||||
|
|
||||||
|
local S = farming.intllib
|
||||||
|
|
||||||
--= Helpers
|
--= Helpers
|
||||||
|
|
||||||
local eth = minetest.get_modpath("ethereal")
|
local eth = minetest.get_modpath("ethereal")
|
||||||
@ -29,7 +31,7 @@ if eth then
|
|||||||
alias("farming_plus:banana", "ethereal:banana")
|
alias("farming_plus:banana", "ethereal:banana")
|
||||||
else
|
else
|
||||||
minetest.register_node(":ethereal:banana", {
|
minetest.register_node(":ethereal:banana", {
|
||||||
description = "Banana",
|
description = S("Banana"),
|
||||||
drawtype = "torchlike",
|
drawtype = "torchlike",
|
||||||
tiles = {"banana_single.png"},
|
tiles = {"banana_single.png"},
|
||||||
inventory_image = "banana_single.png",
|
inventory_image = "banana_single.png",
|
||||||
@ -47,7 +49,7 @@ else
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node(":ethereal:bananaleaves", {
|
minetest.register_node(":ethereal:bananaleaves", {
|
||||||
description = "Banana Leaves",
|
description = S("Banana Leaves"),
|
||||||
tiles = {"banana_leaf.png"},
|
tiles = {"banana_leaf.png"},
|
||||||
inventory_image = "banana_leaf.png",
|
inventory_image = "banana_leaf.png",
|
||||||
wield_image = "banana_leaf.png",
|
wield_image = "banana_leaf.png",
|
||||||
@ -87,7 +89,7 @@ if eth then
|
|||||||
alias("farming_plus:orange_seed", "ethereal:orange_tree_sapling")
|
alias("farming_plus:orange_seed", "ethereal:orange_tree_sapling")
|
||||||
else
|
else
|
||||||
minetest.register_node(":ethereal:orange", {
|
minetest.register_node(":ethereal:orange", {
|
||||||
description = "Orange",
|
description = S("Orange"),
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
tiles = {"farming_orange.png"},
|
tiles = {"farming_orange.png"},
|
||||||
inventory_image = "farming_orange.png",
|
inventory_image = "farming_orange.png",
|
||||||
@ -145,7 +147,7 @@ if eth then
|
|||||||
alias("farming_plus:strawberry", "ethereal:strawberry_7")
|
alias("farming_plus:strawberry", "ethereal:strawberry_7")
|
||||||
else
|
else
|
||||||
minetest.register_craftitem(":ethereal:strawberry", {
|
minetest.register_craftitem(":ethereal:strawberry", {
|
||||||
description = "Strawberry",
|
description = S("Strawberry"),
|
||||||
inventory_image = "strawberry.png",
|
inventory_image = "strawberry.png",
|
||||||
wield_image = "strawberry.png",
|
wield_image = "strawberry.png",
|
||||||
groups = {food_strawberry = 1, flammable = 2},
|
groups = {food_strawberry = 1, flammable = 2},
|
||||||
|
@ -6,7 +6,7 @@ local S = farming.intllib
|
|||||||
-- Rye
|
-- Rye
|
||||||
|
|
||||||
farming.register_plant("farming:rye", {
|
farming.register_plant("farming:rye", {
|
||||||
description = "Rye seed",
|
description = S("Rye seed"),
|
||||||
paramtype2 = "meshoptions",
|
paramtype2 = "meshoptions",
|
||||||
inventory_image = "farming_rye_seed.png",
|
inventory_image = "farming_rye_seed.png",
|
||||||
steps = 8,
|
steps = 8,
|
||||||
@ -14,6 +14,7 @@ farming.register_plant("farming:rye", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.override_item("farming:rye", {
|
minetest.override_item("farming:rye", {
|
||||||
|
description = S("Rye"),
|
||||||
groups = {food_rye = 1, flammable = 4}
|
groups = {food_rye = 1, flammable = 4}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -30,7 +31,7 @@ minetest.register_craft({
|
|||||||
-- Oats
|
-- Oats
|
||||||
|
|
||||||
farming.register_plant("farming:oat", {
|
farming.register_plant("farming:oat", {
|
||||||
description = "Oat seed",
|
description = S("Oat seed"),
|
||||||
paramtype2 = "meshoptions",
|
paramtype2 = "meshoptions",
|
||||||
inventory_image = "farming_oat_seed.png",
|
inventory_image = "farming_oat_seed.png",
|
||||||
steps = 8,
|
steps = 8,
|
||||||
@ -38,6 +39,7 @@ farming.register_plant("farming:oat", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.override_item("farming:oat", {
|
minetest.override_item("farming:oat", {
|
||||||
|
description = S("Oats"),
|
||||||
groups = {food_oats = 1, flammable = 4}
|
groups = {food_oats = 1, flammable = 4}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -54,7 +56,7 @@ minetest.register_craft({
|
|||||||
-- Rice
|
-- Rice
|
||||||
|
|
||||||
farming.register_plant("farming:rice", {
|
farming.register_plant("farming:rice", {
|
||||||
description = "Rice grains",
|
description = S("Rice grains"),
|
||||||
paramtype2 = "meshoptions",
|
paramtype2 = "meshoptions",
|
||||||
inventory_image = "farming_rice_seed.png",
|
inventory_image = "farming_rice_seed.png",
|
||||||
steps = 8,
|
steps = 8,
|
||||||
@ -62,6 +64,7 @@ farming.register_plant("farming:rice", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.override_item("farming:rice", {
|
minetest.override_item("farming:rice", {
|
||||||
|
description = S("Rice"),
|
||||||
groups = {food_rice = 1, flammable = 4}
|
groups = {food_rice = 1, flammable = 4}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
2
hoes.lua
2
hoes.lua
@ -321,7 +321,7 @@ end
|
|||||||
|
|
||||||
-- hoe bomb item
|
-- hoe bomb item
|
||||||
minetest.register_craftitem("farming:hoe_bomb", {
|
minetest.register_craftitem("farming:hoe_bomb", {
|
||||||
description = S("Hoe Bomb (use or throw on grassy areas to hoe land"),
|
description = S("Hoe Bomb (use or throw on grassy areas to hoe land)"),
|
||||||
inventory_image = "farming_hoe_bomb.png",
|
inventory_image = "farming_hoe_bomb.png",
|
||||||
groups = {flammable = 2, not_in_creative_inventory = 1},
|
groups = {flammable = 2, not_in_creative_inventory = 1},
|
||||||
on_use = function(itemstack, user, pointed_thing)
|
on_use = function(itemstack, user, pointed_thing)
|
||||||
|
2
init.lua
2
init.lua
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
farming = {
|
farming = {
|
||||||
mod = "redo",
|
mod = "redo",
|
||||||
version = "20200420",
|
version = "20200426",
|
||||||
path = minetest.get_modpath("farming"),
|
path = minetest.get_modpath("farming"),
|
||||||
select = {
|
select = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
262
locale/de.po
262
locale/de.po
@ -1,262 +0,0 @@
|
|||||||
# German Translation for farming mod.
|
|
||||||
# Copyright (C) 2017
|
|
||||||
# This file is distributed under the same license as the farming package.
|
|
||||||
# Xanthin.
|
|
||||||
#
|
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: 1.27\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2016-03-31 HO:MI+ZONE\n"
|
|
||||||
"PO-Revision-Date: 2016-03-31 HO:MI+ZONE\n"
|
|
||||||
"Last-Translator: Xanthin\n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: German \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
|
|
||||||
#: barley.lua
|
|
||||||
msgid "Barley Seed"
|
|
||||||
msgstr "Gerstenkörner"
|
|
||||||
|
|
||||||
#: barley.lua
|
|
||||||
msgid "Barley"
|
|
||||||
msgstr "Gerste"
|
|
||||||
|
|
||||||
#: beanpole.lua
|
|
||||||
msgid "Green Beans"
|
|
||||||
msgstr "Grüne Bohnen"
|
|
||||||
|
|
||||||
#: beanpole.lua
|
|
||||||
msgid "Bean Pole (place on soil before planting beans)"
|
|
||||||
msgstr "Bohnenstange (vor dem Pflanzen der Bohnen auf den\nAckerboden stellen)"
|
|
||||||
|
|
||||||
#: blueberry.lua
|
|
||||||
msgid "Blueberries"
|
|
||||||
msgstr "Blaubeeren"
|
|
||||||
|
|
||||||
#: blueberry.lua
|
|
||||||
msgid "Blueberry Muffin"
|
|
||||||
msgstr "Blaubeermuffin"
|
|
||||||
|
|
||||||
#: carrot.lua
|
|
||||||
msgid "Carrot"
|
|
||||||
msgstr "Möhre"
|
|
||||||
|
|
||||||
#: carrot.lua
|
|
||||||
msgid "Golden Carrot"
|
|
||||||
msgstr "Goldene Möhre"
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Cocoa Beans"
|
|
||||||
msgstr "Kakaobohne"
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Cookie"
|
|
||||||
msgstr "Keks"
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Bar of Dark Chocolate"
|
|
||||||
msgstr "Tafel Zartbitterschokolade"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Coffee Beans"
|
|
||||||
msgstr "Kaffeebohnen"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Drinking Cup (empty)"
|
|
||||||
msgstr "Tasse (leer)"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Cold Cup of Coffee"
|
|
||||||
msgstr "Kalte Tasse Kaffee"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Hot Cup of Coffee"
|
|
||||||
msgstr "Heiße Tasse Kaffee"
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Corn"
|
|
||||||
msgstr "Mais"
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Corn on the Cob"
|
|
||||||
msgstr "Maiskolben"
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Bottle of Ethanol"
|
|
||||||
msgstr "Flasche Ethanol"
|
|
||||||
|
|
||||||
#: cotton.lua
|
|
||||||
msgid "Cotton Seed"
|
|
||||||
msgstr "Baumwollsamen"
|
|
||||||
|
|
||||||
#: cotton.lua
|
|
||||||
msgid "Cotton"
|
|
||||||
msgstr "Baumwolle"
|
|
||||||
|
|
||||||
#: cucumber.lua
|
|
||||||
msgid "Cucumber"
|
|
||||||
msgstr "Gurke"
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Donut"
|
|
||||||
msgstr "Donut"
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Chocolate Donut"
|
|
||||||
msgstr "Schokodonut"
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Apple Donut"
|
|
||||||
msgstr "Apfeldonut"
|
|
||||||
|
|
||||||
#: grapes.lua
|
|
||||||
msgid "Grapes"
|
|
||||||
msgstr "Weintrauben"
|
|
||||||
|
|
||||||
#: grapes.lua
|
|
||||||
msgid "Trellis (place on soil before planting grapes)"
|
|
||||||
msgstr "Spalier (vor dem Pflanzen der Weintrauben auf den\nAckerboden stellen)"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Seed"
|
|
||||||
msgstr "Hanfsamen"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Leaf"
|
|
||||||
msgstr "Hanfblatt"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Bottle of Hemp Oil"
|
|
||||||
msgstr "Flasche mit Hanföl"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Fibre"
|
|
||||||
msgstr "Hanffaser"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Rope"
|
|
||||||
msgstr "Hanfseil"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Hoe"
|
|
||||||
msgstr "Hacke"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Wooden Hoe"
|
|
||||||
msgstr "Holzhacke"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Stone Hoe"
|
|
||||||
msgstr "Steinhacke"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Steel Hoe"
|
|
||||||
msgstr "Stahlhacke"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Bronze Hoe"
|
|
||||||
msgstr "Bronzehacke"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Mese Hoe"
|
|
||||||
msgstr "Mesehacke"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Diamond Hoe"
|
|
||||||
msgstr "Diamanthacke"
|
|
||||||
|
|
||||||
#: init.lua
|
|
||||||
msgid "Seed"
|
|
||||||
msgstr "Saatgut"
|
|
||||||
|
|
||||||
#: melon.lua
|
|
||||||
msgid "Melon Slice"
|
|
||||||
msgstr "Melonenscheibe"
|
|
||||||
|
|
||||||
#: melon.lua
|
|
||||||
msgid "Melon"
|
|
||||||
msgstr "Melone"
|
|
||||||
|
|
||||||
#: potato.lua
|
|
||||||
msgid "Potato"
|
|
||||||
msgstr "Kartoffel"
|
|
||||||
|
|
||||||
#: potato.lua
|
|
||||||
msgid "Baked Potato"
|
|
||||||
msgstr "Ofenkartoffel"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin"
|
|
||||||
msgstr "Kürbis"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Slice"
|
|
||||||
msgstr "Kürbisscheibe"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Jack 'O Lantern (punch to turn on and off)"
|
|
||||||
msgstr "Kürbislaterne (Punch zum Ein- und Ausschalten)"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Bread"
|
|
||||||
msgstr "Kürbisbrot"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Dough"
|
|
||||||
msgstr "Kürbisteig"
|
|
||||||
|
|
||||||
#: raspberry.lua
|
|
||||||
msgid "Raspberries"
|
|
||||||
msgstr "Himbeeren"
|
|
||||||
|
|
||||||
#: raspberry.lua
|
|
||||||
msgid "Raspberry Smoothie"
|
|
||||||
msgstr "Himbeersmoothie"
|
|
||||||
|
|
||||||
#: rhubarb.lua
|
|
||||||
msgid "Rhubarb"
|
|
||||||
msgstr "Rhabarber"
|
|
||||||
|
|
||||||
#: rhubarb.lua
|
|
||||||
msgid "Rhubarb Pie"
|
|
||||||
msgstr "Rhabarberkuchen"
|
|
||||||
|
|
||||||
#: soil.lua
|
|
||||||
msgid "Soil"
|
|
||||||
msgstr "Ackerboden"
|
|
||||||
|
|
||||||
#: soil.lua
|
|
||||||
msgid "Wet Soil"
|
|
||||||
msgstr "Bewässerter Ackerboden"
|
|
||||||
|
|
||||||
#: sugar.lua
|
|
||||||
msgid "Sugar"
|
|
||||||
msgstr "Zucker"
|
|
||||||
|
|
||||||
#: tomato.lua
|
|
||||||
msgid "Tomato"
|
|
||||||
msgstr "Tomate"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Wheat Seed"
|
|
||||||
msgstr "Weizenkörner"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Wheat"
|
|
||||||
msgstr "Weizen"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Straw"
|
|
||||||
msgstr "Stroh"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Flour"
|
|
||||||
msgstr "Mehl"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Bread"
|
|
||||||
msgstr "Brot"
|
|
195
locale/de.txt
Normal file
195
locale/de.txt
Normal file
@ -0,0 +1,195 @@
|
|||||||
|
# German translation of the farming mod by TenPlus1
|
||||||
|
# textdomain: farming
|
||||||
|
# author: Xanthin
|
||||||
|
# author: TheDarkTiger
|
||||||
|
# last update: 2020/Apr/26
|
||||||
|
|
||||||
|
###### folder . ######
|
||||||
|
|
||||||
|
### init.lua ###
|
||||||
|
Seed=Saatgut
|
||||||
|
|
||||||
|
### compatibility.lua ###
|
||||||
|
Banana=
|
||||||
|
Banana Leaves=
|
||||||
|
Orange=
|
||||||
|
Strawberry=
|
||||||
|
|
||||||
|
### food.lua ###
|
||||||
|
Sugar=Zucker
|
||||||
|
Salt=
|
||||||
|
Rose Water=
|
||||||
|
Turkish Delight=
|
||||||
|
Garlic Bread=
|
||||||
|
Donut=Donut
|
||||||
|
Chocolate Donut=Schokodonut
|
||||||
|
Apple Donut=Apfeldonut
|
||||||
|
Porridge=
|
||||||
|
Jaffa Cake=
|
||||||
|
|
||||||
|
### hoes.lua ###
|
||||||
|
Hoe=Hacke
|
||||||
|
Wooden Hoe=Holzhacke
|
||||||
|
Stone Hoe=Steinhacke
|
||||||
|
Steel Hoe=Stahlhacke
|
||||||
|
Bronze Hoe=Bronzehacke
|
||||||
|
Mese Hoe=Mesehacke
|
||||||
|
Diamond Hoe=Diamanthacke
|
||||||
|
# Surcharge du mod [Toolranks] à faire #
|
||||||
|
Hoe Bomb (use or throw on grassy areas to hoe land)=
|
||||||
|
Mithril Scythe (Right-click to harvest and replant crops)=
|
||||||
|
# Surcharge du mod [Toolranks] à faire #
|
||||||
|
|
||||||
|
### soil.lua ###
|
||||||
|
Soil=Ackerboden
|
||||||
|
Wet Soil=Bewässerter Ackerboden
|
||||||
|
|
||||||
|
### utensils.lua ###
|
||||||
|
Wooden Bowl=
|
||||||
|
Saucepan=
|
||||||
|
Cooking Pot=
|
||||||
|
Baking Tray=
|
||||||
|
Skillet=
|
||||||
|
Mortar and Pestle=
|
||||||
|
Cutting Board=
|
||||||
|
Juicer=
|
||||||
|
Glass Mixing Bowl=
|
||||||
|
|
||||||
|
|
||||||
|
###### folder ./crops ######
|
||||||
|
|
||||||
|
### barley.lua ###
|
||||||
|
Barley Seed=Gerstenkörner
|
||||||
|
Barley=Gerste
|
||||||
|
|
||||||
|
### beans.lua ###
|
||||||
|
Green Beans=Grüne Bohnen
|
||||||
|
Bean Pole (place on soil before planting beans)=Bohnenstange (vor dem Pflanzen der Bohnen auf den\nAckerboden stellen)
|
||||||
|
|
||||||
|
### beetroot.lua ###
|
||||||
|
Beetroot=
|
||||||
|
Beetroot Soup=
|
||||||
|
|
||||||
|
### blueberry.lua ###
|
||||||
|
Blueberries=Blaubeeren
|
||||||
|
Blueberry Muffin=Blaubeermuffin
|
||||||
|
Blueberry Pie=
|
||||||
|
|
||||||
|
### carrot.lua ##
|
||||||
|
Carrot=Möhre
|
||||||
|
Carrot Juice=
|
||||||
|
Golden Carrot=Goldene Möhre
|
||||||
|
|
||||||
|
### chili.lua ###
|
||||||
|
Chili Pepper=
|
||||||
|
Bowl of Chili=
|
||||||
|
|
||||||
|
### cocoa.lua ###
|
||||||
|
Cocoa Beans=Kakaobohne
|
||||||
|
Cookie=Keks
|
||||||
|
Bar of Dark Chocolate=Tafel Zartbitterschokolade
|
||||||
|
Chocolate Block=
|
||||||
|
|
||||||
|
### coffee.lua ###
|
||||||
|
Coffee Beans=Kaffeebohnen
|
||||||
|
Cup of Coffee=Tasse Kaffee
|
||||||
|
|
||||||
|
### corn.lua ###
|
||||||
|
Corn=Mais
|
||||||
|
Corn on the Cob=Maiskolben
|
||||||
|
Cornstarch=
|
||||||
|
Bottle of Ethanol=Flasche Ethanol
|
||||||
|
|
||||||
|
### cotton.lua ###
|
||||||
|
Cotton Seed=Baumwollsamen
|
||||||
|
Cotton=Baumwolle
|
||||||
|
String=
|
||||||
|
|
||||||
|
### cucumber.lua ###
|
||||||
|
Cucumber=Gurke
|
||||||
|
|
||||||
|
### garlic.lua ###
|
||||||
|
Garlic clove=
|
||||||
|
Garlic=
|
||||||
|
Garlic Braid=
|
||||||
|
|
||||||
|
### grapes.lua ###
|
||||||
|
Grapes=Weintrauben
|
||||||
|
Trellis (place on soil before planting grapes)=Spalier (vor dem Pflanzen der Weintrauben auf den\nAckerboden stellen)
|
||||||
|
|
||||||
|
### hemp.lua ###
|
||||||
|
Hemp Seed=Hanfsamen
|
||||||
|
Hemp Leaf=Hanfblatt
|
||||||
|
Bottle of Hemp Oil=Flasche mit Hanföl
|
||||||
|
Hemp Fibre=Hanffaser
|
||||||
|
Hemp Block=
|
||||||
|
Hemp Rope=Hanfseil
|
||||||
|
|
||||||
|
### melon.lua ###
|
||||||
|
Melon Slice=Melonenscheibe
|
||||||
|
Melon=Melone
|
||||||
|
|
||||||
|
### onion.lua ###
|
||||||
|
Onion=
|
||||||
|
|
||||||
|
### peas.lua ###
|
||||||
|
Pea Pod=
|
||||||
|
Peas=
|
||||||
|
Pea Soup=
|
||||||
|
|
||||||
|
### pepper.lua ###
|
||||||
|
Peppercorn=
|
||||||
|
Pepper=
|
||||||
|
Ground Pepper=
|
||||||
|
|
||||||
|
### pinapple.lua ###
|
||||||
|
Pineapple Top=
|
||||||
|
Pineapple=
|
||||||
|
Pineapple Ring=
|
||||||
|
Pineapple Juice=
|
||||||
|
|
||||||
|
### potato.lua ###
|
||||||
|
Potato=Kartoffel
|
||||||
|
Baked Potato=Ofenkartoffel
|
||||||
|
Cucumber and Potato Salad=
|
||||||
|
|
||||||
|
### pumpkin.lua ###
|
||||||
|
Pumpkin Slice=Kürbisscheibe
|
||||||
|
Jack 'O Lantern (punch to turn on and off)=Kürbislaterne (Punch zum Ein- und Ausschalten)
|
||||||
|
Scarecrow Bottom=
|
||||||
|
Pumpkin Bread=Kürbisbrot
|
||||||
|
Pumpkin Dough=Kürbisteig
|
||||||
|
Pumpkin=Kürbis
|
||||||
|
|
||||||
|
### raspberry.lua ###
|
||||||
|
Raspberries=Himbeeren
|
||||||
|
Raspberry Smoothie=Himbeersmoothie
|
||||||
|
|
||||||
|
### rhubarb.lua ###
|
||||||
|
Rhubarb=Rhabarber
|
||||||
|
Rhubarb Pie=Rhabarberkuchen
|
||||||
|
|
||||||
|
### ryeoatrice.lua ###
|
||||||
|
Rye=
|
||||||
|
Rye seed=
|
||||||
|
Oat=
|
||||||
|
Oat seed=
|
||||||
|
Rice=
|
||||||
|
Rice grains=
|
||||||
|
Rice Bread=
|
||||||
|
Rice Flour=
|
||||||
|
Multigrain Flour=
|
||||||
|
Multigrain Bread=
|
||||||
|
|
||||||
|
### tomato.lua ###
|
||||||
|
Tomato=Tomate
|
||||||
|
|
||||||
|
### wheat.lua ###
|
||||||
|
Wheat Seed=Weizenkörner
|
||||||
|
Wheat=Weizen
|
||||||
|
Straw=Stroh
|
||||||
|
Flour=Mehl
|
||||||
|
Bread=Brot
|
||||||
|
Sliced Bread=
|
||||||
|
Toast=
|
||||||
|
Toast Sandwich=
|
259
locale/fr.po
259
locale/fr.po
@ -1,259 +0,0 @@
|
|||||||
# SOME DESCRIPTIVE TITLE.
|
|
||||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: \n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-03-27 20:21+0200\n"
|
|
||||||
"PO-Revision-Date: 2018-03-27 22:16+0200\n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"X-Generator: Poedit 1.8.7.1\n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
||||||
"Language: fr\n"
|
|
||||||
|
|
||||||
#: barley.lua
|
|
||||||
msgid "Barley Seed"
|
|
||||||
msgstr "Graine d'orge"
|
|
||||||
|
|
||||||
#: barley.lua
|
|
||||||
msgid "Barley"
|
|
||||||
msgstr "Orge"
|
|
||||||
|
|
||||||
#: beanpole.lua
|
|
||||||
msgid "Green Beans"
|
|
||||||
msgstr "Haricots verts"
|
|
||||||
|
|
||||||
#: beanpole.lua
|
|
||||||
msgid "Bean Pole (place on soil before planting beans)"
|
|
||||||
msgstr "Tuteur pour haricots (placer sur le sol avant de planter des haricots)"
|
|
||||||
|
|
||||||
#: blueberry.lua
|
|
||||||
msgid "Blueberries"
|
|
||||||
msgstr "Myrtilles"
|
|
||||||
|
|
||||||
#: blueberry.lua
|
|
||||||
msgid "Blueberry Muffin"
|
|
||||||
msgstr "Gâteau aux myrtilles"
|
|
||||||
|
|
||||||
#: carrot.lua
|
|
||||||
msgid "Carrot"
|
|
||||||
msgstr "Carotte"
|
|
||||||
|
|
||||||
#: carrot.lua
|
|
||||||
msgid "Golden Carrot"
|
|
||||||
msgstr "Carotte dorée"
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Cocoa Beans"
|
|
||||||
msgstr "Fèves de chocolat"
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Cookie"
|
|
||||||
msgstr "Biscuit"
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Bar of Dark Chocolate"
|
|
||||||
msgstr "Barre de chocolat noir"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Coffee Beans"
|
|
||||||
msgstr "Grains de café"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Drinking Cup (empty)"
|
|
||||||
msgstr "Tasse (vide)"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Cold Cup of Coffee"
|
|
||||||
msgstr "Tasse de café froid"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Hot Cup of Coffee"
|
|
||||||
msgstr "Tasse de café chaud"
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Corn"
|
|
||||||
msgstr "Maïs"
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Corn on the Cob"
|
|
||||||
msgstr "Épi de maïs"
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Bottle of Ethanol"
|
|
||||||
msgstr "Bouteille de'éthanol"
|
|
||||||
|
|
||||||
#: cotton.lua
|
|
||||||
msgid "Cotton Seed"
|
|
||||||
msgstr "Graines de coton"
|
|
||||||
|
|
||||||
#: cotton.lua
|
|
||||||
msgid "Cotton"
|
|
||||||
msgstr "Coton"
|
|
||||||
|
|
||||||
#: cucumber.lua
|
|
||||||
msgid "Cucumber"
|
|
||||||
msgstr "Concombre"
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Donut"
|
|
||||||
msgstr "Beignet"
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Chocolate Donut"
|
|
||||||
msgstr "Beignet au chocolat"
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Apple Donut"
|
|
||||||
msgstr "Beignet aux pommes"
|
|
||||||
|
|
||||||
#: grapes.lua
|
|
||||||
msgid "Grapes"
|
|
||||||
msgstr "Raisins"
|
|
||||||
|
|
||||||
#: grapes.lua
|
|
||||||
msgid "Trellis (place on soil before planting grapes)"
|
|
||||||
msgstr "Treillis (placer sur le sol avant de planter les raisins)"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Seed"
|
|
||||||
msgstr "Graines de chanvre"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Leaf"
|
|
||||||
msgstr "Feuille de chanvre"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Bottle of Hemp Oil"
|
|
||||||
msgstr "Bouteille d'huile de chanvre"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Fibre"
|
|
||||||
msgstr "Fibre de chanvre"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Rope"
|
|
||||||
msgstr "Corde de chanvre"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Wooden Hoe"
|
|
||||||
msgstr "Houe en bois"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Stone Hoe"
|
|
||||||
msgstr "Houe en pierre"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Steel Hoe"
|
|
||||||
msgstr "Houe en acier"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Bronze Hoe"
|
|
||||||
msgstr "Houe en bronze"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Mese Hoe"
|
|
||||||
msgstr "Houe en mese"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Diamond Hoe"
|
|
||||||
msgstr "Houe en diamant"
|
|
||||||
|
|
||||||
#: init.lua
|
|
||||||
msgid "Seed"
|
|
||||||
msgstr "Graine"
|
|
||||||
|
|
||||||
#: melon.lua
|
|
||||||
msgid "Melon Slice"
|
|
||||||
msgstr "Tranche de melon"
|
|
||||||
|
|
||||||
#: melon.lua
|
|
||||||
msgid "Melon"
|
|
||||||
msgstr "Melon"
|
|
||||||
|
|
||||||
#: potato.lua
|
|
||||||
msgid "Potato"
|
|
||||||
msgstr "Pomme de terre"
|
|
||||||
|
|
||||||
#: potato.lua
|
|
||||||
msgid "Baked Potato"
|
|
||||||
msgstr "Pomme de terre cuite"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin"
|
|
||||||
msgstr "Citrouille"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Slice"
|
|
||||||
msgstr "Tranche de citrouille"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Jack 'O Lantern (punch to turn on and off)"
|
|
||||||
msgstr "Jack 'O Lantern (tapé pour allumer et éteindre)"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Bread"
|
|
||||||
msgstr "Pain à la citrouille"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Dough"
|
|
||||||
msgstr "Pâte à la citrouille"
|
|
||||||
|
|
||||||
#: raspberry.lua
|
|
||||||
msgid "Raspberries"
|
|
||||||
msgstr "Framboises"
|
|
||||||
|
|
||||||
#: raspberry.lua
|
|
||||||
msgid "Raspberry Smoothie"
|
|
||||||
msgstr "Smoothie aux framboises"
|
|
||||||
|
|
||||||
#: rhubarb.lua
|
|
||||||
msgid "Rhubarb"
|
|
||||||
msgstr "Rhubarbe"
|
|
||||||
|
|
||||||
#: rhubarb.lua
|
|
||||||
msgid "Rhubarb Pie"
|
|
||||||
msgstr "Tarte à la rhubarbe"
|
|
||||||
|
|
||||||
#: soil.lua
|
|
||||||
msgid "Soil"
|
|
||||||
msgstr "Sol"
|
|
||||||
|
|
||||||
#: soil.lua
|
|
||||||
msgid "Wet Soil"
|
|
||||||
msgstr "Sol humide"
|
|
||||||
|
|
||||||
#: sugar.lua
|
|
||||||
msgid "Sugar"
|
|
||||||
msgstr "Sucre"
|
|
||||||
|
|
||||||
#: tomato.lua
|
|
||||||
msgid "Tomato"
|
|
||||||
msgstr "Tomate"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Wheat Seed"
|
|
||||||
msgstr "Graine de blé"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Wheat"
|
|
||||||
msgstr "Blé"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Straw"
|
|
||||||
msgstr "Paille"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Flour"
|
|
||||||
msgstr "Farine"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Bread"
|
|
||||||
msgstr "Pain"
|
|
195
locale/fr.txt
Normal file
195
locale/fr.txt
Normal file
@ -0,0 +1,195 @@
|
|||||||
|
# Traduction Française du mod farming par TenPlus1
|
||||||
|
# textdomain: farming
|
||||||
|
# author: Papaou30
|
||||||
|
# author: TheDarkTiger
|
||||||
|
# last update: 2020/Apr/26
|
||||||
|
|
||||||
|
###### folder . ######
|
||||||
|
|
||||||
|
### init.lua ###
|
||||||
|
Seed=Graine
|
||||||
|
|
||||||
|
### compatibility.lua ###
|
||||||
|
Banana=Banane
|
||||||
|
Banana Leaves=Feuilles de Banane
|
||||||
|
Orange=Orange
|
||||||
|
Strawberry=Fraise
|
||||||
|
|
||||||
|
### food.lua ###
|
||||||
|
Sugar=Sucre
|
||||||
|
Salt=Sel
|
||||||
|
Rose Water=Eau de Rose
|
||||||
|
Turkish Delight=Douceur Turque
|
||||||
|
Garlic Bread=Pain à l'Ail
|
||||||
|
Donut=Beignet
|
||||||
|
Chocolate Donut=Beignet au chocolat
|
||||||
|
Apple Donut=Beignet aux pommes
|
||||||
|
Porridge=Gruau de céréales
|
||||||
|
Jaffa Cake=Petit gâteau à l'orange "Jaffa"
|
||||||
|
|
||||||
|
### hoes.lua ###
|
||||||
|
Hoe=Binette
|
||||||
|
Wooden Hoe=Binette en Bois
|
||||||
|
Stone Hoe=Binette en Pierre
|
||||||
|
Steel Hoe=Binette en Acier
|
||||||
|
Bronze Hoe=Binette en Bronze
|
||||||
|
Mese Hoe=Binette en Mese
|
||||||
|
Diamond Hoe=Binette en Diamant
|
||||||
|
# Surcharge du mod [Toolranks] à faire #
|
||||||
|
Hoe Bomb (use or throw on grassy areas to hoe land)=Bombe à binnage (Actionner ou lancer sur une zone herbeuse pour la binner)
|
||||||
|
Mithril Scythe (Right-click to harvest and replant crops)=Faux en Mithril (Récolte et replante des graines)
|
||||||
|
# Surcharge du mod [Toolranks] à faire #
|
||||||
|
|
||||||
|
### soil.lua ###
|
||||||
|
Soil=Sol binné
|
||||||
|
Wet Soil=Sol binné humide
|
||||||
|
|
||||||
|
### utensils.lua ###
|
||||||
|
Wooden Bowl=Bol en Bois
|
||||||
|
Saucepan=Casserole
|
||||||
|
Cooking Pot=Fait-tout
|
||||||
|
Baking Tray=Lèche-frite
|
||||||
|
Skillet=Poêle
|
||||||
|
Mortar and Pestle=Mortier et Pilon
|
||||||
|
Cutting Board=Planche à découper
|
||||||
|
Juicer=Presse-agrumes
|
||||||
|
Glass Mixing Bowl=Terrine en Verre
|
||||||
|
|
||||||
|
|
||||||
|
###### folder ./crops ######
|
||||||
|
|
||||||
|
### barley.lua ###
|
||||||
|
Barley Seed=Graine d'Orge
|
||||||
|
Barley=Orge
|
||||||
|
|
||||||
|
### beans.lua ###
|
||||||
|
Green Beans=Haricots verts
|
||||||
|
Bean Pole (place on soil before planting beans)=Tuteur pour haricots (placer sur le sol avant de planter des haricots)
|
||||||
|
|
||||||
|
### beetroot.lua ###
|
||||||
|
Beetroot=Betrave
|
||||||
|
Beetroot Soup=Soupe de Betrave
|
||||||
|
|
||||||
|
### blueberry.lua ###
|
||||||
|
Blueberries=Myrtilles
|
||||||
|
Blueberry Muffin=Muffin aux Myrtilles
|
||||||
|
Blueberry Pie=Tarte aux Myrtilles
|
||||||
|
|
||||||
|
### carrot.lua ##
|
||||||
|
Carrot=Carotte
|
||||||
|
Carrot Juice=Jus de Carotte
|
||||||
|
Golden Carrot=Carotte dorée
|
||||||
|
|
||||||
|
### chili.lua ###
|
||||||
|
Chili Pepper=Piment Rouge
|
||||||
|
Bowl of Chili=Assiette de Chilli
|
||||||
|
|
||||||
|
### cocoa.lua ###
|
||||||
|
Cocoa Beans=Fèves de Cacao
|
||||||
|
Cookie=Cookie
|
||||||
|
Bar of Dark Chocolate=Tablette de Chocolat noir
|
||||||
|
Chocolate Block=Block de Chocolat
|
||||||
|
|
||||||
|
### coffee.lua ###
|
||||||
|
Coffee Beans=Grains de café
|
||||||
|
Cup of Coffee=Tasse de café
|
||||||
|
|
||||||
|
### corn.lua ###
|
||||||
|
Corn=Maïs
|
||||||
|
Corn on the Cob=Cobette (Maïs cuit)
|
||||||
|
Cornstarch=Fécule de Maïs
|
||||||
|
Bottle of Ethanol=Bouteille d'Éthanol
|
||||||
|
|
||||||
|
### cotton.lua ###
|
||||||
|
Cotton Seed=Graines de Coton
|
||||||
|
Cotton=Coton
|
||||||
|
String=Ficelle
|
||||||
|
|
||||||
|
### cucumber.lua ###
|
||||||
|
Cucumber=Concombre
|
||||||
|
|
||||||
|
### garlic.lua ###
|
||||||
|
Garlic clove=Gousse d'Ail
|
||||||
|
Garlic=Tête d'Ail
|
||||||
|
Garlic Braid=Ail tressé
|
||||||
|
|
||||||
|
### grapes.lua ###
|
||||||
|
Grapes=Raisins
|
||||||
|
Trellis (place on soil before planting grapes)=Treillis (placer sur le sol avant de planter la vigne)
|
||||||
|
|
||||||
|
### hemp.lua ###
|
||||||
|
Hemp Seed=Graines de Chanvre
|
||||||
|
Hemp Leaf=Feuille de Chanvre
|
||||||
|
Bottle of Hemp Oil=Bouteille d'huile de Chanvre
|
||||||
|
Hemp Fibre=Fibre de Chanvre
|
||||||
|
Hemp Block=Bloc de Chanvre
|
||||||
|
Hemp Rope=Corde de Chanvre
|
||||||
|
|
||||||
|
### melon.lua ###
|
||||||
|
Melon Slice=Tranche de Melon
|
||||||
|
Melon=Melon
|
||||||
|
|
||||||
|
### onion.lua ###
|
||||||
|
Onion=Oignon
|
||||||
|
|
||||||
|
### peas.lua ###
|
||||||
|
Pea Pod=Cosse de Petit-poids
|
||||||
|
Peas=Petit-poids
|
||||||
|
Pea Soup=Soupe de Petit-poids
|
||||||
|
|
||||||
|
### pepper.lua ###
|
||||||
|
Peppercorn=Grain de Poivre
|
||||||
|
Pepper=Poivron
|
||||||
|
Ground Pepper=Poivre moulu
|
||||||
|
|
||||||
|
### pinapple.lua ###
|
||||||
|
Pineapple Top=Pousse d'Ananas
|
||||||
|
Pineapple=Ananas
|
||||||
|
Pineapple Ring=Tranche d'Ananas
|
||||||
|
Pineapple Juice=Jus d'Ananas
|
||||||
|
|
||||||
|
### potato.lua ###
|
||||||
|
Potato=Pomme de terre
|
||||||
|
Baked Potato=Pomme de terre cuite
|
||||||
|
Cucumber and Potato Salad=Salade de Pomme de terre au Concombre
|
||||||
|
|
||||||
|
### pumpkin.lua ###
|
||||||
|
Pumpkin Slice=Tranche de Citrouille
|
||||||
|
Jack 'O Lantern (punch to turn on and off)=Jack 'O Lantern (Frapper pour allumer et éteindre)
|
||||||
|
Scarecrow Bottom=Base d'Epouventail
|
||||||
|
Pumpkin Bread=Pain à la Citrouille
|
||||||
|
Pumpkin Dough=Pâton de pain à la Citrouille
|
||||||
|
Pumpkin=Citrouille
|
||||||
|
|
||||||
|
### raspberry.lua ###
|
||||||
|
Raspberries=Framboises
|
||||||
|
Raspberry Smoothie=Smoothie aux Framboises
|
||||||
|
|
||||||
|
### rhubarb.lua ###
|
||||||
|
Rhubarb=Rhubarbe
|
||||||
|
Rhubarb Pie=Tarte à la rhubarbe
|
||||||
|
|
||||||
|
### ryeoatrice.lua ###
|
||||||
|
Rye=Seigle
|
||||||
|
Rye seed=Grains de Seigle
|
||||||
|
Oat=Orge
|
||||||
|
Oat seed=Grains d'Orge
|
||||||
|
Rice=Riz
|
||||||
|
Rice grains=Grain de Riz
|
||||||
|
Rice Bread=Pain de Riz
|
||||||
|
Rice Flour=Farine de Riz
|
||||||
|
Multigrain Flour=Farine Multi-céréales
|
||||||
|
Multigrain Bread=Pain aux Céréales
|
||||||
|
|
||||||
|
### tomato.lua ###
|
||||||
|
Tomato=Tomate
|
||||||
|
|
||||||
|
### wheat.lua ###
|
||||||
|
Wheat Seed=Grain de blé
|
||||||
|
Wheat=Blé
|
||||||
|
Straw=Paille
|
||||||
|
Flour=Farine
|
||||||
|
Bread=Pain
|
||||||
|
Sliced Bread=Tranche de Pain
|
||||||
|
Toast=Pain Grillé
|
||||||
|
Toast Sandwich=Sandwich au Pain
|
258
locale/pt.po
258
locale/pt.po
@ -1,258 +0,0 @@
|
|||||||
# Portuguese Translation for farming mod.
|
|
||||||
# Copyright (C) 2017
|
|
||||||
# This file is distributed under the same license as the farming package.
|
|
||||||
# BrunoMine <borgesdossantosbruno@gmail.com>, 2017.
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: 1.27\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2017-08-16 17:38-0300\n"
|
|
||||||
"PO-Revision-Date: 2017-08-17 17:01-0300\n"
|
|
||||||
"Last-Translator: BrunoMine <borgesdossantosbruno@gmail.com>\n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: Portuguese\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"X-Generator: Gtranslator 2.91.7\n"
|
|
||||||
|
|
||||||
#: barley.lua
|
|
||||||
msgid "Barley Seed"
|
|
||||||
msgstr "Sementes de Cevada"
|
|
||||||
|
|
||||||
#: barley.lua
|
|
||||||
msgid "Barley"
|
|
||||||
msgstr "Cevada"
|
|
||||||
|
|
||||||
#: beanpole.lua
|
|
||||||
msgid "Green Beans"
|
|
||||||
msgstr "Feijoes Verdes"
|
|
||||||
|
|
||||||
#: beanpole.lua
|
|
||||||
msgid "Bean Pole (place on soil before planting beans)"
|
|
||||||
msgstr "Apoio de feijao (coloque no solo antes de plantar feijao)"
|
|
||||||
|
|
||||||
#: blueberry.lua
|
|
||||||
msgid "Blueberries"
|
|
||||||
msgstr "Mirtilos"
|
|
||||||
|
|
||||||
#: blueberry.lua
|
|
||||||
msgid "Blueberry Muffin"
|
|
||||||
msgstr "Muffin de Mirtilos"
|
|
||||||
|
|
||||||
#: carrot.lua
|
|
||||||
msgid "Carrot"
|
|
||||||
msgstr "Cenoura"
|
|
||||||
|
|
||||||
#: carrot.lua
|
|
||||||
msgid "Golden Carrot"
|
|
||||||
msgstr "Cenoura Dourada"
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Cocoa Beans"
|
|
||||||
msgstr "Amendoas de Cacau"
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Cookie"
|
|
||||||
msgstr "Cookie"
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Bar of Dark Chocolate"
|
|
||||||
msgstr "Barra de Chocolate Preto"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Coffee Beans"
|
|
||||||
msgstr "Grao de Cafe"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Drinking Cup (empty)"
|
|
||||||
msgstr "Xicara (vazia)"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Cold Cup of Coffee"
|
|
||||||
msgstr "Xicara de Cafe Frio"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Hot Cup of Coffee"
|
|
||||||
msgstr "Xicara de Cafe Quente"
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Corn"
|
|
||||||
msgstr "Milho"
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Corn on the Cob"
|
|
||||||
msgstr "Espiga de Milho"
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Bottle of Ethanol"
|
|
||||||
msgstr "Garrafa de Etanol"
|
|
||||||
|
|
||||||
#: cotton.lua
|
|
||||||
msgid "Cotton Seed"
|
|
||||||
msgstr "Sementes de Algodao"
|
|
||||||
|
|
||||||
#: cotton.lua
|
|
||||||
msgid "Cotton"
|
|
||||||
msgstr "Algodao"
|
|
||||||
|
|
||||||
#: cucumber.lua
|
|
||||||
msgid "Cucumber"
|
|
||||||
msgstr "Pepino"
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Donut"
|
|
||||||
msgstr "Donut"
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Chocolate Donut"
|
|
||||||
msgstr "Donut de Chocolate"
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Apple Donut"
|
|
||||||
msgstr "Donut de Maça"
|
|
||||||
|
|
||||||
#: grapes.lua
|
|
||||||
msgid "Grapes"
|
|
||||||
msgstr "Uvas"
|
|
||||||
|
|
||||||
#: grapes.lua
|
|
||||||
msgid "Trellis (place on soil before planting grapes)"
|
|
||||||
msgstr "Grade de Ripas (colocar no solo antes de plantar uvas)"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Seed"
|
|
||||||
msgstr "Sementes de Canhamo"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Leaf"
|
|
||||||
msgstr "Folha de Canhamo"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Bottle of Hemp Oil"
|
|
||||||
msgstr "Garrafa de Oleo de Canhamo"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Fibre"
|
|
||||||
msgstr "Fibra de Canhamo"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Rope"
|
|
||||||
msgstr "Corda de Canhamo"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Wooden Hoe"
|
|
||||||
msgstr "Enxada de Madeira"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Stone Hoe"
|
|
||||||
msgstr "Enxada de Pedra"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Steel Hoe"
|
|
||||||
msgstr "Enxada de Aço"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Bronze Hoe"
|
|
||||||
msgstr "Enxada de Bronze"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Mese Hoe"
|
|
||||||
msgstr "Enxada de Mese"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Diamond Hoe"
|
|
||||||
msgstr "Enxada de Diamante"
|
|
||||||
|
|
||||||
#: init.lua
|
|
||||||
msgid "Seed"
|
|
||||||
msgstr "Sementes"
|
|
||||||
|
|
||||||
#: melon.lua
|
|
||||||
msgid "Melon Slice"
|
|
||||||
msgstr "Sementes de Melancia"
|
|
||||||
|
|
||||||
#: melon.lua
|
|
||||||
msgid "Melon"
|
|
||||||
msgstr "Melancia"
|
|
||||||
|
|
||||||
#: potato.lua
|
|
||||||
msgid "Potato"
|
|
||||||
msgstr "Batata"
|
|
||||||
|
|
||||||
#: potato.lua
|
|
||||||
msgid "Baked Potato"
|
|
||||||
msgstr "Batata Cozida"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin"
|
|
||||||
msgstr "Abobora"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Slice"
|
|
||||||
msgstr "Pedaço de Abobora"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Jack 'O Lantern (punch to turn on and off)"
|
|
||||||
msgstr "Jack 'O Lantern (Socos para ligar e desligar)"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Bread"
|
|
||||||
msgstr "Pao de Abobora"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Dough"
|
|
||||||
msgstr "Massa de Abobora"
|
|
||||||
|
|
||||||
#: raspberry.lua
|
|
||||||
msgid "Raspberries"
|
|
||||||
msgstr "Framboesa"
|
|
||||||
|
|
||||||
#: raspberry.lua
|
|
||||||
msgid "Raspberry Smoothie"
|
|
||||||
msgstr "Batida de Framboesa"
|
|
||||||
|
|
||||||
#: rhubarb.lua
|
|
||||||
msgid "Rhubarb"
|
|
||||||
msgstr "Ruibarbo"
|
|
||||||
|
|
||||||
#: rhubarb.lua
|
|
||||||
msgid "Rhubarb Pie"
|
|
||||||
msgstr "Torta de Ruibarbo"
|
|
||||||
|
|
||||||
#: soil.lua
|
|
||||||
msgid "Soil"
|
|
||||||
msgstr "Solo"
|
|
||||||
|
|
||||||
#: soil.lua
|
|
||||||
msgid "Wet Soil"
|
|
||||||
msgstr "Solo Seco"
|
|
||||||
|
|
||||||
#: sugar.lua
|
|
||||||
msgid "Sugar"
|
|
||||||
msgstr "Açucar"
|
|
||||||
|
|
||||||
#: tomato.lua
|
|
||||||
msgid "Tomato"
|
|
||||||
msgstr "Tomate"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Wheat Seed"
|
|
||||||
msgstr "Sementes de Trigo"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Wheat"
|
|
||||||
msgstr "Trigo"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Straw"
|
|
||||||
msgstr "Palha"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Flour"
|
|
||||||
msgstr "Farinha"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Bread"
|
|
||||||
msgstr "Pao"
|
|
195
locale/pt.txt
Normal file
195
locale/pt.txt
Normal file
@ -0,0 +1,195 @@
|
|||||||
|
# Portuguese translation of the farming mod by TenPlus1
|
||||||
|
# textdomain: farming
|
||||||
|
# author: BrunoMine <borgesdossantosbruno@gmail.com>
|
||||||
|
# author: TheDarkTiger
|
||||||
|
# last update: 2020/Apr/26
|
||||||
|
|
||||||
|
###### folder . ######
|
||||||
|
|
||||||
|
### init.lua ###
|
||||||
|
Seed=Sementes
|
||||||
|
|
||||||
|
### compatibility.lua ###
|
||||||
|
Banana=
|
||||||
|
Banana Leaves=
|
||||||
|
Orange=
|
||||||
|
Strawberry=
|
||||||
|
|
||||||
|
### food.lua ###
|
||||||
|
Sugar=Açucar
|
||||||
|
Salt=
|
||||||
|
Rose Water=
|
||||||
|
Turkish Delight=
|
||||||
|
Garlic Bread=
|
||||||
|
Donut=Donut
|
||||||
|
Chocolate Donut=Donut de Chocolate
|
||||||
|
Apple Donut=Donut de Maça
|
||||||
|
Porridge=
|
||||||
|
Jaffa Cake=
|
||||||
|
|
||||||
|
### hoes.lua ###
|
||||||
|
Hoe=Enxada
|
||||||
|
Wooden Hoe=Enxada de Madeira
|
||||||
|
Stone Hoe=Enxada de Pedra
|
||||||
|
Steel Hoe=Enxada de Aço
|
||||||
|
Bronze Hoe=Enxada de Bronze
|
||||||
|
Mese Hoe=Enxada de Mese
|
||||||
|
Diamond Hoe=Enxada de Diamante
|
||||||
|
# Surcharge du mod [Toolranks] à faire #
|
||||||
|
Hoe Bomb (use or throw on grassy areas to hoe land)=
|
||||||
|
Mithril Scythe (Right-click to harvest and replant crops)=
|
||||||
|
# Surcharge du mod [Toolranks] à faire #
|
||||||
|
|
||||||
|
### soil.lua ###
|
||||||
|
Soil=Solo
|
||||||
|
Wet Soil=Solo Seco
|
||||||
|
|
||||||
|
### utensils.lua ###
|
||||||
|
Wooden Bowl=
|
||||||
|
Saucepan=
|
||||||
|
Cooking Pot=
|
||||||
|
Baking Tray=
|
||||||
|
Skillet=
|
||||||
|
Mortar and Pestle=
|
||||||
|
Cutting Board=
|
||||||
|
Juicer=
|
||||||
|
Glass Mixing Bowl=
|
||||||
|
|
||||||
|
|
||||||
|
###### folder ./crops ######
|
||||||
|
|
||||||
|
### barley.lua ###
|
||||||
|
Barley Seed=Sementes de Cevada
|
||||||
|
Barley=Cevada
|
||||||
|
|
||||||
|
### beans.lua ###
|
||||||
|
Green Beans=Feijoes Verdes
|
||||||
|
Bean Pole (place on soil before planting beans)=Apoio de feijao (coloque no solo antes de plantar feijao)
|
||||||
|
|
||||||
|
### beetroot.lua ###
|
||||||
|
Beetroot=
|
||||||
|
Beetroot Soup=
|
||||||
|
|
||||||
|
### blueberry.lua ###
|
||||||
|
Blueberries=Mirtilos
|
||||||
|
Blueberry Muffin=Muffin de Mirtilos
|
||||||
|
Blueberry Pie=
|
||||||
|
|
||||||
|
### carrot.lua ##
|
||||||
|
Carrot=Cenoura
|
||||||
|
Carrot Juice=
|
||||||
|
Golden Carrot=Cenoura Dourada
|
||||||
|
|
||||||
|
### chili.lua ###
|
||||||
|
Chili Pepper=
|
||||||
|
Bowl of Chili=
|
||||||
|
|
||||||
|
### cocoa.lua ###
|
||||||
|
Cocoa Beans=Amendoas de Cacau
|
||||||
|
Cookie=Cookie
|
||||||
|
Bar of Dark Chocolate=Barra de Chocolate Preto
|
||||||
|
Chocolate Block=
|
||||||
|
|
||||||
|
### coffee.lua ###
|
||||||
|
Coffee Beans=Grao de Cafe
|
||||||
|
Cup of Coffee=Xicara de Cafe
|
||||||
|
|
||||||
|
### corn.lua ###
|
||||||
|
Corn=Milho
|
||||||
|
Corn on the Cob=Espiga de Milho
|
||||||
|
Cornstarch=
|
||||||
|
Bottle of Ethanol=Garrafa de Etanol
|
||||||
|
|
||||||
|
### cotton.lua ###
|
||||||
|
Cotton Seed=Sementes de Algodao
|
||||||
|
Cotton=Algodao
|
||||||
|
String=
|
||||||
|
|
||||||
|
### cucumber.lua ###
|
||||||
|
Cucumber=Pepino
|
||||||
|
|
||||||
|
### garlic.lua ###
|
||||||
|
Garlic clove=
|
||||||
|
Garlic=
|
||||||
|
Garlic Braid=
|
||||||
|
|
||||||
|
### grapes.lua ###
|
||||||
|
Grapes=Uvas
|
||||||
|
Trellis (place on soil before planting grapes)=Grade de Ripas (colocar no solo antes de plantar uvas)
|
||||||
|
|
||||||
|
### hemp.lua ###
|
||||||
|
Hemp Seed=Sementes de Canhamo
|
||||||
|
Hemp Leaf=Folha de Canhamo
|
||||||
|
Bottle of Hemp Oil=Garrafa de Oleo de Canhamo
|
||||||
|
Hemp Fibre=Fibra de Canhamo
|
||||||
|
Hemp Block=
|
||||||
|
Hemp Rope=Corda de Canhamo
|
||||||
|
|
||||||
|
### melon.lua ###
|
||||||
|
Melon Slice=Sementes de Melancia
|
||||||
|
Melon=Melancia
|
||||||
|
|
||||||
|
### onion.lua ###
|
||||||
|
Onion=
|
||||||
|
|
||||||
|
### peas.lua ###
|
||||||
|
Pea Pod=
|
||||||
|
Peas=
|
||||||
|
Pea Soup=
|
||||||
|
|
||||||
|
### pepper.lua ###
|
||||||
|
Peppercorn=
|
||||||
|
Pepper=
|
||||||
|
Ground Pepper=
|
||||||
|
|
||||||
|
### pinapple.lua ###
|
||||||
|
Pineapple Top=
|
||||||
|
Pineapple=
|
||||||
|
Pineapple Ring=
|
||||||
|
Pineapple Juice=
|
||||||
|
|
||||||
|
### potato.lua ###
|
||||||
|
Potato=Batata
|
||||||
|
Baked Potato=Batata Cozida
|
||||||
|
Cucumber and Potato Salad=
|
||||||
|
|
||||||
|
### pumpkin.lua ###
|
||||||
|
Pumpkin Slice=Pedaço de Abobora
|
||||||
|
Jack 'O Lantern (punch to turn on and off)=Jack 'O Lantern (Socos para ligar e desligar)
|
||||||
|
Scarecrow Bottom=
|
||||||
|
Pumpkin Bread=Pao de Abobora
|
||||||
|
Pumpkin Dough=Massa de Abobora
|
||||||
|
Pumpkin=Abobora
|
||||||
|
|
||||||
|
### raspberry.lua ###
|
||||||
|
Raspberries=Framboesa
|
||||||
|
Raspberry Smoothie=Batida de Framboesa
|
||||||
|
|
||||||
|
### rhubarb.lua ###
|
||||||
|
Rhubarb=Ruibarbo
|
||||||
|
Rhubarb Pie=Torta de Ruibarbo
|
||||||
|
|
||||||
|
### ryeoatrice.lua ###
|
||||||
|
Rye=
|
||||||
|
Rye seed=
|
||||||
|
Oat=
|
||||||
|
Oat seed=
|
||||||
|
Rice=
|
||||||
|
Rice grains=
|
||||||
|
Rice Bread=
|
||||||
|
Rice Flour=
|
||||||
|
Multigrain Flour=
|
||||||
|
Multigrain Bread=
|
||||||
|
|
||||||
|
### tomato.lua ###
|
||||||
|
Tomato=Tomate
|
||||||
|
|
||||||
|
### wheat.lua ###
|
||||||
|
Wheat Seed=Sementes de Trigo
|
||||||
|
Wheat=Trigo
|
||||||
|
Straw=Palha
|
||||||
|
Flour=Farinha
|
||||||
|
Bread=Pao
|
||||||
|
Sliced Bread=
|
||||||
|
Toast=
|
||||||
|
Toast Sandwich=
|
262
locale/ru.po
262
locale/ru.po
@ -1,262 +0,0 @@
|
|||||||
# Russian translation for farming mod.
|
|
||||||
# Copyright (C) 2018
|
|
||||||
# This file is distributed under the same license as the farming package.
|
|
||||||
# codexp <codexp@gmx.net>, 2018.
|
|
||||||
#
|
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: 1.27\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2018-03-22 01:25+0100\n"
|
|
||||||
"PO-Revision-Date: \n"
|
|
||||||
"Last-Translator: \n"
|
|
||||||
"Language-Team: \n"
|
|
||||||
"Language: Russian\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
|
|
||||||
#: barley.lua
|
|
||||||
msgid "Barley Seed"
|
|
||||||
msgstr "семена ячменя"
|
|
||||||
|
|
||||||
#: barley.lua
|
|
||||||
msgid "Barley"
|
|
||||||
msgstr "ячмень"
|
|
||||||
|
|
||||||
#: beanpole.lua
|
|
||||||
msgid "Green Beans"
|
|
||||||
msgstr "зеленая фасоль"
|
|
||||||
|
|
||||||
#: beanpole.lua
|
|
||||||
msgid "Bean Pole (place on soil before planting beans)"
|
|
||||||
msgstr "жердь для бобовых (установите на почву перед посадкой бобовых)"
|
|
||||||
|
|
||||||
#: blueberry.lua
|
|
||||||
msgid "Blueberries"
|
|
||||||
msgstr "голубика"
|
|
||||||
|
|
||||||
#: blueberry.lua
|
|
||||||
msgid "Blueberry Muffin"
|
|
||||||
msgstr "кекс из голубики"
|
|
||||||
|
|
||||||
#: carrot.lua
|
|
||||||
msgid "Carrot"
|
|
||||||
msgstr "морковь"
|
|
||||||
|
|
||||||
#: carrot.lua
|
|
||||||
msgid "Golden Carrot"
|
|
||||||
msgstr "золотая морковь"
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Cocoa Beans"
|
|
||||||
msgstr "бобы какао"
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Cookie"
|
|
||||||
msgstr "печенье"
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Bar of Dark Chocolate"
|
|
||||||
msgstr "плитка темного шоколада"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Coffee Beans"
|
|
||||||
msgstr "кофе в зернах"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Drinking Cup (empty)"
|
|
||||||
msgstr "чашка (пустая)"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Cold Cup of Coffee"
|
|
||||||
msgstr "холодная чашка кофе"
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Hot Cup of Coffee"
|
|
||||||
msgstr "горячая чашка кофе"
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Corn"
|
|
||||||
msgstr "кукуруза"
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Corn on the Cob"
|
|
||||||
msgstr "початок кукурузы"
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Bottle of Ethanol"
|
|
||||||
msgstr "бутылка этилового спирта"
|
|
||||||
|
|
||||||
#: cotton.lua
|
|
||||||
msgid "Cotton Seed"
|
|
||||||
msgstr "семена хлопка"
|
|
||||||
|
|
||||||
#: cotton.lua
|
|
||||||
msgid "Cotton"
|
|
||||||
msgstr "хлопок"
|
|
||||||
|
|
||||||
#: cucumber.lua
|
|
||||||
msgid "Cucumber"
|
|
||||||
msgstr "огурец"
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Donut"
|
|
||||||
msgstr "пончик"
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Chocolate Donut"
|
|
||||||
msgstr "шоколадный пончик"
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Apple Donut"
|
|
||||||
msgstr "яблочный пончик"
|
|
||||||
|
|
||||||
#: grapes.lua
|
|
||||||
msgid "Grapes"
|
|
||||||
msgstr "виноград"
|
|
||||||
|
|
||||||
#: grapes.lua
|
|
||||||
msgid "Trellis (place on soil before planting grapes)"
|
|
||||||
msgstr "решетка (поставьте на почву для посадки винограда)"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Seed"
|
|
||||||
msgstr "семена конопли"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Leaf"
|
|
||||||
msgstr "листья конопли"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Bottle of Hemp Oil"
|
|
||||||
msgstr "бутылка конопляного масла"
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Fibre"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Rope"
|
|
||||||
msgstr "Пенька"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Hoe"
|
|
||||||
msgstr "мотыга"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Wooden Hoe"
|
|
||||||
msgstr "деревянная мотыга"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Stone Hoe"
|
|
||||||
msgstr "каменная мотыга"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Steel Hoe"
|
|
||||||
msgstr "стальная мотыга"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Bronze Hoe"
|
|
||||||
msgstr "бронзовая мотыга"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Mese Hoe"
|
|
||||||
msgstr "магическая мотыга"
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Diamond Hoe"
|
|
||||||
msgstr "алмазная мотыга"
|
|
||||||
|
|
||||||
#: init.lua
|
|
||||||
msgid "Seed"
|
|
||||||
msgstr "семена"
|
|
||||||
|
|
||||||
#: melon.lua
|
|
||||||
msgid "Melon Slice"
|
|
||||||
msgstr "ломтик арбуза"
|
|
||||||
|
|
||||||
#: melon.lua
|
|
||||||
msgid "Melon"
|
|
||||||
msgstr "арбуз"
|
|
||||||
|
|
||||||
#: potato.lua
|
|
||||||
msgid "Potato"
|
|
||||||
msgstr "картофель"
|
|
||||||
|
|
||||||
#: potato.lua
|
|
||||||
msgid "Baked Potato"
|
|
||||||
msgstr "запеченный картофель"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin"
|
|
||||||
msgstr "тыква"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Slice"
|
|
||||||
msgstr "ломтик тыквы"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Jack 'O Lantern (punch to turn on and off)"
|
|
||||||
msgstr "светильник джека (удар для включения и отключения)"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Bread"
|
|
||||||
msgstr "тыквенный хлеб"
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Dough"
|
|
||||||
msgstr "тыквенное тесто"
|
|
||||||
|
|
||||||
#: raspberry.lua
|
|
||||||
msgid "Raspberries"
|
|
||||||
msgstr "малина"
|
|
||||||
|
|
||||||
#: raspberry.lua
|
|
||||||
msgid "Raspberry Smoothie"
|
|
||||||
msgstr "малиновый коктейль"
|
|
||||||
|
|
||||||
#: rhubarb.lua
|
|
||||||
msgid "Rhubarb"
|
|
||||||
msgstr "ревень"
|
|
||||||
|
|
||||||
#: rhubarb.lua
|
|
||||||
msgid "Rhubarb Pie"
|
|
||||||
msgstr "пирог из ревеня"
|
|
||||||
|
|
||||||
#: soil.lua
|
|
||||||
msgid "Soil"
|
|
||||||
msgstr "земля"
|
|
||||||
|
|
||||||
#: soil.lua
|
|
||||||
msgid "Wet Soil"
|
|
||||||
msgstr "мокрая земля"
|
|
||||||
|
|
||||||
#: sugar.lua
|
|
||||||
msgid "Sugar"
|
|
||||||
msgstr "сахар"
|
|
||||||
|
|
||||||
#: tomato.lua
|
|
||||||
msgid "Tomato"
|
|
||||||
msgstr "помидор"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Wheat Seed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Wheat"
|
|
||||||
msgstr "семена пшеницы"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Straw"
|
|
||||||
msgstr "солома"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Flour"
|
|
||||||
msgstr "мука"
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Bread"
|
|
||||||
msgstr "хлеб"
|
|
195
locale/ru.txt
Normal file
195
locale/ru.txt
Normal file
@ -0,0 +1,195 @@
|
|||||||
|
# Russian translation of the farming mod by TenPlus1
|
||||||
|
# textdomain: farming
|
||||||
|
# author: codexp <codexp@gmx.net>
|
||||||
|
# author: TheDarkTiger
|
||||||
|
# last update: 2020/Apr/26
|
||||||
|
|
||||||
|
###### folder . ######
|
||||||
|
|
||||||
|
### init.lua ###
|
||||||
|
Seed=семена
|
||||||
|
|
||||||
|
### compatibility.lua ###
|
||||||
|
Banana=
|
||||||
|
Banana Leaves=
|
||||||
|
Orange=
|
||||||
|
Strawberry=
|
||||||
|
|
||||||
|
### food.lua ###
|
||||||
|
Sugar=сахар
|
||||||
|
Salt=
|
||||||
|
Rose Water=
|
||||||
|
Turkish Delight=
|
||||||
|
Garlic Bread=
|
||||||
|
Donut=пончик
|
||||||
|
Chocolate Donut=шоколадный пончик
|
||||||
|
Apple Donut=яблочный пончик
|
||||||
|
Porridge=
|
||||||
|
Jaffa Cake=
|
||||||
|
|
||||||
|
### hoes.lua ###
|
||||||
|
Hoe=мотыга
|
||||||
|
Wooden Hoe=деревянная мотыга
|
||||||
|
Stone Hoe=каменная мотыга
|
||||||
|
Steel Hoe=стальная мотыга
|
||||||
|
Bronze Hoe=бронзовая мотыга
|
||||||
|
Mese Hoe=магическая мотыга
|
||||||
|
Diamond Hoe=алмазная мотыга
|
||||||
|
# Surcharge du mod [Toolranks] à faire #
|
||||||
|
Hoe Bomb (use or throw on grassy areas to hoe land)=
|
||||||
|
Mithril Scythe (Right-click to harvest and replant crops)=
|
||||||
|
# Surcharge du mod [Toolranks] à faire #
|
||||||
|
|
||||||
|
### soil.lua ###
|
||||||
|
Soil=земля
|
||||||
|
Wet Soil=мокрая земля
|
||||||
|
|
||||||
|
### utensils.lua ###
|
||||||
|
Wooden Bowl=
|
||||||
|
Saucepan=
|
||||||
|
Cooking Pot=
|
||||||
|
Baking Tray=
|
||||||
|
Skillet=
|
||||||
|
Mortar and Pestle=
|
||||||
|
Cutting Board=
|
||||||
|
Juicer=
|
||||||
|
Glass Mixing Bowl=
|
||||||
|
|
||||||
|
|
||||||
|
###### folder ./crops ######
|
||||||
|
|
||||||
|
### barley.lua ###
|
||||||
|
Barley Seed=семена ячменя
|
||||||
|
Barley=ячмень
|
||||||
|
|
||||||
|
### beans.lua ###
|
||||||
|
Green Beans=зеленая фасоль
|
||||||
|
Bean Pole (place on soil before planting beans)=жердь для бобовых (установите на почву перед посадкой бобовых)
|
||||||
|
|
||||||
|
### beetroot.lua ###
|
||||||
|
Beetroot=
|
||||||
|
Beetroot Soup=
|
||||||
|
|
||||||
|
### blueberry.lua ###
|
||||||
|
Blueberries=голубика
|
||||||
|
Blueberry Muffin=кекс из голубики
|
||||||
|
Blueberry Pie=
|
||||||
|
|
||||||
|
### carrot.lua ##
|
||||||
|
Carrot=морковь
|
||||||
|
Carrot Juice=
|
||||||
|
Golden Carrot=золотая морковь
|
||||||
|
|
||||||
|
### chili.lua ###
|
||||||
|
Chili Pepper=
|
||||||
|
Bowl of Chili=
|
||||||
|
|
||||||
|
### cocoa.lua ###
|
||||||
|
Cocoa Beans=бобы какао
|
||||||
|
Cookie=печенье
|
||||||
|
Bar of Dark Chocolate=плитка темного шоколада
|
||||||
|
Chocolate Block=
|
||||||
|
|
||||||
|
### coffee.lua ###
|
||||||
|
Coffee Beans=кофе в зернах
|
||||||
|
Cup of Coffee=чашка кофе
|
||||||
|
|
||||||
|
### corn.lua ###
|
||||||
|
Corn=кукуруза
|
||||||
|
Corn on the Cob=початок кукурузы
|
||||||
|
Cornstarch=
|
||||||
|
Bottle of Ethanol=бутылка этилового спирта
|
||||||
|
|
||||||
|
### cotton.lua ###
|
||||||
|
Cotton Seed=семена хлопка
|
||||||
|
Cotton=хлопок
|
||||||
|
String=
|
||||||
|
|
||||||
|
### cucumber.lua ###
|
||||||
|
Cucumber=огурец
|
||||||
|
|
||||||
|
### garlic.lua ###
|
||||||
|
Garlic clove=
|
||||||
|
Garlic=
|
||||||
|
Garlic Braid=
|
||||||
|
|
||||||
|
### grapes.lua ###
|
||||||
|
Grapes=виноград
|
||||||
|
Trellis (place on soil before planting grapes)=решетка (поставьте на почву для посадки винограда)
|
||||||
|
|
||||||
|
### hemp.lua ###
|
||||||
|
Hemp Seed=семена конопли
|
||||||
|
Hemp Leaf=листья конопли
|
||||||
|
Bottle of Hemp Oil=бутылка конопляного масла
|
||||||
|
Hemp Fibre=
|
||||||
|
Hemp Block=
|
||||||
|
Hemp Rope=Пенька
|
||||||
|
|
||||||
|
### melon.lua ###
|
||||||
|
Melon Slice=ломтик арбуза
|
||||||
|
Melon=арбуз
|
||||||
|
|
||||||
|
### onion.lua ###
|
||||||
|
Onion=
|
||||||
|
|
||||||
|
### peas.lua ###
|
||||||
|
Pea Pod=
|
||||||
|
Peas=
|
||||||
|
Pea Soup=
|
||||||
|
|
||||||
|
### pepper.lua ###
|
||||||
|
Peppercorn=
|
||||||
|
Pepper=
|
||||||
|
Ground Pepper=
|
||||||
|
|
||||||
|
### pinapple.lua ###
|
||||||
|
Pineapple Top=
|
||||||
|
Pineapple=
|
||||||
|
Pineapple Ring=
|
||||||
|
Pineapple Juice=
|
||||||
|
|
||||||
|
### potato.lua ###
|
||||||
|
Potato=картофель
|
||||||
|
Baked Potato=запеченный картофель
|
||||||
|
Cucumber and Potato Salad=
|
||||||
|
|
||||||
|
### pumpkin.lua ###
|
||||||
|
Pumpkin Slice=ломтик тыквы
|
||||||
|
Jack 'O Lantern (punch to turn on and off)=светильник джека (удар для включения и отключения)
|
||||||
|
Scarecrow Bottom=
|
||||||
|
Pumpkin Bread=тыквенный хлеб
|
||||||
|
Pumpkin Dough=тыквенное тесто
|
||||||
|
Pumpkin=тыква
|
||||||
|
|
||||||
|
### raspberry.lua ###
|
||||||
|
Raspberries=малина
|
||||||
|
Raspberry Smoothie=малиновый коктейль
|
||||||
|
|
||||||
|
### rhubarb.lua ###
|
||||||
|
Rhubarb=ревень
|
||||||
|
Rhubarb Pie=пирог из ревеня
|
||||||
|
|
||||||
|
### ryeoatrice.lua ###
|
||||||
|
Rye=
|
||||||
|
Rye seed=
|
||||||
|
Oat=
|
||||||
|
Oat seed=
|
||||||
|
Rice=
|
||||||
|
Rice grains=
|
||||||
|
Rice Bread=
|
||||||
|
Rice Flour=
|
||||||
|
Multigrain Flour=
|
||||||
|
Multigrain Bread=
|
||||||
|
|
||||||
|
### tomato.lua ###
|
||||||
|
Tomato=помидор
|
||||||
|
|
||||||
|
### wheat.lua ###
|
||||||
|
Wheat Seed=
|
||||||
|
Wheat=семена пшеницы
|
||||||
|
Straw=солома
|
||||||
|
Flour=мука
|
||||||
|
Bread=хлеб
|
||||||
|
Sliced Bread=
|
||||||
|
Toast=
|
||||||
|
Toast Sandwich=
|
@ -1,258 +0,0 @@
|
|||||||
# SOME DESCRIPTIVE TITLE.
|
|
||||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2017-08-16 17:38-0300\n"
|
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
||||||
"Language: \n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
|
|
||||||
#: barley.lua
|
|
||||||
msgid "Barley Seed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: barley.lua
|
|
||||||
msgid "Barley"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: beanpole.lua
|
|
||||||
msgid "Green Beans"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: beanpole.lua
|
|
||||||
msgid "Bean Pole (place on soil before planting beans)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: blueberry.lua
|
|
||||||
msgid "Blueberries"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: blueberry.lua
|
|
||||||
msgid "Blueberry Muffin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: carrot.lua
|
|
||||||
msgid "Carrot"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: carrot.lua
|
|
||||||
msgid "Golden Carrot"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Cocoa Beans"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Cookie"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: cocoa.lua
|
|
||||||
msgid "Bar of Dark Chocolate"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Coffee Beans"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Drinking Cup (empty)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Cold Cup of Coffee"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: coffee.lua
|
|
||||||
msgid "Hot Cup of Coffee"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Corn"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Corn on the Cob"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: corn.lua
|
|
||||||
msgid "Bottle of Ethanol"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: cotton.lua
|
|
||||||
msgid "Cotton Seed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: cotton.lua
|
|
||||||
msgid "Cotton"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: cucumber.lua
|
|
||||||
msgid "Cucumber"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Donut"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Chocolate Donut"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: donut.lua
|
|
||||||
msgid "Apple Donut"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: grapes.lua
|
|
||||||
msgid "Grapes"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: grapes.lua
|
|
||||||
msgid "Trellis (place on soil before planting grapes)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Seed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Leaf"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Bottle of Hemp Oil"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Fibre"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: hemp.lua
|
|
||||||
msgid "Hemp Rope"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Wooden Hoe"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Stone Hoe"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Steel Hoe"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Bronze Hoe"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Mese Hoe"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: hoes.lua
|
|
||||||
msgid "Diamond Hoe"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: init.lua
|
|
||||||
msgid "Seed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: melon.lua
|
|
||||||
msgid "Melon Slice"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: melon.lua
|
|
||||||
msgid "Melon"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: potato.lua
|
|
||||||
msgid "Potato"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: potato.lua
|
|
||||||
msgid "Baked Potato"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Slice"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Jack 'O Lantern (punch to turn on and off)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Bread"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: pumpkin.lua
|
|
||||||
msgid "Pumpkin Dough"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: raspberry.lua
|
|
||||||
msgid "Raspberries"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: raspberry.lua
|
|
||||||
msgid "Raspberry Smoothie"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: rhubarb.lua
|
|
||||||
msgid "Rhubarb"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: rhubarb.lua
|
|
||||||
msgid "Rhubarb Pie"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: soil.lua
|
|
||||||
msgid "Soil"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: soil.lua
|
|
||||||
msgid "Wet Soil"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: sugar.lua
|
|
||||||
msgid "Sugar"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tomato.lua
|
|
||||||
msgid "Tomato"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Wheat Seed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Wheat"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Straw"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Flour"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: wheat.lua
|
|
||||||
msgid "Bread"
|
|
||||||
msgstr ""
|
|
194
locale/template.txt
Normal file
194
locale/template.txt
Normal file
@ -0,0 +1,194 @@
|
|||||||
|
# Translation of the farming mod by TenPlus1
|
||||||
|
# textdomain: farming
|
||||||
|
# author: (you)
|
||||||
|
# last update: 2020/Apr/26
|
||||||
|
|
||||||
|
###### folder . ######
|
||||||
|
|
||||||
|
### init.lua ###
|
||||||
|
Seed=
|
||||||
|
|
||||||
|
### compatibility.lua ###
|
||||||
|
Banana=
|
||||||
|
Banana Leaves=
|
||||||
|
Orange=
|
||||||
|
Strawberry=
|
||||||
|
|
||||||
|
### food.lua ###
|
||||||
|
Sugar=
|
||||||
|
Salt=
|
||||||
|
Rose Water=
|
||||||
|
Turkish Delight=
|
||||||
|
Garlic Bread=
|
||||||
|
Donut=
|
||||||
|
Chocolate Donut=
|
||||||
|
Apple Donut=
|
||||||
|
Porridge=
|
||||||
|
Jaffa Cake=
|
||||||
|
|
||||||
|
### hoes.lua ###
|
||||||
|
Hoe=
|
||||||
|
Wooden Hoe=
|
||||||
|
Stone Hoe=
|
||||||
|
Steel Hoe=
|
||||||
|
Bronze Hoe=
|
||||||
|
Mese Hoe=
|
||||||
|
Diamond Hoe=
|
||||||
|
# Surcharge du mod [Toolranks] à faire #
|
||||||
|
Hoe Bomb (use or throw on grassy areas to hoe land)=
|
||||||
|
Mithril Scythe (Right-click to harvest and replant crops)=
|
||||||
|
# Surcharge du mod [Toolranks] à faire #
|
||||||
|
|
||||||
|
### soil.lua ###
|
||||||
|
Soil=
|
||||||
|
Wet Soil=
|
||||||
|
|
||||||
|
### utensils.lua ###
|
||||||
|
Wooden Bowl=
|
||||||
|
Saucepan=
|
||||||
|
Cooking Pot=
|
||||||
|
Baking Tray=
|
||||||
|
Skillet=
|
||||||
|
Mortar and Pestle=
|
||||||
|
Cutting Board=
|
||||||
|
Juicer=
|
||||||
|
Glass Mixing Bowl=
|
||||||
|
|
||||||
|
|
||||||
|
###### folder ./crops ######
|
||||||
|
|
||||||
|
### barley.lua ###
|
||||||
|
Barley Seed=
|
||||||
|
Barley=
|
||||||
|
|
||||||
|
### beans.lua ###
|
||||||
|
Green Beans=
|
||||||
|
Bean Pole (place on soil before planting beans)=
|
||||||
|
|
||||||
|
### beetroot.lua ###
|
||||||
|
Beetroot=
|
||||||
|
Beetroot Soup=
|
||||||
|
|
||||||
|
### blueberry.lua ###
|
||||||
|
Blueberries=
|
||||||
|
Blueberry Muffin=
|
||||||
|
Blueberry Pie=
|
||||||
|
|
||||||
|
### carrot.lua ##
|
||||||
|
Carrot=
|
||||||
|
Carrot Juice=
|
||||||
|
Golden Carrot=
|
||||||
|
|
||||||
|
### chili.lua ###
|
||||||
|
Chili Pepper=
|
||||||
|
Bowl of Chili=
|
||||||
|
|
||||||
|
### cocoa.lua ###
|
||||||
|
Cocoa Beans=
|
||||||
|
Cookie=
|
||||||
|
Bar of Dark Chocolate=
|
||||||
|
Chocolate Block=
|
||||||
|
|
||||||
|
### coffee.lua ###
|
||||||
|
Coffee Beans=
|
||||||
|
Cup of Coffee=
|
||||||
|
|
||||||
|
### corn.lua ###
|
||||||
|
Corn=
|
||||||
|
Corn on the Cob=
|
||||||
|
Cornstarch=
|
||||||
|
Bottle of Ethanol=
|
||||||
|
|
||||||
|
### cotton.lua ###
|
||||||
|
Cotton Seed=
|
||||||
|
Cotton=
|
||||||
|
String=
|
||||||
|
|
||||||
|
### cucumber.lua ###
|
||||||
|
Cucumber=
|
||||||
|
|
||||||
|
### garlic.lua ###
|
||||||
|
Garlic clove=
|
||||||
|
Garlic=
|
||||||
|
Garlic Braid=
|
||||||
|
|
||||||
|
### grapes.lua ###
|
||||||
|
Grapes=
|
||||||
|
Trellis (place on soil before planting grapes)=
|
||||||
|
|
||||||
|
### hemp.lua ###
|
||||||
|
Hemp Seed=
|
||||||
|
Hemp Leaf=
|
||||||
|
Bottle of Hemp Oil=
|
||||||
|
Hemp Fibre=
|
||||||
|
Hemp Block=
|
||||||
|
Hemp Rope=
|
||||||
|
|
||||||
|
### melon.lua ###
|
||||||
|
Melon Slice=
|
||||||
|
Melon=
|
||||||
|
|
||||||
|
### onion.lua ###
|
||||||
|
Onion=
|
||||||
|
|
||||||
|
### peas.lua ###
|
||||||
|
Pea Pod=
|
||||||
|
Peas=
|
||||||
|
Pea Soup=
|
||||||
|
|
||||||
|
### pepper.lua ###
|
||||||
|
Peppercorn=
|
||||||
|
Pepper=
|
||||||
|
Ground Pepper=
|
||||||
|
|
||||||
|
### pinapple.lua ###
|
||||||
|
Pineapple Top=
|
||||||
|
Pineapple=
|
||||||
|
Pineapple Ring=
|
||||||
|
Pineapple Juice=
|
||||||
|
|
||||||
|
### potato.lua ###
|
||||||
|
Potato=
|
||||||
|
Baked Potato=
|
||||||
|
Cucumber and Potato Salad=
|
||||||
|
|
||||||
|
### pumpkin.lua ###
|
||||||
|
Pumpkin Slice=
|
||||||
|
Jack 'O Lantern (punch to turn on and off)=
|
||||||
|
Scarecrow Bottom=
|
||||||
|
Pumpkin Bread=
|
||||||
|
Pumpkin Dough=
|
||||||
|
Pumpkin=
|
||||||
|
|
||||||
|
### raspberry.lua ###
|
||||||
|
Raspberries=
|
||||||
|
Raspberry Smoothie=
|
||||||
|
|
||||||
|
### rhubarb.lua ###
|
||||||
|
Rhubarb=
|
||||||
|
Rhubarb Pie=
|
||||||
|
|
||||||
|
### ryeoatrice.lua ###
|
||||||
|
Rye=
|
||||||
|
Rye seed=
|
||||||
|
Oat=
|
||||||
|
Oat seed=
|
||||||
|
Rice=
|
||||||
|
Rice grains=
|
||||||
|
Rice Bread=
|
||||||
|
Rice Flour=
|
||||||
|
Multigrain Flour=
|
||||||
|
Multigrain Bread=
|
||||||
|
|
||||||
|
### tomato.lua ###
|
||||||
|
Tomato=
|
||||||
|
|
||||||
|
### wheat.lua ###
|
||||||
|
Wheat Seed=
|
||||||
|
Wheat=
|
||||||
|
Straw=
|
||||||
|
Flour=
|
||||||
|
Bread=
|
||||||
|
Sliced Bread=
|
||||||
|
Toast=
|
||||||
|
Toast Sandwich=
|
Loading…
Reference in New Issue
Block a user