Skip to content

Commit

Permalink
rm copy
Browse files Browse the repository at this point in the history
  • Loading branch information
luacmartins committed Apr 20, 2022
1 parent d27212e commit 1ef69a1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/languages/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ export default {
blockedFromConcierge: 'Communication is barred',
youAppearToBeOffline: 'You appear to be offline.',
fileUploadFailed: 'Upload failed. File is not supported.',
maxCommentLengthReached: 'Limit of 60000 characters exceeded',
localTime: ({user, time}) => `It's ${time} for ${user}`,
edited: '(edited)',
emoji: 'Emoji',
Expand Down
1 change: 0 additions & 1 deletion src/languages/es.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ export default {
blockedFromConcierge: 'Comunicación no permitida',
youAppearToBeOffline: 'Parece que estás desconectado.',
fileUploadFailed: 'Subida fallida. El archivo no es compatible.',
maxCommentLengthReached: 'Límite de 60000 caracteres excedido',
localTime: ({user, time}) => `Son las ${time} para ${user}`,
edited: '(editado)',
emoji: 'Emoji',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/report/ReportActionCompose.js
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ class ReportActionCompose extends React.Component {
</View>
{hasExceededMaxCommentLength && (
<Text style={[styles.textMicro, styles.textDanger, styles.chatItemComposeSecondaryRow]}>
{this.props.translate('reportActionCompose.maxCommentLengthReached')}
{`${this.comment.length}/${this.maxCommentLength}`}
</Text>
)}
</View>
Expand Down

0 comments on commit 1ef69a1

Please sign in to comment.