Merge branch 'master' of https://github.com/eduardopato41/compendium-browser into add-other-changes

release
Zoltan the DM 2023-02-10 09:46:46 -08:00
commit 0812d2efcc
8 changed files with 425 additions and 234 deletions

View File

@ -1506,48 +1506,48 @@ class CompendiumBrowser extends Application {
tool: "ITEM.TypeTool", tool: "ITEM.TypeTool",
weapon: "ITEM.TypeWeapon" weapon: "ITEM.TypeWeapon"
}); });
this.addItemFilter("CMPBrowser.general", "Packs", 'matchedPacks', 'select', this.addItemFilter("CMPBrowser.general", "CMPBrowser.ItemsPacks", 'matchedPacks', 'select',
{ {
burglar: "Burglar's Pack", burglar: game.i18n.localize("CMPBrowser.ItemsPacksBurglar"),
diplomat: "Diplomat's Pack", diplomat: game.i18n.localize("CMPBrowser.ItemsPacksDiplomat"),
dungeoneer: "Dungeoneer's Pack", dungeoneer: game.i18n.localize("CMPBrowser.ItemsPacksDungeoneer"),
entertainer: "Entertainer's Pack", entertainer: game.i18n.localize("CMPBrowser.ItemsPacksEntertainer"),
explorer: "Explorer's Pack", explorer: game.i18n.localize("CMPBrowser.ItemsPacksExplorer"),
monsterhunter: "Monster Hunter's Pack", monsterhunter: game.i18n.localize("CMPBrowser.ItemsPacksMonsterHunter"),
priest: "Priest's Pack", priest: game.i18n.localize("CMPBrowser.ItemsPacksPriest"),
scholar: "Scholar's Pack", scholar: game.i18n.localize("CMPBrowser.ItemsPacksScholar"),
}, true }, true
); );
if (CompendiumBrowser.isFoundryV10Plus) { if (CompendiumBrowser.isFoundryV10Plus) {
this.addItemFilter("Game Mechanics", "DND5E.ItemActivationCost", 'system.activation.type', 'select', CONFIG.DND5E.abilityActivationTypes); this.addItemFilter("CMPBrowser.GameMechanics", "DND5E.ItemActivationCost", 'system.activation.type', 'select', CONFIG.DND5E.abilityActivationTypes);
} }
else { else {
this.addItemFilter("Game Mechanics", "DND5E.ItemActivationCost", 'data.activation.type', 'select', CONFIG.DND5E.abilityActivationTypes); this.addItemFilter("CMPBrowser.GameMechanics", "DND5E.ItemActivationCost", 'data.activation.type', 'select', CONFIG.DND5E.abilityActivationTypes);
} }
this.addItemFilter("Game Mechanics", "CMPBrowser.damageType", 'damageTypes', 'select', CONFIG.DND5E.damageTypes); this.addItemFilter("CMPBrowser.GameMechanics", "CMPBrowser.damageType", 'damageTypes', 'select', CONFIG.DND5E.damageTypes);
this.addItemFilter("Game Mechanics", "Uses Resources", 'usesRessources', 'bool'); this.addItemFilter("CMPBrowser.GameMechanics", "CMPBrowser.UsesResources", 'usesRessources', 'bool');
if (CompendiumBrowser.isFoundryV10Plus) { if (CompendiumBrowser.isFoundryV10Plus) {
this.addItemFilter("Item Subtype", "Weapon", 'system.weaponType', 'text', CONFIG.DND5E.weaponTypes); this.addItemFilter(game.i18n.localize("CMPBrowser.ItemSubtype"), game.i18n.localize("DND5E.ItemTypeWeapon"), 'system.weaponType', 'text', CONFIG.DND5E.weaponTypes);
this.addItemFilter("Item Subtype", "Equipment", 'system.armor.type', 'text', CONFIG.DND5E.equipmentTypes); this.addItemFilter(game.i18n.localize("CMPBrowser.ItemSubtype"), game.i18n.localize("DND5E.ItemTypeEquipment"), 'system.armor.type', 'text', CONFIG.DND5E.equipmentTypes);
this.addItemFilter("Item Subtype", "Consumable", 'system.consumableType', 'text', CONFIG.DND5E.consumableTypes); this.addItemFilter(game.i18n.localize("CMPBrowser.ItemSubtype"), game.i18n.localize("DND5E.ItemTypeConsumable"), 'system.consumableType', 'text', CONFIG.DND5E.consumableTypes);
} }
else { else {
this.addItemFilter("Item Subtype", "Weapon", 'data.weaponType', 'text', CONFIG.DND5E.weaponTypes); this.addItemFilter(game.i18n.localize("CMPBrowser.ItemSubtype"), game.i18n.localize("DND5E.ItemTypeWeapon"), 'data.weaponType', 'text', CONFIG.DND5E.weaponTypes);
this.addItemFilter("Item Subtype", "Equipment", 'data.armor.type', 'text', CONFIG.DND5E.equipmentTypes); this.addItemFilter(game.i18n.localize("CMPBrowser.ItemSubtype"), game.i18n.localize("DND5E.ItemTypeEquipment"), 'data.armor.type', 'text', CONFIG.DND5E.equipmentTypes);
this.addItemFilter("Item Subtype", "Consumable", 'data.consumableType', 'text', CONFIG.DND5E.consumableTypes); this.addItemFilter(game.i18n.localize("CMPBrowser.ItemSubtype"), game.i18n.localize("DND5E.ItemTypeConsumable"), 'data.consumableType', 'text', CONFIG.DND5E.consumableTypes);
} }
//0.7.2c: Fix rarity encoding (uses camelcase names) //0.7.2c: Fix rarity encoding (uses camelcase names)
this.addItemFilter("Magic Items", "Rarity", 'data.rarity', 'select', this.addItemFilter(game.i18n.localize("CMPBrowser.MagicItems"), game.i18n.localize("CMPBrowser.Rarity"), 'data.rarity', 'select',
{ {
common: "Common", common: game.i18n.localize("CMPBrowser.RarityCommon"),
uncommon: "Uncommon", uncommon: game.i18n.localize("CMPBrowser.RarityUncommon"),
rare: "Rare", rare: game.i18n.localize("CMPBrowser.RarityRare"),
veryRare: "Very Rare", veryRare: game.i18n.localize("CMPBrowser.RarityVeryRare"),
legendary: "Legendary" legendary: game.i18n.localize("CMPBrowser.RarityLegendary")
}); });
} }
@ -1565,15 +1565,15 @@ class CompendiumBrowser extends Application {
this.addFeatFilter("CMPBrowser.general", "CMPBrowser.class", 'classRequirement', 'select', this.addFeatFilter("CMPBrowser.general", "CMPBrowser.class", 'classRequirement', 'select',
{ {
artificer: "CMPBrowser.artificer", artificer: "CMPBrowser.artificer",
barbarian: "Barbarian", barbarian: "CMPBrowser.barbarian",
bard: "CMPBrowser.bard", bard: "CMPBrowser.bard",
cleric: "CMPBrowser.cleric", cleric: "CMPBrowser.cleric",
druid: "CMPBrowser.druid", druid: "CMPBrowser.druid",
fighter: "Fighter", fighter: "CMPBrowser.fighter",
monk: "Monk", monk: "CMPBrowser.monk",
paladin: "CMPBrowser.paladin", paladin: "CMPBrowser.paladin",
ranger: "CMPBrowser.ranger", ranger: "CMPBrowser.ranger",
rogue: "Rogue", rogue: "CMPBrowser.rogue",
sorcerer: "CMPBrowser.sorcerer", sorcerer: "CMPBrowser.sorcerer",
warlock: "CMPBrowser.warlock", warlock: "CMPBrowser.warlock",
wizard: "CMPBrowser.wizard" wizard: "CMPBrowser.wizard"
@ -1608,13 +1608,13 @@ class CompendiumBrowser extends Application {
} }
if (CompendiumBrowser.isFoundryV10Plus) { if (CompendiumBrowser.isFoundryV10Plus) {
this.addFeatFilter("Game Mechanics", "DND5E.ItemActivationCost", 'system.activation.type', 'select', CONFIG.DND5E.abilityActivationTypes); this.addFeatFilter("CMPBrowser.GameMechanics", "DND5E.ItemActivationCost", 'system.activation.type', 'select', CONFIG.DND5E.abilityActivationTypes);
} }
else { else {
this.addFeatFilter("Game Mechanics", "DND5E.ItemActivationCost", 'data.activation.type', 'select', CONFIG.DND5E.abilityActivationTypes); this.addFeatFilter("CMPBrowser.GameMechanics", "DND5E.ItemActivationCost", 'data.activation.type', 'select', CONFIG.DND5E.abilityActivationTypes);
} }
this.addFeatFilter("Game Mechanics", "CMPBrowser.damageType", 'damageTypes', 'select', CONFIG.DND5E.damageTypes); this.addFeatFilter("CMPBrowser.GameMechanics", "CMPBrowser.damageType", 'damageTypes', 'select', CONFIG.DND5E.damageTypes);
this.addFeatFilter("Game Mechanics", "Uses Resources", 'usesRessources', 'bool'); this.addFeatFilter("CMPBrowser.GameMechanics", "CMPBrowser.UsesResources", 'usesRessources', 'bool');
} }

View File

@ -4,6 +4,8 @@
"CMPBrowser.cr": "Herausforderungsgrad", "CMPBrowser.cr": "Herausforderungsgrad",
"CMPBrowser.generalSettings": "Allgemeine Einstellungen", "CMPBrowser.generalSettings": "Allgemeine Einstellungen",
"CMPBrowser.allowSpellAcc": "Erlaubew Spielern den Zugriff auf den Zauber Browser", "CMPBrowser.allowSpellAcc": "Erlaubew Spielern den Zugriff auf den Zauber Browser",
"CMPBrowser.allowFeatAcc": "Allow Players Access to the feat browser",
"CMPBrowser.allowItemAcc": "Allow Players Access to the item browser",
"CMPBrowser.allowNpcAcc": "Erlaube Spielern den Zugriff auf den NSC Browser", "CMPBrowser.allowNpcAcc": "Erlaube Spielern den Zugriff auf den NSC Browser",
"CMPBrowser.compSettingsSpell": "Gegenstands Kompendium Einstellungen", "CMPBrowser.compSettingsSpell": "Gegenstands Kompendium Einstellungen",
"CMPBrowser.compSettingsNpc": "NSC Kompendium Einstellungen", "CMPBrowser.compSettingsNpc": "NSC Kompendium Einstellungen",
@ -21,13 +23,36 @@
"CMPBrowser.reaction": "Reaktion", "CMPBrowser.reaction": "Reaktion",
"CMPBrowser.spellType": "Zauberart", "CMPBrowser.spellType": "Zauberart",
"CMPBrowser.damageType": "Schadensart", "CMPBrowser.damageType": "Schadensart",
"CMPBrowser.UsesResources": "Uses Resources",
"CMPBrowser.GameMechanics": "Game Mechanics",
"CMPBrowser.ItemSubtype": "Item Subtype",
"CMPBrowser.Rarity": "Rarity",
"CMPBrowser.RarityCommon": "Common",
"CMPBrowser.RarityUncommon": "Uncommon",
"CMPBrowser.RarityRare": "Rare",
"CMPBrowser.RarityVeryRare": "Very Rare",
"CMPBrowser.RarityLegendary": "Legendary",
"CMPBrowser.MagicItems": "Magic Items",
"CMPBrowser.ItemsPacks": "Packs",
"CMPBrowser.ItemsPacksBurglar": "Burglar's Pack",
"CMPBrowser.ItemsPacksDiplomat": "Diplomat's Pack",
"CMPBrowser.ItemsPacksDungeoneer": "Dungeoneer's Pack",
"CMPBrowser.ItemsPacksEntertainer": "Entertainer's Pack",
"CMPBrowser.ItemsPacksExplorer": "Explorer's Pack",
"CMPBrowser.ItemsPacksMonsterHunter": "Monster Hunter's Pack",
"CMPBrowser.ItemsPacksPriest": "Priest's Pack",
"CMPBrowser.ItemsPacksScholar": "Scholar's Pack",
"CMPBrowser.class": "Klasse", "CMPBrowser.class": "Klasse",
"CMPBrowser.artificer": "Artificer", "CMPBrowser.artificer": "Artificer",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard": "Barde", "CMPBrowser.bard": "Barde",
"CMPBrowser.cleric": "Kleriker", "CMPBrowser.cleric": "Kleriker",
"CMPBrowser.druid": "Druide", "CMPBrowser.druid": "Druide",
"CMPBrowser.fighter": "Fighter",
"CMPBrowser.monk": "Monk",
"CMPBrowser.paladin": "Paladin", "CMPBrowser.paladin": "Paladin",
"CMPBrowser.ranger": "Waldläufer", "CMPBrowser.ranger": "Waldläufer",
"CMPBrowser.rogue": "Rogue",
"CMPBrowser.sorcerer": "Zauberer", "CMPBrowser.sorcerer": "Zauberer",
"CMPBrowser.warlock": "Hexenmeister", "CMPBrowser.warlock": "Hexenmeister",
"CMPBrowser.wizard": "Magier", "CMPBrowser.wizard": "Magier",
@ -55,7 +80,16 @@
"CMPBrowser.dmgInteraction": "Schadensinteraktion", "CMPBrowser.dmgInteraction": "Schadensinteraktion",
"CMPBrowser.dmgDealt": "Schaden zugefügt", "CMPBrowser.dmgDealt": "Schaden zugefügt",
"CMPBrowser.size": "Größe", "CMPBrowser.size": "Größe",
"CMPBrowser.spellBrowser": "Zauber Browser", "CMPBrowser.Tab.SpellBrowser": "Zauber Browser",
"CMPBrowser.npcBrowser": "NSC Browser", "CMPBrowser.Tab.FeatBrowser": "Feat Browser",
"CMPBrowser.settings": "Einstellungen" "CMPBrowser.Tab.ItemBrowser": "Item Browser",
"CMPBrowser.Tab.NPCBrowser": "NSC Browser",
"CMPBrowser.Tab.Settings": "Einstellungen",
"CMPBrowser.SETTING.Maxload.NAME": "Maximum load",
"CMPBrowser.SETTING.Maxload.HINT": "Maximum number of spells, feats, items, or NPCs to display; to see more use the filters. This setting is to allow manageing memory and server load.",
"CMPBrowser.LOADING.Message": "Loading...{numLoaded} {itemType}s",
"CMPBrowser.LOADED.Message": "Loaded {numLoaded} {itemType}s",
"CMPBrowser.LOADED.MaxLoaded": "(maximum displayed; to see more, use the filters)",
"CMPBrowser.Filters.ResetFilters": "Reset Filters"
} }

