completed translations + deleted cloned keys

updated sign* key translations to be more consistent with case
updated error handling of signup exceptions
This commit is contained in:
danis
2023-02-07 21:32:12 +03:00
committed by Clément Le Bihan
parent db0142f4f3
commit 69be4ef64a
6 changed files with 125 additions and 123 deletions
+7 -7
View File
@@ -162,23 +162,23 @@ const PlayView = ({ songId }: PlayViewProps) => {
</Center>
<Row style={{ flex: 1, height: '100%', justifyContent: 'space-evenly', alignItems: 'center' }}>
<IconButton size='sm' colorScheme='secondary' variant='solid' _icon={{
as: Ionicons,
name: "play-back"
as: Ionicons,
name: "play-back"
}}/>
<IconButton size='sm' variant='solid' _icon={{
as: Ionicons,
name: paused ? "play" : "pause"
as: Ionicons,
name: paused ? "play" : "pause"
}} onPress={() => {
if (paused) {
onResume();
} else {
onPause();
}
}}/>
}}/>
<Text>{timer.minutes}:{timer.seconds.toString().padStart(2, '0')}</Text>
<IconButton size='sm' colorScheme='coolGray' variant='solid' _icon={{
as: Ionicons,
name: "stop"
as: Ionicons,
name: "stop"
}} onPress={() => {
onEnd();
navigation.navigate('Score')