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

View File

@ -4,6 +4,8 @@
"CMPBrowser.cr": "Herausforderungsgrad",
"CMPBrowser.generalSettings": "Allgemeine Einstellungen",
"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.compSettingsSpell": "Gegenstands Kompendium Einstellungen",
"CMPBrowser.compSettingsNpc": "NSC Kompendium Einstellungen",
@ -21,13 +23,36 @@
"CMPBrowser.reaction": "Reaktion",
"CMPBrowser.spellType": "Zauberart",
"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.artificer": "Artificer",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard": "Barde",
"CMPBrowser.cleric": "Kleriker",
"CMPBrowser.druid": "Druide",
"CMPBrowser.fighter": "Fighter",
"CMPBrowser.monk": "Monk",
"CMPBrowser.paladin": "Paladin",
"CMPBrowser.ranger": "Waldläufer",
"CMPBrowser.rogue": "Rogue",
"CMPBrowser.sorcerer": "Zauberer",
"CMPBrowser.warlock": "Hexenmeister",
"CMPBrowser.wizard": "Magier",
@ -55,7 +80,16 @@
"CMPBrowser.dmgInteraction": "Schadensinteraktion",
"CMPBrowser.dmgDealt": "Schaden zugefügt",
"CMPBrowser.size": "Größe",
"CMPBrowser.spellBrowser": "Zauber Browser",
"CMPBrowser.npcBrowser": "NSC Browser",
"CMPBrowser.settings": "Einstellungen"
"CMPBrowser.Tab.SpellBrowser": "Zauber Browser",
"CMPBrowser.Tab.FeatBrowser": "Feat Browser",
"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

@ -4,6 +4,8 @@
"CMPBrowser.cr":"Challenge Rating",
"CMPBrowser.generalSettings":"General Settings",
"CMPBrowser.allowSpellAcc": "Allow Players Access to the spell browser",
"CMPBrowser.allowFeatAcc": "Allow Players Access to the feat browser",
"CMPBrowser.allowItemAcc": "Allow Players Access to the item browser",
"CMPBrowser.allowNpcAcc": "Allow Players Access to the npc browser",
"CMPBrowser.compSettingsSpell": "Item Compendium Settings",
"CMPBrowser.compSettingsNpc": "NPC Compendium Settings",
@ -21,14 +23,37 @@
"CMPBrowser.reaction":"Reaction",
"CMPBrowser.spellType":"Spell 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.subclass":"Subclass",
"CMPBrowser.artificer": "Artificer",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard": "Bard",
"CMPBrowser.cleric": "Cleric",
"CMPBrowser.druid": "Druid",
"CMPBrowser.fighter": "Fighter",
"CMPBrowser.monk": "Monk",
"CMPBrowser.paladin": "Paladin",
"CMPBrowser.ranger": "Ranger",
"CMPBrowser.rogue": "Rogue",
"CMPBrowser.sorcerer": "Sorcerer",
"CMPBrowser.warlock": "Warlock",
"CMPBrowser.wizard": "Wizard",
@ -36,7 +61,6 @@
"CMPBrowser.overall":"Overall Type",
"CMPBrowser.featureType":"Feature Type",
"CMPBrowser.subfeature":"Subfeature Type",
"CMPBrowser.feature":"Feature",
"CMPBrowser.components":"Components",
"CMPBrowser.hasSpells":"Has Spells",
"CMPBrowser.hasLegAct":"Has Legendary Actions",

View File

