diff --git a/CHANGELOG.md b/CHANGELOG.md index 46f06f26c..8b1540a7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log All notable changes to this project will be documented in this file. For change log formatting, see http://keepachangelog.com/ +# 0.6.1 + +- Updates `continue` maneuvers in en to read as turns when the road you are staying on turns at the intersection. [#145](https://github.com/Project-OSRM/osrm-text-instructions/pull/145) + # 0.6.0 - Adds `phrase` types to the English localiztion. [#141](https://github.com/Project-OSRM/osrm-text-instructions/pull/141) diff --git a/languages/translations/en.json b/languages/translations/en.json index 5b48dae44..0a4d91dc6 100644 --- a/languages/translations/en.json +++ b/languages/translations/en.json @@ -83,28 +83,37 @@ }, "continue": { "default": { - "default": "Continue {modifier}", - "name": "Continue {modifier} to stay on {way_name}", - "destination": "Continue {modifier} towards {destination}", - "exit": "Continue {modifier} onto {way_name}", - "distance": "Continue for {distance}", - "namedistance": "Continue on {way_name} for {distance}" + "default": "Turn {modifier}", + "name": "Turn {modifier} to stay on {way_name}", + "destination": "Turn {modifier} towards {destination}", + "exit": "Turn {modifier} onto {way_name}" }, "straight": { "default": "Continue straight", "name": "Continue straight to stay on {way_name}", "destination": "Continue towards {destination}", - "distance": "Continue straight for {distance}" + "distance": "Continue straight for {distance}", + "namedistance": "Continue on {way_name} for {distance}" + }, + "sharp left": { + "default": "Make a sharp left", + "name": "Make a sharp left to stay on {way_name}", + "destination": "Make a sharp left towards {destination}" + }, + "sharp right": { + "default": "Make a sharp right", + "name": "Make a sharp right to stay on {way_name}", + "destination": "Make a sharp right towards {destination}" }, "slight left": { - "default": "Continue slightly left", - "name": "Continue slightly left to stay on {way_name}", - "destination": "Continue slightly left towards {destination}" + "default": "Make a slight left", + "name": "Make a slight left to stay on {way_name}", + "destination": "Make a slight left towards {destination}" }, "slight right": { - "default": "Continue slightly right", - "name": "Continue slightly right to stay on {way_name}", - "destination": "Continue slightly right towards {destination}" + "default": "Make a slight right", + "name": "Make a slight right to stay on {way_name}", + "destination": "Make a slight right towards {destination}" }, "uturn": { "default": "Make a U-turn", diff --git a/test/fixtures/v5/continue/left_default.json b/test/fixtures/v5/continue/left_default.json index 6e700aa4d..4cf9b041a 100644 --- a/test/fixtures/v5/continue/left_default.json +++ b/test/fixtures/v5/continue/left_default.json @@ -8,7 +8,7 @@ }, "instructions": { "de": "Links weiterfahren", - "en": "Continue left", + "en": "Turn left", "es": "Continúe izquierda", "fr": "Continuer à gauche", "id": "Terus kiri", diff --git a/test/fixtures/v5/continue/left_destination.json b/test/fixtures/v5/continue/left_destination.json index c74a6fa82..0c142aee8 100644 --- a/test/fixtures/v5/continue/left_destination.json +++ b/test/fixtures/v5/continue/left_destination.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Links weiterfahren Richtung Destination 1", - "en": "Continue left towards Destination 1", + "en": "Turn left towards Destination 1", "es": "Continúe izquierda hacia Destination 1", "fr": "Continuer à gauche en direction de Destination 1", "id": "Teruskan kiri menuju Destination 1", diff --git a/test/fixtures/v5/continue/left_exit.json b/test/fixtures/v5/continue/left_exit.json index 472fe6627..1d86319c8 100644 --- a/test/fixtures/v5/continue/left_exit.json +++ b/test/fixtures/v5/continue/left_exit.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Links weiterfahren auf Way Name", - "en": "Continue left onto Way Name", + "en": "Turn left onto Way Name", "es": "Continúe izquierda en Way Name", "fr": "Continuer à gauche sur Way Name", "id": "Terus kiri ke Way Name", diff --git a/test/fixtures/v5/continue/left_exit_destination.json b/test/fixtures/v5/continue/left_exit_destination.json index 3d2cb87f7..1a15b22a5 100644 --- a/test/fixtures/v5/continue/left_exit_destination.json +++ b/test/fixtures/v5/continue/left_exit_destination.json @@ -10,7 +10,7 @@ }, "instructions": { "de": "Links weiterfahren Richtung Destination 1", - "en": "Continue left towards Destination 1", + "en": "Turn left towards Destination 1", "es": "Continúe izquierda hacia Destination 1", "fr": "Continuer à gauche en direction de Destination 1", "id": "Teruskan kiri menuju Destination 1", diff --git a/test/fixtures/v5/continue/left_name.json b/test/fixtures/v5/continue/left_name.json index fe0f2fc0b..6311fcfb0 100644 --- a/test/fixtures/v5/continue/left_name.json +++ b/test/fixtures/v5/continue/left_name.json @@ -8,7 +8,7 @@ }, "instructions": { "de": "Links weiterfahren auf Way Name", - "en": "Continue left to stay on Way Name", + "en": "Turn left to stay on Way Name", "es": "Continúe izquierda en Way Name", "fr": "Continuer à gauche sur Way Name", "id": "Terus kiri ke Way Name", diff --git a/test/fixtures/v5/continue/right_default.json b/test/fixtures/v5/continue/right_default.json index 8c0f216d9..e03a55110 100644 --- a/test/fixtures/v5/continue/right_default.json +++ b/test/fixtures/v5/continue/right_default.json @@ -8,7 +8,7 @@ }, "instructions": { "de": "Rechts weiterfahren", - "en": "Continue right", + "en": "Turn right", "es": "Continúe derecha", "fr": "Continuer à droite", "id": "Terus kanan", diff --git a/test/fixtures/v5/continue/right_destination.json b/test/fixtures/v5/continue/right_destination.json index 17638261c..b668be4ad 100644 --- a/test/fixtures/v5/continue/right_destination.json +++ b/test/fixtures/v5/continue/right_destination.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Rechts weiterfahren Richtung Destination 1", - "en": "Continue right towards Destination 1", + "en": "Turn right towards Destination 1", "es": "Continúe derecha hacia Destination 1", "fr": "Continuer à droite en direction de Destination 1", "id": "Teruskan kanan menuju Destination 1", diff --git a/test/fixtures/v5/continue/right_exit.json b/test/fixtures/v5/continue/right_exit.json index 7fb382d19..d27e5dfc9 100644 --- a/test/fixtures/v5/continue/right_exit.json +++ b/test/fixtures/v5/continue/right_exit.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Rechts weiterfahren auf Way Name", - "en": "Continue right onto Way Name", + "en": "Turn right onto Way Name", "es": "Continúe derecha en Way Name", "fr": "Continuer à droite sur Way Name", "id": "Terus kanan ke Way Name", diff --git a/test/fixtures/v5/continue/right_exit_destination.json b/test/fixtures/v5/continue/right_exit_destination.json index 8cb64e45d..a8c02c6d8 100644 --- a/test/fixtures/v5/continue/right_exit_destination.json +++ b/test/fixtures/v5/continue/right_exit_destination.json @@ -10,7 +10,7 @@ }, "instructions": { "de": "Rechts weiterfahren Richtung Destination 1", - "en": "Continue right towards Destination 1", + "en": "Turn right towards Destination 1", "es": "Continúe derecha hacia Destination 1", "fr": "Continuer à droite en direction de Destination 1", "id": "Teruskan kanan menuju Destination 1", diff --git a/test/fixtures/v5/continue/right_name.json b/test/fixtures/v5/continue/right_name.json index 8308d557b..b005cb8c2 100644 --- a/test/fixtures/v5/continue/right_name.json +++ b/test/fixtures/v5/continue/right_name.json @@ -8,7 +8,7 @@ }, "instructions": { "de": "Rechts weiterfahren auf Way Name", - "en": "Continue right to stay on Way Name", + "en": "Turn right to stay on Way Name", "es": "Continúe derecha en Way Name", "fr": "Continuer à droite sur Way Name", "id": "Terus kanan ke Way Name", diff --git a/test/fixtures/v5/continue/sharp_left_default.json b/test/fixtures/v5/continue/sharp_left_default.json index 706fd0a52..66b12d781 100644 --- a/test/fixtures/v5/continue/sharp_left_default.json +++ b/test/fixtures/v5/continue/sharp_left_default.json @@ -8,7 +8,7 @@ }, "instructions": { "de": "Scharf links weiterfahren", - "en": "Continue sharp left", + "en": "Make a sharp left", "es": "Continúe cerrada a la izquierda", "fr": "Continuer franchement à gauche", "id": "Terus tajam kiri", diff --git a/test/fixtures/v5/continue/sharp_left_destination.json b/test/fixtures/v5/continue/sharp_left_destination.json index 32fe32357..de2252ede 100644 --- a/test/fixtures/v5/continue/sharp_left_destination.json +++ b/test/fixtures/v5/continue/sharp_left_destination.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Scharf links weiterfahren Richtung Destination 1", - "en": "Continue sharp left towards Destination 1", + "en": "Make a sharp left towards Destination 1", "es": "Continúe cerrada a la izquierda hacia Destination 1", "fr": "Continuer franchement à gauche en direction de Destination 1", "id": "Teruskan tajam kiri menuju Destination 1", diff --git a/test/fixtures/v5/continue/sharp_left_exit.json b/test/fixtures/v5/continue/sharp_left_exit.json index ace4aa93b..cbb71a3a1 100644 --- a/test/fixtures/v5/continue/sharp_left_exit.json +++ b/test/fixtures/v5/continue/sharp_left_exit.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Scharf links weiterfahren auf Way Name", - "en": "Continue sharp left onto Way Name", + "en": "Make a sharp left to stay on Way Name", "es": "Continúe cerrada a la izquierda en Way Name", "fr": "Continuer franchement à gauche sur Way Name", "id": "Terus tajam kiri ke Way Name", diff --git a/test/fixtures/v5/continue/sharp_left_exit_destination.json b/test/fixtures/v5/continue/sharp_left_exit_destination.json index bfb4f0cf5..c425a3c65 100644 --- a/test/fixtures/v5/continue/sharp_left_exit_destination.json +++ b/test/fixtures/v5/continue/sharp_left_exit_destination.json @@ -10,7 +10,7 @@ }, "instructions": { "de": "Scharf links weiterfahren Richtung Destination 1", - "en": "Continue sharp left towards Destination 1", + "en": "Make a sharp left towards Destination 1", "es": "Continúe cerrada a la izquierda hacia Destination 1", "fr": "Continuer franchement à gauche en direction de Destination 1", "id": "Teruskan tajam kiri menuju Destination 1", diff --git a/test/fixtures/v5/continue/sharp_left_name.json b/test/fixtures/v5/continue/sharp_left_name.json index 61ece225d..bccb266d0 100644 --- a/test/fixtures/v5/continue/sharp_left_name.json +++ b/test/fixtures/v5/continue/sharp_left_name.json @@ -8,7 +8,7 @@ }, "instructions": { "de": "Scharf links weiterfahren auf Way Name", - "en": "Continue sharp left to stay on Way Name", + "en": "Make a sharp left to stay on Way Name", "es": "Continúe cerrada a la izquierda en Way Name", "fr": "Continuer franchement à gauche sur Way Name", "id": "Terus tajam kiri ke Way Name", diff --git a/test/fixtures/v5/continue/sharp_right_default.json b/test/fixtures/v5/continue/sharp_right_default.json index e37cc72cf..dafafd9ef 100644 --- a/test/fixtures/v5/continue/sharp_right_default.json +++ b/test/fixtures/v5/continue/sharp_right_default.json @@ -8,7 +8,7 @@ }, "instructions": { "de": "Scharf rechts weiterfahren", - "en": "Continue sharp right", + "en": "Make a sharp right", "es": "Continúe cerrada a la derecha", "fr": "Continuer franchement à droite", "id": "Terus tajam kanan", diff --git a/test/fixtures/v5/continue/sharp_right_destination.json b/test/fixtures/v5/continue/sharp_right_destination.json index ef5864b16..65650d427 100644 --- a/test/fixtures/v5/continue/sharp_right_destination.json +++ b/test/fixtures/v5/continue/sharp_right_destination.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Scharf rechts weiterfahren Richtung Destination 1", - "en": "Continue sharp right towards Destination 1", + "en": "Make a sharp right towards Destination 1", "es": "Continúe cerrada a la derecha hacia Destination 1", "fr": "Continuer franchement à droite en direction de Destination 1", "id": "Teruskan tajam kanan menuju Destination 1", diff --git a/test/fixtures/v5/continue/sharp_right_exit.json b/test/fixtures/v5/continue/sharp_right_exit.json index ab1eb2e06..debe67929 100644 --- a/test/fixtures/v5/continue/sharp_right_exit.json +++ b/test/fixtures/v5/continue/sharp_right_exit.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Scharf rechts weiterfahren auf Way Name", - "en": "Continue sharp right onto Way Name", + "en": "Make a sharp right to stay on Way Name", "es": "Continúe cerrada a la derecha en Way Name", "fr": "Continuer franchement à droite sur Way Name", "id": "Terus tajam kanan ke Way Name", diff --git a/test/fixtures/v5/continue/sharp_right_exit_destination.json b/test/fixtures/v5/continue/sharp_right_exit_destination.json index 63b3b2b9c..63d577c84 100644 --- a/test/fixtures/v5/continue/sharp_right_exit_destination.json +++ b/test/fixtures/v5/continue/sharp_right_exit_destination.json @@ -10,7 +10,7 @@ }, "instructions": { "de": "Scharf rechts weiterfahren Richtung Destination 1", - "en": "Continue sharp right towards Destination 1", + "en": "Make a sharp right towards Destination 1", "es": "Continúe cerrada a la derecha hacia Destination 1", "fr": "Continuer franchement à droite en direction de Destination 1", "id": "Teruskan tajam kanan menuju Destination 1", diff --git a/test/fixtures/v5/continue/sharp_right_name.json b/test/fixtures/v5/continue/sharp_right_name.json index 47d8f9b79..a1bcfc6e0 100644 --- a/test/fixtures/v5/continue/sharp_right_name.json +++ b/test/fixtures/v5/continue/sharp_right_name.json @@ -8,7 +8,7 @@ }, "instructions": { "de": "Scharf rechts weiterfahren auf Way Name", - "en": "Continue sharp right to stay on Way Name", + "en": "Make a sharp right to stay on Way Name", "es": "Continúe cerrada a la derecha en Way Name", "fr": "Continuer franchement à droite sur Way Name", "id": "Terus tajam kanan ke Way Name", diff --git a/test/fixtures/v5/continue/slight_left_default.json b/test/fixtures/v5/continue/slight_left_default.json index 76ceabc5d..5d2e1d8b6 100644 --- a/test/fixtures/v5/continue/slight_left_default.json +++ b/test/fixtures/v5/continue/slight_left_default.json @@ -8,7 +8,7 @@ }, "instructions": { "de": "Leicht links weiter", - "en": "Continue slightly left", + "en": "Make a slight left", "es": "Continúe ligeramente a la izquierda", "fr": "Continuer légèrement à gauche", "id": "Tetap agak di kiri", diff --git a/test/fixtures/v5/continue/slight_left_destination.json b/test/fixtures/v5/continue/slight_left_destination.json index 03f33e8cd..1a440660a 100644 --- a/test/fixtures/v5/continue/slight_left_destination.json +++ b/test/fixtures/v5/continue/slight_left_destination.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Leicht links weiter Richtung Destination 1", - "en": "Continue slightly left towards Destination 1", + "en": "Make a slight left towards Destination 1", "es": "Continúe ligeramente a la izquierda hacia Destination 1", "fr": "Continuer légèrement à gauche en direction de Destination 1", "id": "Tetap agak di kiri menuju Destination 1", diff --git a/test/fixtures/v5/continue/slight_left_exit.json b/test/fixtures/v5/continue/slight_left_exit.json index db0d34190..3b482672a 100644 --- a/test/fixtures/v5/continue/slight_left_exit.json +++ b/test/fixtures/v5/continue/slight_left_exit.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Leicht links weiter auf Way Name", - "en": "Continue slightly left to stay on Way Name", + "en": "Make a slight left to stay on Way Name", "es": "Continúe ligeramente a la izquierda en Way Name", "fr": "Continuer légèrement à gauche sur Way Name", "id": "Tetap agak di kiri ke Way Name", diff --git a/test/fixtures/v5/continue/slight_left_exit_destination.json b/test/fixtures/v5/continue/slight_left_exit_destination.json index 59d32ea11..60fc22fe8 100644 --- a/test/fixtures/v5/continue/slight_left_exit_destination.json +++ b/test/fixtures/v5/continue/slight_left_exit_destination.json @@ -10,7 +10,7 @@ }, "instructions": { "de": "Leicht links weiter Richtung Destination 1", - "en": "Continue slightly left towards Destination 1", + "en": "Make a slight left towards Destination 1", "es": "Continúe ligeramente a la izquierda hacia Destination 1", "fr": "Continuer légèrement à gauche en direction de Destination 1", "id": "Tetap agak di kiri menuju Destination 1", diff --git a/test/fixtures/v5/continue/slight_left_name.json b/test/fixtures/v5/continue/slight_left_name.json index d8b3a7698..3388084d1 100644 --- a/test/fixtures/v5/continue/slight_left_name.json +++ b/test/fixtures/v5/continue/slight_left_name.json @@ -8,7 +8,7 @@ }, "instructions": { "de": "Leicht links weiter auf Way Name", - "en": "Continue slightly left to stay on Way Name", + "en": "Make a slight left to stay on Way Name", "es": "Continúe ligeramente a la izquierda en Way Name", "fr": "Continuer légèrement à gauche sur Way Name", "id": "Tetap agak di kiri ke Way Name", diff --git a/test/fixtures/v5/continue/slight_right_default.json b/test/fixtures/v5/continue/slight_right_default.json index 0f9d281a9..94b714fa5 100644 --- a/test/fixtures/v5/continue/slight_right_default.json +++ b/test/fixtures/v5/continue/slight_right_default.json @@ -8,7 +8,7 @@ }, "instructions": { "de": "Leicht rechts weiter", - "en": "Continue slightly right", + "en": "Make a slight right", "es": "Continúe ligeramente a la derecha", "fr": "Continuer légèrement à droite", "id": "Tetap agak di kanan", diff --git a/test/fixtures/v5/continue/slight_right_destination.json b/test/fixtures/v5/continue/slight_right_destination.json index 5602516dc..bfcd75b38 100644 --- a/test/fixtures/v5/continue/slight_right_destination.json +++ b/test/fixtures/v5/continue/slight_right_destination.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Leicht rechts weiter Richtung Destination 1", - "en": "Continue slightly right towards Destination 1", + "en": "Make a slight right towards Destination 1", "es": "Continúe ligeramente a la derecha hacia Destination 1", "fr": "Continuer légèrement à droite en direction de Destination 1", "id": "Tetap agak di kanan menuju Destination 1", diff --git a/test/fixtures/v5/continue/slight_right_exit.json b/test/fixtures/v5/continue/slight_right_exit.json index 16c11d695..74454dd3a 100644 --- a/test/fixtures/v5/continue/slight_right_exit.json +++ b/test/fixtures/v5/continue/slight_right_exit.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Leicht rechts weiter auf Way Name", - "en": "Continue slightly right to stay on Way Name", + "en": "Make a slight right to stay on Way Name", "es": "Continúe ligeramente a la derecha en Way Name", "fr": "Continuer légèrement à droite sur Way Name", "id": "Tetap agak di kanan ke Way Name", diff --git a/test/fixtures/v5/continue/slight_right_exit_destination.json b/test/fixtures/v5/continue/slight_right_exit_destination.json index a8fec044d..58f6f2912 100644 --- a/test/fixtures/v5/continue/slight_right_exit_destination.json +++ b/test/fixtures/v5/continue/slight_right_exit_destination.json @@ -10,7 +10,7 @@ }, "instructions": { "de": "Leicht rechts weiter Richtung Destination 1", - "en": "Continue slightly right towards Destination 1", + "en": "Make a slight right towards Destination 1", "es": "Continúe ligeramente a la derecha hacia Destination 1", "fr": "Continuer légèrement à droite en direction de Destination 1", "id": "Tetap agak di kanan menuju Destination 1", diff --git a/test/fixtures/v5/continue/slight_right_name.json b/test/fixtures/v5/continue/slight_right_name.json index 0fd79f654..271d6317e 100644 --- a/test/fixtures/v5/continue/slight_right_name.json +++ b/test/fixtures/v5/continue/slight_right_name.json @@ -8,7 +8,7 @@ }, "instructions": { "de": "Leicht rechts weiter auf Way Name", - "en": "Continue slightly right to stay on Way Name", + "en": "Make a slight right to stay on Way Name", "es": "Continúe ligeramente a la derecha en Way Name", "fr": "Continuer légèrement à droite sur Way Name", "id": "Tetap agak di kanan ke Way Name", diff --git a/test/fixtures/v5/other/motorway_ref_has_no_number_left.json b/test/fixtures/v5/other/motorway_ref_has_no_number_left.json index 290912ff9..c7c96e1aa 100644 --- a/test/fixtures/v5/other/motorway_ref_has_no_number_left.json +++ b/test/fixtures/v5/other/motorway_ref_has_no_number_left.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Links weiterfahren auf Cool highway", - "en": "Continue left to stay on Cool highway", + "en": "Turn left to stay on Cool highway", "es": "Continúe izquierda en Cool highway", "fr": "Continuer à gauche sur Cool highway", "id": "Terus kiri ke Cool highway", diff --git a/test/fixtures/v5/other/motorway_ref_has_no_number_right.json b/test/fixtures/v5/other/motorway_ref_has_no_number_right.json index d5f280b37..40924dbeb 100644 --- a/test/fixtures/v5/other/motorway_ref_has_no_number_right.json +++ b/test/fixtures/v5/other/motorway_ref_has_no_number_right.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Rechts weiterfahren auf Cool highway", - "en": "Continue right to stay on Cool highway", + "en": "Turn right to stay on Cool highway", "es": "Continúe derecha en Cool highway", "fr": "Continuer à droite sur Cool highway", "id": "Terus kanan ke Cool highway", diff --git a/test/fixtures/v5/other/motorway_ref_has_no_number_sharp left.json b/test/fixtures/v5/other/motorway_ref_has_no_number_sharp left.json index 60f9dd948..2c0920577 100644 --- a/test/fixtures/v5/other/motorway_ref_has_no_number_sharp left.json +++ b/test/fixtures/v5/other/motorway_ref_has_no_number_sharp left.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Scharf links weiterfahren auf Cool highway", - "en": "Continue sharp left to stay on Cool highway", + "en": "Make a sharp left to stay on Cool highway", "es": "Continúe cerrada a la izquierda en Cool highway", "fr": "Continuer franchement à gauche sur Cool highway", "id": "Terus tajam kiri ke Cool highway", diff --git a/test/fixtures/v5/other/motorway_ref_has_no_number_sharp right.json b/test/fixtures/v5/other/motorway_ref_has_no_number_sharp right.json index a3b2eba2a..9c5e54cdc 100644 --- a/test/fixtures/v5/other/motorway_ref_has_no_number_sharp right.json +++ b/test/fixtures/v5/other/motorway_ref_has_no_number_sharp right.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Scharf rechts weiterfahren auf Cool highway", - "en": "Continue sharp right to stay on Cool highway", + "en": "Make a sharp right to stay on Cool highway", "es": "Continúe cerrada a la derecha en Cool highway", "fr": "Continuer franchement à droite sur Cool highway", "id": "Terus tajam kanan ke Cool highway", diff --git a/test/fixtures/v5/other/motorway_ref_has_no_number_slight left.json b/test/fixtures/v5/other/motorway_ref_has_no_number_slight left.json index 9c562804f..3e698729f 100644 --- a/test/fixtures/v5/other/motorway_ref_has_no_number_slight left.json +++ b/test/fixtures/v5/other/motorway_ref_has_no_number_slight left.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Leicht links weiter auf Cool highway", - "en": "Continue slightly left to stay on Cool highway", + "en": "Make a slight left to stay on Cool highway", "es": "Continúe ligeramente a la izquierda en Cool highway", "fr": "Continuer légèrement à gauche sur Cool highway", "id": "Tetap agak di kiri ke Cool highway", diff --git a/test/fixtures/v5/other/motorway_ref_has_no_number_slight right.json b/test/fixtures/v5/other/motorway_ref_has_no_number_slight right.json index 372a4a707..0fbe8f664 100644 --- a/test/fixtures/v5/other/motorway_ref_has_no_number_slight right.json +++ b/test/fixtures/v5/other/motorway_ref_has_no_number_slight right.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Leicht rechts weiter auf Cool highway", - "en": "Continue slightly right to stay on Cool highway", + "en": "Make a slight right to stay on Cool highway", "es": "Continúe ligeramente a la derecha en Cool highway", "fr": "Continuer légèrement à droite sur Cool highway", "id": "Tetap agak di kanan ke Cool highway", diff --git a/test/fixtures/v5/other/motorway_ref_has_number_left.json b/test/fixtures/v5/other/motorway_ref_has_number_left.json index 82e41afd2..95af251e2 100644 --- a/test/fixtures/v5/other/motorway_ref_has_number_left.json +++ b/test/fixtures/v5/other/motorway_ref_has_number_left.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Links weiterfahren auf Ref1", - "en": "Continue left to stay on Ref1", + "en": "Turn left to stay on Ref1", "es": "Continúe izquierda en Ref1", "fr": "Continuer à gauche sur Ref1", "id": "Terus kiri ke Ref1", diff --git a/test/fixtures/v5/other/motorway_ref_has_number_right.json b/test/fixtures/v5/other/motorway_ref_has_number_right.json index d4997d0a3..3d6f99120 100644 --- a/test/fixtures/v5/other/motorway_ref_has_number_right.json +++ b/test/fixtures/v5/other/motorway_ref_has_number_right.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Rechts weiterfahren auf Ref1", - "en": "Continue right to stay on Ref1", + "en": "Turn right to stay on Ref1", "es": "Continúe derecha en Ref1", "fr": "Continuer à droite sur Ref1", "id": "Terus kanan ke Ref1", diff --git a/test/fixtures/v5/other/motorway_ref_has_number_sharp left.json b/test/fixtures/v5/other/motorway_ref_has_number_sharp left.json index 3c51e19e2..5ae60e5f6 100644 --- a/test/fixtures/v5/other/motorway_ref_has_number_sharp left.json +++ b/test/fixtures/v5/other/motorway_ref_has_number_sharp left.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Scharf links weiterfahren auf Ref1", - "en": "Continue sharp left to stay on Ref1", + "en": "Make a sharp left to stay on Ref1", "es": "Continúe cerrada a la izquierda en Ref1", "fr": "Continuer franchement à gauche sur Ref1", "id": "Terus tajam kiri ke Ref1", diff --git a/test/fixtures/v5/other/motorway_ref_has_number_sharp right.json b/test/fixtures/v5/other/motorway_ref_has_number_sharp right.json index a381b1cee..b322cdda8 100644 --- a/test/fixtures/v5/other/motorway_ref_has_number_sharp right.json +++ b/test/fixtures/v5/other/motorway_ref_has_number_sharp right.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Scharf rechts weiterfahren auf Ref1", - "en": "Continue sharp right to stay on Ref1", + "en": "Make a sharp right to stay on Ref1", "es": "Continúe cerrada a la derecha en Ref1", "fr": "Continuer franchement à droite sur Ref1", "id": "Terus tajam kanan ke Ref1", diff --git a/test/fixtures/v5/other/motorway_ref_has_number_slight left.json b/test/fixtures/v5/other/motorway_ref_has_number_slight left.json index 186875267..39238a61a 100644 --- a/test/fixtures/v5/other/motorway_ref_has_number_slight left.json +++ b/test/fixtures/v5/other/motorway_ref_has_number_slight left.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Leicht links weiter auf Ref1", - "en": "Continue slightly left to stay on Ref1", + "en": "Make a slight left to stay on Ref1", "es": "Continúe ligeramente a la izquierda en Ref1", "fr": "Continuer légèrement à gauche sur Ref1", "id": "Tetap agak di kiri ke Ref1", diff --git a/test/fixtures/v5/other/motorway_ref_has_number_slight right.json b/test/fixtures/v5/other/motorway_ref_has_number_slight right.json index d5d4916a9..09b923e9e 100644 --- a/test/fixtures/v5/other/motorway_ref_has_number_slight right.json +++ b/test/fixtures/v5/other/motorway_ref_has_number_slight right.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Leicht rechts weiter auf Ref1", - "en": "Continue slightly right to stay on Ref1", + "en": "Make a slight right to stay on Ref1", "es": "Continúe ligeramente a la derecha en Ref1", "fr": "Continuer légèrement à droite sur Ref1", "id": "Tetap agak di kanan ke Ref1", diff --git a/test/fixtures/v5/other/way_name_class_ferry_left.json b/test/fixtures/v5/other/way_name_class_ferry_left.json index 7dc1913d6..5ed018747 100644 --- a/test/fixtures/v5/other/way_name_class_ferry_left.json +++ b/test/fixtures/v5/other/way_name_class_ferry_left.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Links weiterfahren auf Cool highway (Ref1)", - "en": "Continue left to stay on Cool highway (Ref1)", + "en": "Turn left to stay on Cool highway (Ref1)", "es": "Continúe izquierda en Cool highway (Ref1)", "fr": "Continuer à gauche sur Cool highway (Ref1)", "id": "Terus kiri ke Cool highway (Ref1)", diff --git a/test/fixtures/v5/other/way_name_class_ferry_right.json b/test/fixtures/v5/other/way_name_class_ferry_right.json index a8ac32d94..6797b97f2 100644 --- a/test/fixtures/v5/other/way_name_class_ferry_right.json +++ b/test/fixtures/v5/other/way_name_class_ferry_right.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Rechts weiterfahren auf Cool highway (Ref1)", - "en": "Continue right to stay on Cool highway (Ref1)", + "en": "Turn right to stay on Cool highway (Ref1)", "es": "Continúe derecha en Cool highway (Ref1)", "fr": "Continuer à droite sur Cool highway (Ref1)", "id": "Terus kanan ke Cool highway (Ref1)", diff --git a/test/fixtures/v5/other/way_name_class_ferry_sharp left.json b/test/fixtures/v5/other/way_name_class_ferry_sharp left.json index a80170637..ce10d4974 100644 --- a/test/fixtures/v5/other/way_name_class_ferry_sharp left.json +++ b/test/fixtures/v5/other/way_name_class_ferry_sharp left.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Scharf links weiterfahren auf Cool highway (Ref1)", - "en": "Continue sharp left to stay on Cool highway (Ref1)", + "en": "Make a sharp left to stay on Cool highway (Ref1)", "es": "Continúe cerrada a la izquierda en Cool highway (Ref1)", "fr": "Continuer franchement à gauche sur Cool highway (Ref1)", "id": "Terus tajam kiri ke Cool highway (Ref1)", diff --git a/test/fixtures/v5/other/way_name_class_ferry_sharp right.json b/test/fixtures/v5/other/way_name_class_ferry_sharp right.json index c619a95bd..83b5dcd4d 100644 --- a/test/fixtures/v5/other/way_name_class_ferry_sharp right.json +++ b/test/fixtures/v5/other/way_name_class_ferry_sharp right.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Scharf rechts weiterfahren auf Cool highway (Ref1)", - "en": "Continue sharp right to stay on Cool highway (Ref1)", + "en": "Make a sharp right to stay on Cool highway (Ref1)", "es": "Continúe cerrada a la derecha en Cool highway (Ref1)", "fr": "Continuer franchement à droite sur Cool highway (Ref1)", "id": "Terus tajam kanan ke Cool highway (Ref1)", diff --git a/test/fixtures/v5/other/way_name_class_ferry_slight left.json b/test/fixtures/v5/other/way_name_class_ferry_slight left.json index cf017fa1a..ca8b1752e 100644 --- a/test/fixtures/v5/other/way_name_class_ferry_slight left.json +++ b/test/fixtures/v5/other/way_name_class_ferry_slight left.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Leicht links weiter auf Cool highway (Ref1)", - "en": "Continue slightly left to stay on Cool highway (Ref1)", + "en": "Make a slight left to stay on Cool highway (Ref1)", "es": "Continúe ligeramente a la izquierda en Cool highway (Ref1)", "fr": "Continuer légèrement à gauche sur Cool highway (Ref1)", "id": "Tetap agak di kiri ke Cool highway (Ref1)", diff --git a/test/fixtures/v5/other/way_name_class_ferry_slight right.json b/test/fixtures/v5/other/way_name_class_ferry_slight right.json index ca9c0cea5..fd35891f3 100644 --- a/test/fixtures/v5/other/way_name_class_ferry_slight right.json +++ b/test/fixtures/v5/other/way_name_class_ferry_slight right.json @@ -9,7 +9,7 @@ }, "instructions": { "de": "Leicht rechts weiter auf Cool highway (Ref1)", - "en": "Continue slightly right to stay on Cool highway (Ref1)", + "en": "Make a slight right to stay on Cool highway (Ref1)", "es": "Continúe ligeramente a la derecha en Cool highway (Ref1)", "fr": "Continuer légèrement à droite sur Cool highway (Ref1)", "id": "Tetap agak di kanan ke Cool highway (Ref1)",