Skip to content

Commit

Permalink
Google Maps est maintenant utilisé à la place de OpenStreetMap pour o…
Browse files Browse the repository at this point in the history
…uvrir les adresses (#300)
  • Loading branch information
Donov4n committed Nov 20, 2021
1 parent 65d31fb commit 215a98e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Ce projet adhère au principe du [Semantic Versioning](https://semver.org/spec/v
## 0.16.3 (UNRELEASED)

- Enlève la limite de caractères du champ "lieu" des événements (#300).
- Google Maps est maintenant utilisé à la place de OpenStreetMap pour ouvrir les adresses (#300).

## 0.16.2 (2021-11-04)

Expand Down
4 changes: 2 additions & 2 deletions client/src/components/LocationText/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export default defineComponent({
{' '}
<a
rel="noopener noreferrer nofollow"
href={`https://www.openstreetmap.org/search?query=${location}`}
title={__('open-in-openstreetmap')}
href={`https://maps.google.com/?q=${location}`}
title={__('open-in-google-maps')}
target="_blank"
>
<i class="fas fa-external-link-alt" />
Expand Down
2 changes: 1 addition & 1 deletion client/src/locale/en/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export default {
'print-summary': "Print this summary",
'open': "Open",
'in': "In",
'open-in-openstreetmap': "Search in OpenStreetMap",
'open-in-google-maps': "Open in Google Maps",
'on-date': "On {date}",
'from-date-to-date': "from\u00a0{from} to\u00a0{to}",
'or': "or",
Expand Down
2 changes: 1 addition & 1 deletion client/src/locale/fr/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export default {
'print-summary': "Imprimer ce récapitulatif",
'open': "Ouvrir",
'in': "À",
'open-in-openstreetmap': "Rechercher dans OpenStreetMap",
'open-in-google-maps': "Ouvrir dans Google Maps",
'on-date': "Le {date}",
'from-date-to-date': "du\u00a0{from} au\u00a0{to}",
'or': "ou",
Expand Down

0 comments on commit 215a98e

Please sign in to comment.