@@ -15,15 +15,15 @@ import useColorScheme from '../hooks/useColorScheme';
1515import ModalScreen from '../screens/ModalScreen' ;
1616import NotFoundScreen from '../screens/NotFoundScreen' ;
1717import TestRunScreen from "../screens/TestRunScreen/index" ;
18- import ConfigScreen from "../screens/TestConfigScreen" ;
18+ import TestConfigScreen from "../screens/TestConfigScreen/index " ;
1919import {
2020 RootStackParamList ,
2121 RootTabParamList ,
2222 RootTabScreenProps ,
2323} from "../types" ;
2424import LinkingConfiguration from "./LinkingConfiguration" ;
2525import TestStatisticsScreen from "@/screens/TestStatisticsScreen" ;
26- import { I18n } from "@/localize" ;
26+ import { AppI18n } from "@/localize" ;
2727
2828export default function Navigation ( {
2929 colorScheme,
@@ -86,7 +86,7 @@ function BottomTabNavigator() {
8686 name = "TestRun"
8787 component = { TestRunScreen }
8888 options = { ( { navigation } : RootTabScreenProps < "TestRun" > ) => ( {
89- title : I18n . t ( "testRun.title" ) ,
89+ title : AppI18n . t ( "testRun.title" ) ,
9090 tabBarIcon : ( { color } ) => < TabBarIcon name = "code" color = { color } /> ,
9191 headerRight : ( ) => (
9292 < Pressable
@@ -109,7 +109,7 @@ function BottomTabNavigator() {
109109 name = "TestStatistics"
110110 component = { TestStatisticsScreen }
111111 options = { ( { navigation } : RootTabScreenProps < "TestStatistics" > ) => ( {
112- title : I18n . t ( "testStatistics.title" ) ,
112+ title : AppI18n . t ( "testStatistics.title" ) ,
113113 tabBarIcon : ( { color } ) => < TabBarIcon name = "code" color = { color } /> ,
114114 headerRight : ( ) => (
115115 < Pressable
@@ -130,9 +130,9 @@ function BottomTabNavigator() {
130130 />
131131 < BottomTab . Screen
132132 name = "TestConfig"
133- component = { ConfigScreen }
133+ component = { TestConfigScreen }
134134 options = { {
135- title : I18n . t ( "testConfig.title" ) ,
135+ title : AppI18n . t ( "testConfig.title" ) ,
136136 tabBarIcon : ( { color } ) => < TabBarIcon name = "code" color = { color } /> ,
137137 } }
138138 />
0 commit comments