diff --git a/BudgetMasterServer/src/main/resources/templates/transactions/transactions.ftl b/BudgetMasterServer/src/main/resources/templates/transactions/transactions.ftl
index 0cde0acc404d29946c1fa1aba392932794bb40af..907c6f12d48b37a05f91f7eb00300fa3d6f56ea1 100644
--- a/BudgetMasterServer/src/main/resources/templates/transactions/transactions.ftl
+++ b/BudgetMasterServer/src/main/resources/templates/transactions/transactions.ftl
@@ -27,21 +27,18 @@
                                 <div class="icon-block">
                                     <h1 class="center text-green budget-headline-icon"><i class="material-icons icon-budget">file_download</i></h1>
                                     <h5 class="center budget">${currencyService.getCurrencyString(budget.getIncomeSum())}</h5>
-                                    <h5 class="center budget-headline">${locale.getString("title.incomes")}</h5>
                                 </div>
                             </div>
                             <div class="col s4">
                                 <div class="icon-block">
                                     <h1 class="center ${redTextColor} budget-headline-icon"><i class="material-icons icon-budget">file_upload</i></h1>
                                     <h5 class="center budget">${currencyService.getCurrencyString(budget.getExpenditureSum())}</h5>
-                                    <h5 class="center budget-headline">${locale.getString("title.expenditures")}</h5>
                                 </div>
                             </div>
                             <div class="col s4">
                                 <div class="icon-block">
                                     <h1 class="center text-blue budget-headline-icon"><i class="fas fa-piggy-bank icon-budget"></i></h1>
                                     <h5 class="center budget">${currencyService.getCurrencyString(budget.getRest())}</h5>
-                                    <h5 class="center budget-headline">${locale.getString("title.rest")}</h5>
                                 </div>
                             </div>
                         </div>