Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Continue for button copy for camera permissions #28655

Merged
merged 1 commit into from
Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,6 @@ export default {
dragReceiptAfterEmail: ' or choose a file to upload below.',
chooseReceipt: 'Choose a receipt to upload or forward a receipt to ',
chooseFile: 'Choose file',
givePermission: 'Give permission',
takePhoto: 'Take a photo',
cameraAccess: 'Camera access is required to take pictures of receipts.',
cameraErrorTitle: 'Camera Error',
Expand Down
1 change: 0 additions & 1 deletion src/languages/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,6 @@ export default {
dragReceiptAfterEmail: ' o elije un archivo para subir a continuación.',
chooseReceipt: 'Elige un recibo para subir o reenvía un recibo a ',
chooseFile: 'Elegir archivo',
givePermission: 'Permitir',
takePhoto: 'Haz una foto',
cameraAccess: 'Se requiere acceso a la cámara para hacer fotos de los recibos.',
cameraErrorTitle: 'Error en la cámara',
Expand Down
4 changes: 2 additions & 2 deletions src/pages/iou/ReceiptSelector/index.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ function ReceiptSelector({route, report, iou, transactionID, isInTabNavigator})
<Button
medium
success
text={translate('receipt.givePermission')}
accessibilityLabel={translate('receipt.givePermission')}
text={translate('common.continue')}
accessibilityLabel={translate('common.continue')}
style={[styles.p9, styles.pt5]}
onPress={askForPermissions}
/>
Expand Down
Loading