Rename UI "Blocks" labels to "Building Blocks"

This commit is contained in:
2026-07-12 21:17:10 +02:00
parent 271855781c
commit 69f655d179
3 changed files with 5 additions and 5 deletions

View File

@@ -239,7 +239,7 @@ void BlueprintPanel::rebuildButtons()
{
const Blueprint& bp = m_blueprints[static_cast<std::size_t>(i)];
const int cost = computeBlueprintCost(bp);
const QString label = bp.name + "\n" + tr("%1 Blocks").arg(cost);
const QString label = bp.name + "\n" + tr("%1 Building Blocks").arg(cost);
QWidget* row = new QWidget(m_buttonsContainer);
QHBoxLayout* rowLayout = new QHBoxLayout(row);