+ {detectorInfo ? (
+
+ Endpoint: {detectorInfo.endpoint}
+
+ ) : (
+
{t('loading')}
+ )}
+
+ );
+}
diff --git a/src/app/_components/adjudication/IsotopeSelect.tsx b/src/app/_components/adjudication/IsotopeSelect.tsx
index 7778f1c9..c2b75606 100644
--- a/src/app/_components/adjudication/IsotopeSelect.tsx
+++ b/src/app/_components/adjudication/IsotopeSelect.tsx
@@ -13,6 +13,7 @@ import {
Theme
} from '@mui/material';
import {useEffect, useState} from 'react';
+import {useLanguage} from '@/contexts/LanguageContext';
const isotopeChoices=[
"Unknown",
@@ -52,6 +53,7 @@ export default function IsotopeSelect(props: {
onSelect: (value: string[]) => void, // Return selected value
isotopeValue: string[]
}) {
+ const { t } = useLanguage();
const [isotope, setIsotope] = useState