View File

@ -3,10 +3,12 @@
"CMPBrowser.sortBy":"Sort by", "CMPBrowser.sortBy":"Sort by",
"CMPBrowser.cr":"Challenge Rating", "CMPBrowser.cr":"Challenge Rating",
"CMPBrowser.generalSettings":"General Settings", "CMPBrowser.generalSettings":"General Settings",
"CMPBrowser.allowSpellAcc":"Allow Players Access to the spell browser", "CMPBrowser.allowSpellAcc": "Allow Players Access to the spell browser",
"CMPBrowser.allowNpcAcc":"Allow Players Access to the npc browser", "CMPBrowser.allowFeatAcc": "Allow Players Access to the feat browser",
"CMPBrowser.compSettingsSpell":"Item Compendium Settings", "CMPBrowser.allowItemAcc": "Allow Players Access to the item browser",
"CMPBrowser.compSettingsNpc":"NPC Compendium Settings", "CMPBrowser.allowNpcAcc": "Allow Players Access to the npc browser",
"CMPBrowser.compSettingsSpell": "Item Compendium Settings",
"CMPBrowser.compSettingsNpc": "NPC Compendium Settings",
"CMPBrowser.load":"Load", "CMPBrowser.load":"Load",
"CMPBrowser.lvl":"Level", "CMPBrowser.lvl":"Level",
"CMPBrowser.ritual":"Ritual", "CMPBrowser.ritual":"Ritual",
@ -21,22 +23,44 @@
"CMPBrowser.reaction":"Reaction", "CMPBrowser.reaction":"Reaction",
"CMPBrowser.spellType":"Spell Type", "CMPBrowser.spellType":"Spell Type",
"CMPBrowser.damageType":"Damage Type", "CMPBrowser.damageType":"Damage Type",
"CMPBrowser.UsesResources": "Uses Resources",
"CMPBrowser.GameMechanics": "Game Mechanics",
"CMPBrowser.ItemSubtype": "Item Subtype",
"CMPBrowser.Rarity": "Rarity",
"CMPBrowser.RarityCommon": "Common",
"CMPBrowser.RarityUncommon": "Uncommon",
"CMPBrowser.RarityRare": "Rare",
"CMPBrowser.RarityVeryRare": "Very Rare",
"CMPBrowser.RarityLegendary": "Legendary",
"CMPBrowser.MagicItems": "Magic Items",
"CMPBrowser.ItemsPacks": "Packs",
"CMPBrowser.ItemsPacksBurglar": "Burglar's Pack",
"CMPBrowser.ItemsPacksDiplomat": "Diplomat's Pack",
"CMPBrowser.ItemsPacksDungeoneer": "Dungeoneer's Pack",
"CMPBrowser.ItemsPacksEntertainer": "Entertainer's Pack",
"CMPBrowser.ItemsPacksExplorer": "Explorer's Pack",
"CMPBrowser.ItemsPacksMonsterHunter": "Monster Hunter's Pack",
"CMPBrowser.ItemsPacksPriest": "Priest's Pack",
"CMPBrowser.ItemsPacksScholar": "Scholar's Pack",
"CMPBrowser.class":"Class", "CMPBrowser.class":"Class",
"CMPBrowser.subclass":"Subclass", "CMPBrowser.subclass":"Subclass",
"CMPBrowser.artificer":"Artificer", "CMPBrowser.artificer": "Artificer",
"CMPBrowser.bard":"Bard", "CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.cleric":"Cleric", "CMPBrowser.bard": "Bard",
"CMPBrowser.druid":"Druid", "CMPBrowser.cleric": "Cleric",
"CMPBrowser.paladin":"Paladin", "CMPBrowser.druid": "Druid",
"CMPBrowser.ranger":"Ranger", "CMPBrowser.fighter": "Fighter",
"CMPBrowser.sorcerer":"Sorcerer", "CMPBrowser.monk": "Monk",
"CMPBrowser.warlock":"Warlock", "CMPBrowser.paladin": "Paladin",
"CMPBrowser.wizard":"Wizard", "CMPBrowser.ranger": "Ranger",
"CMPBrowser.rogue": "Rogue",
"CMPBrowser.sorcerer": "Sorcerer",
"CMPBrowser.warlock": "Warlock",
"CMPBrowser.wizard": "Wizard",
"CMPBrowser.general":"General", "CMPBrowser.general":"General",
"CMPBrowser.overall":"Overall Type", "CMPBrowser.overall":"Overall Type",
"CMPBrowser.featureType":"Feature Type", "CMPBrowser.featureType":"Feature Type",
"CMPBrowser.subfeature":"Subfeature Type", "CMPBrowser.subfeature":"Subfeature Type",
"CMPBrowser.feature":"Feature",
"CMPBrowser.components":"Components", "CMPBrowser.components":"Components",
"CMPBrowser.hasSpells":"Has Spells", "CMPBrowser.hasSpells":"Has Spells",
"CMPBrowser.hasLegAct":"Has Legendary Actions", "CMPBrowser.hasLegAct":"Has Legendary Actions",
@ -60,16 +84,16 @@
"CMPBrowser.dmgInteraction": "Damage Interaction", "CMPBrowser.dmgInteraction": "Damage Interaction",
"CMPBrowser.dmgDealt": "Damage Dealt", "CMPBrowser.dmgDealt": "Damage Dealt",
"CMPBrowser.size": "Size", "CMPBrowser.size": "Size",
"CMPBrowser.Tab.SpellBrowser":"Spell Browser", "CMPBrowser.Tab.SpellBrowser": "Spell Browser",
"CMPBrowser.Tab.FeatBrowser": "Feat Browser", "CMPBrowser.Tab.FeatBrowser": "Feat Browser",
"CMPBrowser.Tab.ItemBrowser": "Item Browser", "CMPBrowser.Tab.ItemBrowser": "Item Browser",
"CMPBrowser.Tab.NPCBrowser":"NPC Browser", "CMPBrowser.Tab.NPCBrowser": "NPC Browser",
"CMPBrowser.Tab.Settings":"Settings", "CMPBrowser.Tab.Settings": "Settings",
"CMPBrowser.SETTING.Maxload.NAME" : "Maximum load", "CMPBrowser.SETTING.Maxload.NAME": "Maximum load",
"CMPBrowser.SETTING.Maxload.HINT" : "Maximum number of spells, feats, items, or NPCs to display; to see more use the filters. This setting is to allow manageing memory and server load.", "CMPBrowser.SETTING.Maxload.HINT": "Maximum number of spells, feats, items, or NPCs to display; to see more use the filters. This setting is to allow manageing memory and server load.",
"CMPBrowser.LOADING.Message" : "Loading...{numLoaded} {itemType}s", "CMPBrowser.LOADING.Message": "Loading...{numLoaded} {itemType}s",
"CMPBrowser.LOADED.Message": "Loaded {numLoaded} {itemType}s", "CMPBrowser.LOADED.Message": "Loaded {numLoaded} {itemType}s",
"CMPBrowser.LOADED.MaxLoaded" : "(maximum displayed; to see more, use the filters)", "CMPBrowser.LOADED.MaxLoaded": "(maximum displayed; to see more, use the filters)",
"CMPBrowser.Filters.ResetFilters" : "Reset Filters" "CMPBrowser.Filters.ResetFilters": "Reset Filters"
} }