@ -4,6 +4,8 @@
"CMPBrowser.cr": "Valor de Desafío",
"CMPBrowser.generalSettings": "Opciones generales",
"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.compSettingsSpell": "Opciones del compendio de objetos",
"CMPBrowser.compSettingsNpc": "Opciones del compendio de NPCs",
@ -21,8 +23,28 @@
"CMPBrowser.reaction": "Reacción",
"CMPBrowser.spellType": "Tipo de conjuro",
"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.artificer": "Artificiero",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard": "Bardo",
"CMPBrowser.cleric": "Clérigo",
"CMPBrowser.druid": "Druida",
@ -58,9 +80,16 @@
"CMPBrowser.dmgInteraction": "Interacción con el daño",
"CMPBrowser.dmgDealt": "Daño infligido",
"CMPBrowser.size": "Tamaño",
"CMPBrowser.spellBrowser": "Conjuros",
"CMPBrowser.npcBrowser": "NPCs",
"CMPBrowser.featBrowser": "Rasgos de clase",
"CMPBrowser.itemBrowser": "Objetos",
"CMPBrowser.settings": "Opciones"
"CMPBrowser.Tab.SpellBrowser": "Conjuros",
"CMPBrowser.Tab.FeatBrowser": "Rasgos de clase",
"CMPBrowser.Tab.ItemBrowser": "Objetos",
"CMPBrowser.Tab.NPCBrowser": "NPCs",
"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

@ -4,6 +4,8 @@
"CMPBrowser.cr":"Niveau de la rencontre",
"CMPBrowser.generalSettings":"Paramètres généraux",
"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.compSettingsSpell":"Paramètres de compendium de sorts",
"CMPBrowser.compSettingsNpc":"Paramètres de compendium de PNJ",
@ -21,12 +23,36 @@
"CMPBrowser.reaction":"Réaction",
"CMPBrowser.spellType":"Type de sort",
"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.artificer": "Artificer",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard":"Barde",
"CMPBrowser.cleric":"Clerc",
"CMPBrowser.druid":"Druide",
"CMPBrowser.fighter": "Fighter",
"CMPBrowser.monk": "Monk",
"CMPBrowser.paladin":"Paladin",
"CMPBrowser.ranger":"Rôdeur",
"CMPBrowser.rogue": "Rogue",
"CMPBrowser.sorcerer":"Sorcier",
"CMPBrowser.warlock":"Ensorceleur",
"CMPBrowser.wizard":"Magicien",
@ -54,7 +80,16 @@
"CMPBrowser.dmgInteraction": "Spécificité des dégâts",
"CMPBrowser.dmgDealt": "Type de dégats",
"CMPBrowser.size": "Taille",
"CMPBrowser.spellBrowser":"Recherche de sorts",
"CMPBrowser.npcBrowser":"Recherche de PNJ",
"CMPBrowser.settings":"Paramétrages"
"CMPBrowser.Tab.SpellBrowser": "Recherche de sorts",
"CMPBrowser.Tab.FeatBrowser": "Feat Browser",
"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.generalSettings":"一般設定",
"CMPBrowser.allowSpellAcc":"プレイヤーに呪文辞典の使用を許可する。",
"CMPBrowser.allowFeatAcc": "Allow Players Access to the feat browser",
"CMPBrowser.allowItemAcc": "Allow Players Access to the item browser",
"CMPBrowser.allowNpcAcc":"プレイヤーにNPC辞典の使用を許可する。",
"CMPBrowser.compSettingsSpell":"呪文辞典設定",
"CMPBrowser.compSettingsNpc":"NPC辞典設定",
@ -21,12 +23,36 @@
"CMPBrowser.reaction":"リアクション",
"CMPBrowser.spellType":"呪文種別",
"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.artificer": "Artificer",
"CMPBrowser.barbarian": "Barbarian",
"CMPBrowser.bard":"バード",
"CMPBrowser.cleric":"クレリック",
"CMPBrowser.druid":"ドルイド",
"CMPBrowser.fighter": "Fighter",
"CMPBrowser.monk": "Monk",
"CMPBrowser.paladin":"パラディン",
"CMPBrowser.ranger":"レンジャー",
"CMPBrowser.rogue": "Rogue",
"CMPBrowser.sorcerer":"ソーサラー",
"CMPBrowser.warlock":"ウォーロック",
"CMPBrowser.wizard":"ウィザード",
@ -54,7 +80,16 @@
"CMPBrowser.dmgInteraction": "ダメージ関連",
"CMPBrowser.dmgDealt": "与えるダメージ種別",
"CMPBrowser.size": "サイズ",
"CMPBrowser.spellBrowser":"呪文ブラウザ",
"CMPBrowser.npcBrowser":"NPCブラウザ",
"CMPBrowser.settings":"設定"
"CMPBrowser.Tab.SpellBrowser":"呪文ブラウザ",
"CMPBrowser.Tab.FeatBrowser": "Feat Browser",
"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

