diff --git a/BudgetMasterServer/src/main/resources/languages/base_de.properties b/BudgetMasterServer/src/main/resources/languages/base_de.properties
index 492e73809424479c33cbdbbb71ebbddb1ad99790..c553d3e8d39450b17ceb9613bee5325258779886 100644
--- a/BudgetMasterServer/src/main/resources/languages/base_de.properties
+++ b/BudgetMasterServer/src/main/resources/languages/base_de.properties
@@ -504,6 +504,7 @@ home.menu.accounts.action.new=Neues Konto anlegen
 home.menu.transactions=Buchungen sind das zentrale Element von BudgetMaster. Gib ihnen einen Namen und eine Beschreibung, weise ihnen eine Kategorie und ein Konto zu, konfiguriere sie als wiederholend und markiere sie mit Tags.
 home.menu.transactions.action.manage=Buchungsverwaltung
 home.menu.transactions.action.new=Neue Buchung anlegen
+home.menu.transactions.action.csvImport=Import aus Bank CSV
 
 home.menu.templates=Vorlagen helfen dir dabei neue Buchung schnell und effizient anzulegen. Du kannst Vorlagen auch aus bereits bestehenden Buchungen erzeugen.
 home.menu.templates.action.manage=Vorlagenverwaltung
diff --git a/BudgetMasterServer/src/main/resources/languages/base_en.properties b/BudgetMasterServer/src/main/resources/languages/base_en.properties
index 72746060f36af39fcbb5796e855172904f2e8c60..4f6183d11c0cc964918fcf1d134b978cbab1ca9b 100644
--- a/BudgetMasterServer/src/main/resources/languages/base_en.properties
+++ b/BudgetMasterServer/src/main/resources/languages/base_en.properties
@@ -503,6 +503,7 @@ home.menu.accounts.action.new=Create an account
 home.menu.transactions=Transactions are the key element of BudgetMaster. Give them a name and description, assign a category and account to them, configure them as recurring, and mark them with tags.
 home.menu.transactions.action.manage=Manage transactions
 home.menu.transactions.action.new=Create a transaction
+home.menu.transactions.action.csvImport=Import from bank CSV
 
 home.menu.templates=Templates help you to create new transactions quickly and efficiently. You can also create templates from existing transactions.
 home.menu.templates.action.manage=Manage templates
diff --git a/BudgetMasterServer/src/main/resources/templates/index.ftl b/BudgetMasterServer/src/main/resources/templates/index.ftl
index 839fa53149bffb03fba6a9689a8b2328de61d0ec..c9b3ca26e672b21407332c7c11e49dc52c1c0666 100644
--- a/BudgetMasterServer/src/main/resources/templates/index.ftl
+++ b/BudgetMasterServer/src/main/resources/templates/index.ftl
@@ -38,6 +38,7 @@
                             <@indexFunctions.homeEntry url="/transactions" icon=entityType.TRANSACTION.getIcon() iconColor=entityType.TRANSACTION.getColorAsTextColor() headlineText="menu.transactions" bodyText="home.menu.transactions">
                                 <@indexFunctions.action url="/transactions" name="home.menu.transactions.action.manage"/>
                                 <@indexFunctions.action url="/transactions/newTransaction/normal" name="home.menu.transactions.action.new"/>
+                                <@indexFunctions.action url="/transactionImport" name="home.menu.transactions.action.csvImport"/>
                             </@indexFunctions.homeEntry>
 
                             <@indexFunctions.homeEntry url="/templates" icon=entityType.TEMPLATE.getIcon() iconColor=entityType.TEMPLATE.getColorAsTextColor() headlineText="menu.transactions.templates" bodyText="home.menu.templates">