View File

@ -4,6 +4,8 @@
"CMPBrowser.cr": "Valor de Desafío", "CMPBrowser.cr": "Valor de Desafío",
"CMPBrowser.generalSettings": "Opciones generales", "CMPBrowser.generalSettings": "Opciones generales",
"CMPBrowser.allowSpellAcc": "Permitir a los jugadores el acceso al navegador de conjuros", "CMPBrowser.allowSpellAcc": "Permitir a los jugadores el acceso al navegador de conjuros",
"CMPBrowser.allowFeatAcc": "Allow Players Access to the feat browser",
"CMPBrowser.allowItemAcc": "Allow Players Access to the item browser",
"CMPBrowser.allowNpcAcc": "Permitir a los jugadores el acceso al navegador de NPCs", "CMPBrowser.allowNpcAcc": "Permitir a los jugadores el acceso al navegador de NPCs",
"CMPBrowser.compSettingsSpell": "Opciones del compendio de objetos", "CMPBrowser.compSettingsSpell": "Opciones del compendio de objetos",
"CMPBrowser.compSettingsNpc": "Opciones del compendio de NPCs", "CMPBrowser.compSettingsNpc": "Opciones del compendio de NPCs",
@ -21,8 +23,28 @@
"CMPBrowser.reaction": "Reacción", "CMPBrowser.reaction": "Reacción",
"CMPBrowser.spellType": "Tipo de conjuro", "CMPBrowser.spellType": "Tipo de conjuro",
"CMPBrowser.damageType": "Tipo de daño", "CMPBrowser.damageType": "Tipo de daño",
"CMPBrowser.UsesResources": "Uses Resources",
"CMPBrowser.GameMechanics": "Game Mechanics",
"CMPBrowser.ItemSubtype": "Item Subtype",
"CMPBrowser.Rarity": "Rarity",
"CMPBrowser.RarityCommon": "Common",
"CMPBrowser.RarityUncommon": "Uncommon",
"CMPBrowser.RarityRare": "Rare",
"CMPBrowser.RarityVeryRare": "Very Rare",
"CMPBrowser.RarityLegendary": "Legendary",
"CMPBrowser.MagicItems": "Magic Items",
"CMPBrowser.ItemsPacks": "Packs",
"CMPBrowser.ItemsPacksBurglar": "Burglar's Pack",
"CMPBrowser.ItemsPacksDiplomat": "Diplomat's Pack",
"CMPBrowser.ItemsPacksDungeoneer": "Dungeoneer's Pack",
"CMPBrowser.ItemsPacksEntertainer": "Entertainer's Pack",
"CMPBrowser.ItemsPacksExplorer": "Explorer's Pack",
"CMPBrowser.ItemsPacksMonsterHunter": "Monster Hunter's Pack",
"CMPBrowser.ItemsPacksPriest": "Priest's Pack",
"CMPBrowser.ItemsPacksScholar": "Scholar's Pack",
"CMPBrowser.class": "Clase", "CMPBrowser.class": "Clase",
"CMPBrowser.artificer": "Artificiero", "CMPBrowser.artificer": "Artificiero",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard": "Bardo", "CMPBrowser.bard": "Bardo",
"CMPBrowser.cleric": "Clérigo", "CMPBrowser.cleric": "Clérigo",
"CMPBrowser.druid": "Druida", "CMPBrowser.druid": "Druida",
@ -58,9 +80,16 @@
"CMPBrowser.dmgInteraction": "Interacción con el daño", "CMPBrowser.dmgInteraction": "Interacción con el daño",
"CMPBrowser.dmgDealt": "Daño infligido", "CMPBrowser.dmgDealt": "Daño infligido",
"CMPBrowser.size": "Tamaño", "CMPBrowser.size": "Tamaño",
"CMPBrowser.spellBrowser": "Conjuros", "CMPBrowser.Tab.SpellBrowser": "Conjuros",
"CMPBrowser.npcBrowser": "NPCs", "CMPBrowser.Tab.FeatBrowser": "Rasgos de clase",
"CMPBrowser.featBrowser": "Rasgos de clase", "CMPBrowser.Tab.ItemBrowser": "Objetos",
"CMPBrowser.itemBrowser": "Objetos", "CMPBrowser.Tab.NPCBrowser": "NPCs",
"CMPBrowser.settings": "Opciones" "CMPBrowser.Tab.Settings": "Opciones",
"CMPBrowser.SETTING.Maxload.NAME": "Maximum load",
"CMPBrowser.SETTING.Maxload.HINT": "Maximum number of spells, feats, items, or NPCs to display; to see more use the filters. This setting is to allow manageing memory and server load.",
"CMPBrowser.LOADING.Message": "Loading...{numLoaded} {itemType}s",
"CMPBrowser.LOADED.Message": "Loaded {numLoaded} {itemType}s",
"CMPBrowser.LOADED.MaxLoaded": "(maximum displayed; to see more, use the filters)",
"CMPBrowser.Filters.ResetFilters": "Reset Filters"
} }

