Add localization of actor and item type labels
This commit is contained in:
parent
17d0213e62
commit
0568afc32b
4 changed files with 16 additions and 0 deletions
|
@ -99,6 +99,8 @@
|
||||||
"DS4.SpellDuration": "Wirkdauer",
|
"DS4.SpellDuration": "Wirkdauer",
|
||||||
"DS4.SpellCooldownDuration": "Abklingzeit",
|
"DS4.SpellCooldownDuration": "Abklingzeit",
|
||||||
"DS4.SpellScrollPriceGold": "Schriftrollenpreis (Gold)",
|
"DS4.SpellScrollPriceGold": "Schriftrollenpreis (Gold)",
|
||||||
|
"DS4.ActorTypeCharacter": "Charakter",
|
||||||
|
"DS4.ActorTypeCreature": "Kreatur",
|
||||||
"DS4.AttributeBody": "Körper",
|
"DS4.AttributeBody": "Körper",
|
||||||
"DS4.AttributeMobility": "Agilität",
|
"DS4.AttributeMobility": "Agilität",
|
||||||
"DS4.AttributeMind": "Geist",
|
"DS4.AttributeMind": "Geist",
|
||||||
|
|
|
@ -99,6 +99,8 @@
|
||||||
"DS4.SpellDuration": "Duration",
|
"DS4.SpellDuration": "Duration",
|
||||||
"DS4.SpellCooldownDuration": "Cooldown",
|
"DS4.SpellCooldownDuration": "Cooldown",
|
||||||
"DS4.SpellScrollPriceGold": "Scroll Price (Gold)",
|
"DS4.SpellScrollPriceGold": "Scroll Price (Gold)",
|
||||||
|
"DS4.ActorTypeCharacter": "Character",
|
||||||
|
"DS4.ActorTypeCreature": "Creature",
|
||||||
"DS4.AttributeBody": "Body",
|
"DS4.AttributeBody": "Body",
|
||||||
"DS4.AttributeMobility": "Mobility",
|
"DS4.AttributeMobility": "Mobility",
|
||||||
"DS4.AttributeMind": "Mind",
|
"DS4.AttributeMind": "Mind",
|
||||||
|
|
|
@ -120,6 +120,14 @@ export const DS4 = {
|
||||||
electricity: "DS4.SpellCategoryElectricity",
|
electricity: "DS4.SpellCategoryElectricity",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Define the set of actor types
|
||||||
|
*/
|
||||||
|
actorTypes: {
|
||||||
|
character: "DS4.ActorTypeCharacter",
|
||||||
|
creature: "DS4.ActorTypeCreature",
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define the set of attributes an actor has
|
* Define the set of attributes an actor has
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -22,6 +22,10 @@ Hooks.once("init", async function () {
|
||||||
CONFIG.Actor.entityClass = DS4Actor as typeof Actor;
|
CONFIG.Actor.entityClass = DS4Actor as typeof Actor;
|
||||||
CONFIG.Item.entityClass = DS4Item as typeof Item;
|
CONFIG.Item.entityClass = DS4Item as typeof Item;
|
||||||
|
|
||||||
|
// Define localized type labels
|
||||||
|
CONFIG.Actor.typeLabels = DS4.actorTypes;
|
||||||
|
CONFIG.Item.typeLabels = DS4.itemTypes;
|
||||||
|
|
||||||
// Configure Dice
|
// Configure Dice
|
||||||
CONFIG.Dice.types = [Die, DS4Check];
|
CONFIG.Dice.types = [Die, DS4Check];
|
||||||
CONFIG.Dice.terms = {
|
CONFIG.Dice.terms = {
|
||||||
|
|
Loading…
Reference in a new issue