@ -3,14 +3,16 @@
"CMPBrowser.sortBy": "Classificar por",
"CMPBrowser.cr": "Nivel de Desafio",
"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.allowFeatAcc": "Permite o acesso dos jogadores ao navegador de Características",
"CMPBrowser.allowItemAcc": "Permite o acesso dos jogadores ao navegador de Itens",
"CMPBrowser.allowNpcAcc": "Permite o acesso dos jogadores ao navegador de NPCs",
"CMPBrowser.compSettingsSpell": "Configuração de Compêndio de Itens",
"CMPBrowser.compSettingsNpc": "Configuração de Compêndio de NPCs",
"CMPBrowser.load": "Carregar",
"CMPBrowser.lvl": "Nivel",
"CMPBrowser.ritual": "Ritual",
"CMPBrowser.concentration":"Concentraçãon",
"CMPBrowser.concentration": "Concentração",
"CMPBrowser.verbal": "Verbal",
"CMPBrowser.somatic": "Somático",
"CMPBrowser.material": "Material",
@ -21,14 +23,37 @@
"CMPBrowser.reaction": "Reação",
"CMPBrowser.spellType": "Tipo da Magia",
"CMPBrowser.damageType": "Tipo de Dano",
"CMPBrowser.UsesResources": "Usa Recursos",
"CMPBrowser.GameMechanics": "Mecânicas do Jogo",
"CMPBrowser.ItemSubtype": "Tipo do Item",
"CMPBrowser.Rarity": "Raridade",
"CMPBrowser.RarityCommon": "Comum",
"CMPBrowser.RarityUncommon": "Incomum",
"CMPBrowser.RarityRare": "Raro",
"CMPBrowser.RarityVeryRare": "Muito Raro",
"CMPBrowser.RarityLegendary": "Lendário",
"CMPBrowser.MagicItems": "Itens Mágicos",
"CMPBrowser.ItemsPacks": "Kits de Equipamentos",
"CMPBrowser.ItemsPacksBurglar": "Kit de Assaltante",
"CMPBrowser.ItemsPacksDiplomat": "Kit de Diplomata",
"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":"Clerigo",
"CMPBrowser.cleric": "Clérigo",
"CMPBrowser.druid": "Druida",
"CMPBrowser.fighter": "Guerreiro",
"CMPBrowser.monk": "Monge",
"CMPBrowser.paladin": "Paladino",
"CMPBrowser.ranger": "Guardião",
"CMPBrowser.sorcerer":"Geiticeiro",
"CMPBrowser.rogue": "Ladino",
"CMPBrowser.sorcerer": "Feiticeiro",
"CMPBrowser.warlock": "Bruxo",
"CMPBrowser.wizard": "Mago",
"CMPBrowser.general": "Geral",
@ -45,7 +70,7 @@
"CMPBrowser.elemental": "Elemental",
"CMPBrowser.fey": "Feérico",
"CMPBrowser.fiend": "Ínfero",
"CMPBrowser.giant": "Giante",
"CMPBrowser.giant": "Gigante",
"CMPBrowser.humanoid": "Humanoide",
"CMPBrowser.monstrosity": "Monstruosidade",
"CMPBrowser.ooze": "Gosma",
@ -55,7 +80,16 @@
"CMPBrowser.dmgInteraction": "Interação do Dano",
"CMPBrowser.dmgDealt": "Dano Causado",
"CMPBrowser.size": "Tamanho",
"CMPBrowser.spellBrowser":"Navegador de Magias",
"CMPBrowser.npcBrowser":"Navegador de NPC",
"CMPBrowser.settings":"Configurações"
"CMPBrowser.Tab.SpellBrowser": "Navegador de Magias",
"CMPBrowser.Tab.FeatBrowser": "Navegador de Características",
"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>
<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>
<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>
<input data-setting="allow-npc-browser" type="checkbox" {{#if settings.allowNpcBrowser}}checked{{/if}}>