View File

@ -1,9 +1,11 @@
{ {
"CMPBrowser.compendiumBrowser":"Recherche dans les Compendium", "CMPBrowser.compendiumBrowser":"Recherche dans les Compendium",
"CMPBrowser.sortBy":"Trié par", "CMPBrowser.sortBy":"Trié par",
"CMPBrowser.cr":"Niveau de la rencontre", "CMPBrowser.cr":"Niveau de la rencontre",
"CMPBrowser.generalSettings":"Paramètres généraux", "CMPBrowser.generalSettings":"Paramètres généraux",
"CMPBrowser.allowSpellAcc":"Autoriser les joueurs à accéder aux listes de sorts", "CMPBrowser.allowSpellAcc":"Autoriser les joueurs à accéder aux listes de sorts",
"CMPBrowser.allowFeatAcc": "Allow Players Access to the feat browser",
"CMPBrowser.allowItemAcc": "Allow Players Access to the item browser",
"CMPBrowser.allowNpcAcc":"Autoriser les joueurs à accéder aux listes de PNJ", "CMPBrowser.allowNpcAcc":"Autoriser les joueurs à accéder aux listes de PNJ",
"CMPBrowser.compSettingsSpell":"Paramètres de compendium de sorts", "CMPBrowser.compSettingsSpell":"Paramètres de compendium de sorts",
"CMPBrowser.compSettingsNpc":"Paramètres de compendium de PNJ", "CMPBrowser.compSettingsNpc":"Paramètres de compendium de PNJ",
@ -21,12 +23,36 @@
"CMPBrowser.reaction":"Réaction", "CMPBrowser.reaction":"Réaction",
"CMPBrowser.spellType":"Type de sort", "CMPBrowser.spellType":"Type de sort",
"CMPBrowser.damageType":"Type de dégâts", "CMPBrowser.damageType":"Type de dégâts",
"CMPBrowser.UsesResources": "Uses Resources",
"CMPBrowser.GameMechanics": "Game Mechanics",
"CMPBrowser.ItemSubtype": "Item Subtype",
"CMPBrowser.Rarity": "Rarity",
"CMPBrowser.RarityCommon": "Common",
"CMPBrowser.RarityUncommon": "Uncommon",
"CMPBrowser.RarityRare": "Rare",
"CMPBrowser.RarityVeryRare": "Very Rare",
"CMPBrowser.RarityLegendary": "Legendary",
"CMPBrowser.MagicItems": "Magic Items",
"CMPBrowser.ItemsPacks": "Packs",
"CMPBrowser.ItemsPacksBurglar": "Burglar's Pack",
"CMPBrowser.ItemsPacksDiplomat": "Diplomat's Pack",
"CMPBrowser.ItemsPacksDungeoneer": "Dungeoneer's Pack",
"CMPBrowser.ItemsPacksEntertainer": "Entertainer's Pack",
"CMPBrowser.ItemsPacksExplorer": "Explorer's Pack",
"CMPBrowser.ItemsPacksMonsterHunter": "Monster Hunter's Pack",
"CMPBrowser.ItemsPacksPriest": "Priest's Pack",
"CMPBrowser.ItemsPacksScholar": "Scholar's Pack",
"CMPBrowser.class":"Classe", "CMPBrowser.class":"Classe",
"CMPBrowser.artificer": "Artificer",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard":"Barde", "CMPBrowser.bard":"Barde",
"CMPBrowser.cleric":"Clerc", "CMPBrowser.cleric":"Clerc",
"CMPBrowser.druid":"Druide", "CMPBrowser.druid":"Druide",
"CMPBrowser.fighter": "Fighter",
"CMPBrowser.monk": "Monk",
"CMPBrowser.paladin":"Paladin", "CMPBrowser.paladin":"Paladin",
"CMPBrowser.ranger":"Rôdeur", "CMPBrowser.ranger":"Rôdeur",
"CMPBrowser.rogue": "Rogue",
"CMPBrowser.sorcerer":"Sorcier", "CMPBrowser.sorcerer":"Sorcier",
"CMPBrowser.warlock":"Ensorceleur", "CMPBrowser.warlock":"Ensorceleur",
"CMPBrowser.wizard":"Magicien", "CMPBrowser.wizard":"Magicien",
@ -54,7 +80,16 @@
"CMPBrowser.dmgInteraction": "Spécificité des dégâts", "CMPBrowser.dmgInteraction": "Spécificité des dégâts",
"CMPBrowser.dmgDealt": "Type de dégats", "CMPBrowser.dmgDealt": "Type de dégats",
"CMPBrowser.size": "Taille", "CMPBrowser.size": "Taille",
"CMPBrowser.spellBrowser":"Recherche de sorts", "CMPBrowser.Tab.SpellBrowser": "Recherche de sorts",
"CMPBrowser.npcBrowser":"Recherche de PNJ", "CMPBrowser.Tab.FeatBrowser": "Feat Browser",
"CMPBrowser.settings":"Paramétrages" "CMPBrowser.Tab.ItemBrowser": "Item Browser",
} "CMPBrowser.Tab.NPCBrowser": "Recherche de PNJ",
"CMPBrowser.Tab.Settings": "Paramétrages",
"CMPBrowser.SETTING.Maxload.NAME": "Maximum load",
"CMPBrowser.SETTING.Maxload.HINT": "Maximum number of spells, feats, items, or NPCs to display; to see more use the filters. This setting is to allow manageing memory and server load.",
"CMPBrowser.LOADING.Message": "Loading...{numLoaded} {itemType}s",
"CMPBrowser.LOADED.Message": "Loaded {numLoaded} {itemType}s",
"CMPBrowser.LOADED.MaxLoaded": "(maximum displayed; to see more, use the filters)",
"CMPBrowser.Filters.ResetFilters": "Reset Filters"
}

