Skip to content

Commit

Permalink
fix(localization): pull-list.screen.js copy/paste mistake (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Taut authored and andrewda committed Aug 12, 2017
1 parent 628a86b commit 956cf65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/locale/languages/en.js
Expand Up @@ -162,8 +162,8 @@ export const en = {
openButton: 'Open',
closedButton: 'Closed',
searchingMessage: 'Searching for {{query}}',
noOpenIssues: 'No open pull requests found!',
noClosedIssues: 'No closed pull requests found!',
noOpenPulls: 'No open pull requests found!',
noClosedPulls: 'No closed pull requests found!',
},
pullDiff: {
title: 'Diff',
Expand Down
4 changes: 2 additions & 2 deletions src/repository/screens/pull-list.screen.js
Expand Up @@ -277,7 +277,7 @@ class PullList extends Component {
searchType === 0 &&
<View style={styles.marginSpacing}>
<Text style={styles.searchTitle}>
{translate('repository.pullList.noOpenIssues', language)}
{translate('repository.pullList.noOpenPulls', language)}
</Text>
</View>}

Expand All @@ -287,7 +287,7 @@ class PullList extends Component {
searchType === 1 &&
<View style={styles.marginSpacing}>
<Text style={styles.searchTitle}>
{translate('repository.pullList.noOpenIssues', language)}
{translate('repository.pullList.noOpenPulls', language)}
</Text>
</View>}
</ViewContainer>
Expand Down

0 comments on commit 956cf65

Please sign in to comment.