diff --git a/application/WarehouseOrder/WarehouseOrderController.php b/application/WarehouseOrder/WarehouseOrderController.php
index b96edda53..55c5bd7c7 100644
--- a/application/WarehouseOrder/WarehouseOrderController.php
+++ b/application/WarehouseOrder/WarehouseOrderController.php
@@ -192,9 +192,7 @@ class WarehouseOrderController extends TTCrud {
$isGermanSpeaking = in_array($countryText, ['Österreich', 'Deutschland', 'Schweiz']);
$appendToBody = '';
- if ($isGermanSpeaking && $countryText !== "Österreich") {
- $appendToBody .= $texts['DE']['taxFree'] . '
';
- } else {
+ if (!$isGermanSpeaking) {
$appendToBody .= $texts['EN']['taxFree'] . '
';
}