Skip to content

updated pt_br.json #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 1.18/main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 43 additions & 1 deletion common/src/main/resources/assets/itemfilters/lang/pt_br.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
{
"item.itemfilters.missing": "Item Inexistente"
"itemGroup.itemfilters.main": "Filtros de itens",
"itemGroup.itemfilters.itemfilters": "Filtros de itens",
"item.itemfilters.filter": "Filtro de itens",
"item.itemfilters.always_true": "Filtro Sempre Verdadeiro",
"item.itemfilters.always_true.description": "Corresponde a todos os itens",
"item.itemfilters.always_false": "Sempre filtro falso",
"item.itemfilters.always_false.description": "Não corresponde a nenhum item",
"item.itemfilters.or": "OU Filtro",
"item.itemfilters.or.description": "Um dos filtros deve corresponder",
"item.itemfilters.and": "E Filtro",
"item.itemfilters.and.description": "Todos os filtros devem corresponder",
"item.itemfilters.not": "Não filtrar",
"item.itemfilters.not.description": "Inverter filtro",
"item.itemfilters.xor": "Filtro XOR",
"item.itemfilters.xor.description": "Um dos dois filtros deve corresponder, mas não ambos",
"item.itemfilters.tag": "Filtro de tags",
"item.itemfilters.tag.description": "Nomes de tags, como 'minecraft:wool' ou 'forge:cobblestone'",
"item.itemfilters.item_group": "Filtro de grupo de itens",
"item.itemfilters.item_group.description": "Usar grupo de itens/ID da guia do criativo",
"item.itemfilters.mod": "Filtro Mod",
"item.itemfilters.mod.description": "Usar ID do Mod",
"item.itemfilters.id_regex": "Filtro de ID RegEx",
"item.itemfilters.id_regex.description": "Verifica o ID do item com expressões regulares",
"item.itemfilters.damage": "Filtro de danos",
"item.itemfilters.damage.description": "Verifica os danos do item",
"item.itemfilters.block": "Filtro de bloco",
"item.itemfilters.block.description": "As verificações do item são um bloco",
"item.itemfilters.max_count": "Filtro de contagem máxima",
"item.itemfilters.max_count.description": "Verifica a contagem máxima do item",
"item.itemfilters.strong_nbt": "Filtro NBT (Forte)",
"item.itemfilters.strong_nbt.description": "Corresponde se o NBT inteiro for igual",
"item.itemfilters.weak_nbt": "Filtro NBT (fraco)",
"item.itemfilters.weak_nbt.description": "Corresponde se apenas uma parte especificada do NBT estiver presente",
"item.itemfilters.custom": "Filtro customizado",
"item.itemfilters.custom.description": "Requer um mod ou um script, geralmente KubeJS, para que funcione",
"itemfilters.variants": "Variantes [%d]",
"itemfilters.help_text.variants": "Tab, Scroll Wheel, Cursor Up/Down: ajuste o realce\nDigite: selecione destacado",
"itemfilters.help_text.filter": "Filtrar (Clique com o botão direito para limpar)",
"itemfilters.help_text.nbt": "NBT String\n▶ ex: { text:\"hello\", value: 1, active: true }",
"itemfilters.help_text.weak_nbt": "NBT fraco String\n▶ e.g. { text:\"hello\", value: 1, active: true }\n▶ Apenas os campos NBT fornecidos serão verificados (qualquer outro campo no item será ignorado)",
"itemfilters.help_text.regex": "Regular Expression\n Comparado com o ID do item\n▶ ex: \"^minecraft:\" corresponde a todos os itens do vanilla",
"itemfilters.help_text.max_count": "Tamanho Máximo da Pilha\n▶ Também pode incluir operadores relacionais, por ex: \"<64\" or \">=16\"",
"itemfilters.help_text.damage": "Danos de itens\n▶ Também pode incluir operadores relacionais, por exemplo. \"<10\" ou \">=5\"\n e opcionalmente por porcentagem, por ex: \">50%\""
}