View File

@ -4,6 +4,8 @@
"CMPBrowser.cr":"難易度", "CMPBrowser.cr":"難易度",
"CMPBrowser.generalSettings":"一般設定", "CMPBrowser.generalSettings":"一般設定",
"CMPBrowser.allowSpellAcc":"プレイヤーに呪文辞典の使用を許可する。", "CMPBrowser.allowSpellAcc":"プレイヤーに呪文辞典の使用を許可する。",
"CMPBrowser.allowFeatAcc": "Allow Players Access to the feat browser",
"CMPBrowser.allowItemAcc": "Allow Players Access to the item browser",
"CMPBrowser.allowNpcAcc":"プレイヤーにNPC辞典の使用を許可する。", "CMPBrowser.allowNpcAcc":"プレイヤーにNPC辞典の使用を許可する。",
"CMPBrowser.compSettingsSpell":"呪文辞典設定", "CMPBrowser.compSettingsSpell":"呪文辞典設定",
"CMPBrowser.compSettingsNpc":"NPC辞典設定", "CMPBrowser.compSettingsNpc":"NPC辞典設定",
@ -21,12 +23,36 @@
"CMPBrowser.reaction":"リアクション", "CMPBrowser.reaction":"リアクション",
"CMPBrowser.spellType":"呪文種別", "CMPBrowser.spellType":"呪文種別",
"CMPBrowser.damageType":"ダメージ種別", "CMPBrowser.damageType":"ダメージ種別",
"CMPBrowser.UsesResources": "Uses Resources",
"CMPBrowser.GameMechanics": "Game Mechanics",
"CMPBrowser.ItemSubtype": "Item Subtype",
"CMPBrowser.Rarity": "Rarity",
"CMPBrowser.RarityCommon": "Common",
"CMPBrowser.RarityUncommon": "Uncommon",
"CMPBrowser.RarityRare": "Rare",
"CMPBrowser.RarityVeryRare": "Very Rare",
"CMPBrowser.RarityLegendary": "Legendary",
"CMPBrowser.MagicItems": "Magic Items",
"CMPBrowser.ItemsPacks": "Packs",
"CMPBrowser.ItemsPacksBurglar": "Burglar's Pack",
"CMPBrowser.ItemsPacksDiplomat": "Diplomat's Pack",
"CMPBrowser.ItemsPacksDungeoneer": "Dungeoneer's Pack",
"CMPBrowser.ItemsPacksEntertainer": "Entertainer's Pack",
"CMPBrowser.ItemsPacksExplorer": "Explorer's Pack",
"CMPBrowser.ItemsPacksMonsterHunter": "Monster Hunter's Pack",
"CMPBrowser.ItemsPacksPriest": "Priest's Pack",
"CMPBrowser.ItemsPacksScholar": "Scholar's Pack",
"CMPBrowser.class":"クラス", "CMPBrowser.class":"クラス",
"CMPBrowser.artificer": "Artificer",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard":"バード", "CMPBrowser.bard":"バード",
"CMPBrowser.cleric":"クレリック", "CMPBrowser.cleric":"クレリック",
"CMPBrowser.druid":"ドルイド", "CMPBrowser.druid":"ドルイド",
"CMPBrowser.fighter": "Fighter",
"CMPBrowser.monk": "Monk",
"CMPBrowser.paladin":"パラディン", "CMPBrowser.paladin":"パラディン",
"CMPBrowser.ranger":"レンジャー", "CMPBrowser.ranger":"レンジャー",
"CMPBrowser.rogue": "Rogue",
"CMPBrowser.sorcerer":"ソーサラー", "CMPBrowser.sorcerer":"ソーサラー",
"CMPBrowser.warlock":"ウォーロック", "CMPBrowser.warlock":"ウォーロック",
"CMPBrowser.wizard":"ウィザード", "CMPBrowser.wizard":"ウィザード",
@ -54,7 +80,16 @@
"CMPBrowser.dmgInteraction": "ダメージ関連", "CMPBrowser.dmgInteraction": "ダメージ関連",
"CMPBrowser.dmgDealt": "与えるダメージ種別", "CMPBrowser.dmgDealt": "与えるダメージ種別",
"CMPBrowser.size": "サイズ", "CMPBrowser.size": "サイズ",
"CMPBrowser.spellBrowser":"呪文ブラウザ", "CMPBrowser.Tab.SpellBrowser":"呪文ブラウザ",
"CMPBrowser.npcBrowser":"NPCブラウザ", "CMPBrowser.Tab.FeatBrowser": "Feat Browser",
"CMPBrowser.settings":"設定" "CMPBrowser.Tab.ItemBrowser": "Item Browser",
"CMPBrowser.Tab.NPCBrowser":"NPCブラウザ",
"CMPBrowser.Tab.Settings":"設定",
"CMPBrowser.SETTING.Maxload.NAME": "Maximum load",
"CMPBrowser.SETTING.Maxload.HINT": "Maximum number of spells, feats, items, or NPCs to display; to see more use the filters. This setting is to allow manageing memory and server load.",
"CMPBrowser.LOADING.Message": "Loading...{numLoaded} {itemType}s",
"CMPBrowser.LOADED.Message": "Loaded {numLoaded} {itemType}s",
"CMPBrowser.LOADED.MaxLoaded": "(maximum displayed; to see more, use the filters)",
"CMPBrowser.Filters.ResetFilters": "Reset Filters"
} }

