Skip to content

Commit

Permalink
update disclaimer screen
Browse files Browse the repository at this point in the history
  • Loading branch information
KKA11010 committed Aug 26, 2023
1 parent 007a228 commit 9440260
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 14 deletions.
2 changes: 1 addition & 1 deletion assets/translations/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@
"custodialRisk": "Verwahrrisiko, Mints halten die Schlüssel.",
"custodialRiskContent": "Mit eNuts haben Sie nicht die Kontrolle über die Bitcoin-Schlüssel; die Mint fungiert als Verwahrer. Wenn Sie einer Mint nicht vertrauen, ist es ratsam, nicht mit ihr zu interagieren.",
"disclaimer": "Bitte beachten Sie, dass es sich hierbei um eine Beta-Version in einem frühen Stadium handelt und diese noch vor der offiziellen Veröffentlichung getestet wird. Die Software und alle darauf enthaltenen Inhalte werden als „wie besehen“ und „wie verfügbar“ bereitgestellt. Wir geben keine Garantien, ob ausdrücklich oder stillschweigend, hinsichtlich der Eignung oder Verwendbarkeit der Software oder deren Inhalte.",
"enutsDisclaimer": "eNuts ist unvollendete Alpha-Software.",
"enutsDisclaimer": "eNuts ist unvollendete Beta-Software.",
"lossContent": "Cashu-Token sind Inhabertoken, was bedeutet, dass es keine Möglichkeit zur Wiederherstellung gibt, wenn Sie den Zugriff darauf verlieren. eNuts speichert Ihre Token auf Ihrem Gerät. Stellen Sie vor dem Löschen der App sicher, dass Sie Ihre Token gesichert haben.",
"lossOfTokens": "Verlust von Geldern.",
"paidOut": "Ausbezahlt",
Expand Down
4 changes: 2 additions & 2 deletions assets/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,8 @@
"createLnInvoice": "Create Lightning invoice",
"custodialRisk": "Custodial risk, mints hold the keys.",
"custodialRiskContent": "With eNuts, you don't hold the keys to the Bitcoin; the mint acts as the custodian. Therefore, if you lack trust in a mint, it's advisable to avoid interacting with it.",
"disclaimer": "Please note that this is an alpha version in its early stage and is still undergoing testing before its official release. The software and all content found on it are provided on an “as is” and “as available” basis. We do not give any warranties, whether express or implied, as to the suitability or usability of the software or any of its content.",
"enutsDisclaimer": "eNuts is unfinished alpha software.",
"disclaimer": "Please note that this is beta version in its early stage and is still undergoing testing before its official release. The software and all content found on it are provided on an “as is” and “as available” basis. We do not give any warranties, whether express or implied, as to the suitability or usability of the software or any of its content.",
"enutsDisclaimer": "eNuts is unfinished beta software.",
"lossContent": "Cashu tokens are bearer tokens, implying that if you lose access to them, there is no recovery option. eNuts stores your tokens in your device. Before deleting the app, ensure you back up your tokens.",
"lossOfTokens": "Loss of funds.",
"paidOut": "Paid out",
Expand Down
4 changes: 2 additions & 2 deletions assets/translations/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@
"createLnInvoice": "Créer une facture Lightning",
"custodialRisk": "Risque de garde, les mints détiennent les clés.",
"custodialRiskContent": "Avec eNuts, vous ne détenez pas les clés du Bitcoin; la mint agit en tant que dépositaire. Par conséquent, si vous n'avez pas confiance en une mint, il est conseillé d'éviter d'interagir avec elle.",
"disclaimer": "Veuillez noter qu'il s'agit d'une version alpha à un stade précoce et qu'elle est encore en cours de test avant sa sortie officielle. Le logiciel et tous les contenus qui s'y trouvent sont fournis « tels quels » et « tels que disponibles ». Nous n'offrons aucune garantie, expresse ou implicite, quant à l'adéquation ou à l'utilisabilité du logiciel ou de l'un de ses contenus.",
"enutsDisclaimer": "eNuts est un logiciel alpha inachevé.",
"disclaimer": "Veuillez noter qu'il s'agit d'une version beta à un stade précoce et qu'elle est encore en cours de test avant sa sortie officielle. Le logiciel et tous les contenus qui s'y trouvent sont fournis « tels quels » et « tels que disponibles ». Nous n'offrons aucune garantie, expresse ou implicite, quant à l'adéquation ou à l'utilisabilité du logiciel ou de l'un de ses contenus.",
"enutsDisclaimer": "eNuts est un logiciel beta inachevé.",
"lossContent": "Les token Cashu sont des token au porteur, ce qui signifie qu'en cas de perte d'accès, il n'y a pas d'option de récupération. eNuts stocke vos token sur votre appareil. Avant de supprimer l'application, assurez-vous de sauvegarder vos token.",
"lossOfTokens": "Perte de fonds.",
"paidOut": "Payé",
Expand Down
12 changes: 3 additions & 9 deletions src/screens/Disclaimer.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Button from '@comps/Button'
import Separator from '@comps/Separator'
import Txt from '@comps/Txt'
import type { TDisclaimerPageProps } from '@model/nav'
import TopNav from '@nav/TopNav'
import { isIOS } from '@src/consts'
import { useThemeContext } from '@src/context/Theme'
import { NS } from '@src/i18n'
import { globals } from '@styles'
Expand Down Expand Up @@ -38,20 +38,14 @@ export function Disclaimer({ navigation }: TDisclaimerPageProps) {
<Txt txt={t('cashuContent')} />
</View>
</ScrollView>
<View style={styles.ok}>
<Button
txt='OK'
onPress={() => navigation.navigate('dashboard')}
/>
</View>
</View>
)
}

const styles = StyleSheet.create({
container: {
marginTop: 100,
marginBottom: 110,
marginTop: 110,
marginBottom: isIOS ? 25 : 0,
},
header: {
fontWeight: '500',
Expand Down

0 comments on commit 9440260

Please sign in to comment.