|
@@ -122,14 +122,14 @@ fun HelpTV(navHostController: NavHostController) {
|
|
) {
|
|
) {
|
|
// Spacer(modifier = Modifier.height(50.dp))
|
|
// Spacer(modifier = Modifier.height(50.dp))
|
|
AddTextHelpTV(
|
|
AddTextHelpTV(
|
|
- text = "Help",
|
|
|
|
|
|
+ text = context.getString(R.string.help),
|
|
size = 28.sp,
|
|
size = 28.sp,
|
|
color = MaterialTheme.colorScheme.primary
|
|
color = MaterialTheme.colorScheme.primary
|
|
)
|
|
)
|
|
Spacer(modifier = Modifier.height(22.dp))
|
|
Spacer(modifier = Modifier.height(22.dp))
|
|
AddRowTV(
|
|
AddRowTV(
|
|
icon = R.drawable.faq3x,
|
|
icon = R.drawable.faq3x,
|
|
- text = "FAQ", navHostController = navHostController,
|
|
|
|
|
|
+ text = context.getString(R.string.faq), navHostController = navHostController,
|
|
topPadding = 22.dp,
|
|
topPadding = 22.dp,
|
|
focusRequester1 = focusRequester1,
|
|
focusRequester1 = focusRequester1,
|
|
onClick = {
|
|
onClick = {
|
|
@@ -139,7 +139,7 @@ fun HelpTV(navHostController: NavHostController) {
|
|
)
|
|
)
|
|
AddRowTV(
|
|
AddRowTV(
|
|
icon = R.drawable.privacy3x,
|
|
icon = R.drawable.privacy3x,
|
|
- text = "Privacy Policy",
|
|
|
|
|
|
+ text = context.getString(R.string.privacy_policy),
|
|
navHostController = navHostController,
|
|
navHostController = navHostController,
|
|
onClick = {
|
|
onClick = {
|
|
navHostController.navigate(
|
|
navHostController.navigate(
|
|
@@ -149,7 +149,7 @@ fun HelpTV(navHostController: NavHostController) {
|
|
)
|
|
)
|
|
AddRowTV(
|
|
AddRowTV(
|
|
icon = R.drawable.terms3x,
|
|
icon = R.drawable.terms3x,
|
|
- text = "Terms and Conditions",
|
|
|
|
|
|
+ text = context.getString(R.string.termsndcond),
|
|
navHostController = navHostController,
|
|
navHostController = navHostController,
|
|
onClick = {
|
|
onClick = {
|
|
navHostController.navigate(
|
|
navHostController.navigate(
|
|
@@ -159,7 +159,7 @@ fun HelpTV(navHostController: NavHostController) {
|
|
)
|
|
)
|
|
AddRowTV(
|
|
AddRowTV(
|
|
icon = R.drawable.about3x,
|
|
icon = R.drawable.about3x,
|
|
- text = "About Fastest VPN",
|
|
|
|
|
|
+ text = context.getString(R.string.about_fastest_vpn),
|
|
navHostController = navHostController,
|
|
navHostController = navHostController,
|
|
onClick = {
|
|
onClick = {
|
|
navHostController.navigate(
|
|
navHostController.navigate(
|