asdf
This commit is contained in:
parent
3361a48a37
commit
91f88ab069
BIN
CJBCheatsMenu/CJBCheatsMenu.dll
Normal file
BIN
CJBCheatsMenu/CJBCheatsMenu.dll
Normal file
Binary file not shown.
252
CJBCheatsMenu/assets/warps.json
Normal file
252
CJBCheatsMenu/assets/warps.json
Normal file
|
@ -0,0 +1,252 @@
|
||||||
|
/*
|
||||||
|
|
||||||
|
The default warps to show in the cheats menu.
|
||||||
|
|
||||||
|
EDITING THIS FILE IS NOT RECOMMENDED.
|
||||||
|
Your changes will be reset each time the mod is updated.
|
||||||
|
|
||||||
|
Instead, see:
|
||||||
|
- For players: https://github.com/CJBok/SDV-Mods/tree/master/CJBCheatsMenu#personal-warps to edit the warp list.
|
||||||
|
- For mod authors: https://github.com/CJBok/SDV-Mods/blob/master/CJBCheatsMenu/docs/author-guide.md to add custom
|
||||||
|
warps through content edits.
|
||||||
|
|
||||||
|
|
||||||
|
--------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
If you *really* want to edit this file, the format is documented below.
|
||||||
|
|
||||||
|
|
||||||
|
### Warps
|
||||||
|
The `Warps` field defines the warps shown in the menu. The order they're listed in doesn't
|
||||||
|
matter; they'll be sorted alphabetically by section and display name.
|
||||||
|
|
||||||
|
Warps are grouped by the section under which to list the warp in the menu. This can match a
|
||||||
|
translation ID in the i18n files, else it'll be shown as-is. See also section order below.
|
||||||
|
|
||||||
|
Each warp has four main fields:
|
||||||
|
|
||||||
|
- `DisplayText`
|
||||||
|
The text to show in the menu. This can match a translation ID in the i18n files, else it'll
|
||||||
|
be shown as-is.
|
||||||
|
|
||||||
|
- `Location`
|
||||||
|
The internal name of the target location (not the translated name). You can use the [Debug
|
||||||
|
Mode](https://www.nexusmods.com/stardewvalley/mods/679) mod to see location names in-game.
|
||||||
|
|
||||||
|
- `Tile`
|
||||||
|
The target tile coordinate. You can use the [Debug Mode](https://www.nexusmods.com/stardewvalley/mods/679)
|
||||||
|
mod to see tile coordinates in-game.
|
||||||
|
|
||||||
|
- `Order`
|
||||||
|
The relative order in which to list it in the warp menu (default 0). Lower values are
|
||||||
|
listed first. Warps with the same order are sorted alphabetically.
|
||||||
|
|
||||||
|
- `Condition`
|
||||||
|
A game state query which indicates whether the warp should be visible, or omit if it should
|
||||||
|
always be visible.
|
||||||
|
|
||||||
|
|
||||||
|
### Section order
|
||||||
|
Warps are grouped into UI sections for easier navigation. The `SectionOrder` field lists
|
||||||
|
sections that should be listed at the top in the listed order. Any other sections will be
|
||||||
|
listed alphabetically after these sections.
|
||||||
|
|
||||||
|
*/
|
||||||
|
{
|
||||||
|
"SectionOrder": [
|
||||||
|
"warp-section.main",
|
||||||
|
"warp-section.town",
|
||||||
|
"warp-section.forest",
|
||||||
|
"warp-section.mountain",
|
||||||
|
"warp-section.beach",
|
||||||
|
"warp-section.desert",
|
||||||
|
"warp-section.island"
|
||||||
|
],
|
||||||
|
|
||||||
|
"Warps": {
|
||||||
|
"warp-section.main": [
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.farm",
|
||||||
|
"Location": "Farm",
|
||||||
|
"Tile": "0, 0", // Farm (0, 0) will be replaced with the tile in front of their home door
|
||||||
|
"Order": -1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.carpenter",
|
||||||
|
"Location": "Mountain",
|
||||||
|
"Tile": "12, 26"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.mines",
|
||||||
|
"Location": "Mine",
|
||||||
|
"Tile": "13, 10"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.pierre-shop",
|
||||||
|
"Location": "Town",
|
||||||
|
"Tile": "43, 57"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"warp-section.town": [
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.blacksmith",
|
||||||
|
"Location": "Town",
|
||||||
|
"Tile": "94, 82"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.community-center",
|
||||||
|
"Location": "Town",
|
||||||
|
"Tile": "52, 20",
|
||||||
|
"Condition": "!IS_JOJA_MART_COMPLETE"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.jojamart",
|
||||||
|
"Location": "Town",
|
||||||
|
"Tile": "95, 51",
|
||||||
|
"Condition": "!IS_COMMUNITY_CENTER_COMPLETE"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.movie-theater",
|
||||||
|
"Location": "Town",
|
||||||
|
"Tile": "95, 51",
|
||||||
|
"Condition": "PLAYER_HAS_MAIL Host ccMovieTheater, !PLAYER_HAS_MAIL Host ccMovieTheaterJoja"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Id": "movie-theater-joja",
|
||||||
|
"DisplayText": "warp.movie-theater",
|
||||||
|
"Location": "Town",
|
||||||
|
"Tile": "52, 20",
|
||||||
|
"Condition": "PLAYER_HAS_MAIL Host ccMovieTheater, PLAYER_HAS_MAIL Host ccMovieTheaterJoja"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.museum",
|
||||||
|
"Location": "Town",
|
||||||
|
"Tile": "101, 90"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.saloon",
|
||||||
|
"Location": "Town",
|
||||||
|
"Tile": "45, 71"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.sewer",
|
||||||
|
"Location": "Sewer",
|
||||||
|
"Tile": "16, 21"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"warp-section.forest": [
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.hats",
|
||||||
|
"Location": "Forest",
|
||||||
|
"Tile": "34, 96"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.ranch",
|
||||||
|
"Location": "Forest",
|
||||||
|
"Tile": "90, 16"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.secret-woods",
|
||||||
|
"Location": "Woods",
|
||||||
|
"Tile": "58, 15"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.wizard-tower",
|
||||||
|
"Location": "Forest",
|
||||||
|
"Tile": "5, 27"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.mastery-cave",
|
||||||
|
"Location": "MasteryCave",
|
||||||
|
"Tile": "7, 10"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"warp-section.mountain": [
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.adventurers-guild",
|
||||||
|
"Location": "Mountain",
|
||||||
|
"Tile": "76, 9"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.bathhouse",
|
||||||
|
"Location": "Railroad",
|
||||||
|
"Tile": "10, 57"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.mutant-bug-lair",
|
||||||
|
"Location": "Bugland",
|
||||||
|
"Tile": "14, 52"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.quarry",
|
||||||
|
"Location": "Mountain",
|
||||||
|
"Tile": "127, 12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.witch-swamp",
|
||||||
|
"Location": "WitchSwamp",
|
||||||
|
"Tile": "20, 23"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"warp-section.beach": [
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.willy-shop",
|
||||||
|
"Location": "Beach",
|
||||||
|
"Tile": "30, 34",
|
||||||
|
"Order": -1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.tide-pools",
|
||||||
|
"Location": "Beach",
|
||||||
|
"Tile": "87, 26"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"warp-section.island": [
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.island-farm",
|
||||||
|
"Location": "IslandWest",
|
||||||
|
"Tile": "77, 41",
|
||||||
|
"Order": -1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.dwarf-shop",
|
||||||
|
"Location": "VolcanoDungeon5",
|
||||||
|
"Tile": "36, 32"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.field-office",
|
||||||
|
"Location": "IslandNorth",
|
||||||
|
"Tile": "46, 48"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.forge",
|
||||||
|
"Location": "Caldera",
|
||||||
|
"Tile": "23, 25"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.leo-house",
|
||||||
|
"Location": "IslandEast",
|
||||||
|
"Tile": "22, 14"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"warp-section.desert": [
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.casino",
|
||||||
|
"Location": "Club",
|
||||||
|
"Tile": "8, 11",
|
||||||
|
"Condition": "PLAYER_HAS_MAIL Current HasClubCard"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.sandy-shop",
|
||||||
|
"Location": "Desert",
|
||||||
|
"Tile": "6, 52"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayText": "warp.skull-cavern",
|
||||||
|
"Location": "SkullCave",
|
||||||
|
"Tile": "3, 4"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
43
CJBCheatsMenu/config.json
Normal file
43
CJBCheatsMenu/config.json
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
{
|
||||||
|
"OpenMenuKey": "P",
|
||||||
|
"ReloadConfigKey": "None",
|
||||||
|
"FreezeTimeKey": "None",
|
||||||
|
"GrowTreeKey": "NumPad1",
|
||||||
|
"GrowCropsKey": "NumPad2",
|
||||||
|
"GrowRadius": 1,
|
||||||
|
"DefaultTab": "PlayerAndTools",
|
||||||
|
"MoveSpeed": 0,
|
||||||
|
"InfiniteHealth": false,
|
||||||
|
"InfiniteStamina": false,
|
||||||
|
"InstantCooldowns": false,
|
||||||
|
"MaxDailyLuck": true,
|
||||||
|
"OneHitKill": false,
|
||||||
|
"OneHitBreak": false,
|
||||||
|
"InfiniteWateringCan": false,
|
||||||
|
"HarvestScythe": true,
|
||||||
|
"InstantBite": false,
|
||||||
|
"InstantCatch": false,
|
||||||
|
"ThrowBobberMax": false,
|
||||||
|
"DurableTackles": false,
|
||||||
|
"AlwaysTreasure": false,
|
||||||
|
"FreezeTime": false,
|
||||||
|
"FreezeTimeInside": false,
|
||||||
|
"FreezeTimeCaves": false,
|
||||||
|
"FadeTimeFrozenMessage": false,
|
||||||
|
"FastFruitTree": false,
|
||||||
|
"FastBuildings": [],
|
||||||
|
"FastMachines": [],
|
||||||
|
"HideWarpSections": [],
|
||||||
|
"HideWarps": [],
|
||||||
|
"AddWarpSections": [],
|
||||||
|
"AddWarps": [],
|
||||||
|
"AlwaysGiveGift": false,
|
||||||
|
"NoFriendshipDecay": true,
|
||||||
|
"DurableFences": false,
|
||||||
|
"InstantBuild": false,
|
||||||
|
"AutoFeed": false,
|
||||||
|
"AutoPetAnimals": true,
|
||||||
|
"AutoPetPets": true,
|
||||||
|
"AutoWater": false,
|
||||||
|
"InfiniteHay": false
|
||||||
|
}
|
278
CJBCheatsMenu/i18n/de.json
Normal file
278
CJBCheatsMenu/i18n/de.json
Normal file
|
@ -0,0 +1,278 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB Cheatmenü",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "Spieler & Werkzeuge",
|
||||||
|
"tabs.farm-and-fishing": "Farm & Fischen",
|
||||||
|
"tabs.skills": "Fertigkeiten",
|
||||||
|
"tabs.weather": "Wetter",
|
||||||
|
"tabs.relationships": "Beziehungen",
|
||||||
|
"tabs.warp": "Teleportieren",
|
||||||
|
"tabs.time": "Zeit",
|
||||||
|
"tabs.advanced": "Erweitert",
|
||||||
|
"tabs.controls": "Steuerung",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "Spieler",
|
||||||
|
"player.infinite-stamina": "Unendliche Ausdauer",
|
||||||
|
"player.infinite-health": "Unendlich Leben",
|
||||||
|
"player.instant-cooldowns": "Sofortige Waffen-Cooldowns",
|
||||||
|
"player.inventory-size": "Inventargröße",
|
||||||
|
"player.movement-speed": "Bewegungsgeschwindigkeit",
|
||||||
|
"player.movement-speed.default": "normal",
|
||||||
|
"player.one-hit-kill": "Mit einem Schlag töten",
|
||||||
|
"player.max-daily-luck": "Maximales tägliches Glück",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "Werkzeuge",
|
||||||
|
"tools.infinite-water": "Unendlich Wasser in Gießkanne",
|
||||||
|
"tools.one-hit-break": "Mit einem Schlag zerstören",
|
||||||
|
"tools.harvest-with-scythe": "Mit Sense ernten",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
// TODO
|
||||||
|
"tool-enchantments.title": "Tool Enchantments",
|
||||||
|
"tool-enchantments.select-tool": "Select a tool on your toolbar to edit enchantments.",
|
||||||
|
"tool-enchantments.none-for-tool": "No enchantments available for selected {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "For the selected {{toolName}}.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "Geld",
|
||||||
|
"add.casino-coins": "Casino Münzen",
|
||||||
|
"add.golden-walnuts": "Goldene Walnüsse",
|
||||||
|
"add.qi-gems": "Qi-Edelsteine",
|
||||||
|
"add.amount-gold": "Füge {{amount}}g hinzu",
|
||||||
|
"add.amount-other": "Füge {{amount}} hinzu",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "Farm",
|
||||||
|
"farm.auto-water": "Automatisches Gießen",
|
||||||
|
"farm.durable-fences": "Widerstandsfähige Zäune",
|
||||||
|
"farm.instant-build": "Sofortiger Bau",
|
||||||
|
"farm.auto-feed-animals": "Immer automatisch füttern",
|
||||||
|
"farm.auto-pet-animals": "Tiere automatisch füttern",
|
||||||
|
"farm.auto-pet-pets": "Auto-Pet Pets", // TODO
|
||||||
|
"farm.infinite-hay": "Unendlich Heu",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "Angeln",
|
||||||
|
"fishing.instant-catch": "Sofortiger Fang",
|
||||||
|
"fishing.instant-bite": "Sofortiger Biss",
|
||||||
|
"fishing.always-throw-max-distance": "Immer über maximale Distanz auswerfen",
|
||||||
|
"fishing.always-treasure": "Jedes mal Schatz",
|
||||||
|
"fishing.durable-tackles": "Haltbares Angelzubehör",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "Schnelle maschinelle Verarbeitung",
|
||||||
|
"fast-machines.fruit-trees": "Fruchtbäume",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (morgens fertig)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "Fähigkeiten",
|
||||||
|
"skills.increase-farming": "Erhöhe Hofarbeit Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "Erhöhe Minenarbeit Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "Erhöhe Sammeln Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "Erhöhe Fischen Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "Erhöhe Kampf Lvl: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "Berufe",
|
||||||
|
"professions.combat.fighter": "Kampf lvl 5 - Kämpfer",
|
||||||
|
"professions.combat.scout": "Kampf lvl 5 - Kundschafter",
|
||||||
|
"professions.combat.acrobat": "Kampf lvl 10 - Akrobat",
|
||||||
|
"professions.combat.brute": "Kampf lvl 10 - Schläger",
|
||||||
|
"professions.combat.defender": "Kampf lvl 10 - Verteidiger",
|
||||||
|
"professions.combat.desperado": "Kampf lvl 10 - Desperado",
|
||||||
|
"professions.farming.rancher": "Hofarbeit lvl 5 - Viehzüchter",
|
||||||
|
"professions.farming.tiller": "Hofarbeit lvl 5 - Ackerbauer",
|
||||||
|
"professions.farming.agriculturist": "Hofarbeit lvl 10 - Landwirt",
|
||||||
|
"professions.farming.artisan": "Hofarbeit lvl 10 - Handwerker",
|
||||||
|
"professions.farming.coopmaster": "Hofarbeit lvl 10 - Stallmeister",
|
||||||
|
"professions.farming.shepherd": "Hofarbeit lvl 10 - Hirte",
|
||||||
|
"professions.fishing.fisher": "Fischen lvl 5 - Fischer",
|
||||||
|
"professions.fishing.trapper": "Fischen lvl 5 - Fallensteller",
|
||||||
|
"professions.fishing.angler": "Fischen lvl 10 - Angler",
|
||||||
|
"professions.fishing.luremaster": "Fischen lvl 10 - Lockmeister",
|
||||||
|
"professions.fishing.mariner": "Fischen lvl 10 - Seemann",
|
||||||
|
"professions.fishing.pirate": "Fischen lvl 10 - Pirat",
|
||||||
|
"professions.foraging.forester": "Sammeln lvl 5 - Förster",
|
||||||
|
"professions.foraging.gatherer": "Sammeln lvl 5 - Sammler",
|
||||||
|
"professions.foraging.botanist": "Sammeln lvl 10 - Botanist",
|
||||||
|
"professions.foraging.lumberjack": "Sammeln lvl 10 - Holzfäller",
|
||||||
|
"professions.foraging.tapper": "Sammeln lvl 10 - Zapfmeister",
|
||||||
|
"professions.foraging.tracker": "Sammeln lvl 10 - Fährtenleser",
|
||||||
|
"professions.mining.geologist": "Minenarbeit lvl 5 - Geologe",
|
||||||
|
"professions.mining.miner": "Minenarbeit lvl 5 - Minenarbeiter",
|
||||||
|
"professions.mining.blacksmith": "Minenarbeit lvl 10 - Schmied",
|
||||||
|
"professions.mining.excavator": "Minenarbeit lvl 10 - Ausgräber",
|
||||||
|
"professions.mining.gemologist": "Minenarbeit lvl 10 - Gemmologe",
|
||||||
|
"professions.mining.prospector": "Minenarbeit lvl 10 - Erzsucher",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "Wetter Morgen",
|
||||||
|
"weather.current-value": "Tomorrow's weather is set to {{weather}}.", // TODO
|
||||||
|
"weather.explanation": "Click a button below to set the weather for tomorrow (and only tomorrow). This tab has zero effect on weather otherwise.", // TODO
|
||||||
|
"weather.sunny": "Sonnig",
|
||||||
|
"weather.raining": "Regen",
|
||||||
|
"weather.lightning": "Gewitter",
|
||||||
|
"weather.snowing": "Schnee",
|
||||||
|
"weather.green-rain": "Green Raining", // TODO
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "Beziehungen",
|
||||||
|
"relationships.give-gifts-anytime": "Geschenke jederzeit übergeben",
|
||||||
|
"relationships.no-decay": "Kein Freundschaftsrückfall",
|
||||||
|
"relationships.friends": "Freunde",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "These warps were edited by your mods. Please report warp issues to the mods which added them if applicable.", // TODO
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "Hauptgebiete",
|
||||||
|
"warp.farm": "Farm",
|
||||||
|
"warp.carpenter": "Schreinerladen",
|
||||||
|
"warp.desert": "Wüste",
|
||||||
|
"warp.mines": "Minen",
|
||||||
|
"warp.pierre-shop": "Pierres Gemischtwarenladen",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "Stadt",
|
||||||
|
"warp.blacksmith": "Schmiede",
|
||||||
|
"warp.community-center": "Gemeinschaftszentrum",
|
||||||
|
"warp.jojamart": "Joja-Markt",
|
||||||
|
"warp.movie-theater": "Kino",
|
||||||
|
"warp.museum": "Museum",
|
||||||
|
"warp.saloon": "Saloon",
|
||||||
|
"warp.sewer": "Kanalisation",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "Wald",
|
||||||
|
"warp.hats": "Hüte",
|
||||||
|
"warp.mastery-cave": "Mastery Cave", // TODO
|
||||||
|
"warp.ranch": "Marnies Ranch",
|
||||||
|
"warp.secret-woods": "Geheimer Wald",
|
||||||
|
"warp.wizard-tower": "Turm des Zauberers",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "Berge",
|
||||||
|
"warp.adventurers-guild": "Abenteurergilde",
|
||||||
|
"warp.bathhouse": "Spa",
|
||||||
|
"warp.mutant-bug-lair": "Mutantenkäferhöhle",
|
||||||
|
"warp.quarry": "Steinbruch",
|
||||||
|
"warp.witch-swamp": "Hexensumpf",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "Strand",
|
||||||
|
"warp.tide-pools": "Gezeitentümpel",
|
||||||
|
"warp.willy-shop": "Angelbedarf",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "Ingwerinsel",
|
||||||
|
"warp.forge": "Vulkanschmiede",
|
||||||
|
"warp.island-farm": "Insel Farm",
|
||||||
|
"warp.dwarf-shop": "Zwergenladen",
|
||||||
|
"warp.field-office": "Insel-Außenstelle",
|
||||||
|
"warp.leo-house": "Leo's Haus",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "Wüste",
|
||||||
|
"warp.casino": "Casino",
|
||||||
|
"warp.sandy-shop": "Oase",
|
||||||
|
"warp.skull-cavern": "Schädelhöhle",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
//time
|
||||||
|
"time.title": "Zeit",
|
||||||
|
"time.freeze-inside": "Zeit in Gebäuden stoppen",
|
||||||
|
"time.freeze-caves": "Zeit in Höhlen stoppen",
|
||||||
|
"time.freeze-everywhere": "Zeit überall stoppen",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds", // TODO
|
||||||
|
"time.time": "Zeit",
|
||||||
|
"time.time-frozen-message": "Zeit gestoppt",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "Datum",
|
||||||
|
"date.warning": "Manche Dinge werden erst aktualisiert, wenn man geschlafen hat.",
|
||||||
|
"date.year": "Jahr",
|
||||||
|
"date.season": "Jahreszeit",
|
||||||
|
"date.day": "Tage",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "Benutze diesen Abschnitt auf eigene Gefahr!\nDies kann zu Problemen wie übersprungene Briefe, Ereignisse oder Quests führen.",
|
||||||
|
"flags.quests": "Schließe Quests ab",
|
||||||
|
"flags.wallet": "Geldbörsen-Gegenstände",
|
||||||
|
"flags.unlocked": "Freigeschaltete Gebiete",
|
||||||
|
"flags.unlocked.guild": "Abenteurergilde",
|
||||||
|
"flags.unlocked.room": "Raum: {{name}}",
|
||||||
|
"flags.unlocked-content": "Freigeschaltete Inhalte",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "Farben & Schneiderei",
|
||||||
|
"flags.unlocked-content.junimo-text": "Can read Junimo text", // TODO
|
||||||
|
"flags.unlocked-content.perfection": "Perfection achieved", // TODO
|
||||||
|
"flags.community-center": "Gemeinschaftszentrum",
|
||||||
|
"flags.community-center.door-unlocked": "Tür aufgeschlossen",
|
||||||
|
"flags.jojamart.membership": "Joja-Markt-Mitgliedschaft",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "Steuerungen",
|
||||||
|
"controls.android-config-note": "Du kannst die On-Screen Buttons in den Konfigurationsdateien für das CJB Cheats Menu und Virtual Keyboard Mods ändern.",
|
||||||
|
"controls.open-menu": "Menü öffnen",
|
||||||
|
"controls.freeze-time": "Zeit stoppen",
|
||||||
|
"controls.grow-tree": "Baum wachsen lassen",
|
||||||
|
"controls.grow-crops": "Saat wachsen lassen",
|
||||||
|
"controls.grow-radius": "Wachstumsradius um Spieler",
|
||||||
|
"controls.reset-controls": "Reset",
|
||||||
|
"controls.press-new-key": "Neue Taste drücken...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.open-menu.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
"config.freeze-time.desc": "The keybind which freezes the game clock.",
|
||||||
|
"config.grow-tree.desc": "The keybind held to grow trees around the player.",
|
||||||
|
"config.grow-crops.desc": "The keybind held to grow crops around the player.",
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
"controls.reload-config": "Reload settings from file",
|
||||||
|
"controls.reload-config.desc": "The keybind which reloads the mod settings from the mod's config.json file. If the menu is currently open, changes may only take effect when it's reopened.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Other options",
|
||||||
|
"config.default-tab.name": "Default tab",
|
||||||
|
"config.default-tab.desc": "The tab shown by default when you open the menu.",
|
||||||
|
"config.other-options": "To configure cheats, press the 'open menu' key shown above in-game. Make sure you press it after loading the save, when no other menu or dialogue is open."
|
||||||
|
}
|
275
CJBCheatsMenu/i18n/default.json
Normal file
275
CJBCheatsMenu/i18n/default.json
Normal file
|
@ -0,0 +1,275 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB Cheats Menu",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "Player & Tools",
|
||||||
|
"tabs.farm-and-fishing": "Farm & Fishing",
|
||||||
|
"tabs.skills": "Skills",
|
||||||
|
"tabs.weather": "Weather",
|
||||||
|
"tabs.relationships": "Relationships",
|
||||||
|
"tabs.warp": "Warp Locations",
|
||||||
|
"tabs.time": "Time",
|
||||||
|
"tabs.advanced": "Advanced",
|
||||||
|
"tabs.controls": "Controls",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "Player",
|
||||||
|
"player.infinite-stamina": "Infinite Stamina",
|
||||||
|
"player.infinite-health": "Infinite Health",
|
||||||
|
"player.instant-cooldowns": "Instant Weapon Cooldowns",
|
||||||
|
"player.inventory-size": "Inventory Size",
|
||||||
|
"player.movement-speed": "Move Speed",
|
||||||
|
"player.movement-speed.default": "normal",
|
||||||
|
"player.one-hit-kill": "One Hit Kill",
|
||||||
|
"player.max-daily-luck": "Max Daily Luck",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "Tools",
|
||||||
|
"tools.infinite-water": "Infinite Water in Can",
|
||||||
|
"tools.one-hit-break": "One Hit Break",
|
||||||
|
"tools.harvest-with-scythe": "Harvest With Scythe",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
"tool-enchantments.title": "Tool Enchantments",
|
||||||
|
"tool-enchantments.select-tool": "Select a tool on your toolbar to edit enchantments.",
|
||||||
|
"tool-enchantments.none-for-tool": "No enchantments available for selected {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "For the selected {{toolName}}.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "Money",
|
||||||
|
"add.casino-coins": "Casino Coins",
|
||||||
|
"add.golden-walnuts": "Golden Walnuts",
|
||||||
|
"add.qi-gems": "Qi Gems",
|
||||||
|
"add.amount-gold": "Add {{amount}}g",
|
||||||
|
"add.amount-other": "Add {{amount}}",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "Farm",
|
||||||
|
"farm.auto-water": "Auto-Water Crops",
|
||||||
|
"farm.durable-fences": "Durable Fences",
|
||||||
|
"farm.instant-build": "Instant Build",
|
||||||
|
"farm.auto-feed-animals": "Auto-Feed Animals",
|
||||||
|
"farm.auto-pet-animals": "Auto-Pet Animals",
|
||||||
|
"farm.auto-pet-pets": "Auto-Pet Pets",
|
||||||
|
"farm.infinite-hay": "Infinite Hay",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "Fishing",
|
||||||
|
"fishing.instant-catch": "Instant Catch",
|
||||||
|
"fishing.instant-bite": "Instant Bite",
|
||||||
|
"fishing.always-throw-max-distance": "Always Throw Max Distance",
|
||||||
|
"fishing.always-treasure": "Always Treasure",
|
||||||
|
"fishing.durable-tackles": "Durable Tackles",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "Fast Machine Processing",
|
||||||
|
"fast-machines.fruit-trees": "Fruit Trees",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (ready in the morning)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "Skills",
|
||||||
|
"skills.increase-farming": "Incr. Farming Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "Incr. Mining Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "Incr. Foraging Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "Incr. Fishing Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "Incr. Combat Lvl: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "Professions",
|
||||||
|
"professions.combat.fighter": "Combat lvl 5 - Fighter",
|
||||||
|
"professions.combat.scout": "Combat lvl 5 - Scout",
|
||||||
|
"professions.combat.acrobat": "Combat lvl 10 - Acrobat",
|
||||||
|
"professions.combat.brute": "Combat lvl 10 - Brute",
|
||||||
|
"professions.combat.defender": "Combat lvl 10 - Defender",
|
||||||
|
"professions.combat.desperado": "Combat lvl 10 - Desperado",
|
||||||
|
"professions.farming.rancher": "Farming lvl 5 - Rancher",
|
||||||
|
"professions.farming.tiller": "Farming lvl 5 - Tiller",
|
||||||
|
"professions.farming.agriculturist": "Farming lvl 10 - Agriculturist",
|
||||||
|
"professions.farming.artisan": "Farming lvl 10 - Artisan",
|
||||||
|
"professions.farming.coopmaster": "Farming lvl 10 - Coopmaster",
|
||||||
|
"professions.farming.shepherd": "Farming lvl 10 - Shepherd",
|
||||||
|
"professions.fishing.fisher": "Fishing lvl 5 - Fisher",
|
||||||
|
"professions.fishing.trapper": "Fishing lvl 5 - Trapper",
|
||||||
|
"professions.fishing.angler": "Fishing lvl 10 - Angler",
|
||||||
|
"professions.fishing.luremaster": "Fishing lvl 10 - Luremaster",
|
||||||
|
"professions.fishing.mariner": "Fishing lvl 10 - Mariner",
|
||||||
|
"professions.fishing.pirate": "Fishing lvl 10 - Pirate",
|
||||||
|
"professions.foraging.forester": "Foraging lvl 5 - Forester",
|
||||||
|
"professions.foraging.gatherer": "Foraging lvl 5 - Gatherer",
|
||||||
|
"professions.foraging.botanist": "Foraging lvl 10 - Botanist",
|
||||||
|
"professions.foraging.lumberjack": "Foraging lvl 10 - Lumberjack",
|
||||||
|
"professions.foraging.tapper": "Foraging lvl 10 - Tapper",
|
||||||
|
"professions.foraging.tracker": "Foraging lvl 10 - Tracker",
|
||||||
|
"professions.mining.geologist": "Mining lvl 5 - Geologist",
|
||||||
|
"professions.mining.miner": "Mining lvl 5 - Miner",
|
||||||
|
"professions.mining.blacksmith": "Mining lvl 10 - Blacksmith",
|
||||||
|
"professions.mining.excavator": "Mining lvl 10 - Excavator",
|
||||||
|
"professions.mining.gemologist": "Mining lvl 10 - Gemologist",
|
||||||
|
"professions.mining.prospector": "Mining lvl 10 - Prospector",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "Weather Tomorrow",
|
||||||
|
"weather.current-value": "Tomorrow's weather is set to {{weather}}.",
|
||||||
|
"weather.explanation": "Click a button below to set the weather for tomorrow (and only tomorrow). This tab has zero effect on weather otherwise.",
|
||||||
|
"weather.sunny": "Sunny",
|
||||||
|
"weather.raining": "Raining",
|
||||||
|
"weather.lightning": "Lightning",
|
||||||
|
"weather.snowing": "Snowing",
|
||||||
|
"weather.green-rain": "Green Raining",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "Relationships",
|
||||||
|
"relationships.give-gifts-anytime": "Give Gifts Anytime",
|
||||||
|
"relationships.no-decay": "No Friendship Decay",
|
||||||
|
"relationships.friends": "Friends",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "These warps were edited by your mods. Please report warp issues to the mods which added them if applicable.",
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "Main Areas",
|
||||||
|
"warp.farm": "Farm",
|
||||||
|
"warp.carpenter": "Carpenter",
|
||||||
|
"warp.desert": "Desert",
|
||||||
|
"warp.mines": "Mines",
|
||||||
|
"warp.pierre-shop": "Pierre's Shop",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "Town",
|
||||||
|
"warp.blacksmith": "Blacksmith",
|
||||||
|
"warp.community-center": "Community Center",
|
||||||
|
"warp.jojamart": "JojaMart",
|
||||||
|
"warp.movie-theater": "Movie Theater",
|
||||||
|
"warp.museum": "Museum",
|
||||||
|
"warp.saloon": "Saloon",
|
||||||
|
"warp.sewer": "Sewers",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "Forest",
|
||||||
|
"warp.hats": "Hats",
|
||||||
|
"warp.mastery-cave": "Mastery Cave",
|
||||||
|
"warp.ranch": "Marnie's Ranch",
|
||||||
|
"warp.secret-woods": "Secret Woods",
|
||||||
|
"warp.wizard-tower": "Wizard Tower",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "Mountain",
|
||||||
|
"warp.adventurers-guild": "Adventurer's Guild",
|
||||||
|
"warp.bathhouse": "Bathhouse",
|
||||||
|
"warp.mutant-bug-lair": "Mutant Bug Lair",
|
||||||
|
"warp.quarry": "Quarry",
|
||||||
|
"warp.witch-swamp": "Witch's Swamp",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "Beach",
|
||||||
|
"warp.tide-pools": "Tide Pools",
|
||||||
|
"warp.willy-shop": "Willy's Shop",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "Ginger Island",
|
||||||
|
"warp.forge": "Forge",
|
||||||
|
"warp.island-farm": "Island Farm",
|
||||||
|
"warp.dwarf-shop": "Volcano Dwarf Shop",
|
||||||
|
"warp.field-office": "Field Office",
|
||||||
|
"warp.leo-house": "Leo's House",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "Desert",
|
||||||
|
"warp.casino": "Casino",
|
||||||
|
"warp.sandy-shop": "Sandy's Shop",
|
||||||
|
"warp.skull-cavern": "Skull Cavern",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "Time",
|
||||||
|
"time.freeze-inside": "Freeze Time Inside",
|
||||||
|
"time.freeze-caves": "Freeze Time In Caves",
|
||||||
|
"time.freeze-everywhere": "Freeze Time Everywhere",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds",
|
||||||
|
"time.time": "Time",
|
||||||
|
"time.time-frozen-message": "Time Frozen",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "Date",
|
||||||
|
"date.warning": "Some things won't update until a night has passed.",
|
||||||
|
"date.year": "Year",
|
||||||
|
"date.season": "Season",
|
||||||
|
"date.day": "Day",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "Use this section at your own risk!\nThis may cause issues like skipped mail, events, or quests.",
|
||||||
|
"flags.quests": "Complete Quests",
|
||||||
|
"flags.wallet": "Wallet Items",
|
||||||
|
"flags.unlocked": "Unlocked Areas",
|
||||||
|
"flags.unlocked.guild": "Adventurer's Guild",
|
||||||
|
"flags.unlocked.room": "Room: {{name}}",
|
||||||
|
"flags.unlocked-content": "Unlocked content",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "Dyes & tailoring",
|
||||||
|
"flags.unlocked-content.junimo-text": "Can read Junimo text",
|
||||||
|
"flags.unlocked-content.perfection": "Perfection achieved",
|
||||||
|
"flags.community-center": "Community Center",
|
||||||
|
"flags.community-center.door-unlocked": "Door Unlocked",
|
||||||
|
"flags.jojamart.membership": "JojaMart Membership",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "Controls",
|
||||||
|
"controls.android-config-note": "You can change the on-screen buttons in the config files for the CJB Cheats Menu and Virtual Keyboard mods.",
|
||||||
|
"controls.open-menu": "Open Menu",
|
||||||
|
"controls.freeze-time": "Freeze Time",
|
||||||
|
"controls.grow-tree": "Grow Tree",
|
||||||
|
"controls.grow-crops": "Grow Crops",
|
||||||
|
"controls.grow-radius": "Grow distance around player",
|
||||||
|
"controls.reset-controls": "Reset",
|
||||||
|
"controls.press-new-key": "Press New Key...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.open-menu.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
"config.freeze-time.desc": "The keybind which freezes the game clock.",
|
||||||
|
"config.grow-tree.desc": "The keybind held to grow trees around the player.",
|
||||||
|
"config.grow-crops.desc": "The keybind held to grow crops around the player.",
|
||||||
|
|
||||||
|
"controls.reload-config": "Reload settings from file",
|
||||||
|
"controls.reload-config.desc": "The keybind which reloads the mod settings from the mod's config.json file. If the menu is currently open, changes may only take effect when it's reopened.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Other options",
|
||||||
|
"config.default-tab.name": "Default tab",
|
||||||
|
"config.default-tab.desc": "The tab shown by default when you open the menu.",
|
||||||
|
"config.other-options": "To configure cheats, press the 'open menu' key shown above in-game. Make sure you press it after loading the save, when no other menu or dialogue is open."
|
||||||
|
}
|
277
CJBCheatsMenu/i18n/es.json
Normal file
277
CJBCheatsMenu/i18n/es.json
Normal file
|
@ -0,0 +1,277 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "Menú de Trucos CJB",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "Jugador & Herramientas",
|
||||||
|
"tabs.farm-and-fishing": "Granja & Pesca",
|
||||||
|
"tabs.skills": "Habilidades",
|
||||||
|
"tabs.weather": "Clima",
|
||||||
|
"tabs.relationships": "Relaciones",
|
||||||
|
"tabs.warp": "Puntos de Teletransporte",
|
||||||
|
"tabs.time": "Tiempo",
|
||||||
|
"tabs.advanced": "Opciones Avanzadas",
|
||||||
|
"tabs.controls": "Controles",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "Jugador",
|
||||||
|
"player.infinite-stamina": "Energía Infinita",
|
||||||
|
"player.infinite-health": "Salud Infinita",
|
||||||
|
"player.instant-cooldowns": "Reutilización Instantánea de Armas",
|
||||||
|
"player.inventory-size": "Tamaño de Inventario",
|
||||||
|
"player.movement-speed": "Velocidad de Movimiento",
|
||||||
|
"player.movement-speed.default": "normal",
|
||||||
|
"player.one-hit-kill": "Matar de Un Golpe",
|
||||||
|
"player.max-daily-luck": "Máxima Suerte Diaria",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "Herramientas",
|
||||||
|
"tools.infinite-water": "Agua Infinita en la Regadera",
|
||||||
|
"tools.one-hit-break": "Romper de Un Golpe",
|
||||||
|
"tools.harvest-with-scythe": "Cosechar con Guadaña",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
// TODO
|
||||||
|
"tool-enchantments.title": "Tool Enchantments",
|
||||||
|
"tool-enchantments.select-tool": "Select a tool on your toolbar to edit enchantments.",
|
||||||
|
"tool-enchantments.none-for-tool": "No enchantments available for selected {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "For the selected {{toolName}}.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "Dinero",
|
||||||
|
"add.casino-coins": "Monedas Del Casino",
|
||||||
|
"add.golden-walnuts": "Nueces De Oro",
|
||||||
|
"add.qi-gems": "Gemas Qi",
|
||||||
|
"add.amount-gold": "Añadir {{amount}}o",
|
||||||
|
"add.amount-other": "Añadir {{amount}}",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "Granja",
|
||||||
|
"farm.auto-water": "Regar Cultivos Automáticamente",
|
||||||
|
"farm.durable-fences": "Vallas Duraderas",
|
||||||
|
"farm.instant-build": "Construcciones Instantáneas",
|
||||||
|
"farm.auto-feed-animals": "Alimentar Animales Automáticamente",
|
||||||
|
"farm.auto-pet-animals": "Acariciar Animales Automáticamente",
|
||||||
|
"farm.auto-pet-pets": "Acariciar Mascotas Automáticamente",
|
||||||
|
"farm.infinite-hay": "Heno Infinito",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "Pesca",
|
||||||
|
"fishing.instant-catch": "Captura Instantánea",
|
||||||
|
"fishing.instant-bite": "Mordida Instantánea",
|
||||||
|
"fishing.always-throw-max-distance": "Siempre Lanzar Distancia Máxima",
|
||||||
|
"fishing.always-treasure": "Siempre Tesoros",
|
||||||
|
"fishing.durable-tackles": "Aparejos Duraderos",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "Procesamiento Rápido de Máquinas",
|
||||||
|
"fast-machines.fruit-trees": "Árboles Frutales",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (lista por la mañana)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "Habilidades",
|
||||||
|
"skills.increase-farming": "Agricultura Lvl +1: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "Minería Lvl +1: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "Recolección Lvl +1: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "Pesca Lvl +1: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "Combate Lvl +1: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "Profesiones",
|
||||||
|
"professions.combat.fighter": "Combate lvl 5 - Luchador",
|
||||||
|
"professions.combat.scout": "Combate lvl 5 - Explorador",
|
||||||
|
"professions.combat.acrobat": "Combate lvl 10 - Acróbata",
|
||||||
|
"professions.combat.brute": "Combate lvl 10 - Bestia",
|
||||||
|
"professions.combat.defender": "Combate lvl 10 - Defensor",
|
||||||
|
"professions.combat.desperado": "Combate lvl 10 - Berserker",
|
||||||
|
"professions.farming.rancher": "Agricultura lvl 5 - Ranchero",
|
||||||
|
"professions.farming.tiller": "Agricultura lvl 5 - Labrador",
|
||||||
|
"professions.farming.agriculturist": "Agricultura lvl 10 - Agricultor",
|
||||||
|
"professions.farming.artisan": "Agricultura lvl 10 - Artesano",
|
||||||
|
"professions.farming.coopmaster": "Agricultura lvl 10 - Corralero",
|
||||||
|
"professions.farming.shepherd": "Agricultura lvl 10 - Pastor",
|
||||||
|
"professions.fishing.fisher": "Pesca lvl 5 - Pescador",
|
||||||
|
"professions.fishing.trapper": "Pesca lvl 5 - Trampero",
|
||||||
|
"professions.fishing.angler": "Pesca lvl 10 - Pesquero",
|
||||||
|
"professions.fishing.luremaster": "Pesca lvl 10 - As del señuelo",
|
||||||
|
"professions.fishing.mariner": "Pesca lvl 10 - Marino",
|
||||||
|
"professions.fishing.pirate": "Pesca lvl 10 - Pirata",
|
||||||
|
"professions.foraging.forester": "Recolección lvl 5 - Guardabosques",
|
||||||
|
"professions.foraging.gatherer": "Recolección lvl 5 - Recolector",
|
||||||
|
"professions.foraging.botanist": "Recolección lvl 10 - Botánico",
|
||||||
|
"professions.foraging.lumberjack": "Recolección lvl 10 - Leñador",
|
||||||
|
"professions.foraging.tapper": "Recolección lvl 10 - Resinador",
|
||||||
|
"professions.foraging.tracker": "Recolección lvl 10 - Rastreador",
|
||||||
|
"professions.mining.geologist": "Minería lvl 5 - Geólogo",
|
||||||
|
"professions.mining.miner": "Minería lvl 5 - Minero",
|
||||||
|
"professions.mining.blacksmith": "Minería lvl 10 - Herrero",
|
||||||
|
"professions.mining.excavator": "Minería lvl 10 - Excavador",
|
||||||
|
"professions.mining.gemologist": "Minería lvl 10 - Gemólogo",
|
||||||
|
"professions.mining.prospector": "Minería lvl 10 - Buscador",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "Clima para Mañana",
|
||||||
|
"weather.current-value": "Tomorrow's weather is set to {{weather}}.", // TODO
|
||||||
|
"weather.explanation": "Haz clic en un botón para establecer el clima para mañana (y sólo para MAÑANA). Esto no tiene ningún efecto sobre el clima de hoy.",
|
||||||
|
"weather.sunny": "Sol",
|
||||||
|
"weather.raining": "Lluvia",
|
||||||
|
"weather.lightning": "Tormenta",
|
||||||
|
"weather.snowing": "Nieve",
|
||||||
|
"weather.green-rain": "Green Raining", // TODO
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "Relaciones",
|
||||||
|
"relationships.give-gifts-anytime": "Dar regalos en cualquier momento",
|
||||||
|
"relationships.no-decay": "Ninguna Amistad Disminuye",
|
||||||
|
"relationships.friends": "Amigos",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "Estos teletransportes han sido añadidos por tus Mods. Debes informar de los problemas al creador del Mod que los añadieron, sólo si procede.",
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "Áreas Principales",
|
||||||
|
"warp.farm": "Granja",
|
||||||
|
"warp.carpenter": "Carpintería",
|
||||||
|
"warp.desert": "Desierto de Calico",
|
||||||
|
"warp.mines": "Minas",
|
||||||
|
"warp.pierre-shop": "Tienda de Pierre",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "Pueblo",
|
||||||
|
"warp.blacksmith": "Herrería",
|
||||||
|
"warp.community-center": "Centro Cívico",
|
||||||
|
"warp.jojamart": "MercaJoja",
|
||||||
|
"warp.movie-theater": "El Cine",
|
||||||
|
"warp.museum": "Museo y Biblioteca",
|
||||||
|
"warp.saloon": "Salón",
|
||||||
|
"warp.sewer": "Alcantarillas",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "Bosque",
|
||||||
|
"warp.hats": "Sombreros",
|
||||||
|
"warp.mastery-cave": "Cueva de la Maestría",
|
||||||
|
"warp.ranch": "Rancho de Marnie",
|
||||||
|
"warp.secret-woods": "Bosque Secreto",
|
||||||
|
"warp.wizard-tower": "Torre del Mago",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "Montaña",
|
||||||
|
"warp.adventurers-guild": "Gremio de Aventureros",
|
||||||
|
"warp.bathhouse": "Spa",
|
||||||
|
"warp.mutant-bug-lair": "Madriguera de Bichos Mutantes",
|
||||||
|
"warp.quarry": "Cantera",
|
||||||
|
"warp.witch-swamp": "Pantano de la Bruja",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "Playa",
|
||||||
|
"warp.tide-pools": "Pozas de marea",
|
||||||
|
"warp.willy-shop": "Tienda de Pesca",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "Isla Jengibre",
|
||||||
|
"warp.forge": "Forja",
|
||||||
|
"warp.island-farm": "Granja de la Isla",
|
||||||
|
"warp.dwarf-shop": "Tienda del Enano del Volcán",
|
||||||
|
"warp.field-office": "Oficina de Campo",
|
||||||
|
"warp.leo-house": "Casa de Leo",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "Desierto",
|
||||||
|
"warp.casino": "Casino",
|
||||||
|
"warp.sandy-shop": "Tienda de Sandy",
|
||||||
|
"warp.skull-cavern": "Caverna Calavera",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "Tiempo",
|
||||||
|
"time.freeze-inside": "Detener Tiempo en Interiores",
|
||||||
|
"time.freeze-caves": "Detener Tiempo en Cuevas & Minas",
|
||||||
|
"time.freeze-everywhere": "Detener Tiempo en Todas Partes",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds", // TODO
|
||||||
|
"time.time": "Hora",
|
||||||
|
"time.time-frozen-message": "Tiempo Detenido",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "Fecha",
|
||||||
|
"date.warning": "Algunas cosas no se actualizarán hasta que duermas.",
|
||||||
|
"date.year": "Año",
|
||||||
|
"date.season": "Estación",
|
||||||
|
"date.day": "Día",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "¡Utiliza esta sección bajo tu propio riesgo!\nUsar estas opciones puede causar ciertos problemas como correo, eventos o misiones omitidos.",
|
||||||
|
"flags.quests": "Completar Misiones",
|
||||||
|
"flags.wallet": "Objetos del Monedero",
|
||||||
|
"flags.unlocked": "Desbloquear Áreas",
|
||||||
|
"flags.unlocked.guild": "Gremio de Aventureros",
|
||||||
|
"flags.unlocked.room": "Habitación de: {{name}}",
|
||||||
|
"flags.unlocked-content": "Contenido Desbloqueado",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "Tintes y sastrería",
|
||||||
|
"flags.unlocked-content.junimo-text": "Leer Texto Junimo",
|
||||||
|
"flags.unlocked-content.perfection": "Perfection achieved", // TODO
|
||||||
|
"flags.community-center": "Centro Cívico",
|
||||||
|
"flags.community-center.door-unlocked": "Puerta Abierta",
|
||||||
|
"flags.jojamart.membership": "Membresía de MercaJoja",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "Controles",
|
||||||
|
"controls.android-config-note": "Puedes cambiar los botones en pantalla en los archivos de configuración de los mods CJB Cheats Menu y Virtual Keyboard.",
|
||||||
|
"controls.open-menu": "Abrir Menú",
|
||||||
|
"controls.freeze-time": "Detener Tiempo",
|
||||||
|
"controls.grow-tree": "Crecer Árboles",
|
||||||
|
"controls.grow-crops": "Crecer Cultivos",
|
||||||
|
"controls.grow-radius": "Área Efectiva de Crecimiento",
|
||||||
|
"controls.reset-controls": "Restablecer",
|
||||||
|
"controls.press-new-key": "Presione Nueva Tecla...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.open-menu.desc": "La tecla que abre el menú (cuando no hay ningún otro menú abierto).",
|
||||||
|
"config.freeze-time.desc": "La tecla que detiene el reloj del juego.",
|
||||||
|
"config.grow-tree.desc": "La tecla que hace crecer los árboles alrededor del jugador.",
|
||||||
|
"config.grow-crops.desc": "La tecla que hace crecer los cultivos alrededor del jugador.",
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
"controls.reload-config": "Reload settings from file",
|
||||||
|
"controls.reload-config.desc": "The keybind which reloads the mod settings from the mod's config.json file. If the menu is currently open, changes may only take effect when it's reopened.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Other options",
|
||||||
|
"config.default-tab.name": "Default tab",
|
||||||
|
"config.default-tab.desc": "The tab shown by default when you open the menu.",
|
||||||
|
"config.other-options": "To configure cheats, press the 'open menu' key shown above in-game. Make sure you press it after loading the save, when no other menu or dialogue is open."
|
||||||
|
}
|
275
CJBCheatsMenu/i18n/fr.json
Normal file
275
CJBCheatsMenu/i18n/fr.json
Normal file
|
@ -0,0 +1,275 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB Menu de triche",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "Joueur & Outils",
|
||||||
|
"tabs.farm-and-fishing": "Ferme & Pêche",
|
||||||
|
"tabs.skills": "Compétences",
|
||||||
|
"tabs.weather": "Météo",
|
||||||
|
"tabs.relationships": "Social",
|
||||||
|
"tabs.warp": "Téléportation",
|
||||||
|
"tabs.time": "Temps",
|
||||||
|
"tabs.advanced": "Avancé",
|
||||||
|
"tabs.controls": "Raccourcis",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "Joueur",
|
||||||
|
"player.infinite-stamina": "Énergie infinie",
|
||||||
|
"player.infinite-health": "Santé infinie",
|
||||||
|
"player.instant-cooldowns": "Temps de recharge instantané pour les armes",
|
||||||
|
"player.inventory-size": "Taille de l'inventaire",
|
||||||
|
"player.movement-speed": "Vitesse de déplacement",
|
||||||
|
"player.movement-speed.default": "normale",
|
||||||
|
"player.one-hit-kill": "Tue en un coup",
|
||||||
|
"player.max-daily-luck": "Chance quotidienne maximale",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "Outils",
|
||||||
|
"tools.infinite-water": "Arrosoir - Eau infinie pour l'arrosoir",
|
||||||
|
"tools.one-hit-break": "Casse en un coup",
|
||||||
|
"tools.harvest-with-scythe": "Récolter avec la faux",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
"tool-enchantments.title": "Enchantements d’outils",
|
||||||
|
"tool-enchantments.select-tool": "Sélectionnez un outil dans votre barre d’outil pour éditer les enchantements.",
|
||||||
|
"tool-enchantments.none-for-tool": "Aucun enchantement disponible pour {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "Pour l’outil sélectionné ({{toolName}}).",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "Argent",
|
||||||
|
"add.casino-coins": "Pièces de casino",
|
||||||
|
"add.golden-walnuts": "Noix dorées",
|
||||||
|
"add.qi-gems": "Gemmes Qi",
|
||||||
|
"add.amount-gold": "Ajouter {{amount}} po",
|
||||||
|
"add.amount-other": "Ajouter {{amount}}",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "Ferme",
|
||||||
|
"farm.auto-water": "Arroser les champs automatiquement",
|
||||||
|
"farm.durable-fences": "Clôtures durables",
|
||||||
|
"farm.instant-build": "Construction instantanée",
|
||||||
|
"farm.auto-feed-animals": "Nourrir les animaux automatiquement",
|
||||||
|
"farm.auto-pet-animals": "Caresser les animaux automatiquement",
|
||||||
|
"farm.auto-pet-pets": "Caresser animal de compagnie automatiquement",
|
||||||
|
"farm.infinite-hay": "Foin infini",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "Pêche",
|
||||||
|
"fishing.instant-catch": "Capture instantanée",
|
||||||
|
"fishing.instant-bite": "Morsure du poisson instantanée",
|
||||||
|
"fishing.always-throw-max-distance": "Toujours jeter à la distance maximale",
|
||||||
|
"fishing.always-treasure": "Toujours un trésor",
|
||||||
|
"fishing.durable-tackles": "Matériel de pêche durable",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "Transformations rapides",
|
||||||
|
"fast-machines.fruit-trees": "Arbres fruitiers",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (prêt le matin)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "Compétences",
|
||||||
|
"skills.increase-farming": "Augm. Niveau d'Agriculture : {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "Augm. Niveau d'Ext. Minière : {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "Augm. Niveau de Cueillette : {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "Augm. Niveau de Pêche : {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "Augm. Niveau de Combat : {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "Professions",
|
||||||
|
"professions.combat.fighter": "Combat niv. 5 - Combattant",
|
||||||
|
"professions.combat.scout": "Combat niv. 5 - Éclaireur",
|
||||||
|
"professions.combat.acrobat": "Combat niv. 10 - Acrobate",
|
||||||
|
"professions.combat.brute": "Combat niv. 10 - Brute",
|
||||||
|
"professions.combat.defender": "Combat niv. 10 - Défenseur",
|
||||||
|
"professions.combat.desperado": "Combat niv. 10 - Desperado",
|
||||||
|
"professions.farming.rancher": "Agriculture niv. 5 - Éleveur de bétail",
|
||||||
|
"professions.farming.tiller": "Agriculture niv. 5 - Cultivateur",
|
||||||
|
"professions.farming.agriculturist": "Agriculture niv. 10 - Agriculteur",
|
||||||
|
"professions.farming.artisan": "Agriculture niv. 10 - Artisan",
|
||||||
|
"professions.farming.coopmaster": "Agriculture niv. 10 - Maître du poulailler",
|
||||||
|
"professions.farming.shepherd": "Agriculture niv. 10 - Berger",
|
||||||
|
"professions.fishing.fisher": "Pêche niv. 5 - Pêcheur",
|
||||||
|
"professions.fishing.trapper": "Pêche niv. 5 - Trappeur",
|
||||||
|
"professions.fishing.angler": "Pêche niv. 10 - Pêcheur",
|
||||||
|
"professions.fishing.luremaster": "Pêche niv. 10 - Maître des leurres",
|
||||||
|
"professions.fishing.mariner": "Pêche niv. 10 - Loup de mer",
|
||||||
|
"professions.fishing.pirate": "Pêche niv. 10 - Pirate",
|
||||||
|
"professions.foraging.forester": "Cueillette niv. 5 - Forestier",
|
||||||
|
"professions.foraging.gatherer": "Cueillette niv. 5 - Chasseur-cueilleur",
|
||||||
|
"professions.foraging.botanist": "Cueillette niv. 10 - Botaniste",
|
||||||
|
"professions.foraging.lumberjack": "Cueillette niv. 10 - Bûcheron",
|
||||||
|
"professions.foraging.tapper": "Cueillette niv. 10 - Saigneur",
|
||||||
|
"professions.foraging.tracker": "Cueillette niv. 10 - Traqueur",
|
||||||
|
"professions.mining.geologist": "Ext. Minière niv. 5 - Géologue",
|
||||||
|
"professions.mining.miner": "Ext. Minière niv. 5 - Mineur",
|
||||||
|
"professions.mining.blacksmith": "Ext. Minière niv. 10 - Forgeron",
|
||||||
|
"professions.mining.excavator": "Ext. Minière niv. 10 - Excavateur",
|
||||||
|
"professions.mining.gemologist": "Ext. Minière niv. 10 - Gemmologue",
|
||||||
|
"professions.mining.prospector": "Ext. Minière niv. 10 - Prospecteur",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "Météo de demain",
|
||||||
|
"weather.current-value": "Le temps de demain a été paramétré sur {{weather}}.",
|
||||||
|
"weather.explanation": "Cliquer sur un bouton changera la météo pour demain (et uniquement demain). Cet onglet n'aura aucun effet sur la météo autrement.",
|
||||||
|
"weather.sunny": "Soleil",
|
||||||
|
"weather.raining": "Pluie",
|
||||||
|
"weather.lightning": "Orage",
|
||||||
|
"weather.snowing": "Neige",
|
||||||
|
"weather.green-rain": "Pluie verte",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "Social",
|
||||||
|
"relationships.give-gifts-anytime": "Donner un cadeau n'importe quand",
|
||||||
|
"relationships.no-decay": "Pas de dégradation de l'amitié",
|
||||||
|
"relationships.friends": "Amis",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "Ces téléportations ont été édités par vos mods. Veuillez reporter des problèmes de téléportation aux auteurs des mods ajoutés si nécessaire.",
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "Zones principales",
|
||||||
|
"warp.farm": "Ferme",
|
||||||
|
"warp.carpenter": "Scierie",
|
||||||
|
"warp.desert": "Désert",
|
||||||
|
"warp.mines": "Mines",
|
||||||
|
"warp.pierre-shop": "Magasin de Pierre",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "En ville",
|
||||||
|
"warp.blacksmith": "Forgeron",
|
||||||
|
"warp.community-center": "Centre communautaire",
|
||||||
|
"warp.jojamart": "Marché Joja",
|
||||||
|
"warp.movie-theater": "Cinéma",
|
||||||
|
"warp.museum": "Musée",
|
||||||
|
"warp.saloon": "Saloon",
|
||||||
|
"warp.sewer": "Égouts",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "En forêt",
|
||||||
|
"warp.hats": "Chapeaux",
|
||||||
|
"warp.mastery-cave": "Caverne de Maîtrise",
|
||||||
|
"warp.ranch": "Ferme de Marnie",
|
||||||
|
"warp.secret-woods": "Forêt secrète",
|
||||||
|
"warp.wizard-tower": "Tour du sorcier",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "En montagne",
|
||||||
|
"warp.adventurers-guild": "Guilde des Aventuriers",
|
||||||
|
"warp.bathhouse": "Spa",
|
||||||
|
"warp.mutant-bug-lair": "Repaire des insectes mutants",
|
||||||
|
"warp.quarry": "Carrière",
|
||||||
|
"warp.witch-swamp": "Marais de la sorcière",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "À la plage",
|
||||||
|
"warp.tide-pools": "Mares résiduelles",
|
||||||
|
"warp.willy-shop": "Poissonnerie",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "Île Gingembre",
|
||||||
|
"warp.forge": "Forge",
|
||||||
|
"warp.island-farm": "Ferme de l'île",
|
||||||
|
"warp.dwarf-shop": "Magasin du nain du volcan",
|
||||||
|
"warp.field-office": "Bureau local",
|
||||||
|
"warp.leo-house": "Maison de Leo",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "Désert",
|
||||||
|
"warp.casino": "Casino",
|
||||||
|
"warp.sandy-shop": "Magasin de Sandy",
|
||||||
|
"warp.skull-cavern": "Caverne du Crâne",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "Temps",
|
||||||
|
"time.freeze-inside": "Arrêter le temps à l'intérieur",
|
||||||
|
"time.freeze-caves": "Arrêter le temps dans les grottes",
|
||||||
|
"time.freeze-everywhere": "Arrêter le temps partout",
|
||||||
|
"time.fade-time-frozen-message": "Cacher « {{timeFrozen}} » après quelques secondes",
|
||||||
|
"time.time": "Heure",
|
||||||
|
"time.time-frozen-message": "Temps figé",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "Date",
|
||||||
|
"date.warning": "Certaines choses ne seront mises à jour qu'après le passage d'une nuit.",
|
||||||
|
"date.year": "Année",
|
||||||
|
"date.season": "Saison",
|
||||||
|
"date.day": "Jour",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "Utiliser cette section à vos risques et périls !\nCela peut causer des problèmes tels que des courriers, événements ou quêtes non déclenchées.",
|
||||||
|
"flags.quests": "Quêtes complétées",
|
||||||
|
"flags.wallet": "Objets du porte-feuille",
|
||||||
|
"flags.unlocked": "Zones débloquées",
|
||||||
|
"flags.unlocked.guild": "Guilde des aventuriers",
|
||||||
|
"flags.unlocked.room": "Chambre : {{name}}",
|
||||||
|
"flags.unlocked-content": "Contenus débloqués",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "Teintures & couture",
|
||||||
|
"flags.unlocked-content.junimo-text": "Vous pouvez lire le texte Jumino",
|
||||||
|
"flags.unlocked-content.perfection": "Perfection atteinte",
|
||||||
|
"flags.community-center": "Centre communautaire",
|
||||||
|
"flags.community-center.door-unlocked": "Porte déverrouillée",
|
||||||
|
"flags.jojamart.membership": "Adhérant au Marché Joja",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "Raccourcis",
|
||||||
|
"controls.android-config-note": "Vous pouvez modifier les boutons affichés à l'écran dans les fichiers de configuration des mods CJB Menu de triche et Menu du clavier virtuel.",
|
||||||
|
"controls.open-menu": "Ouvrir ce menu",
|
||||||
|
"controls.freeze-time": "Arrêter le temps",
|
||||||
|
"controls.grow-tree": "Faire pousser les arbres",
|
||||||
|
"controls.grow-crops": "Faire pousser les cultures",
|
||||||
|
"controls.grow-radius": "Distance de croissance autour du joueur",
|
||||||
|
"controls.reset-controls": "Réinitialiser",
|
||||||
|
"controls.press-new-key": "Appuyer sur la nouvelle touche...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.open-menu.desc": "Le raccourci clavier qui ouvre le menu (lorsqu’aucun autre menu n’est ouvert).",
|
||||||
|
"config.freeze-time.desc": "Le raccourci clavier qui arrête l’horloge du jeu.",
|
||||||
|
"config.grow-tree.desc": "Le raccourci clavier qui fait pousser les arbres autour du joueur.",
|
||||||
|
"config.grow-crops.desc": "Le raccourci clavier qui fait pousser les cultures autour du joueur.",
|
||||||
|
|
||||||
|
"controls.reload-config": "Recharger les paramètres\nà partir du fichier",
|
||||||
|
"controls.reload-config.desc": "Le raccourci qui recharge les paramètres du mod à partir du fichier config.json du mod. Si le menu est actuellement ouvert, les changements ne pourraient prendre effet qu’à la réouverture de ce dernier.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Autres options",
|
||||||
|
"config.default-tab.name": "Onglet par défaut",
|
||||||
|
"config.default-tab.desc": "L’onglet par défaut ouvert lorsque vous ouvrez le menu.",
|
||||||
|
"config.other-options": "Pour configurer les triches, appuyez sur le raccourci « Ouvrir le menu » affiché ci-dessus dans le jeu. Faîtes attention à l’appuyer après avoir chargé une sauvegarde, lorsqu’aucun autre menu ou dialogue n’est ouvert."
|
||||||
|
}
|
275
CJBCheatsMenu/i18n/hu.json
Normal file
275
CJBCheatsMenu/i18n/hu.json
Normal file
|
@ -0,0 +1,275 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB Csalások Menü",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "Játékos és Eszközök",
|
||||||
|
"tabs.farm-and-fishing": "Farm & Horgászás",
|
||||||
|
"tabs.skills": "Képességek",
|
||||||
|
"tabs.weather": "Időjárás",
|
||||||
|
"tabs.relationships": "Kapcsolatok",
|
||||||
|
"tabs.warp": "Teleport",
|
||||||
|
"tabs.time": "Idő",
|
||||||
|
"tabs.advanced": "Haladó",
|
||||||
|
"tabs.controls": "Irányítás",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "Játékos",
|
||||||
|
"player.infinite-stamina": "Végtelen Energia",
|
||||||
|
"player.infinite-health": "Végtelen Életerő",
|
||||||
|
"player.instant-cooldowns": "Azonnali Képesség Újratöltés",
|
||||||
|
"player.inventory-size": "Eszköztár Méret",
|
||||||
|
"player.movement-speed": "Mozgási Sebesség",
|
||||||
|
"player.movement-speed.default": "normál",
|
||||||
|
"player.one-hit-kill": "Egy Ütéses Gyilkosság",
|
||||||
|
"player.max-daily-luck": "Maximális Napi Szerencse",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "Eszközök",
|
||||||
|
"tools.infinite-water": "Végtelen Víz az Öntözőkannában",
|
||||||
|
"tools.one-hit-break": "Egy Ütéses Bányászás",
|
||||||
|
"tools.harvest-with-scythe": "Betakarítás Kaszával",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
"tool-enchantments.title": "Eszköz Elbűvölések",
|
||||||
|
"tool-enchantments.select-tool": "Válassz egy eszközt az eszköztáradról a bűvölések szerkesztéséhez.",
|
||||||
|
"tool-enchantments.none-for-tool": "A kiválasztott {{toolName}} számára nem érhetők el bűvölések.",
|
||||||
|
"tool-enchantments.for-tool": "A kiválasztott {{toolName}} számára.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "Pénz",
|
||||||
|
"add.casino-coins": "Klub Érme",
|
||||||
|
"add.golden-walnuts": "Arany Diót",
|
||||||
|
"add.qi-gems": "Qi Drágaköveknek",
|
||||||
|
"add.amount-gold": "{{amount}} Arany Adása",
|
||||||
|
"add.amount-other": "{{amount}} Adása",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "Farm",
|
||||||
|
"farm.auto-water": "Termények Automata Öntözése",
|
||||||
|
"farm.durable-fences": "Tartós Kerítések",
|
||||||
|
"farm.instant-build": "Azonnali Építés",
|
||||||
|
"farm.auto-feed-animals": "Mindig Automata Etetés",
|
||||||
|
"farm.auto-pet-animals": "Automata Állatsimogatás",
|
||||||
|
"farm.auto-pet-pets": "Automata Kisállatsimogatás",
|
||||||
|
"farm.infinite-hay": "Végtelen Széna",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "Horgászás",
|
||||||
|
"fishing.instant-catch": "Azonnali Kifogás",
|
||||||
|
"fishing.instant-bite": "Azonnali Kapás",
|
||||||
|
"fishing.always-throw-max-distance": "Mindig Maximális Távolságra Dobás",
|
||||||
|
"fishing.always-treasure": "Mindig Kincs",
|
||||||
|
"fishing.durable-tackles": "Tartós Horgászcsali",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "Gyors Gépi Feldolgozás",
|
||||||
|
"fast-machines.fruit-trees": "Gyümölcsfák",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (reggelre kész)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "Képességek",
|
||||||
|
"skills.increase-farming": "Kertészkedés Szint Növelése: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "Bányászás Szint Növelése: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "Gyűjtögetés Szint Növelése: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "Horgászás Szint Növelése: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "Harc Szint Növelése: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "Szakmák",
|
||||||
|
"professions.combat.fighter": "Harc 5. szint - Harcos",
|
||||||
|
"professions.combat.scout": "Harc 5. szint - Cserkész",
|
||||||
|
"professions.combat.acrobat": "Harc 10. szint - Akrobata",
|
||||||
|
"professions.combat.brute": "Harc 10. szint - Kegyetlen",
|
||||||
|
"professions.combat.defender": "Harc 10. szint - Védelmező",
|
||||||
|
"professions.combat.desperado": "Harc 10. szint - Bandita",
|
||||||
|
"professions.farming.rancher": "Kertészkedés 5. szint - Állattenyésztő",
|
||||||
|
"professions.farming.tiller": "Kertészkedés 5. szint - Földműves",
|
||||||
|
"professions.farming.agriculturist": "Kertészkedés 10. szint - Agronómus",
|
||||||
|
"professions.farming.artisan": "Kertészkedés 10. szint - Kézműves",
|
||||||
|
"professions.farming.coopmaster": "Kertészkedés 10. szint - Csűrmester",
|
||||||
|
"professions.farming.shepherd": "Kertészkedés 10. szint - Pásztor",
|
||||||
|
"professions.fishing.fisher": "Horgászás 5. szint - Halász",
|
||||||
|
"professions.fishing.trapper": "Horgászás 5. szint - Csapdázó",
|
||||||
|
"professions.fishing.angler": "Horgászás 10. szint - Horgász",
|
||||||
|
"professions.fishing.luremaster": "Horgászás 10. szint - Csalimester",
|
||||||
|
"professions.fishing.mariner": "Horgászás 10. szint - Tengerész",
|
||||||
|
"professions.fishing.pirate": "Horgászás 10. szint - Kalóz",
|
||||||
|
"professions.foraging.forester": "Gyűjtögetés 5. szint - Erdész",
|
||||||
|
"professions.foraging.gatherer": "Gyűjtögetés 5. szint - Gyűjtő",
|
||||||
|
"professions.foraging.botanist": "Gyűjtögetés 10. szint - Botanikus",
|
||||||
|
"professions.foraging.lumberjack": "Gyűjtögetés 10. szint - Favágó",
|
||||||
|
"professions.foraging.tapper": "Gyűjtögetés 10. szint - Csapos",
|
||||||
|
"professions.foraging.tracker": "Gyűjtögetés 10. szint - Nyomkövető",
|
||||||
|
"professions.mining.geologist": "Bányászás 5. szint - Geológus",
|
||||||
|
"professions.mining.miner": "Bányászás 5. szint - Bányász",
|
||||||
|
"professions.mining.blacksmith": "Bányászás 10. szint - Kovács",
|
||||||
|
"professions.mining.excavator": "Bányászás 10. szint - Kubikos",
|
||||||
|
"professions.mining.gemologist": "Bányászás 10. szint - Gemológus",
|
||||||
|
"professions.mining.prospector": "Bányászás 10. szint - Talajkutató",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "Holnapi Időjárás",
|
||||||
|
"weather.current-value": "A holnapi időjárás: {{weather}}.",
|
||||||
|
"weather.explanation": "Kattints az alábbi gombok egyikére, hogy beállítsd a holnapi időjárást (csak holnapra). Ez a fül más módon nem befolyásolja az időjárást.",
|
||||||
|
"weather.sunny": "Napos",
|
||||||
|
"weather.raining": "Eső",
|
||||||
|
"weather.lightning": "Vihar",
|
||||||
|
"weather.snowing": "Havazás",
|
||||||
|
"weather.green-rain": "Zöld Eső",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "Kapcsolatok",
|
||||||
|
"relationships.give-gifts-anytime": "Bármikor Adható Ajándék",
|
||||||
|
"relationships.no-decay": "Nincs Barátság Csökkenés",
|
||||||
|
"relationships.friends": "Barátok",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "Ezeket a teleportokat a modjaid szerkesztették. Ha problémát észlelsz velük, jelezd annak a modnak, amelyik hozzáadta őket.",
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "Fő területek",
|
||||||
|
"warp.farm": "Farm",
|
||||||
|
"warp.carpenter": "Ács Műhely",
|
||||||
|
"warp.desert": "Sivatag",
|
||||||
|
"warp.mines": "Bányák",
|
||||||
|
"warp.pierre-shop": "Pierre Boltja",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "Város",
|
||||||
|
"warp.blacksmith": "Kovács",
|
||||||
|
"warp.community-center": "Közösségi Központ",
|
||||||
|
"warp.jojamart": "JojaMart",
|
||||||
|
"warp.movie-theater": "Mozi",
|
||||||
|
"warp.museum": "Múzeum",
|
||||||
|
"warp.saloon": "Szalon",
|
||||||
|
"warp.sewer": "Csatorna",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "Erdő",
|
||||||
|
"warp.hats": "Romos Ház",
|
||||||
|
"warp.mastery-cave": "Mesterség Barlang",
|
||||||
|
"warp.ranch": "Marnie Tanyája",
|
||||||
|
"warp.secret-woods": "Titkos Erdő",
|
||||||
|
"warp.wizard-tower": "Varázsló Torony",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "Hegység",
|
||||||
|
"warp.adventurers-guild": "Kalandorok Céhe",
|
||||||
|
"warp.bathhouse": "Fürdő",
|
||||||
|
"warp.mutant-bug-lair": "Mutáns Rovar Odú",
|
||||||
|
"warp.quarry": "Kőbánya",
|
||||||
|
"warp.witch-swamp": "Boszorkány mocsár",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "Strand",
|
||||||
|
"warp.tide-pools": "Árapály Medencék",
|
||||||
|
"warp.willy-shop": "Hal Bolt",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "Gyömbér-sziget",
|
||||||
|
"warp.forge": "Kohó",
|
||||||
|
"warp.island-farm": "Szigetbeli Farm",
|
||||||
|
"warp.dwarf-shop": "Vulkán Törpe Bolt",
|
||||||
|
"warp.field-office": "Sziget Iroda",
|
||||||
|
"warp.leo-house": "Leo háza",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "Sivatag",
|
||||||
|
"warp.casino": "Kaszinó",
|
||||||
|
"warp.sandy-shop": "Sandy Boltja",
|
||||||
|
"warp.skull-cavern": "Koponya Barlang",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "Idő",
|
||||||
|
"time.freeze-inside": "Idő Megállítása Beltéren",
|
||||||
|
"time.freeze-caves": "Idő Megállítása Barlangokban",
|
||||||
|
"time.freeze-everywhere": "Idő Megállítása Mindenhol",
|
||||||
|
"time.fade-time-frozen-message": "'{{timeFrozen}}' elrejtése Néhány Másodperc Után",
|
||||||
|
"time.time": "Idő",
|
||||||
|
"time.time-frozen-message": "Idő Megállítva",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "Dátum",
|
||||||
|
"date.warning": "Bizonyos dolgok csak egy éjszaka eltelte után frissülnek.",
|
||||||
|
"date.year": "Év",
|
||||||
|
"date.season": "Évszak",
|
||||||
|
"date.day": "Nap",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "Ezt a részt csak saját felelősségre használd!\nLevelek, események, küldetések kimaradása és egyéb problémákat előfordulhatnak.",
|
||||||
|
"flags.quests": "Küldetés Teljesítése",
|
||||||
|
"flags.wallet": "Pénztárca Tárgyai",
|
||||||
|
"flags.unlocked": "Feloldott Területek",
|
||||||
|
"flags.unlocked.guild": "Kalandorok Céhe",
|
||||||
|
"flags.unlocked.room": "Szoba: {{name}}",
|
||||||
|
"flags.unlocked-content": "Feloldott Tartalmak",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "Festékek & Szabás",
|
||||||
|
"flags.unlocked-content.junimo-text": "Képes olvasni Junimo szöveget",
|
||||||
|
"flags.unlocked-content.perfection": "Tökéletesség elérve",
|
||||||
|
"flags.community-center": "Közösségi Központ",
|
||||||
|
"flags.community-center.door-unlocked": "Ajtó Kinyitva",
|
||||||
|
"flags.jojamart.membership": "JojaMart Tagság",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "Irányítás",
|
||||||
|
"controls.android-config-note": "A CJB Cheats Menu és a Virtual Keyboard modok képernyőinek gombjait a konfigurációs fájlokban változtathatod meg.",
|
||||||
|
"controls.open-menu": "Menu Megnyitása",
|
||||||
|
"controls.freeze-time": "Idő Megállítása",
|
||||||
|
"controls.grow-tree": "Fák megnövesztése",
|
||||||
|
"controls.grow-crops": "Termények megnövesztése",
|
||||||
|
"controls.grow-radius": "Növesztési Távolság a Játékos Körül",
|
||||||
|
"controls.reset-controls": "Visszaállítás",
|
||||||
|
"controls.press-new-key": "Nyomj meg egy gombot...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.open-menu.desc": "A billentyű, amely megnyitja a menüt (ha nincs másik menü nyitva).",
|
||||||
|
"config.freeze-time.desc": "A billentyű, amely megállítja a játékidőt.",
|
||||||
|
"config.grow-tree.desc": "A billentyű, amelyet lenyomva tartva fák nőnek a játékos körül.",
|
||||||
|
"config.grow-crops.desc": "A billentyű, amelyet lenyomva tartva termények nőnek a játékos körül.",
|
||||||
|
|
||||||
|
"controls.reload-config": "Beállítások újratöltése",
|
||||||
|
"controls.reload-config.desc": "A billentyű, amely újratölti a mod beállításait a config.json fájlból. Ha a menü éppen nyitva van, a változtatások csak a menü újranyitásakor léphetnek életbe.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Egyéb beállítások",
|
||||||
|
"config.default-tab.name": "Alapértelmezett fül",
|
||||||
|
"config.default-tab.desc": "A fül, amely alapértelmezés szerint nyílik meg a menü megnyitásakor.",
|
||||||
|
"config.other-options": "A csalások konfigurálásához nyomd meg a fenti 'menü megnyitása' gombot a játékban. Győződj meg róla, hogy a mentés betöltése után, amikor nincs másik menü vagy párbeszédablak nyitva, nyomod meg."
|
||||||
|
}
|
278
CJBCheatsMenu/i18n/it.json
Normal file
278
CJBCheatsMenu/i18n/it.json
Normal file
|
@ -0,0 +1,278 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB Menù dei Trucchi",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "Giocatore & Utensili",
|
||||||
|
"tabs.farm-and-fishing": "Agricoltura & Pesca",
|
||||||
|
"tabs.skills": "Abilitá",
|
||||||
|
"tabs.weather": "Meteo",
|
||||||
|
"tabs.relationships": "Relazioni",
|
||||||
|
"tabs.warp": "Luoghi Teletrasporto",
|
||||||
|
"tabs.time": "Tempo",
|
||||||
|
"tabs.advanced": "Avanzate",
|
||||||
|
"tabs.controls": "Controlli",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "Giocatore",
|
||||||
|
"player.infinite-stamina": "Stamina Infinita",
|
||||||
|
"player.infinite-health": "Salute Infinita",
|
||||||
|
"player.instant-cooldowns": "Arma Cooldowns Istantanea",
|
||||||
|
"player.inventory-size": "Dimensione dell'Inventario",
|
||||||
|
"player.movement-speed": "Velocitá di Movimento",
|
||||||
|
"player.movement-speed.default": "normale",
|
||||||
|
"player.one-hit-kill": "Colpo Mortale",
|
||||||
|
"player.max-daily-luck": "Max Fortuna Giornaliera",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "Utensili",
|
||||||
|
"tools.infinite-water": "Acqua Infinita nell'Annaffiatoio",
|
||||||
|
"tools.one-hit-break": "Rompi in un colpo",
|
||||||
|
"tools.harvest-with-scythe": "Mietere con la falce",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
// TODO
|
||||||
|
"tool-enchantments.title": "Tool Enchantments",
|
||||||
|
"tool-enchantments.select-tool": "Select a tool on your toolbar to edit enchantments.",
|
||||||
|
"tool-enchantments.none-for-tool": "No enchantments available for selected {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "For the selected {{toolName}}.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "Soldi",
|
||||||
|
"add.casino-coins": "Monete del Casinó",
|
||||||
|
"add.golden-walnuts": "Noci Dorate",
|
||||||
|
"add.qi-gems": "Gemme Qi",
|
||||||
|
"add.amount-gold": "Aggiungi {{amount}}g",
|
||||||
|
"add.amount-other": "Aggiungi {{amount}}",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "Fattoria",
|
||||||
|
"farm.auto-water": "Annaffia Raccolto Automatico",
|
||||||
|
"farm.durable-fences": "Recinti Durabili",
|
||||||
|
"farm.instant-build": "Costruisci Instantaneamente",
|
||||||
|
"farm.auto-feed-animals": "Nutri gli Animali Automaticamente",
|
||||||
|
"farm.auto-pet-animals": "Cura degli Animali Automatica",
|
||||||
|
"farm.auto-pet-pets": "Auto-Pet Pets", // TODO
|
||||||
|
"farm.infinite-hay": "Fieno Infinito",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "Pesca",
|
||||||
|
"fishing.instant-catch": "Cattura Instantanea",
|
||||||
|
"fishing.instant-bite": "Abboccato Istantaneo",
|
||||||
|
"fishing.always-throw-max-distance": "Raggiungi Sempre la Distanza Massima",
|
||||||
|
"fishing.always-treasure": "Sempre Tesori",
|
||||||
|
"fishing.durable-tackles": "Ami Durabili",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "Processo Macchinari Veloce",
|
||||||
|
"fast-machines.fruit-trees": "Alberi della Frutta",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (pronto il mattino)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "Abilitá",
|
||||||
|
"skills.increase-farming": "Aumenta Livello Agricolo Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "Aumenta Livello Minatore Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "Aumenta Livello Foraggio Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "Aumenta Livello Pesca Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "Aumenta Livello Combattimento Lvl: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "Professioni",
|
||||||
|
"professions.combat.fighter": "Combattimento lvl 5 - Fighter",
|
||||||
|
"professions.combat.scout": "Combattimento lvl 5 - Scout",
|
||||||
|
"professions.combat.acrobat": "Combattimento lvl 10 - Acrobat",
|
||||||
|
"professions.combat.brute": "Combattimento lvl 10 - Brute",
|
||||||
|
"professions.combat.defender": "Combattimento lvl 10 - Defender",
|
||||||
|
"professions.combat.desperado": "Combattimento lvl 10 - Desperado",
|
||||||
|
"professions.farming.rancher": "Agricolo lvl 5 - Rancher",
|
||||||
|
"professions.farming.tiller": "Agricolo lvl 5 - Tiller",
|
||||||
|
"professions.farming.agriculturist": "Agricolo lvl 10 - Agriculturist",
|
||||||
|
"professions.farming.artisan": "Agricolo lvl 10 - Artisan",
|
||||||
|
"professions.farming.coopmaster": "Agricolo lvl 10 - Coopmaster",
|
||||||
|
"professions.farming.shepherd": "Agricolo lvl 10 - Shepherd",
|
||||||
|
"professions.fishing.fisher": "Pesca lvl 5 - Fisher",
|
||||||
|
"professions.fishing.trapper": "Pesca lvl 5 - Trapper",
|
||||||
|
"professions.fishing.angler": "Pesca lvl 10 - Angler",
|
||||||
|
"professions.fishing.luremaster": "Pesca lvl 10 - Luremaster",
|
||||||
|
"professions.fishing.mariner": "Pesca lvl 10 - Mariner",
|
||||||
|
"professions.fishing.pirate": "Pesca lvl 10 - Pirate",
|
||||||
|
"professions.foraging.forester": "Foraggio lvl 5 - Forester",
|
||||||
|
"professions.foraging.gatherer": "Foraggio lvl 5 - Gatherer",
|
||||||
|
"professions.foraging.botanist": "Foraggio lvl 10 - Botanist",
|
||||||
|
"professions.foraging.lumberjack": "Foraggio lvl 10 - Lumberjack",
|
||||||
|
"professions.foraging.tapper": "Foraggio lvl 10 - Tapper",
|
||||||
|
"professions.foraging.tracker": "Foraggio lvl 10 - Tracker",
|
||||||
|
"professions.mining.geologist": "Minatore lvl 5 - Geologist",
|
||||||
|
"professions.mining.miner": "Minatore lvl 5 - Miner",
|
||||||
|
"professions.mining.blacksmith": "Minatore lvl 10 - Blacksmith",
|
||||||
|
"professions.mining.excavator": "Minatore lvl 10 - Excavator",
|
||||||
|
"professions.mining.gemologist": "Minatore lvl 10 - Gemologist",
|
||||||
|
"professions.mining.prospector": "Minatore lvl 10 - Prospector",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "Meteo di Domani",
|
||||||
|
"weather.current-value": "Tomorrow's weather is set to {{weather}}.", // TODO
|
||||||
|
"weather.explanation": "Click a button below to set the weather for tomorrow (and only tomorrow). This tab has zero effect on weather otherwise.", // TODO
|
||||||
|
"weather.sunny": "Soleggiato",
|
||||||
|
"weather.raining": "Pioggia",
|
||||||
|
"weather.lightning": "Fulmini",
|
||||||
|
"weather.snowing": "Neve",
|
||||||
|
"weather.green-rain": "Green Raining", // TODO
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "Relazioni",
|
||||||
|
"relationships.give-gifts-anytime": "Sempre Regali",
|
||||||
|
"relationships.no-decay": "Nessun Declino dell'Amicizia",
|
||||||
|
"relationships.friends": "Amici",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "These warps were edited by your mods. Please report warp issues to the mods which added them if applicable.", // TODO
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "Aree Principali",
|
||||||
|
"warp.farm": "Fattoria",
|
||||||
|
"warp.carpenter": "Carpentiere",
|
||||||
|
"warp.desert": "Deserto",
|
||||||
|
"warp.mines": "Miniera",
|
||||||
|
"warp.pierre-shop": "Emporio di Pierre",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "Paese",
|
||||||
|
"warp.blacksmith": "Fabbro",
|
||||||
|
"warp.community-center": "Centro Sociale",
|
||||||
|
"warp.jojamart": "JojaMart",
|
||||||
|
"warp.movie-theater": "Cinema",
|
||||||
|
"warp.museum": "Museo",
|
||||||
|
"warp.saloon": " Saloon Astropomo",
|
||||||
|
"warp.sewer": "Fogne",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "Foresta",
|
||||||
|
"warp.hats": "Cappelli",
|
||||||
|
"warp.mastery-cave": "Mastery Cave", // TODO
|
||||||
|
"warp.ranch": "Ranch di Marnie",
|
||||||
|
"warp.secret-woods": "Foresta Segreta",
|
||||||
|
"warp.wizard-tower": "Torre del Mago",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "Montagna",
|
||||||
|
"warp.adventurers-guild": "Gilda degli Avventurieri",
|
||||||
|
"warp.bathhouse": "Terme",
|
||||||
|
"warp.mutant-bug-lair": "Covo di insetti mutanti",
|
||||||
|
"warp.quarry": "Cava",
|
||||||
|
"warp.witch-swamp": "Palude della Strega",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "Spiaggia",
|
||||||
|
"warp.tide-pools": "Pozze di Marea",
|
||||||
|
"warp.willy-shop": "Negozio di Pesca",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "Isola di Ginger",
|
||||||
|
"warp.forge": "Fabbro",
|
||||||
|
"warp.island-farm": "Fattoria dell'Isola",
|
||||||
|
"warp.dwarf-shop": "Negozio del Nano del Vulcano",
|
||||||
|
"warp.field-office": "Ufficio del Campo",
|
||||||
|
"warp.leo-house": "Casa di Leo",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "Deserto",
|
||||||
|
"warp.casino": "Casinò",
|
||||||
|
"warp.sandy-shop": "Emporio di Sandy",
|
||||||
|
"warp.skull-cavern": "Caverna del Teschio",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "Tempo",
|
||||||
|
"time.freeze-inside": "Ferma il Tempo all'Interno",
|
||||||
|
"time.freeze-caves": "Ferma il Tempo nelle Grotte",
|
||||||
|
"time.freeze-everywhere": "Ferma il Tempo Ovunque",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds", // TODO
|
||||||
|
"time.time": "Tempo",
|
||||||
|
"time.time-frozen-message": "Ferma l'Orologio",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "Data",
|
||||||
|
"date.warning": "Alcune cose non si aggiorneranno finché non sarà passata una notte.",
|
||||||
|
"date.year": "Anno",
|
||||||
|
"date.season": "Stagione",
|
||||||
|
"date.day": "Giorno",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "Usa queste opzioni a tuo rischio e pericolo! \\ Modifiche a questa sezione potrebbero causare problemi come omissioni di posta, eventi o missioni.",
|
||||||
|
"flags.quests": "Completa le Missioni",
|
||||||
|
"flags.wallet": "Oggetti nei Portafogli",
|
||||||
|
"flags.unlocked": "Aree Sbloccate",
|
||||||
|
"flags.unlocked.guild": "Gilda degli Avventurieri",
|
||||||
|
"flags.unlocked.room": "Stanza: {{name}}",
|
||||||
|
"flags.unlocked-content": "Contenuto Sbloccato",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "Colorante e Sartoria",
|
||||||
|
"flags.unlocked-content.junimo-text": "Can read Junimo text", // TODO
|
||||||
|
"flags.unlocked-content.perfection": "Perfection achieved", // TODO
|
||||||
|
"flags.community-center": "Centro Sociale",
|
||||||
|
"flags.community-center.door-unlocked": "Porta Sbloccata",
|
||||||
|
"flags.jojamart.membership": "Membro di JojaMart",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "Controlli",
|
||||||
|
"controls.android-config-note": "Puoi cambiare i pulsanti sullo schermo nel file config del CJB Cheats Menu and Virtual Keyboard mods.",
|
||||||
|
"controls.open-menu": "Apri Menù",
|
||||||
|
"controls.freeze-time": "Ferma l'Orologio",
|
||||||
|
"controls.grow-tree": "Cresci l'Albero",
|
||||||
|
"controls.grow-crops": "Cresci la Coltura",
|
||||||
|
"controls.grow-radius": "Aumenta spazio personale",
|
||||||
|
"controls.reset-controls": "Reset",
|
||||||
|
"controls.press-new-key": "Premi Nuovo Pulsante...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.open-menu.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
"config.freeze-time.desc": "The keybind which freezes the game clock.",
|
||||||
|
"config.grow-tree.desc": "The keybind held to grow trees around the player.",
|
||||||
|
"config.grow-crops.desc": "The keybind held to grow crops around the player.",
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
"controls.reload-config": "Reload settings from file",
|
||||||
|
"controls.reload-config.desc": "The keybind which reloads the mod settings from the mod's config.json file. If the menu is currently open, changes may only take effect when it's reopened.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Other options",
|
||||||
|
"config.default-tab.name": "Default tab",
|
||||||
|
"config.default-tab.desc": "The tab shown by default when you open the menu.",
|
||||||
|
"config.other-options": "To configure cheats, press the 'open menu' key shown above in-game. Make sure you press it after loading the save, when no other menu or dialogue is open."
|
||||||
|
}
|
275
CJBCheatsMenu/i18n/ja.json
Normal file
275
CJBCheatsMenu/i18n/ja.json
Normal file
|
@ -0,0 +1,275 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB Cheats Menu",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "プレイヤー&どうぐ",
|
||||||
|
"tabs.farm-and-fishing": "農業&釣り",
|
||||||
|
"tabs.skills": "スキル",
|
||||||
|
"tabs.weather": "天気",
|
||||||
|
"tabs.relationships": "人間関係",
|
||||||
|
"tabs.warp": "ワープ",
|
||||||
|
"tabs.time": "時間",
|
||||||
|
"tabs.advanced": "上級者向け",
|
||||||
|
"tabs.controls": "キー変更",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "プレイヤー",
|
||||||
|
"player.infinite-stamina": "エネルギー無限",
|
||||||
|
"player.infinite-health": "体力無限",
|
||||||
|
"player.instant-cooldowns": "スペシャルアタックのクールダウンなし",
|
||||||
|
"player.inventory-size": "持ち物のスロット数",
|
||||||
|
"player.movement-speed": "移動スピード",
|
||||||
|
"player.movement-speed.default": "標準",
|
||||||
|
"player.one-hit-kill": "一撃で敵を倒す",
|
||||||
|
"player.max-daily-luck": "幸運になる",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "どうぐ",
|
||||||
|
"tools.infinite-water": "ジョウロの水無限",
|
||||||
|
"tools.one-hit-break": "1度のアクションで目的達成",
|
||||||
|
"tools.harvest-with-scythe": "カマで収穫",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
"tool-enchantments.title": "どうぐのエンチャント",
|
||||||
|
"tool-enchantments.select-tool": "スロットのどうぐを選択した状態で、チートメニューを表示してください。",
|
||||||
|
"tool-enchantments.none-for-tool": "選択中の{{toolName}}に使用できるエンチャントがありません。",
|
||||||
|
"tool-enchantments.for-tool": "選択中のどうぐ:{{toolName}}",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "お金",
|
||||||
|
"add.casino-coins": "カジノのコイン",
|
||||||
|
"add.golden-walnuts": "金のクルミ",
|
||||||
|
"add.qi-gems": "Qiジェム",
|
||||||
|
"add.amount-gold": "{{amount}} G増やす",
|
||||||
|
"add.amount-other": "{{amount}} 増やす",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "農業",
|
||||||
|
"farm.auto-water": "自動水やり",
|
||||||
|
"farm.durable-fences": "柵を強化",
|
||||||
|
"farm.instant-build": "建築がすぐに終わる",
|
||||||
|
"farm.auto-feed-animals": "エサやり自動化",
|
||||||
|
"farm.auto-pet-animals": "なでるのを自動化",
|
||||||
|
"farm.auto-pet-pets": "なでるのを自動化(ペット)",
|
||||||
|
"farm.infinite-hay": "ほし草が無くならない",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "釣り",
|
||||||
|
"fishing.instant-catch": "自動釣り上げ",
|
||||||
|
"fishing.instant-bite": "獲物がすぐにかかる",
|
||||||
|
"fishing.always-throw-max-distance": "最大距離でキャストする",
|
||||||
|
"fishing.always-treasure": "常に宝箱が釣れる",
|
||||||
|
"fishing.durable-tackles": "釣り具の耐久無限",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "作成時間の短縮",
|
||||||
|
"fast-machines.fruit-trees": "果樹",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}}(午前中に準備完了)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "スキル",
|
||||||
|
"skills.increase-farming": "農業レベル: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "採鉱レベル: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "採取レベル: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "釣りレベル: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "戦闘レベル: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "職業",
|
||||||
|
"professions.combat.fighter": "戦闘レベル5 - 戦士",
|
||||||
|
"professions.combat.scout": "戦闘レベル5 - 偵察者",
|
||||||
|
"professions.combat.acrobat": "戦闘レベル10 - 軽業師",
|
||||||
|
"professions.combat.brute": "戦闘レベル10 - 荒くれ者",
|
||||||
|
"professions.combat.defender": "戦闘レベル10 - 防衛者",
|
||||||
|
"professions.combat.desperado": "戦闘レベル10 - デスペラード",
|
||||||
|
"professions.farming.rancher": "農業レベル5 - 動物飼育者",
|
||||||
|
"professions.farming.tiller": "農業レベル5 - 耕作者",
|
||||||
|
"professions.farming.agriculturist": "農業レベル10 - 農業者",
|
||||||
|
"professions.farming.artisan": "農業レベル10 - 職人",
|
||||||
|
"professions.farming.coopmaster": "農業レベル10 - トリ小屋の達人",
|
||||||
|
"professions.farming.shepherd": "農業レベル10 - 羊飼い",
|
||||||
|
"professions.fishing.fisher": "釣りレベル5 - 釣り人",
|
||||||
|
"professions.fishing.trapper": "釣りレベル5 - 漁師",
|
||||||
|
"professions.fishing.angler": "釣りレベル10 - 釣り師",
|
||||||
|
"professions.fishing.luremaster": "釣りレベル10 - ルアーの達人",
|
||||||
|
"professions.fishing.mariner": "釣りレベル10 - 水夫",
|
||||||
|
"professions.fishing.pirate": "釣りレベル10 - 海賊",
|
||||||
|
"professions.foraging.forester": "採取レベル5 - 森の住人",
|
||||||
|
"professions.foraging.gatherer": "採取レベル5 - 収集者",
|
||||||
|
"professions.foraging.botanist": "採取レベル10 - 植物学者",
|
||||||
|
"professions.foraging.lumberjack": "採取レベル10 - 木こり",
|
||||||
|
"professions.foraging.tapper": "採取レベル10 - 樹液採集器",
|
||||||
|
"professions.foraging.tracker": "採取レベル10 - 追跡者",
|
||||||
|
"professions.mining.geologist": "採鉱レベル5 - 地質学者",
|
||||||
|
"professions.mining.miner": "採鉱レベル5 - 鉱山労働者",
|
||||||
|
"professions.mining.blacksmith": "採鉱レベル10 - 鍛冶屋",
|
||||||
|
"professions.mining.excavator": "採鉱レベル10 - 掘削者",
|
||||||
|
"professions.mining.gemologist": "採鉱レベル10 - 宝石学者",
|
||||||
|
"professions.mining.prospector": "採鉱レベル10 - 探鉱者",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "明日の天気",
|
||||||
|
"weather.current-value": "明日の天気は{{weather}}です。",
|
||||||
|
"weather.explanation": "明日の天気を設定するには、せっていボタンをクリックしてください。\nこのタブはそれ以外の天気に影響を与えません。",
|
||||||
|
"weather.sunny": "晴れ",
|
||||||
|
"weather.raining": "雨",
|
||||||
|
"weather.lightning": "嵐",
|
||||||
|
"weather.snowing": "雪",
|
||||||
|
"weather.green-rain": "緑の雨",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "人間関係",
|
||||||
|
"relationships.give-gifts-anytime": "何度もプレゼントできる",
|
||||||
|
"relationships.no-decay": "友好度が減らない",
|
||||||
|
"relationships.friends": "友人",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "これらのワープはMODによって編集されたものです。\n問題が発生する場合は、該当するMODに報告してください。",
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "主要な場所",
|
||||||
|
"warp.farm": "牧場",
|
||||||
|
"warp.carpenter": "大工作業場",
|
||||||
|
"warp.desert": "カリコ砂漠",
|
||||||
|
"warp.mines": "鉱山",
|
||||||
|
"warp.pierre-shop": "ピエール商店",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "ペリカンタウン",
|
||||||
|
"warp.blacksmith": "鍛冶屋",
|
||||||
|
"warp.community-center": "公民館",
|
||||||
|
"warp.jojamart": "Jojaマート",
|
||||||
|
"warp.movie-theater": "映画館",
|
||||||
|
"warp.museum": "博物館",
|
||||||
|
"warp.saloon": "サルーン",
|
||||||
|
"warp.sewer": "下水道",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "シンダーサップの森",
|
||||||
|
"warp.hats": "ぼうしや",
|
||||||
|
"warp.mastery-cave": "おじいちゃんの秘密の部屋",
|
||||||
|
"warp.ranch": "マーニーの牧場",
|
||||||
|
"warp.secret-woods": "秘密の森",
|
||||||
|
"warp.wizard-tower": "魔術師の塔",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "山",
|
||||||
|
"warp.adventurers-guild": "冒険者ギルド",
|
||||||
|
"warp.bathhouse": "スパ",
|
||||||
|
"warp.mutant-bug-lair": "ミュータントバグのすみか",
|
||||||
|
"warp.quarry": "石切場",
|
||||||
|
"warp.witch-swamp": "魔女の小屋",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "ビーチ",
|
||||||
|
"warp.tide-pools": "潮だまり",
|
||||||
|
"warp.willy-shop": "釣具店",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "ジンジャーアイランド",
|
||||||
|
"warp.forge": "火山のカルデラ",
|
||||||
|
"warp.island-farm": "島の農場",
|
||||||
|
"warp.dwarf-shop": "火山のドワーフショップ",
|
||||||
|
"warp.field-office": "フィールドオフィス",
|
||||||
|
"warp.leo-house": "レオの家",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "カリコ砂漠",
|
||||||
|
"warp.casino": "カジノ",
|
||||||
|
"warp.sandy-shop": "オアシス",
|
||||||
|
"warp.skull-cavern": "ドクロの洞窟",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "時間停止",
|
||||||
|
"time.freeze-inside": "屋内で時間が止まる",
|
||||||
|
"time.freeze-caves": "洞窟やダンジョンで時間が止まる",
|
||||||
|
"time.freeze-everywhere": "どこでも時間が止まる",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds", // TODO
|
||||||
|
"time.time": "時間",
|
||||||
|
"time.time-frozen-message": "時間停止!",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "年月日",
|
||||||
|
"date.warning": "一晩経たないと更新されないものもあります。",
|
||||||
|
"date.year": "年",
|
||||||
|
"date.season": "季節",
|
||||||
|
"date.day": "日",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "これらの設定の変更はあなたの自己責任です!\n手紙の配達、イベントやクエストの進行に問題が起きる場合があります。",
|
||||||
|
"flags.quests": "クエストの完了",
|
||||||
|
"flags.wallet": "スペシャルアイテム",
|
||||||
|
"flags.unlocked": "ロック解除されたエリア",
|
||||||
|
"flags.unlocked.guild": "冒険者ギルド",
|
||||||
|
"flags.unlocked.room": "部屋:{{name}}",
|
||||||
|
"flags.unlocked-content": "ロック解除されたコンテンツ",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "染色と仕立て",
|
||||||
|
"flags.unlocked-content.junimo-text": "ジュニモの言葉を読めるようにする",
|
||||||
|
"flags.unlocked-content.perfection": "パーフェクションの達成",
|
||||||
|
"flags.community-center": "公民館の復興",
|
||||||
|
"flags.community-center.door-unlocked": "公民館へ入館",
|
||||||
|
"flags.jojamart.membership": "Jojaマートの会員権",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "操作",
|
||||||
|
"controls.android-config-note": "画面上のボタンは、CJB Cheats MenuとVirtual Keyboard Modsの設定ファイルで変更できます。",
|
||||||
|
"controls.open-menu": "チートメニューを表示",
|
||||||
|
"controls.freeze-time": "時間を止める",
|
||||||
|
"controls.grow-tree": "周りの樹木や果樹を生長させる",
|
||||||
|
"controls.grow-crops": "周りの作物が収穫状態にする",
|
||||||
|
"controls.grow-radius": "生長や収穫を適用する範囲",
|
||||||
|
"controls.reset-controls": "リセット",
|
||||||
|
"controls.press-new-key": "新しいキーを押してね",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.open-menu.desc": "チートメニューを開くキーを設定する(他のメニューが開かれていない時有効)",
|
||||||
|
"config.freeze-time.desc": "時間停止のキーを設定する",
|
||||||
|
"config.grow-tree.desc": "プレイヤーの周りの樹木や果樹を生長させるキーを設定する",
|
||||||
|
"config.grow-crops.desc": "プレイヤーの周りの作物を収穫状態にするキーを設定する",
|
||||||
|
|
||||||
|
"controls.reload-config": "ファイルからの設定の再読み込み",
|
||||||
|
"controls.reload-config.desc": "modの設定をmodのconfig.jsonファイルからリロードするキー設定。メニューが現在開かれている場合、変更はメニューが再び開かれたときにのみ有効になります。",
|
||||||
|
|
||||||
|
"config.title.other-options": "その他オプション",
|
||||||
|
"config.default-tab.name": "デフォルトタブ",
|
||||||
|
"config.default-tab.desc": "メニューを開いたときにデフォルトで表示されるタブ",
|
||||||
|
"config.other-options": "チートを設定するには、ゲーム内で上記の「チートメニューを表示」キーを押す。\nセーブをロードした後、他のメニューやダイアログが開いていないときに押してください。"
|
||||||
|
}
|
277
CJBCheatsMenu/i18n/ko.json
Normal file
277
CJBCheatsMenu/i18n/ko.json
Normal file
|
@ -0,0 +1,277 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB 치트 메뉴",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "플레이어 & 도구",
|
||||||
|
"tabs.farm-and-fishing": "농장 & 낚시",
|
||||||
|
"tabs.skills": "스킬",
|
||||||
|
"tabs.weather": "날씨",
|
||||||
|
"tabs.relationships": "사회관계",
|
||||||
|
"tabs.warp": "이동",
|
||||||
|
"tabs.time": "시간",
|
||||||
|
"tabs.advanced": "고급",
|
||||||
|
"tabs.controls": "조작키",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "플레이어",
|
||||||
|
"player.infinite-stamina": "기력 무한",
|
||||||
|
"player.infinite-health": "체력 무한",
|
||||||
|
"player.instant-cooldowns": "무기 즉시 재사용 대기 시간",
|
||||||
|
"player.inventory-size": "가방 크기",
|
||||||
|
"player.movement-speed": "이동 속도",
|
||||||
|
"player.movement-speed.default": "기본 이동 속도",
|
||||||
|
"player.one-hit-kill": "한방에 처치",
|
||||||
|
"player.max-daily-luck": "매일 최상의 행운",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "도구",
|
||||||
|
"tools.infinite-water": "물뿌리개 무한",
|
||||||
|
"tools.one-hit-break": "한방에 쪼개기/부수기",
|
||||||
|
"tools.harvest-with-scythe": "낫으로 수확",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
// TODO
|
||||||
|
"tool-enchantments.title": "Tool Enchantments",
|
||||||
|
"tool-enchantments.select-tool": "Select a tool on your toolbar to edit enchantments.",
|
||||||
|
"tool-enchantments.none-for-tool": "No enchantments available for selected {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "For the selected {{toolName}}.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "돈",
|
||||||
|
"add.casino-coins": "카지노 코인",
|
||||||
|
"add.golden-walnuts": "황금 호두",
|
||||||
|
"add.qi-gems": "치 보석",
|
||||||
|
"add.amount-gold": "{{amount}}골드 추가",
|
||||||
|
"add.amount-other": "{{amount}}개 추가",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "농장",
|
||||||
|
"farm.auto-water": "작물 자동 물주기",
|
||||||
|
"farm.durable-fences": "울타리 부식 방지",
|
||||||
|
"farm.instant-build": "농장 건물 건설 즉시 완성",
|
||||||
|
"farm.auto-feed-animals": "사료 자동 급식",
|
||||||
|
"farm.auto-pet-animals": "애완동물 자동 물그릇",
|
||||||
|
"farm.auto-pet-pets": "애완동물 자동 쓰다듬기",
|
||||||
|
"farm.infinite-hay": "건초 무한대",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "낚시",
|
||||||
|
"fishing.instant-catch": "물고기 즉시 낚음",
|
||||||
|
"fishing.instant-bite": "물고기 즉시 입질",
|
||||||
|
"fishing.always-throw-max-distance": "낚싯대 최대 멀리 던짐",
|
||||||
|
"fishing.always-treasure": "보물상자 항상 나옴",
|
||||||
|
"fishing.durable-tackles": "낚시찌 소모되지 않음",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "기계 빠르게 설정",
|
||||||
|
"fast-machines.fruit-trees": "과일나무",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (아침에 준비)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "스킬",
|
||||||
|
"skills.increase-farming": "농사 레벨 UP: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "채광 레벨 UP: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "채집 레벨 UP: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "낚시 레벨 UP: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "전투 레벨 UP: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "직업 변경",
|
||||||
|
"professions.combat.fighter": "전투 레벨 5 - 싸움꾼",
|
||||||
|
"professions.combat.scout": "전투 레벨 5 - 정찰자",
|
||||||
|
"professions.combat.acrobat": "전투 레벨 10 - 곡예사",
|
||||||
|
"professions.combat.brute": "전투 레벨 10 - 덩치",
|
||||||
|
"professions.combat.defender": "전투 레벨 10 - 수호자",
|
||||||
|
"professions.combat.desperado": "전투 레벨 10 - 무법자",
|
||||||
|
"professions.farming.rancher": "농사 레벨 5 - 목축업자",
|
||||||
|
"professions.farming.tiller": "농사 레벨 5 - 경작인",
|
||||||
|
"professions.farming.agriculturist": "농사 레벨 10 - 농업 전문가",
|
||||||
|
"professions.farming.artisan": "농사 레벨 10 - 장인",
|
||||||
|
"professions.farming.coopmaster": "농사 레벨 10 - 닭장의 달인",
|
||||||
|
"professions.farming.shepherd": "농사 레벨 10 - 양치기",
|
||||||
|
"professions.fishing.fisher": "낚시 레벨 5 - 어부",
|
||||||
|
"professions.fishing.trapper": "낚시 레벨 5 - 덫 사냥꾼",
|
||||||
|
"professions.fishing.angler": "낚시 레벨 10 - 낚시 장인",
|
||||||
|
"professions.fishing.luremaster": "낚시 레벨 10 - 미끼 장인",
|
||||||
|
"professions.fishing.mariner": "낚시 레벨 10 - 뱃사람",
|
||||||
|
"professions.fishing.pirate": "낚시 레벨 10 - 해적",
|
||||||
|
"professions.foraging.forester": "채집 레벨 5 - 수목 관리원",
|
||||||
|
"professions.foraging.gatherer": "채집 레벨 5 - 채집가",
|
||||||
|
"professions.foraging.botanist": "채집 레벨 10 - 식물학자",
|
||||||
|
"professions.foraging.lumberjack": "채집 레벨 10 - 벌목꾼",
|
||||||
|
"professions.foraging.tapper": "채집 레벨 10 - 수액 채취자",
|
||||||
|
"professions.foraging.tracker": "채집 레벨 10 - 추적자",
|
||||||
|
"professions.mining.geologist": "채광 레벨 5 - 지질학자",
|
||||||
|
"professions.mining.miner": "채광 레벨 5 - 광부",
|
||||||
|
"professions.mining.blacksmith": "채광 레벨 10 - 대장장이",
|
||||||
|
"professions.mining.excavator": "채광 레벨 10 - 발굴자",
|
||||||
|
"professions.mining.gemologist": "채광 레벨 10 - 보석학자",
|
||||||
|
"professions.mining.prospector": "채광 레벨 10 - 탐광자",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "내일의 날씨",
|
||||||
|
"weather.current-value": "Tomorrow's weather is set to {{weather}}.", // TODO
|
||||||
|
"weather.explanation": "Click a button below to set the weather for tomorrow (and only tomorrow). This tab has zero effect on weather otherwise.", // TODO
|
||||||
|
"weather.sunny": "맑음",
|
||||||
|
"weather.raining": "비",
|
||||||
|
"weather.lightning": "폭풍(번개)",
|
||||||
|
"weather.snowing": "눈",
|
||||||
|
"weather.green-rain": "Green Raining", // TODO
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "사회관계",
|
||||||
|
"relationships.give-gifts-anytime": "언제든지 선물하기",
|
||||||
|
"relationships.no-decay": "친밀도 유지",
|
||||||
|
"relationships.friends": "친구",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "These warps were edited by your mods. Please report warp issues to the mods which added them if applicable.", // TODO
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "주요 지역",
|
||||||
|
"warp.farm": "농장",
|
||||||
|
"warp.carpenter": "로빈 목공소",
|
||||||
|
"warp.desert": "캘리코 사막",
|
||||||
|
"warp.mines": "광산",
|
||||||
|
"warp.pierre-shop": "피에르 잡화점",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "마을",
|
||||||
|
"warp.blacksmith": "클린트 대장간",
|
||||||
|
"warp.community-center": "마을 회관",
|
||||||
|
"warp.jojamart": "조자마트",
|
||||||
|
"warp.movie-theater": "영화관",
|
||||||
|
"warp.museum": "박물관",
|
||||||
|
"warp.saloon": "스타드롭 살롱",
|
||||||
|
"warp.sewer": "하수도",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "숲",
|
||||||
|
"warp.hats": "모자쥐 상점",
|
||||||
|
"warp.mastery-cave": "Mastery Cave", // TODO
|
||||||
|
"warp.ranch": "마니의 목장",
|
||||||
|
"warp.secret-woods": "비밀의 숲",
|
||||||
|
"warp.wizard-tower": "마법사의 탑",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "산",
|
||||||
|
"warp.adventurers-guild": "모험가 길드",
|
||||||
|
"warp.bathhouse": "목욕탕",
|
||||||
|
"warp.mutant-bug-lair": "돌연변이 곤충 둥지",
|
||||||
|
"warp.quarry": "채석장",
|
||||||
|
"warp.witch-swamp": "마녀의 늪",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "해변",
|
||||||
|
"warp.tide-pools": "오른쪽 해변",
|
||||||
|
"warp.willy-shop": "윌리의 낚시가게",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "진저섬",
|
||||||
|
"warp.forge": "용암 광산 10층",
|
||||||
|
"warp.island-farm": "진저섬 농장",
|
||||||
|
"warp.dwarf-shop": "용암 광산 5층",
|
||||||
|
"warp.field-office": "진저섬 현장 사무소",
|
||||||
|
"warp.leo-house": "레오 집",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "사막",
|
||||||
|
"warp.casino": "카지노",
|
||||||
|
"warp.sandy-shop": "샌디의 오아시스",
|
||||||
|
"warp.skull-cavern": "해골 동굴",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "시간",
|
||||||
|
"time.freeze-inside": "실내에서 시간 정지",
|
||||||
|
"time.freeze-caves": "광산/해골동굴 안에서 시간 정지",
|
||||||
|
"time.freeze-everywhere": "모든 장소에서 시간 정지",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds", // TODO
|
||||||
|
"time.time": "시간",
|
||||||
|
"time.time-frozen-message": "시간 멈춤",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "날짜",
|
||||||
|
"date.warning": "저장을 해야 변경되는 경우가 있습니다.",
|
||||||
|
"date.year": "년",
|
||||||
|
"date.season": "계절",
|
||||||
|
"date.day": "일",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "이 부분의 사용은 사용자가 전적으로 책임져야 합니다.\n 편지, 이벤트 또는 퀘스트를 보지 못 할 수 있습니다.",
|
||||||
|
"flags.quests": "퀘스트 완료",
|
||||||
|
"flags.wallet": "지갑 아이템",
|
||||||
|
"flags.unlocked": "지역 해제",
|
||||||
|
"flags.unlocked.guild": "모험가 길드",
|
||||||
|
"flags.unlocked.room": "방: {{name}}",
|
||||||
|
"flags.unlocked-content": "해제되지 않은 콘텐츠",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "염색&재봉틀",
|
||||||
|
"flags.unlocked-content.junimo-text": "주니모 글씨 읽기 가능",
|
||||||
|
"flags.unlocked-content.perfection": "Perfection achieved", // TODO
|
||||||
|
"flags.community-center": "마을 회관",
|
||||||
|
"flags.community-center.door-unlocked": "마을회관 잠긴 문 열기",
|
||||||
|
"flags.jojamart.membership": "조자마트 회원권",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "조작키",
|
||||||
|
"controls.android-config-note": "CJB 치트 메뉴 및 가상 키보드 모드의 구성 파일에서 화면 버튼을 변경할 수 있습니다.",
|
||||||
|
"controls.open-menu": "메뉴 열기",
|
||||||
|
"controls.freeze-time": "시간 정지",
|
||||||
|
"controls.grow-tree": "나무 즉시 성장",
|
||||||
|
"controls.grow-crops": "작물 즉시 성장",
|
||||||
|
"controls.grow-radius": "플레이어 주변 거리 증가",
|
||||||
|
"controls.reset-controls": "초기화 하기",
|
||||||
|
"controls.press-new-key": "새로운 단축키를 입력하세요...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.open-menu.desc": "메뉴를 여는 키입니다(다른 메뉴가 열려 있지 않을 때).",
|
||||||
|
"config.freeze-time.desc": "게임 시간을 멈추는 키입니다.",
|
||||||
|
"config.grow-tree.desc": "플레이어 주변에 나무를 성장시키는 키입니다.",
|
||||||
|
"config.grow-crops.desc": "플레이어 주변에 작물을 성장시키는 키입니다.",
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
"controls.reload-config": "Reload settings from file",
|
||||||
|
"controls.reload-config.desc": "The keybind which reloads the mod settings from the mod's config.json file. If the menu is currently open, changes may only take effect when it's reopened.",
|
||||||
|
|
||||||
|
"config.title.other-options": "기타 옵션",
|
||||||
|
"config.default-tab.name": "기본 탭",
|
||||||
|
"config.default-tab.desc": "메뉴를 열 때 기본으로 표시되는 탭입니다.",
|
||||||
|
"config.other-options": "치트 설정을 위해 게임 내에서 위에 표시된 '메뉴 열기' 키를 누르세요. 저장 후에, 다른 메뉴나 대화창이 열려 있지 않을 때 눌러야 합니다."
|
||||||
|
}
|
275
CJBCheatsMenu/i18n/pl.json
Normal file
275
CJBCheatsMenu/i18n/pl.json
Normal file
|
@ -0,0 +1,275 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB Cheats Menu",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "Gracz i Narzędzia",
|
||||||
|
"tabs.farm-and-fishing": "Farma i Wędkarstwo",
|
||||||
|
"tabs.skills": "Umiejętności",
|
||||||
|
"tabs.weather": "Pogoda",
|
||||||
|
"tabs.relationships": "Relacje",
|
||||||
|
"tabs.warp": "Teleportacja",
|
||||||
|
"tabs.time": "Czas",
|
||||||
|
"tabs.advanced": "Zaawansowane",
|
||||||
|
"tabs.controls": "Sterowanie",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "Gracz",
|
||||||
|
"player.infinite-stamina": "Nieskończona Energia",
|
||||||
|
"player.infinite-health": "Nieśmiertelność",
|
||||||
|
"player.instant-cooldowns": "Natychmiastowy Czas Odnowienia Broni",
|
||||||
|
"player.inventory-size": "Rozmiar Ekwipunku",
|
||||||
|
"player.movement-speed": "Szybkość Ruchu",
|
||||||
|
"player.movement-speed.default": "normalna",
|
||||||
|
"player.one-hit-kill": "Zabijaj Jednym Ciosem",
|
||||||
|
"player.max-daily-luck": "Maksymalne Dzienne Szczęście",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "Narzędzia",
|
||||||
|
"tools.infinite-water": "Nieskończona Woda w Konewce",
|
||||||
|
"tools.one-hit-break": "Rozbijaj Jednym Uderzeniem",
|
||||||
|
"tools.harvest-with-scythe": "Zbieraj Plony za Pomocą Kosy",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
"tool-enchantments.title": "Zaklęcia Narzędzi",
|
||||||
|
"tool-enchantments.select-tool": "Wybierz narzędzie z paska narzędzi, aby edytować zaklęcia.",
|
||||||
|
"tool-enchantments.none-for-tool": "Brak dostępnych zaklęć dla wybranego {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "Dla wybranego {{toolName}}.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "Pieniądze",
|
||||||
|
"add.casino-coins": "Monety z Kasyna",
|
||||||
|
"add.golden-walnuts": "Złote Orzechy",
|
||||||
|
"add.qi-gems": "Kryształy Qi",
|
||||||
|
"add.amount-gold": "Dodaj {{amount}}zł",
|
||||||
|
"add.amount-other": "Dodaj {{amount}}",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "Farma",
|
||||||
|
"farm.auto-water": "Auto-Podlewanie Upraw",
|
||||||
|
"farm.durable-fences": "Trwałe Płoty",
|
||||||
|
"farm.instant-build": "Natychmiastowa Budowa",
|
||||||
|
"farm.auto-feed-animals": "Auto-Karmienie Zwierząt",
|
||||||
|
"farm.auto-pet-animals": "Auto-Głaskanie Zwierząt",
|
||||||
|
"farm.auto-pet-pets": "Auto-Głaskanie Zwierzaków Domowych",
|
||||||
|
"farm.infinite-hay": "Nieskończone Siano",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "Wędkarstwo",
|
||||||
|
"fishing.instant-catch": "Natychmiastowe Wyławianie",
|
||||||
|
"fishing.instant-bite": "Natychmiastowe Branie",
|
||||||
|
"fishing.always-throw-max-distance": "Zawsze Rzucaj na Maksymalną Odległość",
|
||||||
|
"fishing.always-treasure": "Nieustanne Skarby",
|
||||||
|
"fishing.durable-tackles": "Trwałe Akcesoria",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "Szybka Produkcja Maszynowa",
|
||||||
|
"fast-machines.fruit-trees": "Drzewa Owocowe",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (gotowe o poranku)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "Umiejętności",
|
||||||
|
"skills.increase-farming": "Zwiększ Poziom Rolnictwa: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "Zwiększ Poziom Górnictwa: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "Zwiększ Poziom Zbieractwa: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "Zwiększ Poziom Wędkarstwa: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "Zwiększ Poziom Walki: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "Profesje",
|
||||||
|
"professions.combat.fighter": "Walka poz. 5 - Wojak",
|
||||||
|
"professions.combat.scout": "Walka poz. 5 - Skaut",
|
||||||
|
"professions.combat.acrobat": "Walka poz. 10 - Akrobata",
|
||||||
|
"professions.combat.brute": "Walka poz. 10 - Brutal",
|
||||||
|
"professions.combat.defender": "Walka poz. 10 - Obrońca",
|
||||||
|
"professions.combat.desperado": "Walka poz. 10 - Desperado",
|
||||||
|
"professions.farming.rancher": "Rolnictwo poz. 5 - Ranczer",
|
||||||
|
"professions.farming.tiller": "Rolnictwo poz. 5 - Rolnik",
|
||||||
|
"professions.farming.agriculturist": "Rolnictwo poz. 10 - Agronom",
|
||||||
|
"professions.farming.artisan": "Rolnictwo poz. 10 - Rzemieślnik",
|
||||||
|
"professions.farming.coopmaster": "Rolnictwo poz. 10 - Mistrz Kurnika",
|
||||||
|
"professions.farming.shepherd": "Rolnictwo poz. 10 - Pasterz",
|
||||||
|
"professions.fishing.fisher": "Wędkarstwo poz. 5 - Wędkarz",
|
||||||
|
"professions.fishing.trapper": "Wędkarstwo poz. 5 - Wyławiacz",
|
||||||
|
"professions.fishing.angler": "Wędkarstwo poz. 10 - Rybak",
|
||||||
|
"professions.fishing.luremaster": "Wędkarstwo poz. 10 - Mistrz Przynęty",
|
||||||
|
"professions.fishing.mariner": "Wędkarstwo poz. 10 - Marynarz",
|
||||||
|
"professions.fishing.pirate": "Wędkarstwo poz. 10 - Pirat",
|
||||||
|
"professions.foraging.forester": "Zbieractwo poz. 5 - Leśniczy",
|
||||||
|
"professions.foraging.gatherer": "Zbieractwo poz. 5 - Zbieracz",
|
||||||
|
"professions.foraging.botanist": "Zbieractwo poz. 10 - Botanik",
|
||||||
|
"professions.foraging.lumberjack": "Zbieractwo poz. 10 - Drwal",
|
||||||
|
"professions.foraging.tapper": "Zbieractwo poz. 10 - Żywiczarz",
|
||||||
|
"professions.foraging.tracker": "Zbieractwo poz. 10 - Tropiciel",
|
||||||
|
"professions.mining.geologist": "Górnictwo poz. 5 - Geolog",
|
||||||
|
"professions.mining.miner": "Górnictwo poz. 5 - Górnik",
|
||||||
|
"professions.mining.blacksmith": "Górnictwo poz. 10 - Kowal",
|
||||||
|
"professions.mining.excavator": "Górnictwo poz. 10 - Wydobywca",
|
||||||
|
"professions.mining.gemologist": "Górnictwo poz. 10 - Gemolog",
|
||||||
|
"professions.mining.prospector": "Górnictwo poz. 10 - Poszukiwacz",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "Jutrzejsza Pogoda",
|
||||||
|
"weather.current-value": "Jutrzejsza pogoda jest ustawiona na {{weather}}.",
|
||||||
|
"weather.explanation": "Kliknij przycisk poniżej, aby ustawić pogodę na jutro (tylko na jutro). Ta zakładka nie ma wpływu na pogodę w innych przypadkach.",
|
||||||
|
"weather.sunny": "Słoneczna",
|
||||||
|
"weather.raining": "Deszczowa",
|
||||||
|
"weather.lightning": "Burzowa",
|
||||||
|
"weather.snowing": "Śnieżna",
|
||||||
|
"weather.green-rain": "Zielony Deszcz",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "Relacje",
|
||||||
|
"relationships.give-gifts-anytime": "Dawaj Prezenty Kiedykolwiek Chcesz",
|
||||||
|
"relationships.no-decay": "Brak Podupadania Relacji",
|
||||||
|
"relationships.friends": "Przyjaciele",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "Te teleportacje zostały zmodyfikowane przez twoje mody. Proszę zgłaszać problemy z teleportacjami do modów, które je dodały, jeśli ma to zastosowanie.",
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "Główne Obszary",
|
||||||
|
"warp.farm": "Farma",
|
||||||
|
"warp.carpenter": "Sklep Stolarski",
|
||||||
|
"warp.desert": "Pustynia",
|
||||||
|
"warp.mines": "Kopalnia",
|
||||||
|
"warp.pierre-shop": "Sklep Pierra",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "Miasteczko",
|
||||||
|
"warp.blacksmith": "Kowal",
|
||||||
|
"warp.community-center": "Centrum Społeczności",
|
||||||
|
"warp.jojamart": "JojaMarket",
|
||||||
|
"warp.movie-theater": "Kino",
|
||||||
|
"warp.museum": "Muzeum",
|
||||||
|
"warp.saloon": "Gwiezdna Knajpa",
|
||||||
|
"warp.sewer": "Ścieki",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "Las",
|
||||||
|
"warp.hats": "Sklep z Czapkami",
|
||||||
|
"warp.mastery-cave": "Jaskinia Mistrzostwa",
|
||||||
|
"warp.ranch": "Ranczo Marnie",
|
||||||
|
"warp.secret-woods": "Tajemniczy Las",
|
||||||
|
"warp.wizard-tower": "Wieża Czarodzieja",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "Góra",
|
||||||
|
"warp.adventurers-guild": "Gildia Poszukiwaczy Przygód",
|
||||||
|
"warp.bathhouse": "Spa",
|
||||||
|
"warp.mutant-bug-lair": "Legowisko Zmutowanych Robaków",
|
||||||
|
"warp.quarry": "Kamieniołom",
|
||||||
|
"warp.witch-swamp": "Bagno Wiedźmy",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "Plaża",
|
||||||
|
"warp.tide-pools": "Baseny Pływowe",
|
||||||
|
"warp.willy-shop": "Sklep Williego",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "Imbirowa Wyspa",
|
||||||
|
"warp.forge": "Kuźnia",
|
||||||
|
"warp.island-farm": "Farma na Wyspie",
|
||||||
|
"warp.dwarf-shop": "Sklep Krasnoluda w Wulkanie",
|
||||||
|
"warp.field-office": "Biuro Polowe",
|
||||||
|
"warp.leo-house": "Dom Leo",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "Pustynia",
|
||||||
|
"warp.casino": "Kasyno",
|
||||||
|
"warp.sandy-shop": "Sklep Sandy",
|
||||||
|
"warp.skull-cavern": "Kościana Pieczara",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "Czas",
|
||||||
|
"time.freeze-inside": "Zatrzymaj Czas Wewnątrz",
|
||||||
|
"time.freeze-caves": "Zatrzymaj Czas w Jaskiniach",
|
||||||
|
"time.freeze-everywhere": "Zatrzymaj Czas Wszędzie",
|
||||||
|
"time.fade-time-frozen-message": "Ukryj '{{timeFrozen}}' po kilku sekundach",
|
||||||
|
"time.time": "Czas",
|
||||||
|
"time.time-frozen-message": "Czas Zatrzymany",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "Data",
|
||||||
|
"date.warning": "Niektóre rzeczy nie zostaną zaktualizowane, dopóki nie minie noc.",
|
||||||
|
"date.year": "Rok",
|
||||||
|
"date.season": "Sezon",
|
||||||
|
"date.day": "Dzień",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "Korzystaj z tej zakładki na własne ryzyko!\nMoże ona powodować problemy, takie jak pominięte listy, wydarzenia lub zadania.",
|
||||||
|
"flags.quests": "Ukończ Zadania",
|
||||||
|
"flags.wallet": "Przedmioty z Portfela",
|
||||||
|
"flags.unlocked": "Odblokowane Miejsca",
|
||||||
|
"flags.unlocked.guild": "Gildia Poszukiwaczy Przygód",
|
||||||
|
"flags.unlocked.room": "Pokój: {{name}}",
|
||||||
|
"flags.unlocked-content": "Odblokowana Zawartość",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "Barwniki i Krawiectwo",
|
||||||
|
"flags.unlocked-content.junimo-text": "Możliwość czytania tekstu Junimo",
|
||||||
|
"flags.unlocked-content.perfection": "Osiągnięto perfekcję",
|
||||||
|
"flags.community-center": "Centrum Społeczności",
|
||||||
|
"flags.community-center.door-unlocked": "Odblokowane Drzwi",
|
||||||
|
"flags.jojamart.membership": "Członkostwo JojaMarket",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "Sterowanie",
|
||||||
|
"controls.android-config-note": "Możesz zmienić klawisze w plikach config dla modów CJB Cheats Menu i Virtual Keyboard.",
|
||||||
|
"controls.open-menu": "Otwórz Menu",
|
||||||
|
"controls.freeze-time": "Zatrzymaj Czas",
|
||||||
|
"controls.grow-tree": "Wzrost Drzew",
|
||||||
|
"controls.grow-crops": "Wzrost Upraw",
|
||||||
|
"controls.grow-radius": "Zasięg wzrostu wokół gracza",
|
||||||
|
"controls.reset-controls": "Zresetuj",
|
||||||
|
"controls.press-new-key": "Naciśnij nowy klawisz...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.open-menu.desc": "Skrót klawiszowy, który otwiera menu (gdy żadne inne menu nie jest otwarte).",
|
||||||
|
"config.freeze-time.desc": "Skrót klawiszowy, który zatrzymuje zegar gry.",
|
||||||
|
"config.grow-tree.desc": "Skrót klawiszowy, który powoduje wzrost drzew wokół gracza.",
|
||||||
|
"config.grow-crops.desc": "Skrót klawiszowy, który powoduje wzrost upraw wokół gracza.",
|
||||||
|
|
||||||
|
"controls.reload-config": "Przeładuj ustawienia z pliku",
|
||||||
|
"controls.reload-config.desc": "Skrót klawiszowy, który przeładowuje ustawienia moda z pliku config.json moda. Jeśli menu jest obecnie otwarte, zmiany mogą obowiązywać dopiero po ponownym otwarciu.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Inne opcje",
|
||||||
|
"config.default-tab.name": "Domyślna zakładka",
|
||||||
|
"config.default-tab.desc": "Zakładka domyślnie wyświetlana po otwarciu menu.",
|
||||||
|
"config.other-options": "Aby skonfigurować oszustwa, naciśnij klawisz 'otwórz menu' pokazany powyżej w grze. Upewnij się, że naciśniesz go po załadowaniu zapisu, gdy żadne inne menu lub dialog nie jest otwarty."
|
||||||
|
}
|
277
CJBCheatsMenu/i18n/pt.json
Normal file
277
CJBCheatsMenu/i18n/pt.json
Normal file
|
@ -0,0 +1,277 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "Menu de Trapaças CJB",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "Jogador e Ferramentas",
|
||||||
|
"tabs.farm-and-fishing": "Cultivo e Pesca",
|
||||||
|
"tabs.skills": "Habilidades",
|
||||||
|
"tabs.weather": "Clima",
|
||||||
|
"tabs.relationships": "Relacionamentos",
|
||||||
|
"tabs.warp": "Teletransporte",
|
||||||
|
"tabs.time": "Horário",
|
||||||
|
"tabs.advanced": "Avançado",
|
||||||
|
"tabs.controls": "Controles",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "Jogador",
|
||||||
|
"player.infinite-stamina": "Energia infinita",
|
||||||
|
"player.infinite-health": "Vida infinita",
|
||||||
|
"player.instant-cooldowns": "Tempo de recarga de armas instantâneo",
|
||||||
|
"player.inventory-size": "Tamanho do inventário",
|
||||||
|
"player.movement-speed": "Velocidade de movimento",
|
||||||
|
"player.movement-speed.default": "Normal",
|
||||||
|
"player.one-hit-kill": "Matar monstros com um golpe",
|
||||||
|
"player.max-daily-luck": "Sorte diária máxima",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "Ferramentas",
|
||||||
|
"tools.infinite-water": "Água infinita no regador",
|
||||||
|
"tools.one-hit-break": "Quebrar tudo com um golpe",
|
||||||
|
"tools.harvest-with-scythe": "Colher com a foice",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
// TODO
|
||||||
|
"tool-enchantments.title": "Tool Enchantments",
|
||||||
|
"tool-enchantments.select-tool": "Select a tool on your toolbar to edit enchantments.",
|
||||||
|
"tool-enchantments.none-for-tool": "No enchantments available for selected {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "For the selected {{toolName}}.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "Dinheiro",
|
||||||
|
"add.casino-coins": "Moedas do Cassino",
|
||||||
|
"add.golden-walnuts": "Nozes Douradas",
|
||||||
|
"add.qi-gems": "Gemas Qi",
|
||||||
|
"add.amount-gold": "Adicionar {{amount}}g",
|
||||||
|
"add.amount-other": "Adicionar {{amount}}",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "Fazenda",
|
||||||
|
"farm.auto-water": "Regar colheita automaticamente",
|
||||||
|
"farm.durable-fences": "Cercas duráveis",
|
||||||
|
"farm.instant-build": "Construções instantâneas",
|
||||||
|
"farm.auto-feed-animals": "Alimentação automática para animais",
|
||||||
|
"farm.auto-pet-animals": "Acariciar animais automaticamente",
|
||||||
|
"farm.auto-pet-pets": "Acariciar pets automaticamente",
|
||||||
|
"farm.infinite-hay": "Feno infinito",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "Pesca",
|
||||||
|
"fishing.instant-catch": "Pesca instantânea",
|
||||||
|
"fishing.instant-bite": "Fisgada instantânea",
|
||||||
|
"fishing.always-throw-max-distance": "Sempre jogar na distância máxima",
|
||||||
|
"fishing.always-treasure": "Sempre pescar tesouros",
|
||||||
|
"fishing.durable-tackles": "Anzóis duráveis",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "Máquinas rápidas",
|
||||||
|
"fast-machines.fruit-trees": "Árvores frutíferas",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (pronta pela manhã)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "Habilidades",
|
||||||
|
"skills.increase-farming": "Aumentar Nível de Cultivo: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "Aumentar Nível de Mineração: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "Aumentar Nível de Coleta: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "Aumentar Nível de Pesca: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "Aumentar Nível de Combate: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "Profissões",
|
||||||
|
"professions.combat.fighter": "Combate Nível 5 - Lutador",
|
||||||
|
"professions.combat.scout": "Combate Nível 5 - Escoteiro",
|
||||||
|
"professions.combat.acrobat": "Combate Nível 10 - Acrobata",
|
||||||
|
"professions.combat.brute": "Combate Nível 10 - Bárbaro",
|
||||||
|
"professions.combat.defender": "Combate Nível 10 - Defensor",
|
||||||
|
"professions.combat.desperado": "Combate Nível 10 - Salteador",
|
||||||
|
"professions.farming.rancher": "Cultivo Nível 5 - Rancheiro",
|
||||||
|
"professions.farming.tiller": "Cultivo Nível 5 - Cultivador",
|
||||||
|
"professions.farming.agriculturist": "Cultivo Nível 10 - Agricultor",
|
||||||
|
"professions.farming.artisan": "Cultivo Nível 10 - Artesão",
|
||||||
|
"professions.farming.coopmaster": "Cultivo Nível 10 - Mestre do Galinheiro",
|
||||||
|
"professions.farming.shepherd": "Cultivo Nível 10 - Pastor",
|
||||||
|
"professions.fishing.fisher": "Pesca Nível 5 - Pescador",
|
||||||
|
"professions.fishing.trapper": "Pesca Nível 5 - Armadilheiro",
|
||||||
|
"professions.fishing.angler": "Pesca Nível 10 - Mestre Pescador",
|
||||||
|
"professions.fishing.luremaster": "Pesca Nível 10 - Mestre da Isca",
|
||||||
|
"professions.fishing.mariner": "Pesca Nível 10 - Marinheiro",
|
||||||
|
"professions.fishing.pirate": "Pesca Nível 10 - Pirata",
|
||||||
|
"professions.foraging.forester": "Coleta Nível 5 - Silvicultor",
|
||||||
|
"professions.foraging.gatherer": "Coleta Nível 5 - Coletor",
|
||||||
|
"professions.foraging.botanist": "Coleta Nível 10 - Botanista",
|
||||||
|
"professions.foraging.lumberjack": "Coleta Nível 10 - Lenhador",
|
||||||
|
"professions.foraging.tapper": "Coleta Nível 10 - Torneirinha",
|
||||||
|
"professions.foraging.tracker": "Coleta Nível 10 - Rastreador",
|
||||||
|
"professions.mining.geologist": "Mineração Nível 5 - Geólogo",
|
||||||
|
"professions.mining.miner": "Mineração Nível 5 - Minerador",
|
||||||
|
"professions.mining.blacksmith": "Mineração Nível 10 - Ferreiro",
|
||||||
|
"professions.mining.excavator": "Mineração Nível 10 - Escavador",
|
||||||
|
"professions.mining.gemologist": "Mineração Nível 10 - Gemólogo",
|
||||||
|
"professions.mining.prospector": "Mineração Nível 10 - Garimpeiro",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "Clima Amanhã",
|
||||||
|
"weather.current-value": "Tomorrow's weather is set to {{weather}}.", // TODO
|
||||||
|
"weather.explanation": "Clique em um botão para definir o clima de amanhã (e apenas de amanhã). Essa aba não tem efeito sobre sobre o clima de outro modo.",
|
||||||
|
"weather.sunny": "Ensolarado",
|
||||||
|
"weather.raining": "Chuva",
|
||||||
|
"weather.lightning": "Tempestade",
|
||||||
|
"weather.snowing": "Neve",
|
||||||
|
"weather.green-rain": "Green Raining", // TODO
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "Relacionamentos",
|
||||||
|
"relationships.give-gifts-anytime": "Dar presentes a qualquer hora",
|
||||||
|
"relationships.no-decay": "Sem decaimento de amizade",
|
||||||
|
"relationships.friends": "Amigos",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "Esses teletransportes foram editados pelos seus mods. Por favor reporte problemas de teletransporte para os mods que os adicionaram, se possível.",
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "Áreas principais",
|
||||||
|
"warp.farm": "Fazenda",
|
||||||
|
"warp.carpenter": "Carpintaria",
|
||||||
|
"warp.desert": "Deserto",
|
||||||
|
"warp.mines": "Minas",
|
||||||
|
"warp.pierre-shop": "Armazém do Pierre",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "Cidade",
|
||||||
|
"warp.blacksmith": "Ferreiro",
|
||||||
|
"warp.community-center": "Centro Comunitário",
|
||||||
|
"warp.jojamart": "Mercado Joja",
|
||||||
|
"warp.movie-theater": "Cinema",
|
||||||
|
"warp.museum": "Museu",
|
||||||
|
"warp.saloon": "Saloon",
|
||||||
|
"warp.sewer": "Esgotos",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "Floresta",
|
||||||
|
"warp.hats": "Chapéus",
|
||||||
|
"warp.mastery-cave": "Caverna de Maestria",
|
||||||
|
"warp.ranch": "Rancho da Marnie",
|
||||||
|
"warp.secret-woods": "Bosque Secreto",
|
||||||
|
"warp.wizard-tower": "Torre do Mago",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "Montanha",
|
||||||
|
"warp.adventurers-guild": "Guilda dos Aventureiros",
|
||||||
|
"warp.bathhouse": "Spa",
|
||||||
|
"warp.mutant-bug-lair": "Covil dos Insetos Mutantes",
|
||||||
|
"warp.quarry": "Pedreira",
|
||||||
|
"warp.witch-swamp": "Pântano da bruxa",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "Praia",
|
||||||
|
"warp.tide-pools": "Poças de Maré",
|
||||||
|
"warp.willy-shop": "Peixaria",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "Ilha Gengibre",
|
||||||
|
"warp.forge": "Forja",
|
||||||
|
"warp.island-farm": "Fazenda da llha",
|
||||||
|
"warp.dwarf-shop": "Loja do Anão do Vulcão",
|
||||||
|
"warp.field-office": "Escritório do Campo",
|
||||||
|
"warp.leo-house": "Casa do Leo",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "Deserto",
|
||||||
|
"warp.casino": "Cassino",
|
||||||
|
"warp.sandy-shop": "Loja Oásis",
|
||||||
|
"warp.skull-cavern": "Caverna da Caveira",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "Horário",
|
||||||
|
"time.freeze-inside": "Parar o tempo dentro das construções",
|
||||||
|
"time.freeze-caves": "Parar o tempo nas cavernas",
|
||||||
|
"time.freeze-everywhere": "Parar o tempo em qualquer lugar",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds", // TODO
|
||||||
|
"time.time": "Horário",
|
||||||
|
"time.time-frozen-message": "Tempo parado",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "Data",
|
||||||
|
"date.warning": "Algumas coisas não atualizarão até que a noite passe.",
|
||||||
|
"date.year": "Ano",
|
||||||
|
"date.season": "Estação",
|
||||||
|
"date.day": "Dia",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "Use esta seção por sua conta e risco!\nIsso pode causar problemas como mensagens ignoradas, eventos\n ou missões.",
|
||||||
|
"flags.quests": "Completar missão",
|
||||||
|
"flags.wallet": "Itens da carteira",
|
||||||
|
"flags.unlocked": "Liberar áreas",
|
||||||
|
"flags.unlocked.guild": "Guilda dos Aventureiros",
|
||||||
|
"flags.unlocked.room": "Quarto: {{name}}",
|
||||||
|
"flags.unlocked-content": "Conteúdo desbloqueado",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "Corantes e alfaiataria",
|
||||||
|
"flags.unlocked-content.junimo-text": "Pode ler texto dos Junimos",
|
||||||
|
"flags.unlocked-content.perfection": "Perfection achieved", // TODO
|
||||||
|
"flags.community-center": "Centro Comunitário",
|
||||||
|
"flags.community-center.door-unlocked": "Destrancar porta",
|
||||||
|
"flags.jojamart.membership": "Associar ao Mercado Joja",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "Controles",
|
||||||
|
"controls.android-config-note": "Você pode mudar os botões mostrados na tela nos arquivos de configuração do Meu de Trapaças CJB e dos mods de teclado virtual.",
|
||||||
|
"controls.open-menu": "Abrir menu",
|
||||||
|
"controls.freeze-time": "Parar o tempo",
|
||||||
|
"controls.grow-tree": "Crescer árvores",
|
||||||
|
"controls.grow-crops": "Crescer plantações",
|
||||||
|
"controls.grow-radius": "Raio de crescimento ao redor do jogador",
|
||||||
|
"controls.reset-controls": "Voltar ao padrão",
|
||||||
|
"controls.press-new-key": "Pressione uma nova tecla...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.open-menu.desc": "A tecla que abre o menu (quando nenhum outro menu está aberto).",
|
||||||
|
"config.freeze-time.desc": "A tecla que para o relógio do jogo.",
|
||||||
|
"config.grow-tree.desc": "A tecla que apertada faz crescer árvores em torno do jogador.",
|
||||||
|
"config.grow-crops.desc": "A tecla que apertada faz crescer plantações em torno do jogador.",
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
"controls.reload-config": "Reload settings from file",
|
||||||
|
"controls.reload-config.desc": "The keybind which reloads the mod settings from the mod's config.json file. If the menu is currently open, changes may only take effect when it's reopened.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Outras opções",
|
||||||
|
"config.default-tab.name": "Aba padrão",
|
||||||
|
"config.default-tab.desc": "A aba mostrada por padrão quando você abre o menu.",
|
||||||
|
"config.other-options": "Para configurar cheats, pressione a tecla de 'Abrir menu' mostrada acima, durante o jogo. Tenha certeza de pressionar após você carregar o save, quando nenhum outro menu ou diálogo esteja aberto."
|
||||||
|
}
|
278
CJBCheatsMenu/i18n/ru.json
Normal file
278
CJBCheatsMenu/i18n/ru.json
Normal file
|
@ -0,0 +1,278 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB Cheats Menu",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "Игрок и инструменты",
|
||||||
|
"tabs.farm-and-fishing": "Ферма и рыбалка",
|
||||||
|
"tabs.skills": "Навыки",
|
||||||
|
"tabs.weather": "Погода",
|
||||||
|
"tabs.relationships": "Отношения",
|
||||||
|
"tabs.warp": "Телепортация",
|
||||||
|
"tabs.time": "Время",
|
||||||
|
"tabs.advanced": "Прочее",
|
||||||
|
"tabs.controls": "Управление",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "Игрок",
|
||||||
|
"player.infinite-stamina": "Бесконечная выносливость",
|
||||||
|
"player.infinite-health": "Бесконечное здоровье",
|
||||||
|
"player.instant-cooldowns": "Убрать задержку при использовании оружия",
|
||||||
|
"player.inventory-size": "Объём инвентаря",
|
||||||
|
"player.movement-speed": "Скорость перемещения",
|
||||||
|
"player.movement-speed.default": "обычная",
|
||||||
|
"player.one-hit-kill": "Убийство с одного удара",
|
||||||
|
"player.max-daily-luck": "Максимальная удача",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "Инструменты",
|
||||||
|
"tools.infinite-water": "Бесконечная вода в лейке",
|
||||||
|
"tools.one-hit-break": "Разрушение с одного удара",
|
||||||
|
"tools.harvest-with-scythe": "Сбор культур серпом",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
// TODO
|
||||||
|
"tool-enchantments.title": "Tool Enchantments",
|
||||||
|
"tool-enchantments.select-tool": "Select a tool on your toolbar to edit enchantments.",
|
||||||
|
"tool-enchantments.none-for-tool": "No enchantments available for selected {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "For the selected {{toolName}}.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "Деньги",
|
||||||
|
"add.casino-coins": "Клубные монеты",
|
||||||
|
"add.golden-walnuts": "Золотых грецких",
|
||||||
|
"add.qi-gems": "Самоцветы Ки",
|
||||||
|
"add.amount-gold": "Добавить {{amount}}",
|
||||||
|
"add.amount-other": "Добавить {{amount}}",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "Ферма",
|
||||||
|
"farm.auto-water": "Автополиваемые культуры",
|
||||||
|
"farm.durable-fences": "Прочные ограждения",
|
||||||
|
"farm.instant-build": "Мгновенное строительство",
|
||||||
|
"farm.auto-feed-animals": "Автоматическая подкормка животных",
|
||||||
|
"farm.auto-pet-animals": "Автоматическое приласкивание животных",
|
||||||
|
"farm.auto-pet-pets": "Автоматическое приласкивание домашних животных",
|
||||||
|
"farm.infinite-hay": "Бесконечное сено",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "Рыбалка",
|
||||||
|
"fishing.instant-catch": "Мгновенный вылов рыбы",
|
||||||
|
"fishing.instant-bite": "Мгновенный поклёв рыбы",
|
||||||
|
"fishing.always-throw-max-distance": "Закидывать на максимальное расстояние",
|
||||||
|
"fishing.always-treasure": "Всегда попадается сокровище",
|
||||||
|
"fishing.durable-tackles": "Прочные снасти",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "Ускорение работы машин",
|
||||||
|
"fast-machines.fruit-trees": "Фруктовые деревья",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (будет готово утром)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "Навыки",
|
||||||
|
"skills.increase-farming": "Увеличить ур. Фермерства: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "Увеличить ур. Горного дела: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "Увеличить ур. Собирательства: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "Увеличить ур. Рыбалки: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "Увеличить ур. Боевых навыков: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "Профессии",
|
||||||
|
"professions.combat.fighter": "Боевые навыки ур. 5 - Боец",
|
||||||
|
"professions.combat.scout": "Боевые навыки ур. 5 - Разведчик",
|
||||||
|
"professions.combat.acrobat": "Боевые навыки ур. 10 - Акробат",
|
||||||
|
"professions.combat.brute": "Боевые навыки ур. 10 - Воротила",
|
||||||
|
"professions.combat.defender": "Боевые навыки ур. 10 - Защитник",
|
||||||
|
"professions.combat.desperado": "Боевые навыки ур. 10 - Сорвиголова",
|
||||||
|
"professions.farming.rancher": "Фермерство ур. 5 - Животновод",
|
||||||
|
"professions.farming.tiller": "Фермерство ур. 5 - Культиватор",
|
||||||
|
"professions.farming.agriculturist": "Фермерство ур. 10 - Земледелец",
|
||||||
|
"professions.farming.artisan": "Фермерство ур. 10 - Золотые руки",
|
||||||
|
"professions.farming.coopmaster": "Фермерство ур. 10 - Птицевод",
|
||||||
|
"professions.farming.shepherd": "Фермерство ур. 10 - Пастух",
|
||||||
|
"professions.fishing.fisher": "Рыбалка ур. 5 - Рыбак",
|
||||||
|
"professions.fishing.trapper": "Рыбалка ур. 5 - Краболов",
|
||||||
|
"professions.fishing.angler": "Рыбалка ур. 10 - Рыболов",
|
||||||
|
"professions.fishing.luremaster": "Рыбалка ур. 10 - Мастер по наживке",
|
||||||
|
"professions.fishing.mariner": "Рыбалка ур. 10 - Мореход",
|
||||||
|
"professions.fishing.pirate": "Рыбалка ур. 10 - Пират",
|
||||||
|
"professions.foraging.forester": "Собирательство ур. 5 - Лесник",
|
||||||
|
"professions.foraging.gatherer": "Собирательство ур. 5 - Собиратель",
|
||||||
|
"professions.foraging.botanist": "Собирательство ур. 10 - Ботаник",
|
||||||
|
"professions.foraging.lumberjack": "Собирательство ур. 10 - Дровосек",
|
||||||
|
"professions.foraging.tapper": "Собирательство ур. 10 - Вздымщик",
|
||||||
|
"professions.foraging.tracker": "Собирательство ур. 10 - Сыщик",
|
||||||
|
"professions.mining.geologist": "Горное дело ур. 5 - Геолог",
|
||||||
|
"professions.mining.miner": "Горное дело ур. 5 - Шахтер",
|
||||||
|
"professions.mining.blacksmith": "Горное дело ур. 10 - Кузнец",
|
||||||
|
"professions.mining.excavator": "Горное дело ур. 10 - Землекоп",
|
||||||
|
"professions.mining.gemologist": "Горное дело ур. 10 - Геммолог",
|
||||||
|
"professions.mining.prospector": "Горное дело ур. 10 - Старатель",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "Погода",
|
||||||
|
"weather.current-value": "Tomorrow's weather is set to {{weather}}.", // TODO
|
||||||
|
"weather.explanation": "Click a button below to set the weather for tomorrow (and only tomorrow). This tab has zero effect on weather otherwise.", // TODO
|
||||||
|
"weather.sunny": "Солнечно",
|
||||||
|
"weather.raining": "Дождь",
|
||||||
|
"weather.lightning": "Гроза",
|
||||||
|
"weather.snowing": "Снегопад",
|
||||||
|
"weather.green-rain": "Green Raining", // TODO
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "Отношения",
|
||||||
|
"relationships.give-gifts-anytime": "Подарки можно преподносить без ограничений",
|
||||||
|
"relationships.no-decay": "Уровень дружбы не снижается",
|
||||||
|
"relationships.friends": "Друзья",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "These warps were edited by your mods. Please report warp issues to the mods which added them if applicable.", // TODO
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "Главные локации",
|
||||||
|
"warp.farm": "Ферма",
|
||||||
|
"warp.carpenter": "Столярная мастерская",
|
||||||
|
"warp.desert": "Пустыня",
|
||||||
|
"warp.mines": "Шахта",
|
||||||
|
"warp.pierre-shop": "Магазин Пьера",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "Город",
|
||||||
|
"warp.blacksmith": "Кузнец",
|
||||||
|
"warp.community-center": "Клуб",
|
||||||
|
"warp.jojamart": "ДжоджаМарт",
|
||||||
|
"warp.movie-theater": "Кинотеатр",
|
||||||
|
"warp.museum": "Музей",
|
||||||
|
"warp.saloon": "Салун \"Звёздная капля\"",
|
||||||
|
"warp.sewer": "Канализация",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "Лес",
|
||||||
|
"warp.hats": "Разрушенный дом",
|
||||||
|
"warp.mastery-cave": "Mastery Cave", // TODO
|
||||||
|
"warp.ranch": "Ранчо Марни",
|
||||||
|
"warp.secret-woods": "Тайный лес",
|
||||||
|
"warp.wizard-tower": "Башня волшебника",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "Горы",
|
||||||
|
"warp.adventurers-guild": "Гильдия искателей приключений",
|
||||||
|
"warp.bathhouse": "Баня",
|
||||||
|
"warp.mutant-bug-lair": "Логово жуков-мутантов",
|
||||||
|
"warp.quarry": "Карьер",
|
||||||
|
"warp.witch-swamp": "Болото ведьмы",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "Пляж",
|
||||||
|
"warp.tide-pools": "Приливные бассейны",
|
||||||
|
"warp.willy-shop": "Странствующий торговец",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "Имбирный остров",
|
||||||
|
"warp.forge": "Кузница",
|
||||||
|
"warp.island-farm": "Ферма на острове",
|
||||||
|
"warp.dwarf-shop": "Магазин в вулкане",
|
||||||
|
"warp.field-office": "Полевой офис",
|
||||||
|
"warp.leo-house": "Хижина Лео",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "Пустыня",
|
||||||
|
"warp.casino": "Казино",
|
||||||
|
"warp.sandy-shop": "Оазис",
|
||||||
|
"warp.skull-cavern": "Пещера Черепа",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "Время",
|
||||||
|
"time.freeze-inside": "Остановить время в помещениях",
|
||||||
|
"time.freeze-caves": "Остановить время в пещерах",
|
||||||
|
"time.freeze-everywhere": "Остановить время в любых местах",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds", // TODO
|
||||||
|
"time.time": "Текущее время",
|
||||||
|
"time.time-frozen-message": "Время остановлено",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "Дата",
|
||||||
|
"date.warning": "Некоторые изменения не сработают пока не пройдет ночь.",
|
||||||
|
"date.year": "Год",
|
||||||
|
"date.season": "Время года",
|
||||||
|
"date.day": "День",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "Используйте данный раздел на свой страх и риск!\nМогут возникнуть проблемы по типу пропущенных писем, событий и заданий.",
|
||||||
|
"flags.quests": "Завершить задание",
|
||||||
|
"flags.wallet": "Бумажник",
|
||||||
|
"flags.unlocked": "Открыть помещение",
|
||||||
|
"flags.unlocked.guild": "Гильдия искателей приключений",
|
||||||
|
"flags.unlocked.room": "Комната: {{name}}",
|
||||||
|
"flags.unlocked-content": "Разблокировать контент",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "Перекраска и шитьё",
|
||||||
|
"flags.unlocked-content.junimo-text": "Изучен язык Джунимо",
|
||||||
|
"flags.unlocked-content.perfection": "Perfection achieved", // TODO
|
||||||
|
"flags.community-center": "Клуб",
|
||||||
|
"flags.community-center.door-unlocked": "Открыть дверь",
|
||||||
|
"flags.jojamart.membership": "Членство в корпорации \"ДжоджаМарт\"",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "Управление",
|
||||||
|
"controls.android-config-note": "Вы можете изменить настройки экранных кнопок в конфигурационных файлах для использования CJB Cheats Menu и различных модов виртуальной клавиатуры.",
|
||||||
|
"controls.open-menu": "Открыть меню",
|
||||||
|
"controls.freeze-time": "Остановить время",
|
||||||
|
"controls.grow-tree": "Вырастить деревья",
|
||||||
|
"controls.grow-crops": "Вырастить посевные культуры",
|
||||||
|
"controls.grow-radius": "Радиус произрастания флоры от игрока",
|
||||||
|
"controls.reset-controls": "Сбросить настройки управления данной модификации",
|
||||||
|
"controls.press-new-key": "Нажмите новую клавишу...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.open-menu.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
"config.freeze-time.desc": "The keybind which freezes the game clock.",
|
||||||
|
"config.grow-tree.desc": "The keybind held to grow trees around the player.",
|
||||||
|
"config.grow-crops.desc": "The keybind held to grow crops around the player.",
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
"controls.reload-config": "Reload settings from file",
|
||||||
|
"controls.reload-config.desc": "The keybind which reloads the mod settings from the mod's config.json file. If the menu is currently open, changes may only take effect when it's reopened.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Other options",
|
||||||
|
"config.default-tab.name": "Default tab",
|
||||||
|
"config.default-tab.desc": "The tab shown by default when you open the menu.",
|
||||||
|
"config.other-options": "To configure cheats, press the 'open menu' key shown above in-game. Make sure you press it after loading the save, when no other menu or dialogue is open."
|
||||||
|
}
|
278
CJBCheatsMenu/i18n/th.json
Normal file
278
CJBCheatsMenu/i18n/th.json
Normal file
|
@ -0,0 +1,278 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "เมนูโกงเกมโดย CJB",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "ผู้เล่น & เครื่องมือ",
|
||||||
|
"tabs.farm-and-fishing": "การทำฟาร์ม & การตกปลา",
|
||||||
|
"tabs.skills": "ทักษะ",
|
||||||
|
"tabs.weather": "สภาพอากาศ",
|
||||||
|
"tabs.relationships": "ความสัมพันธ์",
|
||||||
|
"tabs.warp": "ตำแหน่งวาร์ป",
|
||||||
|
"tabs.time": "เวลา",
|
||||||
|
"tabs.advanced": "ตั้งค่าขั้นสูง",
|
||||||
|
"tabs.controls": "ตัวควบคุม",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "ตัวละครผู้เล่น",
|
||||||
|
"player.infinite-stamina": "ค่าพลังกายไม่จำกัด",
|
||||||
|
"player.infinite-health": "ค่าพลังชีวิตไม่จำกัด",
|
||||||
|
"player.instant-cooldowns": "ไม่มีคูลดาวน์การใช้อาวุธ",
|
||||||
|
"player.inventory-size": "เพิ่มขนาดกระเป๋า",
|
||||||
|
"player.movement-speed": "ความเร็วในการเคลื่อนที่",
|
||||||
|
"player.movement-speed.default": "ปานกลาง",
|
||||||
|
"player.one-hit-kill": "ตายในการตีทีเดียว",
|
||||||
|
"player.max-daily-luck": "โชคประจำวันสูงสุด",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "เครื่องมือ",
|
||||||
|
"tools.infinite-water": "บัวรดน้ำ มีน้ำเต็มตลอด",
|
||||||
|
"tools.one-hit-break": "ทำลายในการตีทีเดียว",
|
||||||
|
"tools.harvest-with-scythe": "เก็บเกี่ยวด้วยเคียว",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
// TODO
|
||||||
|
"tool-enchantments.title": "Tool Enchantments",
|
||||||
|
"tool-enchantments.select-tool": "Select a tool on your toolbar to edit enchantments.",
|
||||||
|
"tool-enchantments.none-for-tool": "No enchantments available for selected {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "For the selected {{toolName}}.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "เงิน",
|
||||||
|
"add.casino-coins": "เหรียญคาสิโน",
|
||||||
|
"add.golden-walnuts": "วอลนัททองคำ",
|
||||||
|
"add.qi-gems": "อัญมณี Qi",
|
||||||
|
"add.amount-gold": "เพิ่ม {{amount}}g",
|
||||||
|
"add.amount-other": "เพิ่ม {{amount}}",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "การทำฟาร์ม",
|
||||||
|
"farm.auto-water": "รดน้ำพืชผักอัตโนมัติ",
|
||||||
|
"farm.durable-fences": "รั้วไม่ถูกทำลาย",
|
||||||
|
"farm.instant-build": "สร้างสิ่งปลูกสร้างทันที",
|
||||||
|
"farm.auto-feed-animals": "ให้อาหารสัตว์อัตโนมัติ",
|
||||||
|
"farm.auto-pet-animals": "ลูบสัตว์ในฟาร์มอัตโนมัติ",
|
||||||
|
"farm.auto-pet-pets": "ลูบสัตว์เลี้ยงอัตโนมัติ",
|
||||||
|
"farm.infinite-hay": "ฟางไม่จำกัด",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "การตกปลา",
|
||||||
|
"fishing.instant-catch": "ตกได้ปลาทันที",
|
||||||
|
"fishing.instant-bite": "ปลากินเหยื่อทันที",
|
||||||
|
"fishing.always-throw-max-distance": "เหวี่ยงเบ็ดไกลสุดเสมอ",
|
||||||
|
"fishing.always-treasure": "การันตีหีบสมบัติทุกครั้ง",
|
||||||
|
"fishing.durable-tackles": "เหยื่อไม่ถูกทำลาย",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "เร่งความเร็วการผลิต",
|
||||||
|
"fast-machines.fruit-trees": "ต้นผลไม้",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (พร้อมเก็บในตอนเช้า)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "ทักษะ",
|
||||||
|
"skills.increase-farming": "เพิ่มค่าทักษะ การทำฟาร์ม : {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "เพิ่มค่าทักษะ การทำเหมือง: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "เพิ่มค่าทักษะ การหาของป่า: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "เพิ่มค่าทักษะ การตกปลา: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "เพิ่มค่าทักษะ การต่อสู้: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "อาชีพ",
|
||||||
|
"professions.combat.fighter": "การต่อสู้ เลเวล 5 - นักสู้",
|
||||||
|
"professions.combat.scout": "การต่อสู้ เลเวล 5 - นักสอดแนม",
|
||||||
|
"professions.combat.acrobat": "การต่อสู้ เลเวล 10 - นักกายกรรม",
|
||||||
|
"professions.combat.brute": "การต่อสู้ เลเวล 10 - นักเลง",
|
||||||
|
"professions.combat.defender": "การต่อสู้ เลเวล 10 - ผู้พิทักษ์",
|
||||||
|
"professions.combat.desperado": "การต่อสู้ เลเวล 10 - อาชญากร",
|
||||||
|
"professions.farming.rancher": "การทำฟาร์ม เลเวล 5 - คนเลี้ยงสัตว์",
|
||||||
|
"professions.farming.tiller": "การทำฟาร์ม เลเวล 5 - ชาวไร่",
|
||||||
|
"professions.farming.agriculturist": "การทำฟาร์ม เลเวล 10 - เกษตรกร",
|
||||||
|
"professions.farming.artisan": "การทำฟาร์ม เลเวล 10 - ช่างฝีมือ",
|
||||||
|
"professions.farming.coopmaster": "การทำฟาร์ม เลเวล 10 - คนดูแลเล้า",
|
||||||
|
"professions.farming.shepherd": "การทำฟาร์ม เลเวล 10 - คนเลี้ยงแกะ",
|
||||||
|
"professions.fishing.fisher": "การตกปลา เลเวล 5 - ชาวประมง",
|
||||||
|
"professions.fishing.trapper": "การตกปลา เลเวล 5 - นักวางกับดัก",
|
||||||
|
"professions.fishing.angler": "การตกปลา เลเวล 10 - นักตกปลา",
|
||||||
|
"professions.fishing.luremaster": "การตกปลา เลเวล 10 - นักล่อมือฉมัง",
|
||||||
|
"professions.fishing.mariner": "การตกปลา เลเวล 10 - กะลาสี",
|
||||||
|
"professions.fishing.pirate": "การตกปลา เลเวล 10 - โจรสลัด",
|
||||||
|
"professions.foraging.forester": "การหาของป่า เลเวล 5 - ชาวป่า",
|
||||||
|
"professions.foraging.gatherer": "การหาของป่า เลเวล 5 - นักเก็บของป่า",
|
||||||
|
"professions.foraging.botanist": "การหาของป่า เลเวล 10 - นักพฤกษศาสตร์",
|
||||||
|
"professions.foraging.lumberjack": "การหาของป่า เลเวล 10 - นักตัดไม้",
|
||||||
|
"professions.foraging.tapper": "การหาของป่า เลเวล 10 - คนกรีดยาง",
|
||||||
|
"professions.foraging.tracker": "การหาของป่า เลเวล 10 - นักแกะรอย",
|
||||||
|
"professions.mining.geologist": "การทำเหมือง เลเวล 5 - นักธรณีวิทยา",
|
||||||
|
"professions.mining.miner": "การทำเหมือง เลเวล 5 - นักขุดแร่",
|
||||||
|
"professions.mining.blacksmith": "การทำเหมือง เลเวล 10 - ช่างตีเหล็ก",
|
||||||
|
"professions.mining.excavator": "การทำเหมือง เลเวล 10 - นักสกัดแร่",
|
||||||
|
"professions.mining.gemologist": "การทำเหมือง เลเวล 10 - นักอัญมณีศาสตร์",
|
||||||
|
"professions.mining.prospector": "การทำเหมือง เลเวล 10 - นักสำรวจแร่",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "สภาพอากาศวันพรุ่งนี้",
|
||||||
|
"weather.current-value": "Tomorrow's weather is set to {{weather}}.", // TODO
|
||||||
|
"weather.explanation": "Click a button below to set the weather for tomorrow (and only tomorrow). This tab has zero effect on weather otherwise.", // TODO
|
||||||
|
"weather.sunny": "อากาศแจ่มใส",
|
||||||
|
"weather.raining": "ฝนตก",
|
||||||
|
"weather.lightning": "มีฟ้าผ่า",
|
||||||
|
"weather.snowing": "หิมะตก",
|
||||||
|
"weather.green-rain": "Green Raining", // TODO
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "ความสัมพันธ์",
|
||||||
|
"relationships.give-gifts-anytime": "ให้ของขวัญได้ทุกเวลา",
|
||||||
|
"relationships.no-decay": "ค่าความสัมพันธ์ไม่ลด",
|
||||||
|
"relationships.friends": "เพื่อนของฉัน",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "These warps were edited by your mods. Please report warp issues to the mods which added them if applicable.", // TODO
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "สถานที่หลัก",
|
||||||
|
"warp.farm": "ฟาร์ม",
|
||||||
|
"warp.carpenter": "ร้านช่างไม้",
|
||||||
|
"warp.desert": "ทะเลทราย",
|
||||||
|
"warp.mines": "เหมือง",
|
||||||
|
"warp.pierre-shop": "ร้านปิแอร์",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "เมือง",
|
||||||
|
"warp.blacksmith": "ร้านตีเหล็ก",
|
||||||
|
"warp.community-center": "ศูนย์ชุมชน",
|
||||||
|
"warp.jojamart": "ร้านโจจ้า",
|
||||||
|
"warp.movie-theater": "โรงหนัง",
|
||||||
|
"warp.museum": "พิพิธภัณฑ์",
|
||||||
|
"warp.saloon": "ซาลูน",
|
||||||
|
"warp.sewer": "ท่อระบายน้ำ",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "ป่า",
|
||||||
|
"warp.hats": "ร้านหนูหมวก",
|
||||||
|
"warp.mastery-cave": "Mastery Cave", // TODO
|
||||||
|
"warp.ranch": "ฟาร์มของมานี",
|
||||||
|
"warp.secret-woods": "ป่าลึกลับ",
|
||||||
|
"warp.wizard-tower": "หอคอยพ่อมด",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "ภูเขา",
|
||||||
|
"warp.adventurers-guild": "กิลด์นักผจญภัย",
|
||||||
|
"warp.bathhouse": "โรงอาบน้ำ",
|
||||||
|
"warp.mutant-bug-lair": "รังแมลงกลายพันธุ์",
|
||||||
|
"warp.quarry": "เหมืองหิน",
|
||||||
|
"warp.witch-swamp": "บึงแม่มด",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "ชายหาด",
|
||||||
|
"warp.tide-pools": "ชายหาด (ฝั่งขวา)",
|
||||||
|
"warp.willy-shop": "ร้านของวิลลี่",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "เกาะขิง",
|
||||||
|
"warp.forge": "เตาหลอม",
|
||||||
|
"warp.island-farm": "ฟาร์มบนเกาะ",
|
||||||
|
"warp.dwarf-shop": "ร้านคนแคระ (ภูเขาไฟ)",
|
||||||
|
"warp.field-office": "ค่ายภาคสนาม",
|
||||||
|
"warp.leo-house": "บ้านของลีโอ",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "ทะเลทราย",
|
||||||
|
"warp.casino": "คาสิโน",
|
||||||
|
"warp.sandy-shop": "ร้านของแซนดี้",
|
||||||
|
"warp.skull-cavern": "ถ้ำหัวกะโหลก",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "เวลา",
|
||||||
|
"time.freeze-inside": "หยุดเวลาเมื่ออยู่ในอาคาร",
|
||||||
|
"time.freeze-caves": "หยุดเวลาเมื่ออยู่ในถ้ำ",
|
||||||
|
"time.freeze-everywhere": "หยุดเวลาใน ทุกๆ ที่",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds", // TODO
|
||||||
|
"time.time": "เวลา",
|
||||||
|
"time.time-frozen-message": "หยุดเวลา",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "วันที่",
|
||||||
|
"date.warning": "บางสิ่งจะไม่อัปเดตจนกว่าจะผ่านไปหนึ่งคืน",
|
||||||
|
"date.year": "ปีที่",
|
||||||
|
"date.season": "ฤดูกาล",
|
||||||
|
"date.day": "วันที่",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "โปรดใช้เมนูนี้ ด้วยความระมัดระวัง!\nนี่อาจทำให้จดหมาย, เหตุการณ์พิเศษ, เควส ถูกข้ามได้",
|
||||||
|
"flags.quests": "ทำเควสให้สำเร็จ",
|
||||||
|
"flags.wallet": "ไอเทมติดตัวในกระเป๋า",
|
||||||
|
"flags.unlocked": "ปลดล็อกเนื้อหา",
|
||||||
|
"flags.unlocked.guild": "กิลด์นักผจญภัย",
|
||||||
|
"flags.unlocked.room": "ห้อง: {{name}}",
|
||||||
|
"flags.unlocked-content": "ปลดล็อกเนื้อหา",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "การย้อมสี & การตัดเย็บ",
|
||||||
|
"flags.unlocked-content.junimo-text": "สามารถอ่านข้อความจูนิโม่ได้",
|
||||||
|
"flags.unlocked-content.perfection": "Perfection achieved", // TODO
|
||||||
|
"flags.community-center": "ศูนย์ชุมชน",
|
||||||
|
"flags.community-center.door-unlocked": "ปลดล็อกประตู",
|
||||||
|
"flags.jojamart.membership": "เป็นสมาชิกโจจ้า",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "เมนูควบคุม",
|
||||||
|
"controls.android-config-note": "คุณสามารถเปลี่ยนปุ่มกดที่หน้าจอ ได้ที่ไฟล์ config ของม็อด CJB Cheats Menu และม็อด Virtual Keyboard",
|
||||||
|
"controls.open-menu": "ปุ่มเปิดเมนู",
|
||||||
|
"controls.freeze-time": "ปุ่มหยุดเวลา",
|
||||||
|
"controls.grow-tree": "ปุ่มเร่งโต - ต้นไม้",
|
||||||
|
"controls.grow-crops": "ปุ่มเร่งโต - พืชผัก",
|
||||||
|
"controls.grow-radius": "ระยะทางระหว่างผู้เล่นกับการเร่งโตของวัตถุ",
|
||||||
|
"controls.reset-controls": "รีเซ็ต",
|
||||||
|
"controls.press-new-key": "กดเลือกปุ่มใหม่...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.open-menu.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
"config.freeze-time.desc": "The keybind which freezes the game clock.",
|
||||||
|
"config.grow-tree.desc": "The keybind held to grow trees around the player.",
|
||||||
|
"config.grow-crops.desc": "The keybind held to grow crops around the player.",
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
"controls.reload-config": "Reload settings from file",
|
||||||
|
"controls.reload-config.desc": "The keybind which reloads the mod settings from the mod's config.json file. If the menu is currently open, changes may only take effect when it's reopened.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Other options",
|
||||||
|
"config.default-tab.name": "Default tab",
|
||||||
|
"config.default-tab.desc": "The tab shown by default when you open the menu.",
|
||||||
|
"config.other-options": "To configure cheats, press the 'open menu' key shown above in-game. Make sure you press it after loading the save, when no other menu or dialogue is open."
|
||||||
|
}
|
278
CJBCheatsMenu/i18n/tr.json
Normal file
278
CJBCheatsMenu/i18n/tr.json
Normal file
|
@ -0,0 +1,278 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB Hile Menüsü",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "Oyuncu ve Aletler",
|
||||||
|
"tabs.farm-and-fishing": "Çiftlik ve Balıkçılık",
|
||||||
|
"tabs.skills": "Beceriler",
|
||||||
|
"tabs.weather": "Hava Durumu",
|
||||||
|
"tabs.relationships": "İlişkiler",
|
||||||
|
"tabs.warp": "Işınlanma",
|
||||||
|
"tabs.time": "Zaman",
|
||||||
|
"tabs.advanced": "Gelişmiş",
|
||||||
|
"tabs.controls": "Kontroller",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "Oyuncu",
|
||||||
|
"player.infinite-stamina": "Sınırsız Güç",
|
||||||
|
"player.infinite-health": "Sınırsız Can",
|
||||||
|
"player.instant-cooldowns": "Anında Silah Dolumu",
|
||||||
|
"player.inventory-size": "Envanter Boyutu",
|
||||||
|
"player.movement-speed": "Yürüme Hızı",
|
||||||
|
"player.movement-speed.default": "normal",
|
||||||
|
"player.one-hit-kill": "Tek Vuruşta Öldürme",
|
||||||
|
"player.max-daily-luck": "Maksimum Günlük Şans",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "Aletler",
|
||||||
|
"tools.infinite-water": "Su Kabında Sınırsız Su",
|
||||||
|
"tools.one-hit-break": "Tek Vuruşta Kırma",
|
||||||
|
"tools.harvest-with-scythe": "Tırpanla Hasat Etme",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
// TODO
|
||||||
|
"tool-enchantments.title": "Tool Enchantments",
|
||||||
|
"tool-enchantments.select-tool": "Select a tool on your toolbar to edit enchantments.",
|
||||||
|
"tool-enchantments.none-for-tool": "No enchantments available for selected {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "For the selected {{toolName}}.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "Para",
|
||||||
|
"add.casino-coins": "Qi Sikkesi",
|
||||||
|
"add.golden-walnuts": "Altın Ceviz",
|
||||||
|
"add.qi-gems": "Qi Taşı",
|
||||||
|
"add.amount-gold": "Ekle {{amount}}g",
|
||||||
|
"add.amount-other": "Ekle {{amount}}",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "Çiftlik",
|
||||||
|
"farm.auto-water": "Ekinleri Otomatik Sula",
|
||||||
|
"farm.durable-fences": "Dayanıklı Çitler",
|
||||||
|
"farm.instant-build": "Anında İnşaat",
|
||||||
|
"farm.auto-feed-animals": "Her Zaman Otomatik Yemle",
|
||||||
|
"farm.auto-pet-animals": "Hayvanları Otomatik Sev",
|
||||||
|
"farm.auto-pet-pets": "Evcil Hayvanları Otomatik Sev",
|
||||||
|
"farm.infinite-hay": "Sınırsız Saman",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "Balıkçılık",
|
||||||
|
"fishing.instant-catch": "Anında Yakalama",
|
||||||
|
"fishing.instant-bite": "Anında Isırma ",
|
||||||
|
"fishing.always-throw-max-distance": "Her Zaman En Uzağa Fırlat",
|
||||||
|
"fishing.always-treasure": "Her Seferinde Hazine Sandığı",
|
||||||
|
"fishing.durable-tackles": "Dayanıklı Balıkçı Aletleri",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "Hızlı Makine İşlemleri",
|
||||||
|
"fast-machines.fruit-trees": "Meyve Ağacı",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (Sabaha Hazır)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "Beceriler",
|
||||||
|
"skills.increase-farming": "Çiftçilik Seviyesini Yükselt: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "Madencilik Seviyesini Yükselt: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "Toplayıcılık Seviyesini Yükselt: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "Balıkçılık Seviyesini Yükselt: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "Savaşma Seviyesini Yükselt: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "Uzmanlık Alanları",
|
||||||
|
"professions.combat.fighter": "Savaşma svy 5 - Savaşçı",
|
||||||
|
"professions.combat.scout": "Savaşma svy 5 - Öncü",
|
||||||
|
"professions.combat.acrobat": "Savaşma svy 10 - Cambaz",
|
||||||
|
"professions.combat.brute": "Savaşma svy 10 - Saldırgan",
|
||||||
|
"professions.combat.defender": "Savaşma svy 10 - Savunmacı",
|
||||||
|
"professions.combat.desperado": "Savaşma svy 10 - Haydut",
|
||||||
|
"professions.farming.rancher": "Çiftçilik svy 5 - Çiftlik Sahibi",
|
||||||
|
"professions.farming.tiller": "Çiftçilik svy 5 - Filiz Kökleyicisi",
|
||||||
|
"professions.farming.agriculturist": "Çiftçilik svy 10 - Ziraatçi",
|
||||||
|
"professions.farming.artisan": "Çiftçilik svy 10 - Zanaatkar",
|
||||||
|
"professions.farming.coopmaster": "Çiftçilik svy 10 - Kümes Sahibi",
|
||||||
|
"professions.farming.shepherd": "Çiftçilik svy 10 - Çoban",
|
||||||
|
"professions.fishing.fisher": "Balıkçılık svy 5 - Balıkçı",
|
||||||
|
"professions.fishing.trapper": "Balıkçılık svy 5 - Tuzakçı",
|
||||||
|
"professions.fishing.angler": "Balıkçılık svy 10 - Oltacı",
|
||||||
|
"professions.fishing.luremaster": "Balıkçılık svy 10 - Yemci",
|
||||||
|
"professions.fishing.mariner": "Balıkçılık svy 10 - Denizci",
|
||||||
|
"professions.fishing.pirate": "Balıkçılık svy 10 - Korsan",
|
||||||
|
"professions.foraging.forester": "Toplayıcılık svy 5 - Korucu",
|
||||||
|
"professions.foraging.gatherer": "Toplayıcılık svy 5 - Toplayıcı",
|
||||||
|
"professions.foraging.botanist": "Toplayıcılık svy 10 - Bitkibilimci",
|
||||||
|
"professions.foraging.lumberjack": "Toplayıcılık svy 10 - Oduncu",
|
||||||
|
"professions.foraging.tapper": "Toplayıcılık svy 10 - Pekmez Uzmanı",
|
||||||
|
"professions.foraging.tracker": "Toplayıcılık svy 10 - İzci",
|
||||||
|
"professions.mining.geologist": "Madencilik svy 5 - Yer Bilimci",
|
||||||
|
"professions.mining.miner": "Madencilik svy 5 - Madenci",
|
||||||
|
"professions.mining.blacksmith": "Madencilik svy 10 - Demirci",
|
||||||
|
"professions.mining.excavator": "Madencilik svy 10 - Kazıcı",
|
||||||
|
"professions.mining.gemologist": "Madencilik svy 10 - Değerli Taş Uzmanı",
|
||||||
|
"professions.mining.prospector": "Madencilik svy 10 - Maden Uzmanı",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "Yarının Hava Durumu",
|
||||||
|
"weather.current-value": "Tomorrow's weather is set to {{weather}}.", // TODO
|
||||||
|
"weather.explanation": "Click a button below to set the weather for tomorrow (and only tomorrow). This tab has zero effect on weather otherwise.", // TODO
|
||||||
|
"weather.sunny": "Güneşli",
|
||||||
|
"weather.raining": "Yağmurlu",
|
||||||
|
"weather.lightning": "Fırtınalı",
|
||||||
|
"weather.snowing": "Karlı",
|
||||||
|
"weather.green-rain": "Green Raining", // TODO
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "İlişkiler",
|
||||||
|
"relationships.give-gifts-anytime": "Hediye Verme Sınırını Kaldır",
|
||||||
|
"relationships.no-decay": "Arkadaşlık Düşmesini Kapat",
|
||||||
|
"relationships.friends": "Arkadaşlar",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "These warps were edited by your mods. Please report warp issues to the mods which added them if applicable.", // TODO
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "Ana Bölgeler",
|
||||||
|
"warp.farm": "Çiftlik",
|
||||||
|
"warp.carpenter": "Marangoz",
|
||||||
|
"warp.desert": "Çöl",
|
||||||
|
"warp.mines": "Madenler",
|
||||||
|
"warp.pierre-shop": "Pierre'nin Dükkanı",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "Kasaba",
|
||||||
|
"warp.blacksmith": "Demirci",
|
||||||
|
"warp.community-center": "Halk Evi",
|
||||||
|
"warp.jojamart": "JojaMart",
|
||||||
|
"warp.movie-theater": "Sinema",
|
||||||
|
"warp.museum": "Müze",
|
||||||
|
"warp.saloon": "Salon",
|
||||||
|
"warp.sewer": "Lağım",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "Orman",
|
||||||
|
"warp.hats": "Şapka",
|
||||||
|
"warp.mastery-cave": "Ustalık Mağarası",
|
||||||
|
"warp.ranch": "Marnie'nin Çiftliği",
|
||||||
|
"warp.secret-woods": "Gizli Koru",
|
||||||
|
"warp.wizard-tower": "Büyücü'nün Kulesi",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "Dağ",
|
||||||
|
"warp.adventurers-guild": "Maceracılar Loncası",
|
||||||
|
"warp.bathhouse": "Hamam",
|
||||||
|
"warp.mutant-bug-lair": "Mutant Böcek Bölgesi",
|
||||||
|
"warp.quarry": "Taş Ocağı",
|
||||||
|
"warp.witch-swamp": "Cadı Bataklığı",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "Sahil",
|
||||||
|
"warp.tide-pools": "Gelgit Havuzları",
|
||||||
|
"warp.willy-shop": "Willy'nin Dükkanı",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "Zencefil Adası",
|
||||||
|
"warp.forge": "Demir Ocağı",
|
||||||
|
"warp.island-farm": "Ada Çiftliği",
|
||||||
|
"warp.dwarf-shop": "Volkan Cüce Dükkanı",
|
||||||
|
"warp.field-office": "Saha Ofisi",
|
||||||
|
"warp.leo-house": "Leo'nun Evi",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "Çöl",
|
||||||
|
"warp.casino": "Kumarhane",
|
||||||
|
"warp.sandy-shop": "Sandy'nin Dükkanı",
|
||||||
|
"warp.skull-cavern": "Kafatası Mağarası",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "Zaman",
|
||||||
|
"time.freeze-inside": "İçerideyken Zamanı Dondur",
|
||||||
|
"time.freeze-caves": "Mağaradayken Zamanı Dondur",
|
||||||
|
"time.freeze-everywhere": "Zamanı Her Yerde Dondur",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds", // TODO
|
||||||
|
"time.time": "Saat",
|
||||||
|
"time.time-frozen-message": "Zaman Dondu",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "Tarih",
|
||||||
|
"date.warning": "Bazı şeyler bir gece geçmeden güncellenmez.",
|
||||||
|
"date.year": "Yıl",
|
||||||
|
"date.season": "Sezon",
|
||||||
|
"date.day": "Gün",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "Bu bölümün kullanım sorumluluğu size aittir!\nBu ayarlar postaların, olayların ya da görevlerin atlanması gibi sorunlara yol açabilir.",
|
||||||
|
"flags.quests": "Görevleri Tamamla",
|
||||||
|
"flags.wallet": "Cüzdandaki Nesneler",
|
||||||
|
"flags.unlocked": "Açılmış Yerler",
|
||||||
|
"flags.unlocked.guild": "Maceracılar Loncası",
|
||||||
|
"flags.unlocked.room": "Odası: {{name}}",
|
||||||
|
"flags.unlocked-content": "Açılmış İçerik",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "Boyama ve Dikiş",
|
||||||
|
"flags.unlocked-content.junimo-text": "Junimo yazılarını okuyabilme",
|
||||||
|
"flags.unlocked-content.perfection": "Perfection achieved", // TODO
|
||||||
|
"flags.community-center": "Halkevi",
|
||||||
|
"flags.community-center.door-unlocked": "Kapı Açıldı",
|
||||||
|
"flags.jojamart.membership": "JojaMart Üyeliği",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "Kontroller",
|
||||||
|
"controls.android-config-note": "CJB Hile Menüsü ve Sanal Klavye modları için yapılandırma dosyalarındaki ekran düğmelerini değiştirebilirsiniz.",
|
||||||
|
"controls.open-menu": "Menüyü Aç",
|
||||||
|
"controls.freeze-time": "Zamanı Dondur",
|
||||||
|
"controls.grow-tree": "Ağacı Büyüt",
|
||||||
|
"controls.grow-crops": "Ekini Büyüt",
|
||||||
|
"controls.grow-radius": "Ekin Büyüme Mesafesi",
|
||||||
|
"controls.reset-controls": "Sıfırla",
|
||||||
|
"controls.press-new-key": "Yeni bir tuşa bas...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.open-menu.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
"config.freeze-time.desc": "The keybind which freezes the game clock.",
|
||||||
|
"config.grow-tree.desc": "The keybind held to grow trees around the player.",
|
||||||
|
"config.grow-crops.desc": "The keybind held to grow crops around the player.",
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
"controls.reload-config": "Reload settings from file",
|
||||||
|
"controls.reload-config.desc": "The keybind which reloads the mod settings from the mod's config.json file. If the menu is currently open, changes may only take effect when it's reopened.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Other options",
|
||||||
|
"config.default-tab.name": "Default tab",
|
||||||
|
"config.default-tab.desc": "The tab shown by default when you open the menu.",
|
||||||
|
"config.other-options": "To configure cheats, press the 'open menu' key shown above in-game. Make sure you press it after loading the save, when no other menu or dialogue is open."
|
||||||
|
}
|
278
CJBCheatsMenu/i18n/uk.json
Normal file
278
CJBCheatsMenu/i18n/uk.json
Normal file
|
@ -0,0 +1,278 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB Cheats Menu",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "Гравець та Інструменти",
|
||||||
|
"tabs.farm-and-fishing": "Ферма та Рибальство",
|
||||||
|
"tabs.skills": "Навички",
|
||||||
|
"tabs.weather": "Погода",
|
||||||
|
"tabs.relationships": "Стосунки",
|
||||||
|
"tabs.warp": "Телепортація",
|
||||||
|
"tabs.time": "Час",
|
||||||
|
"tabs.advanced": "Інше",
|
||||||
|
"tabs.controls": "Елементи керування",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "Гравець",
|
||||||
|
"player.infinite-stamina": "Нескінченна енергія",
|
||||||
|
"player.infinite-health": "Нескінченне здоров'я",
|
||||||
|
"player.instant-cooldowns": "Без затримки при використанні зброї",
|
||||||
|
"player.inventory-size": "Розмір інвентарю",
|
||||||
|
"player.movement-speed": "Швидкість ходи",
|
||||||
|
"player.movement-speed.default": "нормальна",
|
||||||
|
"player.one-hit-kill": "Вбивство з одного удару",
|
||||||
|
"player.max-daily-luck": "Максимальна удача",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "Інструменти",
|
||||||
|
"tools.infinite-water": "Нескінченна вода у лійці",
|
||||||
|
"tools.one-hit-break": "Знищення з одного удару",
|
||||||
|
"tools.harvest-with-scythe": "Збір культур косою",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
// TODO
|
||||||
|
"tool-enchantments.title": "Tool Enchantments",
|
||||||
|
"tool-enchantments.select-tool": "Select a tool on your toolbar to edit enchantments.",
|
||||||
|
"tool-enchantments.none-for-tool": "No enchantments available for selected {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "For the selected {{toolName}}.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "Гроші",
|
||||||
|
"add.casino-coins": "Монети Кі",
|
||||||
|
"add.golden-walnuts": "Золоті горіхи",
|
||||||
|
"add.qi-gems": "Кристали Кі",
|
||||||
|
"add.amount-gold": "Додати {{amount}} з",
|
||||||
|
"add.amount-other": "Додати {{amount}}",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "Ферма",
|
||||||
|
"farm.auto-water": "Автоматичний полив культур",
|
||||||
|
"farm.durable-fences": "Міцні огорожі",
|
||||||
|
"farm.instant-build": "Миттєва побудова",
|
||||||
|
"farm.auto-feed-animals": "Авто-годування тварин",
|
||||||
|
"farm.auto-pet-animals": "Авто-пестення тварин",
|
||||||
|
"farm.auto-pet-pets": "Авто-пестення улюбленців",
|
||||||
|
"farm.infinite-hay": "Нескінченне сіно",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "Рибальство",
|
||||||
|
"fishing.instant-catch": "Миттєве виловлення риби",
|
||||||
|
"fishing.instant-bite": "Миттєве клювання риби",
|
||||||
|
"fishing.always-throw-max-distance": "Завжди закидувати на макс. дистанцію",
|
||||||
|
"fishing.always-treasure": "Завжди трапляються скарби",
|
||||||
|
"fishing.durable-tackles": "Міцне додаткове спорядження",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "Пришвидшення роботи машин",
|
||||||
|
"fast-machines.fruit-trees": "Фруктові дерева",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}}(буде готово вранці)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "Навички",
|
||||||
|
"skills.increase-farming": "Підвищити рів. Фермерства: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "Підвищити рів. Шахтарства: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "Підвищити рів. Збирацтва:{{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "Підвищити рів. Рибальства: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "Підвищити рів. Бойових Навичок: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "Професії",
|
||||||
|
"professions.combat.fighter": "Бойові навички рів. 5 - Боєць",
|
||||||
|
"professions.combat.scout": "Бойові навички рів. 5 - Бойскаут",
|
||||||
|
"professions.combat.acrobat": "Бойові навички рів. 10 - Акробат",
|
||||||
|
"professions.combat.brute": "Бойові навички рів. 10 - Громило",
|
||||||
|
"professions.combat.defender": "Бойові навички рів. 10 - Захисник",
|
||||||
|
"professions.combat.desperado": "Бойові навички рів. 10 - Паливода",
|
||||||
|
"professions.farming.rancher": "Фермерство рів. 5 - Тваринник",
|
||||||
|
"professions.farming.tiller": "Фермерство рів. 5 - Культиватор",
|
||||||
|
"professions.farming.agriculturist": "Фермерство рів. 10 - Агроном",
|
||||||
|
"professions.farming.artisan": "Фермерство рів. 10 - Золоті руки",
|
||||||
|
"professions.farming.coopmaster": "Фермерство рів. 10 - Птахівник",
|
||||||
|
"professions.farming.shepherd": "Фермерство рів. 10 - Пастух",
|
||||||
|
"professions.fishing.fisher": "Рибальство рів. 5 - Рибак",
|
||||||
|
"professions.fishing.trapper": "Рибальство рів. 5 - Краболов",
|
||||||
|
"professions.fishing.angler": "Рибальство рів. 10 - Рибалка",
|
||||||
|
"professions.fishing.luremaster": "Рибальство рів. 10 - Майстер з наживки",
|
||||||
|
"professions.fishing.mariner": "Рибальство рів. 10 - Мореплавець",
|
||||||
|
"professions.fishing.pirate": "Рибальство рів. 10 - Пірат",
|
||||||
|
"professions.foraging.forester": "Збирацтво рів. 5 - Лісівник",
|
||||||
|
"professions.foraging.gatherer": "Збирацтво рів. 5 - Збирач",
|
||||||
|
"professions.foraging.botanist": "Збирацтво рів. 10 - Ботанік",
|
||||||
|
"professions.foraging.lumberjack": "Збирацтво рів. 10 - Лісоруб",
|
||||||
|
"professions.foraging.tapper": "Збирацтво рів. 10 - Сокознавець",
|
||||||
|
"professions.foraging.tracker": "Збирацтво рів. 10 - Мисливець",
|
||||||
|
"professions.mining.geologist": "Шахтарство рів. 5 - Геолог",
|
||||||
|
"professions.mining.miner": "Шахтарство рів. 5 - Шахтар",
|
||||||
|
"professions.mining.blacksmith": "Шахтарство рів. 10 - Коваль",
|
||||||
|
"professions.mining.excavator": "Шахтарство рів. 10 - Копальник",
|
||||||
|
"professions.mining.gemologist": "Шахтарство рів. 10 - Гемолог",
|
||||||
|
"professions.mining.prospector": "Шахтарство рів. 10 - Розвідник",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "Погода завтра",
|
||||||
|
"weather.current-value": "Tomorrow's weather is set to {{weather}}.", // TODO
|
||||||
|
"weather.explanation": "Click a button below to set the weather for tomorrow (and only tomorrow). This tab has zero effect on weather otherwise.", // TODO
|
||||||
|
"weather.sunny": "Сонячно",
|
||||||
|
"weather.raining": "Дощ",
|
||||||
|
"weather.lightning": "Гроза",
|
||||||
|
"weather.snowing": "Снігопад",
|
||||||
|
"weather.green-rain": "Green Raining", // TODO
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "Стосунки",
|
||||||
|
"relationships.give-gifts-anytime": "Подарунки можна дарувати досхочу",
|
||||||
|
"relationships.no-decay": "Рівень дружби не знижується",
|
||||||
|
"relationships.friends": "Друзі",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "These warps were edited by your mods. Please report warp issues to the mods which added them if applicable.", // TODO
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "Головні локації",
|
||||||
|
"warp.farm": "Ферма",
|
||||||
|
"warp.carpenter": "Столярська крамниця",
|
||||||
|
"warp.desert": "Пустеля",
|
||||||
|
"warp.mines": "Шахта",
|
||||||
|
"warp.pierre-shop": "Крамниця У П'єра",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "Місто",
|
||||||
|
"warp.blacksmith": "Коваль",
|
||||||
|
"warp.community-center": "Громадський Клуб",
|
||||||
|
"warp.jojamart": "JojaМаркет",
|
||||||
|
"warp.movie-theater": "Кінотеатр",
|
||||||
|
"warp.museum": "Музей",
|
||||||
|
"warp.saloon": "Салун",
|
||||||
|
"warp.sewer": "Каналізація",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "Ліс",
|
||||||
|
"warp.hats": "Кепкі",
|
||||||
|
"warp.mastery-cave": "Mastery Cave", // TODO
|
||||||
|
"warp.ranch": "Ранчо Марні",
|
||||||
|
"warp.secret-woods": "Таємний ліс",
|
||||||
|
"warp.wizard-tower": "Вежа Чарівника",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "Гори",
|
||||||
|
"warp.adventurers-guild": "Гільдія Шукачів Пригод",
|
||||||
|
"warp.bathhouse": "Сауна",
|
||||||
|
"warp.mutant-bug-lair": "Лігво жуків-мутантів",
|
||||||
|
"warp.quarry": "Кар'єр",
|
||||||
|
"warp.witch-swamp": "Болото відьми",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "Пляж",
|
||||||
|
"warp.tide-pools": "Приливні басейни",
|
||||||
|
"warp.willy-shop": "Рибацька крамниця",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "Імбирний острів",
|
||||||
|
"warp.forge": "Кузня",
|
||||||
|
"warp.island-farm": "Острівна ферма",
|
||||||
|
"warp.dwarf-shop": "Дварфівська крамниця",
|
||||||
|
"warp.field-office": "Польовий офіс",
|
||||||
|
"warp.leo-house": "Хатинка Лео",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "Пустеля",
|
||||||
|
"warp.casino": "Казино",
|
||||||
|
"warp.sandy-shop": "Крамниця Сенді",
|
||||||
|
"warp.skull-cavern": "Печера Черепа",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "Час",
|
||||||
|
"time.freeze-inside": "Зупинити час у приміщеннях",
|
||||||
|
"time.freeze-caves": "Зупинити час у печерах",
|
||||||
|
"time.freeze-everywhere": "Зупинити час усюди",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds", // TODO
|
||||||
|
"time.time": "Поточний час",
|
||||||
|
"time.time-frozen-message": "Час зупинено",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "Дата",
|
||||||
|
"date.warning": "Деякі зміни не спрацюють, поки не пройде ніч.",
|
||||||
|
"date.year": "Рік",
|
||||||
|
"date.season": "Пора року",
|
||||||
|
"date.day": "День",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "Використовуйте цей розділ на свій ризик!\nМожуть виникнути проблеми такі як пропущені листи, події та завдання.",
|
||||||
|
"flags.quests": "Завершити завдання",
|
||||||
|
"flags.wallet": "Гаманець",
|
||||||
|
"flags.unlocked": "Розблоковані локації",
|
||||||
|
"flags.unlocked.guild": "Гільдія Шукачів Пригод",
|
||||||
|
"flags.unlocked.room": "Кімната: {{name}}",
|
||||||
|
"flags.unlocked-content": "Розблокувати контент",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "Фарбування та шиття",
|
||||||
|
"flags.unlocked-content.junimo-text": "Ви вмієте читати текcт Джунімо",
|
||||||
|
"flags.unlocked-content.perfection": "Perfection achieved", // TODO
|
||||||
|
"flags.community-center": "Громадський Клуб",
|
||||||
|
"flags.community-center.door-unlocked": "Двері відчинено",
|
||||||
|
"flags.jojamart.membership": "Членство у Корпорації JojaМаркет",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "Керування",
|
||||||
|
"controls.android-config-note": "Ви можете змінити налаштування екранних кнопок у config файлах для CJB Cheats Menu та різних модів віртуальної клавіатури.",
|
||||||
|
"controls.open-menu": "Відкрити меню",
|
||||||
|
"controls.freeze-time": "Зупинити час",
|
||||||
|
"controls.grow-tree": "Виростити дерева",
|
||||||
|
"controls.grow-crops": "Виростити культури",
|
||||||
|
"controls.grow-radius": "Радіус прор. флори від гравця",
|
||||||
|
"controls.reset-controls": "Скинути налаштування",
|
||||||
|
"controls.press-new-key": "Натисніть нову клавішу...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.open-menu.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
"config.freeze-time.desc": "The keybind which freezes the game clock.",
|
||||||
|
"config.grow-tree.desc": "The keybind held to grow trees around the player.",
|
||||||
|
"config.grow-crops.desc": "The keybind held to grow crops around the player.",
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
"controls.reload-config": "Reload settings from file",
|
||||||
|
"controls.reload-config.desc": "The keybind which reloads the mod settings from the mod's config.json file. If the menu is currently open, changes may only take effect when it's reopened.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Other options",
|
||||||
|
"config.default-tab.name": "Default tab",
|
||||||
|
"config.default-tab.desc": "The tab shown by default when you open the menu.",
|
||||||
|
"config.other-options": "To configure cheats, press the 'open menu' key shown above in-game. Make sure you press it after loading the save, when no other menu or dialogue is open."
|
||||||
|
}
|
277
CJBCheatsMenu/i18n/vi.json
Normal file
277
CJBCheatsMenu/i18n/vi.json
Normal file
|
@ -0,0 +1,277 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB Cheats Menu",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "Người chơi & công cụ",
|
||||||
|
"tabs.farm-and-fishing": "Nông trại & Câu cá",
|
||||||
|
"tabs.skills": "Kĩ năng",
|
||||||
|
"tabs.weather": "Thời tiết",
|
||||||
|
"tabs.relationships": "Mối quan hệ",
|
||||||
|
"tabs.warp": "Dịch chuyển",
|
||||||
|
"tabs.time": "Thời gian",
|
||||||
|
"tabs.advanced": "Mở rộng",
|
||||||
|
"tabs.controls": "Điều khiển",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "Người chơi",
|
||||||
|
"player.infinite-stamina": "Vô hạn năng lượng",
|
||||||
|
"player.infinite-health": "Vô hạn HP",
|
||||||
|
"player.instant-cooldowns": "Giảm thời gian hồi chiêu vũ khí",
|
||||||
|
"player.inventory-size": "Tăng diện tích túi đồ",
|
||||||
|
"player.movement-speed": "Tốc độ di chuyển",
|
||||||
|
"player.movement-speed.default": "bình thường",
|
||||||
|
"player.one-hit-kill": "1 phát chết luôn",
|
||||||
|
"player.max-daily-luck": "may mắn tối đa",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "Công cụ",
|
||||||
|
"tools.infinite-water": "Vô hạn nước tới cây",
|
||||||
|
"tools.one-hit-break": "1 đập bể đá & chặt cây",
|
||||||
|
"tools.harvest-with-scythe": "Thu hoạch bằng lưỡi hái",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
// TODO
|
||||||
|
"tool-enchantments.title": "Tool Enchantments",
|
||||||
|
"tool-enchantments.select-tool": "Select a tool on your toolbar to edit enchantments.",
|
||||||
|
"tool-enchantments.none-for-tool": "No enchantments available for selected {{toolName}}.",
|
||||||
|
"tool-enchantments.for-tool": "For the selected {{toolName}}.",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "Tiền",
|
||||||
|
"add.casino-coins": "Xu Casino",
|
||||||
|
"add.golden-walnuts": "Hạt óc chó vàng",
|
||||||
|
"add.qi-gems": "Đá quý",
|
||||||
|
"add.amount-gold": "Thêm {{amount}}g",
|
||||||
|
"add.amount-other": "Thêm {{amount}}",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "Nông trại",
|
||||||
|
"farm.auto-water": "Tự động tưới nước",
|
||||||
|
"farm.durable-fences": "Hàng rào không bị hỏng",
|
||||||
|
"farm.instant-build": "Xây nhanh",
|
||||||
|
"farm.auto-feed-animals": "Tự động cho vật nuôi ăn",
|
||||||
|
"farm.auto-pet-animals": "Tự động vuốt ve vật nuôi",
|
||||||
|
"farm.auto-pet-pets": "tự động vuốt ve thú cưng",
|
||||||
|
"farm.infinite-hay": "Vô hạn cỏ khô",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "Câu cá",
|
||||||
|
"fishing.instant-catch": "câu được luôn",
|
||||||
|
"fishing.instant-bite": "Cắn câu ngay lập tức",
|
||||||
|
"fishing.always-throw-max-distance": "Tầm quăng cần tối đa",
|
||||||
|
"fishing.always-treasure": "Luôn được rương kho báu",
|
||||||
|
"fishing.durable-tackles": "Phao câu vĩnh cửu",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "Máy hoạt động nhanh hơn",
|
||||||
|
"fast-machines.fruit-trees": "Cây ăn quả",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}} (Sẵn sàng vào buổi sáng)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "Kĩ năng",
|
||||||
|
"skills.increase-farming": "Nâng cấp. Nông trại Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "Nâng cấp. Khai khoáng Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "Nâng cấp. Hái lượm Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "Nâng cấp. Câu cá Lvl: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "Nâng cấp. Chiến đấu Lvl: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "Nghề nghiệp",
|
||||||
|
"professions.combat.fighter": "Chiến đấu lvl 5 - Đấu sĩ",
|
||||||
|
"professions.combat.scout": "Chiến đấu lvl 5 - Lính tiên phong",
|
||||||
|
"professions.combat.acrobat": "Chiến đấu lvl 10 - Nhào lộn",
|
||||||
|
"professions.combat.brute": "Chiến đấu lvl 10 - Vũ phu",
|
||||||
|
"professions.combat.defender": "Chiến đấu lvl 10 - Hộ vệ",
|
||||||
|
"professions.combat.desperado": "Chiến đấu lvl 10 - Liều mạng",
|
||||||
|
"professions.farming.rancher": "Nông trại lvl 5 - Quản trại",
|
||||||
|
"professions.farming.tiller": "Nông trại lvl 5 - Thợ cày",
|
||||||
|
"professions.farming.agriculturist": "Nông trại lvl 10 - Nhà nông học",
|
||||||
|
"professions.farming.artisan": "Nông trại lvl 10 - Nghệ nhân",
|
||||||
|
"professions.farming.coopmaster": "Nông trại lvl 10 - Chủ trang trại",
|
||||||
|
"professions.farming.shepherd": "Nông trại lvl 10 - Chăn cừu",
|
||||||
|
"professions.fishing.fisher": "Câu cá lvl 5 - Dân chài",
|
||||||
|
"professions.fishing.trapper": "Câu cá lvl 5 - Thợ bẫy",
|
||||||
|
"professions.fishing.angler": "Câu cá lvl 10 - Thợ câu",
|
||||||
|
"professions.fishing.luremaster": "Câu cá lvl 10 - Bậc thầy mồi chài",
|
||||||
|
"professions.fishing.mariner": "Câu cá lvl 10 - Thủy thủ",
|
||||||
|
"professions.fishing.pirate": "Câu cá lvl 10 - Hải tặc",
|
||||||
|
"professions.foraging.forester": "Hái lượm lvl 5 - Kiểm lâm",
|
||||||
|
"professions.foraging.gatherer": "Hái lượm lvl 5 - Dân hái lượm",
|
||||||
|
"professions.foraging.botanist": "Hái lượm lvl 10 - Dân khai thác",
|
||||||
|
"professions.foraging.lumberjack": "Hái lượm lvl 10 - Nhà thực vật học",
|
||||||
|
"professions.foraging.tapper": "Hái lượm lvl 10 - Thợ rừng",
|
||||||
|
"professions.foraging.tracker": "Hái lượm lvl 10 - Truy dấu",
|
||||||
|
"professions.mining.geologist": "Khai khoáng lvl 5 - Nhà địa chất",
|
||||||
|
"professions.mining.miner": "Khai khoáng lvl 5 - Thợ mỏ",
|
||||||
|
"professions.mining.blacksmith": "Khai khoáng lvl 10 - Thợ rèn",
|
||||||
|
"professions.mining.excavator": "Khai khoáng lvl 10 - Thợ thăm dò",
|
||||||
|
"professions.mining.gemologist": "Khai khoáng lvl 10 - Nghệ nhân đá quý",
|
||||||
|
"professions.mining.prospector": "Khai khoáng lvl 10 - Thợ đào",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "Thời tiết ngày mai",
|
||||||
|
"weather.current-value": "Tomorrow's weather is set to {{weather}}.", // TODO
|
||||||
|
"weather.explanation": "Nhấp vào nút bên dưới để đặt thời tiết cho ngày mai (và chỉ ngày mai). Tab này không có tác dụng gì đối với thời tiết.",
|
||||||
|
"weather.sunny": "Nắng",
|
||||||
|
"weather.raining": "Mưa",
|
||||||
|
"weather.lightning": "Mưa kèm sấm sét",
|
||||||
|
"weather.snowing": "Tuyết rơi",
|
||||||
|
"weather.green-rain": "Green Raining", // TODO
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "Mối quan hệ",
|
||||||
|
"relationships.give-gifts-anytime": "Tặng quà mọi lúc",
|
||||||
|
"relationships.no-decay": "Tình bạn không bị giảm",
|
||||||
|
"relationships.friends": "Bạn bè",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "These warps were edited by your mods. Please report warp issues to the mods which added them if applicable.",
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "nơi muốn dịch chuyển",
|
||||||
|
"warp.farm": "Nông trại",
|
||||||
|
"warp.carpenter": "Cửa hàng của Robin",
|
||||||
|
"warp.desert": "Sa mạc",
|
||||||
|
"warp.mines": "Hầm mỏ",
|
||||||
|
"warp.pierre-shop": "Cửa hàng của Pierre",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "Thị trấn",
|
||||||
|
"warp.blacksmith": "Thợ rèn Clint",
|
||||||
|
"warp.community-center": "Nhà văn hóa",
|
||||||
|
"warp.jojamart": "Siêu thị Joja",
|
||||||
|
"warp.movie-theater": "Rạp phim",
|
||||||
|
"warp.museum": "Bảo tàng",
|
||||||
|
"warp.saloon": "Quán rượu",
|
||||||
|
"warp.sewer": "Cống thị trấn",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "Khu rừng",
|
||||||
|
"warp.hats": "Cửa hàng bán nón",
|
||||||
|
"warp.mastery-cave": "Hang Bậc thầy",
|
||||||
|
"warp.ranch": "Cửa hàng thú nuôi của Marnie",
|
||||||
|
"warp.secret-woods": "Khu rừng bí mật",
|
||||||
|
"warp.wizard-tower": "Tháp phù thủy",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "Núi",
|
||||||
|
"warp.adventurers-guild": "Hội mạo hiểm giả",
|
||||||
|
"warp.bathhouse": "Nhà tắm",
|
||||||
|
"warp.mutant-bug-lair": "Hang ổ bọ đột biến",
|
||||||
|
"warp.quarry": "Khu mỏ",
|
||||||
|
"warp.witch-swamp": "Đầm lầy phù thủy",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "Bãi biển",
|
||||||
|
"warp.tide-pools": "khu vực bên phải bãi biển",
|
||||||
|
"warp.willy-shop": "Cửa hàng của Willy",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "Đảo gừng",
|
||||||
|
"warp.forge": "Máy rèn trên miệng núi lửa",
|
||||||
|
"warp.island-farm": "Nông trại trên đảo",
|
||||||
|
"warp.dwarf-shop": "Cửa hàng núi lửa",
|
||||||
|
"warp.field-office": "Văn phòng khảo cổ",
|
||||||
|
"warp.leo-house": "Nhà của Leo",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "Sa mạc",
|
||||||
|
"warp.casino": "Sòng bạc Casino",
|
||||||
|
"warp.sandy-shop": "Cửa hàng của Sandy",
|
||||||
|
"warp.skull-cavern": "Hang đầu lâu",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "Thời gian",
|
||||||
|
"time.freeze-inside": "Đóng băng thời gian trong nhà",
|
||||||
|
"time.freeze-caves": "Đóng băng thời gian chỉ trong hang động",
|
||||||
|
"time.freeze-everywhere": "Đóng băng thời gian mọi nơi",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds", // TODO
|
||||||
|
"time.time": "Thời gian",
|
||||||
|
"time.time-frozen-message": "Đóng băng thời gian",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "Chu kì ngày",
|
||||||
|
"date.warning": "Một số thứ sẽ không cập nhật cho đến khi một đêm trôi qua.",
|
||||||
|
"date.year": "Năm",
|
||||||
|
"date.season": "Mùa",
|
||||||
|
"date.day": "Ngày",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "Sử dụng phần này có nguy cơ gây ra rủi ro! Điều này có thể gây ra các vấn đề như bỏ lỡ thư, sự kiện hoặc nhiệm vụ.",
|
||||||
|
"flags.quests": "Hoàn thành nhiệm vụ",
|
||||||
|
"flags.wallet": "Túi vật phẩm",
|
||||||
|
"flags.unlocked": "Mở khóa khu vực",
|
||||||
|
"flags.unlocked.guild": "Hội mạo hiểm giả",
|
||||||
|
"flags.unlocked.room": "Phòng: {{name}}",
|
||||||
|
"flags.unlocked-content": "Mở khóa vật phẩm",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "Thuốc nhuộm & may đồ",
|
||||||
|
"flags.unlocked-content.junimo-text": "Có thể đọc được chữ của Junimo",
|
||||||
|
"flags.unlocked-content.perfection": "Perfection achieved", // TODO
|
||||||
|
"flags.community-center": "Nhà văn hóa",
|
||||||
|
"flags.community-center.door-unlocked": "Mở khóa cửa",
|
||||||
|
"flags.jojamart.membership": "Thành viên của siêu thị Joja",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "Điều khiển",
|
||||||
|
"controls.android-config-note": "Bạn có thể thay đổi các nút hiển thị trên màn hình trong các tệp cấu hình của mod CJB Cheats Menu và mod Virtual Keyboard.",
|
||||||
|
"controls.open-menu": "Mở menu",
|
||||||
|
"controls.freeze-time": "Đóng băng thời gian",
|
||||||
|
"controls.grow-tree": "Cây ăn quả & cây lấy gỗ trưởng thành ngay lập tức",
|
||||||
|
"controls.grow-crops": "Công nông sản trưởng thành ngay lập tức",
|
||||||
|
"controls.grow-radius": "Khoảng cách tăng trưởng cây trồng",
|
||||||
|
"controls.reset-controls": "Cài lại",
|
||||||
|
"controls.press-new-key": "Chọn phím mới...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.open-menu.desc": "Phím tắt mở menu (khi không có menu nào khác đang mở).",
|
||||||
|
"config.freeze-time.desc": "Phím tắt đóng băng đồng hồ trò chơi.",
|
||||||
|
"config.grow-tree.desc": "Phím tắt để phát triển cây xung quanh người chơi.",
|
||||||
|
"config.grow-crops.desc": "Phím tắt để phát triển cây trồng xung quanh người chơi.",
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
"controls.reload-config": "Reload settings from file",
|
||||||
|
"controls.reload-config.desc": "The keybind which reloads the mod settings from the mod's config.json file. If the menu is currently open, changes may only take effect when it's reopened.",
|
||||||
|
|
||||||
|
"config.title.other-options": "Các tùy chọn khác",
|
||||||
|
"config.default-tab.name": "Tab mặc định",
|
||||||
|
"config.default-tab.desc": "Tab được hiển thị mặc định khi bạn mở menu.",
|
||||||
|
"config.other-options": "Để cấu hình Cheats Menu, hãy nhấn phím 'mở menu' được hiển thị ở trên trong trò chơi. Hãy chắc chắn nhấn sau khi tải bản lưu, khi không có menu hoặc hộp thoại nào khác đang mở."
|
||||||
|
}
|
275
CJBCheatsMenu/i18n/zh.json
Normal file
275
CJBCheatsMenu/i18n/zh.json
Normal file
|
@ -0,0 +1,275 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Main translations
|
||||||
|
*********/
|
||||||
|
// mod name shown in the menu
|
||||||
|
"mod-name": "CJB 作弊菜单",
|
||||||
|
|
||||||
|
// tab names
|
||||||
|
"tabs.player-and-tools": "玩家 & 工具",
|
||||||
|
"tabs.farm-and-fishing": "农场 & 钓鱼",
|
||||||
|
"tabs.skills": "技能",
|
||||||
|
"tabs.weather": "天气",
|
||||||
|
"tabs.relationships": "人际关系",
|
||||||
|
"tabs.warp": "传送",
|
||||||
|
"tabs.time": "时间",
|
||||||
|
"tabs.advanced": "高级",
|
||||||
|
"tabs.controls": "控制",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Player & Tools tab
|
||||||
|
*********/
|
||||||
|
// player
|
||||||
|
"player.title": "玩家",
|
||||||
|
"player.infinite-stamina": "无限体力",
|
||||||
|
"player.infinite-health": "无限生命",
|
||||||
|
"player.instant-cooldowns": "武器无冷却时间",
|
||||||
|
"player.inventory-size": "背包栏大小",
|
||||||
|
"player.movement-speed": "移动速度增加",
|
||||||
|
"player.movement-speed.default": "默认",
|
||||||
|
"player.one-hit-kill": "一击必杀",
|
||||||
|
"player.max-daily-luck": "每日运气最大",
|
||||||
|
|
||||||
|
// tools
|
||||||
|
"tools.title": "工具",
|
||||||
|
"tools.infinite-water": "喷壶永不干涸",
|
||||||
|
"tools.one-hit-break": "一砍即倒(一击即碎)",
|
||||||
|
"tools.harvest-with-scythe": "镰刀收获",
|
||||||
|
|
||||||
|
// tool enchantments
|
||||||
|
"tool-enchantments.title": "工具附魔",
|
||||||
|
"tool-enchantments.select-tool": "选择工具栏上的工具编辑附魔",
|
||||||
|
"tool-enchantments.none-for-tool": "所选 {{toolName}} 没有可用的附魔",
|
||||||
|
"tool-enchantments.for-tool": "对于所选 {{toolName}}",
|
||||||
|
|
||||||
|
// money
|
||||||
|
"add.money": "金钱",
|
||||||
|
"add.casino-coins": "赌场代币",
|
||||||
|
"add.golden-walnuts": "金色核桃",
|
||||||
|
"add.qi-gems": "齐钻",
|
||||||
|
"add.amount-gold": "增加 {{amount}} 金",
|
||||||
|
"add.amount-other": "增加 {{amount}}个",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Farm & Fishing tab
|
||||||
|
*********/
|
||||||
|
// farm
|
||||||
|
"farm.title": "农场",
|
||||||
|
"farm.auto-water": "作物自动灌溉",
|
||||||
|
"farm.durable-fences": "围栏不损毁",
|
||||||
|
"farm.instant-build": "农场建筑立即完成",
|
||||||
|
"farm.auto-feed-animals": "自动喂食动物",
|
||||||
|
"farm.auto-pet-animals": "自动抚摸动物",
|
||||||
|
"farm.auto-pet-pets": "自动抚摸宠物",
|
||||||
|
"farm.infinite-hay": "无限干草",
|
||||||
|
|
||||||
|
// fishing
|
||||||
|
"fishing.title": "钓鱼",
|
||||||
|
"fishing.instant-catch": "立即钓起",
|
||||||
|
"fishing.instant-bite": "立即咬钩",
|
||||||
|
"fishing.always-throw-max-distance": "抛竿总是最远距离",
|
||||||
|
"fishing.always-treasure": "必定出现宝箱",
|
||||||
|
"fishing.durable-tackles": "钓具不损毁",
|
||||||
|
|
||||||
|
// fast machines
|
||||||
|
"fast-machines.title": "工匠设备快速工作",
|
||||||
|
"fast-machines.fruit-trees": "水果树",
|
||||||
|
"fast-machines.ready-in-the-morning": "{{machineName}}(第二天早上完成)",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Skills tab
|
||||||
|
*********/
|
||||||
|
// skills
|
||||||
|
"skills.title": "技能",
|
||||||
|
"skills.increase-farming": "耕种增加1级 当前等级: {{currentLevel}}",
|
||||||
|
"skills.increase-mining": "采矿增加1级 当前等级: {{currentLevel}}",
|
||||||
|
"skills.increase-foraging": "觅食增加1级 当前等级: {{currentLevel}}",
|
||||||
|
"skills.increase-fishing": "钓鱼增加1级 当前等级: {{currentLevel}}",
|
||||||
|
"skills.increase-combat": "战斗增加1级 当前等级: {{currentLevel}}",
|
||||||
|
|
||||||
|
// professions
|
||||||
|
"professions.title": "职业",
|
||||||
|
"professions.combat.fighter": "战斗 等级 5 - 战士",
|
||||||
|
"professions.combat.scout": "战斗 等级 5 - 侦查员",
|
||||||
|
"professions.combat.acrobat": "战斗 等级 10 - 特技者",
|
||||||
|
"professions.combat.brute": "战斗 等级 10 - 野蛮人",
|
||||||
|
"professions.combat.defender": "战斗 等级 10 - 防御者",
|
||||||
|
"professions.combat.desperado": "战斗 等级 10 - 亡命徒",
|
||||||
|
"professions.farming.rancher": "耕种 等级 5 - 畜牧人",
|
||||||
|
"professions.farming.tiller": "耕种 等级 5 - 农耕人",
|
||||||
|
"professions.farming.agriculturist": "耕种 等级 10 - 农业学家",
|
||||||
|
"professions.farming.artisan": "耕种 等级 10 - 工匠",
|
||||||
|
"professions.farming.coopmaster": "耕种 等级 10 - 鸡舍大师",
|
||||||
|
"professions.farming.shepherd": "耕种 等级 10 - 牧羊人",
|
||||||
|
"professions.fishing.fisher": "钓鱼 等级 5 - 渔夫",
|
||||||
|
"professions.fishing.trapper": "钓鱼 等级 5 - 捕猎者",
|
||||||
|
"professions.fishing.angler": "钓鱼 等级 10 - 垂钓者",
|
||||||
|
"professions.fishing.luremaster": "钓鱼 等级 10 - 诱饵大师",
|
||||||
|
"professions.fishing.mariner": "钓鱼 等级 10 - 水手",
|
||||||
|
"professions.fishing.pirate": "钓鱼 等级 10 - 海盗",
|
||||||
|
"professions.foraging.forester": "觅食 等级 5 - 护林人",
|
||||||
|
"professions.foraging.gatherer": "觅食 等级 5 - 收集者",
|
||||||
|
"professions.foraging.botanist": "觅食 等级 10 - 植物学家",
|
||||||
|
"professions.foraging.lumberjack": "觅食 等级 10 - 伐木工人",
|
||||||
|
"professions.foraging.tapper": "觅食 等级 10 - 萃取者",
|
||||||
|
"professions.foraging.tracker": "觅食 等级 10 - 追踪者",
|
||||||
|
"professions.mining.geologist": "采矿 等级 5 - 地质学家",
|
||||||
|
"professions.mining.miner": "采矿 等级 5 - 矿工",
|
||||||
|
"professions.mining.blacksmith": "采矿 等级 10 - 铁匠",
|
||||||
|
"professions.mining.excavator": "采矿 等级 10 - 挖掘者",
|
||||||
|
"professions.mining.gemologist": "采矿 等级 10 - 宝石专家",
|
||||||
|
"professions.mining.prospector": "采矿 等级 10 - 勘探者",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Weather tab
|
||||||
|
*********/
|
||||||
|
"weather.title": "明日天气",
|
||||||
|
"weather.current-value": "明日天气设置为 {{weather}}",
|
||||||
|
"weather.explanation": "点击下方按钮设置明日天气(仅限明日)。除此之外本页面不会对天气有任何影响。",
|
||||||
|
"weather.sunny": "晴天",
|
||||||
|
"weather.raining": "雨天",
|
||||||
|
"weather.lightning": "雷雨",
|
||||||
|
"weather.snowing": "下雪",
|
||||||
|
"weather.green-rain": "苔雨",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Relationships tab
|
||||||
|
*********/
|
||||||
|
"relationships.title": "人际关系",
|
||||||
|
"relationships.give-gifts-anytime": "随时可以给予礼物",
|
||||||
|
"relationships.no-decay": "友情不会下降",
|
||||||
|
"relationships.friends": "朋友",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Warps tab
|
||||||
|
*********/
|
||||||
|
"warp.customized-warning": "您安装的其他mod可能更改了以下传送地点。如有传送问题,请向对应的mod报告。",
|
||||||
|
|
||||||
|
// main areas
|
||||||
|
"warp-section.main": "主要区域",
|
||||||
|
"warp.farm": "农场",
|
||||||
|
"warp.carpenter": "木匠的商店",
|
||||||
|
"warp.desert": "沙漠",
|
||||||
|
"warp.mines": "矿井",
|
||||||
|
"warp.pierre-shop": "皮埃尔的杂货店",
|
||||||
|
|
||||||
|
// town
|
||||||
|
"warp-section.town": "镇上",
|
||||||
|
"warp.blacksmith": "铁匠铺",
|
||||||
|
"warp.community-center": "社区中心",
|
||||||
|
"warp.jojamart": "Joja超市",
|
||||||
|
"warp.movie-theater": "电影院",
|
||||||
|
"warp.museum": "博物馆",
|
||||||
|
"warp.saloon": "星之果实酒吧",
|
||||||
|
"warp.sewer": "下水道",
|
||||||
|
|
||||||
|
// forest
|
||||||
|
"warp-section.forest": "南部森林",
|
||||||
|
"warp.hats": "帽子店",
|
||||||
|
"warp.mastery-cave": "精通山洞",
|
||||||
|
"warp.ranch": "玛妮的牧场",
|
||||||
|
"warp.secret-woods": "秘密森林",
|
||||||
|
"warp.wizard-tower": "法师塔",
|
||||||
|
|
||||||
|
// mountain
|
||||||
|
"warp-section.mountain": "北部山区",
|
||||||
|
"warp.adventurers-guild": "探险家公会",
|
||||||
|
"warp.bathhouse": "温泉",
|
||||||
|
"warp.mutant-bug-lair": "突变虫穴",
|
||||||
|
"warp.quarry": "采石场",
|
||||||
|
"warp.witch-swamp": "巫婆沼泽",
|
||||||
|
|
||||||
|
// beach
|
||||||
|
"warp-section.beach": "沙滩",
|
||||||
|
"warp.tide-pools": "沙滩",
|
||||||
|
"warp.willy-shop": "威利的鱼店",
|
||||||
|
|
||||||
|
// island
|
||||||
|
"warp-section.island": "姜岛",
|
||||||
|
"warp.forge": "锻造台",
|
||||||
|
"warp.island-farm": "姜岛农场",
|
||||||
|
"warp.dwarf-shop": "火山地牢矮人商店",
|
||||||
|
"warp.field-office": "岛屿办事处",
|
||||||
|
"warp.leo-house": "雷欧的房子",
|
||||||
|
|
||||||
|
// desert
|
||||||
|
"warp-section.desert": "沙漠",
|
||||||
|
"warp.casino": "赌场",
|
||||||
|
"warp.sandy-shop": "桑迪的商店",
|
||||||
|
"warp.skull-cavern": "骷髅洞穴",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Time tab
|
||||||
|
*********/
|
||||||
|
// time
|
||||||
|
"time.title": "时间",
|
||||||
|
"time.freeze-inside": "在建筑内冻结时间",
|
||||||
|
"time.freeze-caves": "在矿井内冻结时间",
|
||||||
|
"time.freeze-everywhere": "任何地方都冻结时间",
|
||||||
|
"time.fade-time-frozen-message": "Hide '{{timeFrozen}}' After a Few Seconds", // TODO
|
||||||
|
"time.time": "时间",
|
||||||
|
"time.time-frozen-message": "时间冻结",
|
||||||
|
|
||||||
|
// date
|
||||||
|
"date.title": "日期",
|
||||||
|
"date.warning": "部分事件需要到次日才会更新",
|
||||||
|
"date.year": "年",
|
||||||
|
"date.season": "季节",
|
||||||
|
"date.day": "日",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Advanced tab
|
||||||
|
*********/
|
||||||
|
"flags.warning": "使用此部分内容需要您自行承担风险!\n这可能会导致诸如信件、事件或任务被跳过等问题。",
|
||||||
|
"flags.quests": "立刻完成任务",
|
||||||
|
"flags.wallet": "钱包物品",
|
||||||
|
"flags.unlocked": "区域解锁",
|
||||||
|
"flags.unlocked.guild": "探险家公会解锁",
|
||||||
|
"flags.unlocked.room": "{{name}} 的房间",
|
||||||
|
"flags.unlocked-content": "解锁内容",
|
||||||
|
"flags.unlocked-content.dyes-and-tailoring": "染色 & 缝纫",
|
||||||
|
"flags.unlocked-content.junimo-text": "可以读懂祝尼魔文字",
|
||||||
|
"flags.unlocked-content.perfection": "达到完美",
|
||||||
|
"flags.community-center": "社区中心",
|
||||||
|
"flags.community-center.door-unlocked": "社区中心解锁",
|
||||||
|
"flags.jojamart.membership": "Joja超市会员资格",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Controls tab
|
||||||
|
*********/
|
||||||
|
"controls.title": "按键绑定",
|
||||||
|
"controls.android-config-note": "您可以在配置(config)文件中为CJB作弊菜单和一些使用虚拟键盘的模组设置按键布局。",
|
||||||
|
"controls.open-menu": "打开菜单",
|
||||||
|
"controls.freeze-time": "冻结时间",
|
||||||
|
"controls.grow-tree": "树木立即长大",
|
||||||
|
"controls.grow-crops": "作物立即成熟",
|
||||||
|
"controls.grow-radius": "生长范围(相对于玩家)",
|
||||||
|
"controls.reset-controls": "重置按键",
|
||||||
|
"controls.press-new-key": "绑定新按键...",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.open-menu.desc": "开启菜单的按键(请确保当前没有其他打开的菜单)。",
|
||||||
|
"config.freeze-time.desc": "冻结游戏时间的按键。",
|
||||||
|
"config.grow-tree.desc": "在玩家周围种树的按键。",
|
||||||
|
"config.grow-crops.desc": "在玩家周围种植农作物的按键。",
|
||||||
|
|
||||||
|
"controls.reload-config": "从文件中重新加载模组设置",
|
||||||
|
"controls.reload-config.desc": "从模组的配置(config.json)文件中重新加载模组设置的按键。如果菜单当前处于打开状态,则只有重新打开菜单时更改才会生效。",
|
||||||
|
|
||||||
|
"config.title.other-options": "其它选项",
|
||||||
|
"config.default-tab.name": "默认界面",
|
||||||
|
"config.default-tab.desc": "打开菜单时默认显示的界面。",
|
||||||
|
"config.other-options": "如需配置作弊设置,请在游戏中按下上方显示的“打开菜单”按键。请先加载存档后再按下按键,且确保当前没有开启其他菜单或对话。"
|
||||||
|
}
|
10
CJBCheatsMenu/manifest.json
Normal file
10
CJBCheatsMenu/manifest.json
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"Name": "CJB Cheats Menu",
|
||||||
|
"Author": "CJBok and Pathoschild",
|
||||||
|
"Version": "1.39.0",
|
||||||
|
"Description": "Simple in-game cheats menu!",
|
||||||
|
"UniqueID": "CJBok.CheatsMenu",
|
||||||
|
"EntryDll": "CJBCheatsMenu.dll",
|
||||||
|
"MinimumApiVersion": "4.1.10",
|
||||||
|
"UpdateKeys": [ "Nexus:4" ]
|
||||||
|
}
|
BIN
CJBItemSpawner/CJBItemSpawner.dll
Normal file
BIN
CJBItemSpawner/CJBItemSpawner.dll
Normal file
Binary file not shown.
237
CJBItemSpawner/assets/categories.json
Normal file
237
CJBItemSpawner/assets/categories.json
Normal file
|
@ -0,0 +1,237 @@
|
||||||
|
/**
|
||||||
|
* The item category filters available in the item spawner menu.
|
||||||
|
*
|
||||||
|
* For each item, a category applies if at least property matches the item. If multiple categories
|
||||||
|
* apply, the first match is used. The UI shows categories in alphabetical order.
|
||||||
|
*
|
||||||
|
* Category properties:
|
||||||
|
* - Label (required): the translation key or literal text for the category display name. If
|
||||||
|
* multiple rules have the same label, they're combined into one category in the UI.
|
||||||
|
* - When (required): rules for items to add to the category.
|
||||||
|
* - Except: rules for items to ignore.
|
||||||
|
*
|
||||||
|
* Rule properties:
|
||||||
|
* - Class: the full name of the item's C# instance type.
|
||||||
|
* - ObjCategory: the object's Category value (see https://stardewvalleywiki.com/Modding:Object_data#Categories).
|
||||||
|
* - ObjType: the object's Type value (see https://stardewvalleywiki.com/Modding:Object_data).
|
||||||
|
* - ItemId: the item type and ParentSheetIndex value in the form "type:id".
|
||||||
|
*
|
||||||
|
* Two categories are hardcoded: all (at the top) and miscellaneous (at the bottom).
|
||||||
|
*/
|
||||||
|
[
|
||||||
|
// tools
|
||||||
|
{
|
||||||
|
"Label": "filter.equipment-tools",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [
|
||||||
|
-19, // fertilizer
|
||||||
|
-21, // bait
|
||||||
|
-22, // tackle
|
||||||
|
-99 // tools
|
||||||
|
],
|
||||||
|
"ItemId": [
|
||||||
|
"Object:261", // warp totem: desert
|
||||||
|
"Object:297", // grass starter
|
||||||
|
"Object:681", // rain totem
|
||||||
|
"Object:688", // warp totem: farm
|
||||||
|
"Object:689", // warp totem: mountains
|
||||||
|
"Object:690" // warp totem: beach
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Except": {
|
||||||
|
"Class": [ "StardewValley.Tools.Slingshot" ] // has category -99 (tools)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// weapons
|
||||||
|
{
|
||||||
|
"Label": "filter.equipment-weapons",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [ -98 ],
|
||||||
|
"Class": [ "StardewValley.Tools.Slingshot" ],
|
||||||
|
"ItemId": [
|
||||||
|
"Object:286", // cherry bomb
|
||||||
|
"Object:287", // bomb
|
||||||
|
"Object:288", // mega bomb
|
||||||
|
"Object:441" // explosive ammo
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// hats
|
||||||
|
{
|
||||||
|
"Label": "filter.equipment-hats",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [ -95 ]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// clothes
|
||||||
|
{
|
||||||
|
"Label": "filter.equipment-clothes",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [ -100 ]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// boots
|
||||||
|
{
|
||||||
|
"Label": "filter.equipment-boots",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [ -97 ]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// rings
|
||||||
|
{
|
||||||
|
"Label": "filter.equipment-rings",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [ -96 ]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// farm: crops
|
||||||
|
{
|
||||||
|
"Label": "filter.farm-crops",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [
|
||||||
|
-75, // vegetables
|
||||||
|
-79, // fruit
|
||||||
|
-80, // flowers
|
||||||
|
-81 // greens
|
||||||
|
],
|
||||||
|
"ItemId": [
|
||||||
|
"Object:417" // sweet gem berry
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// farm: seeds
|
||||||
|
{
|
||||||
|
"Label": "filter.farm-seeds",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [ -74 ]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// farm: animal drops
|
||||||
|
{
|
||||||
|
"Label": "filter.farm-animal-drops",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [
|
||||||
|
-5, // eggs
|
||||||
|
-6, // milk
|
||||||
|
-14, // meat
|
||||||
|
-17, // sell at Pierre's
|
||||||
|
-18, // sell at Pierre and Marnie's
|
||||||
|
-28 // monster loot
|
||||||
|
],
|
||||||
|
"ItemId": [
|
||||||
|
"Object:413", // blue slime egg
|
||||||
|
"Object:437", // red slime egg
|
||||||
|
"Object:439", // purple slime egg
|
||||||
|
"Object:680" // green slime egg
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// fish
|
||||||
|
{
|
||||||
|
"Label": "filter.fish",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [
|
||||||
|
-4, // fish
|
||||||
|
-23 // sell at fish shop
|
||||||
|
],
|
||||||
|
"ObjType": [ "Fish" ]
|
||||||
|
},
|
||||||
|
"Except": {
|
||||||
|
"ObjCategory": [ -20 ] // trash
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// minerals & artifacts
|
||||||
|
{
|
||||||
|
"Label": "filter.minerals-and-artifacts",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [
|
||||||
|
-2, // gems
|
||||||
|
-12 // minerals
|
||||||
|
],
|
||||||
|
"ObjType": [ "Arch" ],
|
||||||
|
"ItemId": [
|
||||||
|
"Object:535", // geode
|
||||||
|
"Object:536", // frozen geode
|
||||||
|
"Object:537", // magma geode
|
||||||
|
"Object:749" // omnigeode
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// crafting
|
||||||
|
{
|
||||||
|
"Label": "filter.crafting.resources",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [
|
||||||
|
-15, // metals
|
||||||
|
-16 // building resources
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// craftables
|
||||||
|
{
|
||||||
|
"Label": "filter.crafting.products",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [
|
||||||
|
-8, // crafting
|
||||||
|
-9 // big craftables
|
||||||
|
],
|
||||||
|
"ItemId": [
|
||||||
|
"Object:710", // crab pot
|
||||||
|
"Object:463", // drum block
|
||||||
|
"Object:464" // flute block
|
||||||
|
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// artisan & cooking
|
||||||
|
{
|
||||||
|
"Label": "filter.artisan-and-cooking",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [
|
||||||
|
-7, // cooking
|
||||||
|
-25, // ingredients
|
||||||
|
-26, // artisan goods
|
||||||
|
-27 // syrup
|
||||||
|
],
|
||||||
|
"ItemId": [
|
||||||
|
"Object:245", // sugar
|
||||||
|
"Object:246", // wheat flour
|
||||||
|
"Object:247", // oil
|
||||||
|
"Object:403", // field snack
|
||||||
|
"Object:419", // vinegar
|
||||||
|
"Object:423" // rice
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// furniture
|
||||||
|
{
|
||||||
|
"Label": "filter.decor.furniture",
|
||||||
|
"When": {
|
||||||
|
"Class": [ "StardewValley.Objects.Furniture" ]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// decorating
|
||||||
|
{
|
||||||
|
"Label": "filter.decor.other",
|
||||||
|
"When": {
|
||||||
|
"ObjCategory": [
|
||||||
|
-24 // furniture (excluding those with the Furniture class above)
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
BIN
CJBItemSpawner/assets/empty-quality.png
Normal file
BIN
CJBItemSpawner/assets/empty-quality.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 178 B |
48
CJBItemSpawner/assets/item-data.json
Normal file
48
CJBItemSpawner/assets/item-data.json
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Item categories that can be sold in shops, regardless of what SObject.canBeShipped() returns.
|
||||||
|
*/
|
||||||
|
"ForceSellable": [
|
||||||
|
// adventure guild
|
||||||
|
-28,
|
||||||
|
-98,
|
||||||
|
-97,
|
||||||
|
-96,
|
||||||
|
|
||||||
|
// blacksmith
|
||||||
|
-12,
|
||||||
|
-2,
|
||||||
|
-15,
|
||||||
|
|
||||||
|
// Marnie's shop
|
||||||
|
-18,
|
||||||
|
-6,
|
||||||
|
-5,
|
||||||
|
-14,
|
||||||
|
|
||||||
|
// pierre's shop
|
||||||
|
-81,
|
||||||
|
-75,
|
||||||
|
-79,
|
||||||
|
-80,
|
||||||
|
-74,
|
||||||
|
-17,
|
||||||
|
-18,
|
||||||
|
-6,
|
||||||
|
-26,
|
||||||
|
-5,
|
||||||
|
-14,
|
||||||
|
-19,
|
||||||
|
-7,
|
||||||
|
-25,
|
||||||
|
|
||||||
|
// Robin's shop
|
||||||
|
-16,
|
||||||
|
|
||||||
|
// Willy's shop
|
||||||
|
-4,
|
||||||
|
-23,
|
||||||
|
-21,
|
||||||
|
-22
|
||||||
|
]
|
||||||
|
}
|
BIN
CJBItemSpawner/assets/sort.png
Normal file
BIN
CJBItemSpawner/assets/sort.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 500 B |
5
CJBItemSpawner/config.json
Normal file
5
CJBItemSpawner/config.json
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"ShowMenuKey": "I",
|
||||||
|
"ReclaimPriceInMenuTrashCan": true,
|
||||||
|
"HideCategories": []
|
||||||
|
}
|
48
CJBItemSpawner/i18n/de.json
Normal file
48
CJBItemSpawner/i18n/de.json
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "Name",
|
||||||
|
"sort.by-price": "Verkaufspreis",
|
||||||
|
"sort.by-type": "Kategorie",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "Alles",
|
||||||
|
"filter.artisan-and-cooking": "Handwerkswaren & Kochen",
|
||||||
|
"filter.crafting.products": "Herstellung: Produkte",
|
||||||
|
"filter.crafting.resources": "Herstellung: Ressourcen",
|
||||||
|
"filter.decor.furniture": "Dekoration: Möbel",
|
||||||
|
"filter.decor.other": "Dekoration: Andere",
|
||||||
|
"filter.equipment-boots": "Ausrüstung: Schuhe",
|
||||||
|
"filter.equipment-clothes": "Ausrüstung: Kleidung",
|
||||||
|
"filter.equipment-hats": "Ausrüstung: Hüte",
|
||||||
|
"filter.equipment-rings": "Ausrüstung: Ringe",
|
||||||
|
"filter.equipment-tools": "Ausrüstung: Werkzeuge",
|
||||||
|
"filter.equipment-weapons": "Ausrüstung: Waffen",
|
||||||
|
"filter.farm-animal-drops": "Hof: Tierprodukte",
|
||||||
|
"filter.farm-crops": "Hof: Nutzpflanzen",
|
||||||
|
"filter.farm-seeds": "Hof: Saatgut",
|
||||||
|
"filter.fish": "Fische",
|
||||||
|
"filter.minerals-and-artifacts": "Mineralien & Artefakte",
|
||||||
|
"filter.miscellaneous": "Andere",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.title.controls": "Controls",
|
||||||
|
"config.show-menu-key.name": "Show menu key",
|
||||||
|
"config.show-menu-key.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
|
||||||
|
"config.title.options": "Options",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Apply trash can upgrade",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "When you upgrade your trash can to reclaim part of the price of trashed items, whether that upgrade applies in the item spawner menu too.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Hide categories",
|
||||||
|
"config.hide-category.desc": "Whether to hide the '{{name}}' category in the UI. If it's hidden, items in this category will not be accessible through the spawn menu."
|
||||||
|
}
|
47
CJBItemSpawner/i18n/default.json
Normal file
47
CJBItemSpawner/i18n/default.json
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "Name",
|
||||||
|
"sort.by-price": "Sell Price",
|
||||||
|
"sort.by-type": "Type",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "All",
|
||||||
|
"filter.artisan-and-cooking": "Artisan & cooking",
|
||||||
|
"filter.crafting.products": "Crafting: products",
|
||||||
|
"filter.crafting.resources": "Crafting: resources",
|
||||||
|
"filter.decor.furniture": "Decor: furniture",
|
||||||
|
"filter.decor.other": "Decor: other",
|
||||||
|
"filter.equipment-boots": "Equipment: boots",
|
||||||
|
"filter.equipment-clothes": "Equipment: clothes",
|
||||||
|
"filter.equipment-hats": "Equipment: hats",
|
||||||
|
"filter.equipment-rings": "Equipment: rings",
|
||||||
|
"filter.equipment-tools": "Equipment: tools",
|
||||||
|
"filter.equipment-weapons": "Equipment: weapons",
|
||||||
|
"filter.farm-animal-drops": "Farm: animal drops",
|
||||||
|
"filter.farm-crops": "Farm: crops",
|
||||||
|
"filter.farm-seeds": "Farm: seeds",
|
||||||
|
"filter.fish": "Fish",
|
||||||
|
"filter.minerals-and-artifacts": "Minerals & artifacts",
|
||||||
|
"filter.miscellaneous": "Misc",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.title.controls": "Controls",
|
||||||
|
"config.show-menu-key.name": "Show menu key",
|
||||||
|
"config.show-menu-key.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
|
||||||
|
"config.title.options": "Options",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Apply trash can upgrade",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "When you upgrade your trash can to reclaim part of the price of trashed items, whether that upgrade applies in the item spawner menu too.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Hide categories",
|
||||||
|
"config.hide-category.desc": "Whether to hide the '{{name}}' category in the UI. If it's hidden, items in this category will not be accessible through the spawn menu."
|
||||||
|
}
|
48
CJBItemSpawner/i18n/es.json
Normal file
48
CJBItemSpawner/i18n/es.json
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "Nombre",
|
||||||
|
"sort.by-price": "Sell Price", // TODO
|
||||||
|
"sort.by-type": "Categoría",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "Todo",
|
||||||
|
"filter.artisan-and-cooking": "Artesano & cocina",
|
||||||
|
"filter.crafting.products": "Fabricación: productos",
|
||||||
|
"filter.crafting.resources": "Fabricación: recursos",
|
||||||
|
"filter.decor.furniture": "Decoración: muebles",
|
||||||
|
"filter.decor.other": "Decoración: otros",
|
||||||
|
"filter.equipment-boots": "Equipamiento: calzado",
|
||||||
|
"filter.equipment-clothes": "Equipamiento: ropa",
|
||||||
|
"filter.equipment-hats": "Equipamiento: sombreros",
|
||||||
|
"filter.equipment-rings": "Equipamiento: anillos",
|
||||||
|
"filter.equipment-tools": "Equipamiento: herramientas",
|
||||||
|
"filter.equipment-weapons": "Equipamiento: armas",
|
||||||
|
"filter.farm-animal-drops": "Granja: productos animales",
|
||||||
|
"filter.farm-crops": "Granja: cultivos",
|
||||||
|
"filter.farm-seeds": "Granja: semillas",
|
||||||
|
"filter.fish": "Peces",
|
||||||
|
"filter.minerals-and-artifacts": "Minerales & artefactos",
|
||||||
|
"filter.miscellaneous": "Miscelánea",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.title.controls": "Controls",
|
||||||
|
"config.show-menu-key.name": "Show menu key",
|
||||||
|
"config.show-menu-key.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
|
||||||
|
"config.title.options": "Options",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Apply trash can upgrade",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "When you upgrade your trash can to reclaim part of the price of trashed items, whether that upgrade applies in the item spawner menu too.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Hide categories",
|
||||||
|
"config.hide-category.desc": "Whether to hide the '{{name}}' category in the UI. If it's hidden, items in this category will not be accessible through the spawn menu."
|
||||||
|
}
|
47
CJBItemSpawner/i18n/fr.json
Normal file
47
CJBItemSpawner/i18n/fr.json
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "Nom",
|
||||||
|
"sort.by-price": "Prix de vente",
|
||||||
|
"sort.by-type": "Type",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "Tout",
|
||||||
|
"filter.artisan-and-cooking": "Artisanat & cuisine",
|
||||||
|
"filter.crafting.products": "Fabrication : produits",
|
||||||
|
"filter.crafting.resources": "Fabrication : ressources",
|
||||||
|
"filter.decor.furniture": "Décors : meubles",
|
||||||
|
"filter.decor.other": "Décors : divers",
|
||||||
|
"filter.equipment-boots": "Équipement : bottes",
|
||||||
|
"filter.equipment-clothes": "Équipement : vêtements",
|
||||||
|
"filter.equipment-hats": "Équipement : chapeaux",
|
||||||
|
"filter.equipment-rings": "Équipement : anneaux",
|
||||||
|
"filter.equipment-tools": "Équipement : outils",
|
||||||
|
"filter.equipment-weapons": "Équipement : armes",
|
||||||
|
"filter.farm-animal-drops": "Ferme : produits animaliers",
|
||||||
|
"filter.farm-crops": "Ferme : récoltes",
|
||||||
|
"filter.farm-seeds": "Ferme : graines",
|
||||||
|
"filter.fish": "Poissons",
|
||||||
|
"filter.minerals-and-artifacts": "Minerais & artéfacts",
|
||||||
|
"filter.miscellaneous": "Divers",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.title.controls": "Raccourci",
|
||||||
|
"config.show-menu-key.name": "Afficher le menu",
|
||||||
|
"config.show-menu-key.desc": "Le raccourci qui ouvre le menu (lorsqu’aucun autre menu n’est ouvert).",
|
||||||
|
|
||||||
|
"config.title.options": "Options",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Appliquer amélioration poubelle",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "Applique l’amélioration actuelle de la poubelle dans le menu d’Item Spawner également.\nCela permet de récupérer une partie de la valeur des objets jetés.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Cacher des catégories",
|
||||||
|
"config.hide-category.desc": "Cache la catégorie '{{name}}' dans Item Spawner.\nSi caché, les objets de cette catégorie ne seront pas accessible par le menu d’invocation."
|
||||||
|
}
|
47
CJBItemSpawner/i18n/hu.json
Normal file
47
CJBItemSpawner/i18n/hu.json
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "Név",
|
||||||
|
"sort.by-price": "Eladási Ár",
|
||||||
|
"sort.by-type": "Kategória",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "Minden",
|
||||||
|
"filter.artisan-and-cooking": "Kézműves & főzés",
|
||||||
|
"filter.crafting.products": "Barkácsolás: termékek",
|
||||||
|
"filter.crafting.resources": "Barkácsolás: alapanyagok",
|
||||||
|
"filter.decor.furniture": "Dekoráció: bútorok",
|
||||||
|
"filter.decor.other": "Dekoráció: egyebek",
|
||||||
|
"filter.equipment-boots": "Felszerelés: cipők",
|
||||||
|
"filter.equipment-clothes": "Felszerelés: ruhák",
|
||||||
|
"filter.equipment-hats": "Felszerelés: kalapok",
|
||||||
|
"filter.equipment-rings": "Felszerelés: gyűrűk",
|
||||||
|
"filter.equipment-tools": "Felszerelés: eszközök",
|
||||||
|
"filter.equipment-weapons": "Felszerelés: fegyverek",
|
||||||
|
"filter.farm-animal-drops": "Farm: állati termékek",
|
||||||
|
"filter.farm-crops": "Farm: termések",
|
||||||
|
"filter.farm-seeds": "Farm: magvak",
|
||||||
|
"filter.fish": "Halak",
|
||||||
|
"filter.minerals-and-artifacts": "Ásványok & műtárgyak",
|
||||||
|
"filter.miscellaneous": "Egyéb",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.title.controls": "Vezérlés",
|
||||||
|
"config.show-menu-key.name": "Menü megjelenítése",
|
||||||
|
"config.show-menu-key.desc": "A billentyű, ami megnyitja a menüt (amikor nincs másik menü megnyitva).",
|
||||||
|
|
||||||
|
"config.title.options": "Beállítások",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Kuka fejlesztése",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "Hatással legyen-e a menüre a kidobott tárgyak árának egy részének visszatérítése a kuka fejlesztésének után",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Kategóriák elrejtése",
|
||||||
|
"config.hide-category.desc": "'{{name}}' elrejtése a menüből. Ha el van rejtve, a kategóriába tartozó tárgyak nem lesznek elérhetőek a menüben."
|
||||||
|
}
|
48
CJBItemSpawner/i18n/it.json
Normal file
48
CJBItemSpawner/i18n/it.json
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "Nome",
|
||||||
|
"sort.by-price": "Sell Price", // TODO
|
||||||
|
"sort.by-type": "Categoria",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "Tutti",
|
||||||
|
"filter.artisan-and-cooking": "Artigianato & cucina",
|
||||||
|
"filter.crafting.products": "Fabbricazione: prodotti",
|
||||||
|
"filter.crafting.resources": "Fabbricazione: risorse",
|
||||||
|
"filter.decor.furniture": "Decorazione: mobilia",
|
||||||
|
"filter.decor.other": "Decorazione: altri",
|
||||||
|
"filter.equipment-boots": "Equipaggiamento: calzature",
|
||||||
|
"filter.equipment-clothes": "Equipaggiamento: vestiti",
|
||||||
|
"filter.equipment-hats": "Equipaggiamento: cappelli",
|
||||||
|
"filter.equipment-rings": "Equipaggiamento: anelli",
|
||||||
|
"filter.equipment-tools": "Equipaggiamento: attrezzi",
|
||||||
|
"filter.equipment-weapons": "Equipaggiamento: armi",
|
||||||
|
"filter.farm-animal-drops": "Fattoria: prodotti animali",
|
||||||
|
"filter.farm-crops": "Fattoria: colture",
|
||||||
|
"filter.farm-seeds": "Fattoria: semi",
|
||||||
|
"filter.fish": "Pesci",
|
||||||
|
"filter.minerals-and-artifacts": "Minerali & artefatti",
|
||||||
|
"filter.miscellaneous": "Vari",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.title.controls": "Controls",
|
||||||
|
"config.show-menu-key.name": "Show menu key",
|
||||||
|
"config.show-menu-key.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
|
||||||
|
"config.title.options": "Options",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Apply trash can upgrade",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "When you upgrade your trash can to reclaim part of the price of trashed items, whether that upgrade applies in the item spawner menu too.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Hide categories",
|
||||||
|
"config.hide-category.desc": "Whether to hide the '{{name}}' category in the UI. If it's hidden, items in this category will not be accessible through the spawn menu."
|
||||||
|
}
|
47
CJBItemSpawner/i18n/ja.json
Normal file
47
CJBItemSpawner/i18n/ja.json
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "名前",
|
||||||
|
"sort.by-price": "売価",
|
||||||
|
"sort.by-type": "種類",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "All",
|
||||||
|
"filter.artisan-and-cooking": "加工品と料理",
|
||||||
|
"filter.crafting.products": "クラフト:完成品",
|
||||||
|
"filter.crafting.resources": "クラフト:素材",
|
||||||
|
"filter.decor.furniture": "装飾:家具",
|
||||||
|
"filter.decor.other": "装飾:床材や壁紙",
|
||||||
|
"filter.equipment-boots": "装備:はき物",
|
||||||
|
"filter.equipment-clothes": "装備:服",
|
||||||
|
"filter.equipment-hats": "装備:帽子",
|
||||||
|
"filter.equipment-rings": "装備:指輪",
|
||||||
|
"filter.equipment-tools": "装備:どうぐ",
|
||||||
|
"filter.equipment-weapons": "装備:武器",
|
||||||
|
"filter.farm-animal-drops": "農業:動物生産品",
|
||||||
|
"filter.farm-crops": "農業:作物",
|
||||||
|
"filter.farm-seeds": "農業:タネ",
|
||||||
|
"filter.fish": "魚",
|
||||||
|
"filter.minerals-and-artifacts": "鉱物と発掘品",
|
||||||
|
"filter.miscellaneous": "その他",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.title.controls": "操作",
|
||||||
|
"config.show-menu-key.name": "メニューを表示",
|
||||||
|
"config.show-menu-key.desc": "メニューを開くキーを設定する(他のメニューが開かれていない時有効)",
|
||||||
|
|
||||||
|
"config.title.options": "オプション",
|
||||||
|
"config.apply-trash-can-upgrade.name": "ゴミ箱のアップグレードを適用",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "ゴミ箱をアップグレード後のゴールドの還元を、CJB Item Spawnerのメニューでも適用するかどうか。",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "カテゴリの非表示",
|
||||||
|
"config.hide-category.desc": "UIで「{{name}}」のカテゴリを非表示にするかどうか。非表示にすると、そのカテゴリーのアイテムはメニューからアクセスできなくなる。"
|
||||||
|
}
|
47
CJBItemSpawner/i18n/ko.json
Normal file
47
CJBItemSpawner/i18n/ko.json
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "이름",
|
||||||
|
"sort.by-price": "판매 가격",
|
||||||
|
"sort.by-type": "종류",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "전체",
|
||||||
|
"filter.artisan-and-cooking": "기타 : 장인 제작품 & 요리",
|
||||||
|
"filter.crafting.products": "제작 : 기계 & 제작품",
|
||||||
|
"filter.crafting.resources": "제작 : 자원",
|
||||||
|
"filter.decor.furniture": "장식 : 가구",
|
||||||
|
"filter.decor.other": "장식 : 벽지 & 바닥",
|
||||||
|
"filter.equipment-boots": "장비 : 신발",
|
||||||
|
"filter.equipment-clothes": "장비 : 의류",
|
||||||
|
"filter.equipment-hats": "장비 : 모자",
|
||||||
|
"filter.equipment-rings": "장비 : 반지",
|
||||||
|
"filter.equipment-tools": "장비 : 도구 & 미끼 & 비료",
|
||||||
|
"filter.equipment-weapons": "장비 : 무기",
|
||||||
|
"filter.farm-animal-drops": "농장 : 동물 전리품",
|
||||||
|
"filter.farm-crops": "농장 : 작물",
|
||||||
|
"filter.farm-seeds": "농장 : 씨앗",
|
||||||
|
"filter.fish": "기타 : 물고기 & 어란",
|
||||||
|
"filter.minerals-and-artifacts": "기타 : 광물 & 유물",
|
||||||
|
"filter.miscellaneous": "기타 & 퀘스트",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.title.controls": "조작",
|
||||||
|
"config.show-menu-key.name": "메뉴 열기 키",
|
||||||
|
"config.show-menu-key.desc": "메뉴를 여는 키 (다른 메뉴가 열려있지 않을 때).",
|
||||||
|
|
||||||
|
"config.title.options": "옵션",
|
||||||
|
"config.apply-trash-can-upgrade.name": "쓰레기통 업그레이드 적용",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "업그레이드된 쓰레기통으로 버린 아이템의 일부 가격을 회수할 수 있을 때, 그 업그레이드가 아이템 스포너 메뉴에서도 적용되는지 여부.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "카테고리 숨기기",
|
||||||
|
"config.hide-category.desc": "UI에서 '{{name}}' 카테고리를 숨길지 여부. 숨기면 이 카테고리의 아이템을 스폰 메뉴를 통해 접근할 수 없습니다."
|
||||||
|
}
|
47
CJBItemSpawner/i18n/pl.json
Normal file
47
CJBItemSpawner/i18n/pl.json
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "Nazwa",
|
||||||
|
"sort.by-price": "Cena",
|
||||||
|
"sort.by-type": "Rodzaj",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "Wszystko",
|
||||||
|
"filter.artisan-and-cooking": "Wyroby i gotowanie",
|
||||||
|
"filter.crafting.products": "Wytwarzanie: przedmioty",
|
||||||
|
"filter.crafting.resources": "Wytwarzanie: zasoby",
|
||||||
|
"filter.decor.furniture": "Dekoracje: meble",
|
||||||
|
"filter.decor.other": "Dekoracje: pozostałe",
|
||||||
|
"filter.equipment-boots": "Ekwipunek: obuwie",
|
||||||
|
"filter.equipment-clothes": "Ekwipunek: ubrania",
|
||||||
|
"filter.equipment-hats": "Ekwipunek: czapki",
|
||||||
|
"filter.equipment-rings": "Ekwipunek: pierścienie",
|
||||||
|
"filter.equipment-tools": "Ekwipunek: narzędzia",
|
||||||
|
"filter.equipment-weapons": "Ekwipunek: bronie",
|
||||||
|
"filter.farm-animal-drops": "Farma: zwierzęta i potwory",
|
||||||
|
"filter.farm-crops": "Farma: uprawy",
|
||||||
|
"filter.farm-seeds": "Farma: nasiona",
|
||||||
|
"filter.fish": "Ryby",
|
||||||
|
"filter.minerals-and-artifacts": "Minerały i artefakty",
|
||||||
|
"filter.miscellaneous": "Różne",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.title.controls": "Sterowanie",
|
||||||
|
"config.show-menu-key.name": "Klawisz otwierający menu",
|
||||||
|
"config.show-menu-key.desc": "Skrót klawiszowy, który otwiera menu (gdy żadne inne menu nie jest otwarte).",
|
||||||
|
|
||||||
|
"config.title.options": "Opcje",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Zastosuj ulepszenie kosza na śmieci",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "Gdy ulepszysz kosz na śmieci, aby odzyskać część ceny wyrzuconych przedmiotów, czy to ulepszenie ma również zastosowanie w menu spawnera przedmiotów.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Ukryj kategorie",
|
||||||
|
"config.hide-category.desc": "Czy ukryć kategorię '{{name}}' w interfejsie użytkownika. Jeśli jest ukryta, przedmioty z tej kategorii nie będą dostępne przez menu spawnera."
|
||||||
|
}
|
47
CJBItemSpawner/i18n/pt.json
Normal file
47
CJBItemSpawner/i18n/pt.json
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "Nome",
|
||||||
|
"sort.by-price": "Preço de Venda",
|
||||||
|
"sort.by-type": "Categoria",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "Todos",
|
||||||
|
"filter.artisan-and-cooking": "Artesanaise Receitas ",
|
||||||
|
"filter.crafting.products": "Criação: produtos",
|
||||||
|
"filter.crafting.resources": "Criação: recursos",
|
||||||
|
"filter.decor.furniture": "Decor: móveis",
|
||||||
|
"filter.decor.other": "Decor: outros",
|
||||||
|
"filter.equipment-boots": "Equipamento: botas",
|
||||||
|
"filter.equipment-clothes": "Equipamento: roupas",
|
||||||
|
"filter.equipment-hats": "Equipamento: chapéus",
|
||||||
|
"filter.equipment-rings": "Equipamento: anéis",
|
||||||
|
"filter.equipment-tools": "Equipamento: ferramentas",
|
||||||
|
"filter.equipment-weapons": "Equipamento: armas",
|
||||||
|
"filter.farm-animal-drops": "Fazenda: produção animal",
|
||||||
|
"filter.farm-crops": "Fazenda: colheita",
|
||||||
|
"filter.farm-seeds": "Fazenda: sementes",
|
||||||
|
"filter.fish": "Peixes",
|
||||||
|
"filter.minerals-and-artifacts": "Minerais e artefatos",
|
||||||
|
"filter.miscellaneous": "Outros",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.title.controls": "Controles",
|
||||||
|
"config.show-menu-key.name": "Mostrar o menu",
|
||||||
|
"config.show-menu-key.desc": "A tecla que abre o menu (quando nenhum outro menu está aberto).",
|
||||||
|
|
||||||
|
"config.title.options": "Opções",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Aplicar melhoria de lixeira",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "Quando você melhorar sua lixeira para recuperar parte do preço dos itens descartados, se a melhoria deve ser aplicada aos itens do menu de spawn também.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Esconda categorias",
|
||||||
|
"config.hide-category.desc": "Se deve esconder a categoria {name} da interface. Se estiver oculta, os itens dessa categoria não estarão acessíveis no menu de spawn."
|
||||||
|
}
|
48
CJBItemSpawner/i18n/ru.json
Normal file
48
CJBItemSpawner/i18n/ru.json
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "Имени",
|
||||||
|
"sort.by-price": "Цена Продажи",
|
||||||
|
"sort.by-type": "Категории",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "Все",
|
||||||
|
"filter.artisan-and-cooking": "Товары собств. пр-ва и готовка",
|
||||||
|
"filter.crafting.products": "Крафт: изделия",
|
||||||
|
"filter.crafting.resources": "Крафт: ресурсы",
|
||||||
|
"filter.decor.furniture": "Декор: мебель",
|
||||||
|
"filter.decor.other": "Декор: остальное",
|
||||||
|
"filter.equipment-boots": "Снаряжение: обувь",
|
||||||
|
"filter.equipment-clothes": "Снаряжение: одежда",
|
||||||
|
"filter.equipment-hats": "Снаряжение: шляпы",
|
||||||
|
"filter.equipment-rings": "Снаряжение: кольца",
|
||||||
|
"filter.equipment-tools": "Снаряжение: инструменты",
|
||||||
|
"filter.equipment-weapons": "Снаряжение: оружие",
|
||||||
|
"filter.farm-animal-drops": "Ферма: животная продукция",
|
||||||
|
"filter.farm-crops": "Ферма: урожай",
|
||||||
|
"filter.farm-seeds": "Ферма: семена",
|
||||||
|
"filter.fish": "Рыба",
|
||||||
|
"filter.minerals-and-artifacts": "Минералы и артефакты",
|
||||||
|
"filter.miscellaneous": "Разное",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.title.controls": "Controls",
|
||||||
|
"config.show-menu-key.name": "Show menu key",
|
||||||
|
"config.show-menu-key.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
|
||||||
|
"config.title.options": "Options",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Apply trash can upgrade",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "When you upgrade your trash can to reclaim part of the price of trashed items, whether that upgrade applies in the item spawner menu too.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Hide categories",
|
||||||
|
"config.hide-category.desc": "Whether to hide the '{{name}}' category in the UI. If it's hidden, items in this category will not be accessible through the spawn menu."
|
||||||
|
}
|
48
CJBItemSpawner/i18n/th.json
Normal file
48
CJBItemSpawner/i18n/th.json
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "ชื่อ",
|
||||||
|
"sort.by-price": "ราคาขาย",
|
||||||
|
"sort.by-type": "ประเภท",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "ทั้งหมด",
|
||||||
|
"filter.artisan-and-cooking": "ผลิตภัณฑ์ & อาหาร",
|
||||||
|
"filter.crafting.products": "สิ่งประดิษฐ์: สิ่งของเครื่องใช้",
|
||||||
|
"filter.crafting.resources": "สิ่งประดิษฐ์: วัตถุดิบ",
|
||||||
|
"filter.decor.furniture": "ของตกแต่ง: เฟอร์นิเจอร์",
|
||||||
|
"filter.decor.other": "ของตกแต่ง: อื่นๆ",
|
||||||
|
"filter.equipment-boots": "อุปกรณ์สวมใส่: รองเท้า",
|
||||||
|
"filter.equipment-clothes": "อุปกรณ์สวมใส่: เสื้อผ้า",
|
||||||
|
"filter.equipment-hats": "อุปกรณ์สวมใส่: หมวก",
|
||||||
|
"filter.equipment-rings": "อุปกรณ์สวมใส่: แหวน",
|
||||||
|
"filter.equipment-tools": "อุปกรณ์สวมใส่: เครื่องมือ",
|
||||||
|
"filter.equipment-weapons": "อุปกรณ์สวมใส่: อาวุธ",
|
||||||
|
"filter.farm-animal-drops": "ฟาร์ม: ผลิตภัณฑ์จากสัตว์",
|
||||||
|
"filter.farm-crops": "ฟาร์ม: ผืชผัก",
|
||||||
|
"filter.farm-seeds": "ฟาร์ม: เมล็ดพันธุ์",
|
||||||
|
"filter.fish": "ปลา",
|
||||||
|
"filter.minerals-and-artifacts": "แร่ & วัถตุโบราณ",
|
||||||
|
"filter.miscellaneous": "อื่นๆ",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.title.controls": "Controls",
|
||||||
|
"config.show-menu-key.name": "Show menu key",
|
||||||
|
"config.show-menu-key.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
|
||||||
|
"config.title.options": "Options",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Apply trash can upgrade",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "When you upgrade your trash can to reclaim part of the price of trashed items, whether that upgrade applies in the item spawner menu too.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Hide categories",
|
||||||
|
"config.hide-category.desc": "Whether to hide the '{{name}}' category in the UI. If it's hidden, items in this category will not be accessible through the spawn menu."
|
||||||
|
}
|
48
CJBItemSpawner/i18n/tr.json
Normal file
48
CJBItemSpawner/i18n/tr.json
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "İsme",
|
||||||
|
"sort.by-price": "Satış Fiyatına",
|
||||||
|
"sort.by-type": "Kategoriye",
|
||||||
|
"sort.by-id": "ID'ye",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "Hepsi",
|
||||||
|
"filter.artisan-and-cooking": "Zanaat ve Yemekler",
|
||||||
|
"filter.crafting.products": "El yapımı ürünler",
|
||||||
|
"filter.crafting.resources": "El yapım malzemeleri",
|
||||||
|
"filter.decor.furniture": "Dekor: mobilyalar",
|
||||||
|
"filter.decor.other": "Dekor: diğer",
|
||||||
|
"filter.equipment-boots": "Ekipman: Ayakkabılar",
|
||||||
|
"filter.equipment-clothes": "Ekipman: Kıyafetler",
|
||||||
|
"filter.equipment-hats": "Ekipman: Şapkalar",
|
||||||
|
"filter.equipment-rings": "Ekipman: Yüzükler",
|
||||||
|
"filter.equipment-tools": "Ekipman: Aletler",
|
||||||
|
"filter.equipment-weapons": "Ekipman: Silahlar",
|
||||||
|
"filter.farm-animal-drops": "Çiftlik: hayvan ürünleri",
|
||||||
|
"filter.farm-crops": "Çiftlik: ekinler",
|
||||||
|
"filter.farm-seeds": "Çiftlik: tohumlar",
|
||||||
|
"filter.fish": "Balık",
|
||||||
|
"filter.minerals-and-artifacts": "Mineraller ve eserler",
|
||||||
|
"filter.miscellaneous": "Diğer",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.title.controls": "Controls",
|
||||||
|
"config.show-menu-key.name": "Show menu key",
|
||||||
|
"config.show-menu-key.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
|
||||||
|
"config.title.options": "Options",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Apply trash can upgrade",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "When you upgrade your trash can to reclaim part of the price of trashed items, whether that upgrade applies in the item spawner menu too.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Hide categories",
|
||||||
|
"config.hide-category.desc": "Whether to hide the '{{name}}' category in the UI. If it's hidden, items in this category will not be accessible through the spawn menu."
|
||||||
|
}
|
48
CJBItemSpawner/i18n/uk.json
Normal file
48
CJBItemSpawner/i18n/uk.json
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "Назва",
|
||||||
|
"sort.by-price": "Ціна продажу",
|
||||||
|
"sort.by-type": "Категорія",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "Все",
|
||||||
|
"filter.artisan-and-cooking": "Власне виробництво",
|
||||||
|
"filter.crafting.products": "Створення: предмети",
|
||||||
|
"filter.crafting.resources": "Створення: ресурси",
|
||||||
|
"filter.decor.furniture": "Декорації: меблі",
|
||||||
|
"filter.decor.other": "Декорації: інше",
|
||||||
|
"filter.equipment-boots": "Обладн.: взуття",
|
||||||
|
"filter.equipment-clothes": "Обладн.: одяг",
|
||||||
|
"filter.equipment-hats": "Обладн.: капелюхи",
|
||||||
|
"filter.equipment-rings": "Обладн.: персні",
|
||||||
|
"filter.equipment-tools": "Обладн.: інструменти",
|
||||||
|
"filter.equipment-weapons": "Обладн.: зброя",
|
||||||
|
"filter.farm-animal-drops": "Ферма: продукти твар.",
|
||||||
|
"filter.farm-crops": "Ферма: культури",
|
||||||
|
"filter.farm-seeds": "Ферма: насіння",
|
||||||
|
"filter.fish": "Риба",
|
||||||
|
"filter.minerals-and-artifacts": "Мінерали і артефакти",
|
||||||
|
"filter.miscellaneous": "Різне",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
// TODO
|
||||||
|
"config.title.controls": "Controls",
|
||||||
|
"config.show-menu-key.name": "Show menu key",
|
||||||
|
"config.show-menu-key.desc": "The keybind which opens the menu (when no other menu is open).",
|
||||||
|
|
||||||
|
"config.title.options": "Options",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Apply trash can upgrade",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "When you upgrade your trash can to reclaim part of the price of trashed items, whether that upgrade applies in the item spawner menu too.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Hide categories",
|
||||||
|
"config.hide-category.desc": "Whether to hide the '{{name}}' category in the UI. If it's hidden, items in this category will not be accessible through the spawn menu."
|
||||||
|
}
|
47
CJBItemSpawner/i18n/vi.json
Normal file
47
CJBItemSpawner/i18n/vi.json
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "Tên",
|
||||||
|
"sort.by-price": "Giá bán",
|
||||||
|
"sort.by-type": "Loại",
|
||||||
|
"sort.by-id": "ID",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "Tất cả",
|
||||||
|
"filter.artisan-and-cooking": "Nguyên liệu & nấu ăn",
|
||||||
|
"filter.crafting.products": "Chế tạo: sản phẩm",
|
||||||
|
"filter.crafting.resources": "Chế tạo: nguyên liệu",
|
||||||
|
"filter.decor.furniture": "Trang trí: nội thất",
|
||||||
|
"filter.decor.other": "Trang trí: khác",
|
||||||
|
"filter.equipment-boots": "Giày",
|
||||||
|
"filter.equipment-clothes": "Quần áo",
|
||||||
|
"filter.equipment-hats": "Mũ",
|
||||||
|
"filter.equipment-rings": "Nhẫn",
|
||||||
|
"filter.equipment-tools": "Công cụ",
|
||||||
|
"filter.equipment-weapons": "Vũ khí",
|
||||||
|
"filter.farm-animal-drops": "vật phẩm động vật",
|
||||||
|
"filter.farm-crops": "Nông sản",
|
||||||
|
"filter.farm-seeds": "Hạt giống",
|
||||||
|
"filter.fish": "Cá",
|
||||||
|
"filter.minerals-and-artifacts": "Khoáng sản & đồ cổ",
|
||||||
|
"filter.miscellaneous": "Linh tinh",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.title.controls": "Bảng điều khiển",
|
||||||
|
"config.show-menu-key.name": "Hiển thị phím mở menu",
|
||||||
|
"config.show-menu-key.desc": "Phím tắt mở menu (khi không có menu nào khác đang mở).",
|
||||||
|
|
||||||
|
"config.title.options": "Tùy chọn",
|
||||||
|
"config.apply-trash-can-upgrade.name": "Áp dụng nâng cấp thùng rác",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "Khi bạn nâng cấp thùng rác để thu hồi một phần giá trị của các vật phẩm đã bị vứt, liệu nâng cấp đó có áp dụng trong menu spawn item không.",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "Ẩn các danh mục",
|
||||||
|
"config.hide-category.desc": "Xác định liệu có ẩn danh mục '{{name}}' trong giao diện người dùng hay không. Nếu nó bị ẩn, các mục trong danh mục này sẽ không thể truy cập thông qua menu spawn."
|
||||||
|
}
|
47
CJBItemSpawner/i18n/zh.json
Normal file
47
CJBItemSpawner/i18n/zh.json
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
/*********
|
||||||
|
** Sort button
|
||||||
|
*********/
|
||||||
|
"sort.by-name": "按名称排序",
|
||||||
|
"sort.by-price": "出售价格",
|
||||||
|
"sort.by-type": "按类型排序",
|
||||||
|
"sort.by-id": "按ID排序",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Category dropdown
|
||||||
|
*********/
|
||||||
|
"filter.all": "全部",
|
||||||
|
"filter.artisan-and-cooking": "工匠物品与菜肴",
|
||||||
|
"filter.crafting.products": "制造:各种制品",
|
||||||
|
"filter.crafting.resources": "制造:原材料",
|
||||||
|
"filter.decor.furniture": "装饰:家具",
|
||||||
|
"filter.decor.other": "装饰:其他",
|
||||||
|
"filter.equipment-boots": "服饰:鞋",
|
||||||
|
"filter.equipment-clothes": "服饰:衣物",
|
||||||
|
"filter.equipment-hats": "服饰:帽子",
|
||||||
|
"filter.equipment-rings": "装备:戒指",
|
||||||
|
"filter.equipment-tools": "装备:工具",
|
||||||
|
"filter.equipment-weapons": "装备:武器",
|
||||||
|
"filter.farm-animal-drops": "农场:动物掉落物",
|
||||||
|
"filter.farm-crops": "农场:作物",
|
||||||
|
"filter.farm-seeds": "农场:种子",
|
||||||
|
"filter.fish": "鱼类",
|
||||||
|
"filter.minerals-and-artifacts": "矿石与古物",
|
||||||
|
"filter.miscellaneous": "杂项",
|
||||||
|
|
||||||
|
|
||||||
|
/*********
|
||||||
|
** Generic Mod Config Menu UI
|
||||||
|
*********/
|
||||||
|
"config.title.controls": "控制",
|
||||||
|
"config.show-menu-key.name": "打开菜单",
|
||||||
|
"config.show-menu-key.desc": "开启菜单的按键(请确保当前没有其他打开的菜单)。",
|
||||||
|
|
||||||
|
"config.title.options": "选项",
|
||||||
|
"config.apply-trash-can-upgrade.name": "应用垃圾桶升级",
|
||||||
|
"config.apply-trash-can-upgrade.desc": "当您升级垃圾桶以返还一部分被丢弃物品的价值时,该升级是否也适用于物品生成器菜单。",
|
||||||
|
|
||||||
|
"config.title.hide-categories": "隐藏类别",
|
||||||
|
"config.hide-category.desc": "是否在菜单界面中隐藏 “{{name}}” 类别。如果隐藏,则无法通过生成菜单访问该类别中的项目。"
|
||||||
|
}
|
10
CJBItemSpawner/manifest.json
Normal file
10
CJBItemSpawner/manifest.json
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"Name": "CJB Item Spawner",
|
||||||
|
"Author": "CJBok and Pathoschild",
|
||||||
|
"Version": "2.5.3",
|
||||||
|
"Description": "Simple in-game item spawner!",
|
||||||
|
"UniqueID": "CJBok.ItemSpawner",
|
||||||
|
"EntryDll": "CJBItemSpawner.dll",
|
||||||
|
"MinimumApiVersion": "4.1.10",
|
||||||
|
"UpdateKeys": [ "Nexus:93" ]
|
||||||
|
}
|
BIN
SkullCavernElevator/SkullCavernElevator.dll
Normal file
BIN
SkullCavernElevator/SkullCavernElevator.dll
Normal file
Binary file not shown.
BIN
SkullCavernElevator/assets/mine.png
Normal file
BIN
SkullCavernElevator/assets/mine.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
BIN
SkullCavernElevator/assets/mine_light.png
Normal file
BIN
SkullCavernElevator/assets/mine_light.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
BIN
SkullCavernElevator/assets/mine_slime.png
Normal file
BIN
SkullCavernElevator/assets/mine_slime.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
6
SkullCavernElevator/config.json
Normal file
6
SkullCavernElevator/config.json
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"ElevatorStep": 5,
|
||||||
|
"Difficulty": 1.0,
|
||||||
|
"FirstLevelElevatorActive": true,
|
||||||
|
"ElevatorCostPerStep": 0
|
||||||
|
}
|
9
SkullCavernElevator/manifest.json
Normal file
9
SkullCavernElevator/manifest.json
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"Name": "SkullCavernElevator",
|
||||||
|
"Author": "lestoph",
|
||||||
|
"Version": "1.6.2",
|
||||||
|
"Description": "Elevator for the Skull Cavern",
|
||||||
|
"UniqueID": "SkullCavernElevator",
|
||||||
|
"EntryDll": "SkullCavernElevator.dll",
|
||||||
|
"UpdateKeys": [ "Nexus:963" ]
|
||||||
|
}
|
Loading…
Reference in a new issue