Skip to content

Commit

Permalink
Translate movie/tvshow pages
Browse files Browse the repository at this point in the history
  • Loading branch information
willianrod committed Aug 14, 2020
1 parent fece02b commit 4c342c8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ const TVShowsStack = () => (
const AppTabs = () => (
<Tab.Navigator>
<Tab.Screen
options={{ tabBarIcon: MovieTabIcon, title: 'Filmes' }}
options={{ tabBarIcon: MovieTabIcon, title: 'Movies' }}
name="MoviesTab"
component={MovieStack}
/>
<Tab.Screen
options={{ tabBarIcon: TVTabIcon, title: 'Séries' }}
options={{ tabBarIcon: TVTabIcon, title: 'TV Shows' }}
name="TVShowsTab"
component={TVShowsStack}
/>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/Movie.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,21 +231,21 @@ const Movie = ({ route }) => {
<Text style={styles.voters}>
{movieDetails.vote_count}
{' '}
votos
votes
</Text>
</View>
</View>
</View>
<View style={styles.body}>
<Text style={styles.bodyTitle}>
Sinopse
Synopsis
</Text>
<Text style={styles.bodyText}>
{movieDetails.overview}
</Text>

<Text style={styles.bodyTitle}>
Creditos
Credits
</Text>
</View>
{isFocused
Expand Down
6 changes: 3 additions & 3 deletions src/pages/TVShow.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,21 +231,21 @@ const TVShow = ({ route }) => {
<Text style={styles.voters}>
{tvShowDetails.vote_count}
{' '}
votos
votes
</Text>
</View>
</View>
</View>
<View style={styles.body}>
<Text style={styles.bodyTitle}>
Sinopse
Synopsis
</Text>
<Text style={styles.bodyText}>
{tvShowDetails.overview}
</Text>

<Text style={styles.bodyTitle}>
Creditos
Credits
</Text>
</View>
{isFocused
Expand Down

0 comments on commit 4c342c8

Please sign in to comment.