Skip to content

Commit

Permalink
Merge pull request #929 from nextcloud/transifex
Browse files Browse the repository at this point in the history
Fixed add photo to maps Didalogs
  • Loading branch information
tacruc authored Jan 10, 2023
2 parents 5d22be5 + c86f84f commit 2a9dd96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -821,13 +821,13 @@ export default {
this.chooseMyMap((map) => {
try {
network.copyByPath(photo.path, map.path + '/' + photo.basename)
showSuccess(t('maps', 'Track {photoName} added to map {mapName}', {
showSuccess(t('maps', 'Photo {photoName} added to map {mapName}', {
photoName: photo.basename ?? '',
mapName: map.name ?? '',
}))
} catch (error) {
console.error(error)
showError(t('maps', 'Failed to save track {photoName} to map {mapName}', {
showError(t('maps', 'Failed to save photo {photoName} to map {mapName}', {
trackName: photo.basename ?? '',
mapName: map.name ?? '',
}))
Expand Down

0 comments on commit 2a9dd96

Please sign in to comment.