Skip to content

Commit

Permalink
localised 2fa text
Browse files Browse the repository at this point in the history
  • Loading branch information
Iulia Stana committed May 4, 2023
1 parent 77d7597 commit fbecd68
Show file tree
Hide file tree
Showing 4 changed files with 272 additions and 232 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
package nl.eduid.screens.twofactorkey

import androidx.compose.foundation.*
import androidx.compose.foundation.layout.*
import androidx.compose.material3.*
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.width
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.CircularProgressIndicator
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.livedata.observeAsState
Expand Down Expand Up @@ -72,7 +80,7 @@ fun TwoFactorKeyScreenContent(
} else {
uiState.forEachIndexed { id, twoFaInfo ->
InfoTab(
header = if (id < 1) "Your Keys" else "",
header = if (id < 1) stringResource(R.string.two_fa_key_list_title) else "",
startIconLargeUrl = twoFaInfo.providerLogoUrl,
title = twoFaInfo.title,
subtitle = twoFaInfo.subtitle,
Expand Down
Loading

0 comments on commit fbecd68

Please sign in to comment.