From ba4f426ecb3f2383d42edaea148270ab1a384ba1 Mon Sep 17 00:00:00 2001 From: Joe Date: Fri, 14 Apr 2023 10:09:26 +0200 Subject: [PATCH] 0005692: Translatable Strings in locations.php were not translatable. Fixed. --- inventory/manage/locations.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inventory/manage/locations.php b/inventory/manage/locations.php index 6728e1e5..26c8b86f 100644 --- a/inventory/manage/locations.php +++ b/inventory/manage/locations.php @@ -19,10 +19,10 @@ include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/inventory/includes/inventory_db.inc"); if (isset($_GET['FixedAsset'])) { - $help_context = "Fixed Assets Locations"; + $help_context = _("Fixed Assets Locations"); $_POST['fixed_asset'] = 1; } else - $help_context = "Inventory Locations"; + $help_context = _("Inventory Locations"); page(_($help_context)); -- 2.30.2