View File

@ -1,42 +1,67 @@
{ {
"CMPBrowser.compendiumBrowser":"Navegador de Compêndio", "CMPBrowser.compendiumBrowser": "Navegador de Compêndio",
"CMPBrowser.sortBy":"Classificar por", "CMPBrowser.sortBy": "Classificar por",
"CMPBrowser.cr":"Nivel de Desafio", "CMPBrowser.cr": "Nivel de Desafio",
"CMPBrowser.generalSettings":"Configurações Gerais", "CMPBrowser.generalSettings": "Configurações Gerais",
"CMPBrowser.allowSpellAcc":"Permite o acesso dos jogadores ao navegador de magias", "CMPBrowser.allowSpellAcc": "Permite o acesso dos jogadores ao navegador de Magias",
"CMPBrowser.allowNpcAcc":"Permite o acesso dos jogadores ao navegador de NPCs", "CMPBrowser.allowFeatAcc": "Permite o acesso dos jogadores ao navegador de Características",
"CMPBrowser.compSettingsSpell":"Configuração de Compêndio de Itens", "CMPBrowser.allowItemAcc": "Permite o acesso dos jogadores ao navegador de Itens",
"CMPBrowser.compSettingsNpc":"Configuração de Compêndio de NPCs", "CMPBrowser.allowNpcAcc": "Permite o acesso dos jogadores ao navegador de NPCs",
"CMPBrowser.load":"Carregar", "CMPBrowser.compSettingsSpell": "Configuração de Compêndio de Itens",
"CMPBrowser.lvl":"Nivel", "CMPBrowser.compSettingsNpc": "Configuração de Compêndio de NPCs",
"CMPBrowser.ritual":"Ritual", "CMPBrowser.load": "Carregar",
"CMPBrowser.concentration":"Concentraçãon", "CMPBrowser.lvl": "Nivel",
"CMPBrowser.verbal":"Verbal", "CMPBrowser.ritual": "Ritual",
"CMPBrowser.somatic":"Somático", "CMPBrowser.concentration": "Concentração",
"CMPBrowser.material":"Material", "CMPBrowser.verbal": "Verbal",
"CMPBrowser.cantip":"Truque", "CMPBrowser.somatic": "Somático",
"CMPBrowser.school":"Escola", "CMPBrowser.material": "Material",
"CMPBrowser.castingTime":"Custo de Ativação", "CMPBrowser.cantip": "Truque",
"CMPBrowser.bonusAction":"Ação bonus", "CMPBrowser.school": "Escola",
"CMPBrowser.reaction":"Reação", "CMPBrowser.castingTime": "Custo de Ativação",
"CMPBrowser.spellType":"Tipo da Magia", "CMPBrowser.bonusAction": "Ação bonus",
"CMPBrowser.damageType":"Tipo de Dano", "CMPBrowser.reaction": "Reação",
"CMPBrowser.class":"Classe", "CMPBrowser.spellType": "Tipo da Magia",
"CMPBrowser.artificer":"Artífice", "CMPBrowser.damageType": "Tipo de Dano",
"CMPBrowser.bard":"Bardo", "CMPBrowser.UsesResources": "Usa Recursos",
"CMPBrowser.cleric":"Clerigo", "CMPBrowser.GameMechanics": "Mecânicas do Jogo",
"CMPBrowser.druid":"Druida", "CMPBrowser.ItemSubtype": "Tipo do Item",
"CMPBrowser.paladin":"Paladino", "CMPBrowser.Rarity": "Raridade",
"CMPBrowser.ranger":"Guardião", "CMPBrowser.RarityCommon": "Comum",
"CMPBrowser.sorcerer":"Geiticeiro", "CMPBrowser.RarityUncommon": "Incomum",
"CMPBrowser.warlock":"Bruxo", "CMPBrowser.RarityRare": "Raro",
"CMPBrowser.wizard":"Mago", "CMPBrowser.RarityVeryRare": "Muito Raro",
"CMPBrowser.general":"Geral", "CMPBrowser.RarityLegendary": "Lendário",
"CMPBrowser.components":"Componentes", "CMPBrowser.MagicItems": "Itens Mágicos",
"CMPBrowser.hasSpells":"Tem Magias", "CMPBrowser.ItemsPacks": "Kits de Equipamentos",
"CMPBrowser.hasLegAct":"Tem Ações Lendárias", "CMPBrowser.ItemsPacksBurglar": "Kit de Assaltante",
"CMPBrowser.hasLegRes":"Tem Resistência Lendária", "CMPBrowser.ItemsPacksDiplomat": "Kit de Diplomata",
"CMPBrowser.creatureType":"Tipo de Criatura", "CMPBrowser.ItemsPacksDungeoneer": "Kit de Explorador",
"CMPBrowser.ItemsPacksEntertainer": "Kit de Artista",
"CMPBrowser.ItemsPacksExplorer": "Kit de Aventureiro",
"CMPBrowser.ItemsPacksMonsterHunter": "Monster Hunter's Pack",
"CMPBrowser.ItemsPacksPriest": "Kit de Sacerdote",
"CMPBrowser.ItemsPacksScholar": "Kit de Erudito",
"CMPBrowser.class": "Classe",
"CMPBrowser.artificer": "Artífice",
"CMPBrowser.barbarian": "Bárbaro",
"CMPBrowser.bard": "Bardo",
"CMPBrowser.cleric": "Clérigo",
"CMPBrowser.druid": "Druida",
"CMPBrowser.fighter": "Guerreiro",
"CMPBrowser.monk": "Monge",
"CMPBrowser.paladin": "Paladino",
"CMPBrowser.ranger": "Guardião",
"CMPBrowser.rogue": "Ladino",
"CMPBrowser.sorcerer": "Feiticeiro",
"CMPBrowser.warlock": "Bruxo",
"CMPBrowser.wizard": "Mago",
"CMPBrowser.general": "Geral",
"CMPBrowser.components": "Componentes",
"CMPBrowser.hasSpells": "Tem Magias",
"CMPBrowser.hasLegAct": "Tem Ações Lendárias",
"CMPBrowser.hasLegRes": "Tem Resistência Lendária",
"CMPBrowser.creatureType": "Tipo de Criatura",
"CMPBrowser.aberration": "Aberração", "CMPBrowser.aberration": "Aberração",
"CMPBrowser.beast": "Besta", "CMPBrowser.beast": "Besta",
"CMPBrowser.celestial": "Celestial", "CMPBrowser.celestial": "Celestial",
@ -45,7 +70,7 @@
"CMPBrowser.elemental": "Elemental", "CMPBrowser.elemental": "Elemental",
"CMPBrowser.fey": "Feérico", "CMPBrowser.fey": "Feérico",
"CMPBrowser.fiend": "Ínfero", "CMPBrowser.fiend": "Ínfero",
"CMPBrowser.giant": "Giante", "CMPBrowser.giant": "Gigante",
"CMPBrowser.humanoid": "Humanoide", "CMPBrowser.humanoid": "Humanoide",
"CMPBrowser.monstrosity": "Monstruosidade", "CMPBrowser.monstrosity": "Monstruosidade",
"CMPBrowser.ooze": "Gosma", "CMPBrowser.ooze": "Gosma",
@ -55,7 +80,16 @@
"CMPBrowser.dmgInteraction": "Interação do Dano", "CMPBrowser.dmgInteraction": "Interação do Dano",
"CMPBrowser.dmgDealt": "Dano Causado", "CMPBrowser.dmgDealt": "Dano Causado",
"CMPBrowser.size": "Tamanho", "CMPBrowser.size": "Tamanho",
"CMPBrowser.spellBrowser":"Navegador de Magias", "CMPBrowser.Tab.SpellBrowser": "Navegador de Magias",
"CMPBrowser.npcBrowser":"Navegador de NPC", "CMPBrowser.Tab.FeatBrowser": "Navegador de Características",
"CMPBrowser.settings":"Configurações" "CMPBrowser.Tab.ItemBrowser": "Navegador de Itens",
"CMPBrowser.Tab.NPCBrowser": "Navegador de NPC",
"CMPBrowser.Tab.Settings": "Configurações",
"CMPBrowser.SETTING.Maxload.NAME": "Capacidade máxima",
"CMPBrowser.SETTING.Maxload.HINT": "Número máximo de magias, características, itens ou NPCs a serem exibidos; para ver mais use os filtros. Essa configuração é usada para gerenciar memória e capacidade do servidor.",
"CMPBrowser.LOADING.Message": "Carregando...{numLoaded} {itemType}s",
"CMPBrowser.LOADED.Message": "{numLoaded} {itemType}s carregados(as)",
"CMPBrowser.LOADED.MaxLoaded": "(máximo exibido; para ver mais, use os filtros)",
"CMPBrowser.Filters.ResetFilters": "Redefinir Filtros"
} }

View File

@ -7,11 +7,11 @@
</label> </label>
<label> <label>
<input data-setting="allow-feat-browser" type="checkbox" {{#if settings.allowFeatBrowser}}checked{{/if}}> <input data-setting="allow-feat-browser" type="checkbox" {{#if settings.allowFeatBrowser}}checked{{/if}}>
<h4>Allow Players Access to the feat browser</h4> <h4>{{localize "CMPBrowser.allowFeatAcc"}}</h4>
</label> </label>
<label> <label>
<input data-setting="allow-item-browser" type="checkbox" {{#if settings.allowItemBrowser}}checked{{/if}}> <input data-setting="allow-item-browser" type="checkbox" {{#if settings.allowItemBrowser}}checked{{/if}}>
<h4>Allow Players Access to the item browser</h4> <h4>{{localize "CMPBrowser.allowItemAcc"}}</h4>
</label> </label>
<label> <label>
<input data-setting="allow-npc-browser" type="checkbox" {{#if settings.allowNpcBrowser}}checked{{/if}}> <input data-setting="allow-npc-browser" type="checkbox" {{#if settings.allowNpcBrowser}}checked{{/if}}>