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

fix: c2corg#2313 api climbing error translation #3873

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions src/translations/ca.json
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,9 @@
"at least one user required": {
"API message": "Seleccioneu almenys un itinerari"
},
"climbing indoor waypoint cannot be linked to a route": {
"API message": "L'escalada en interiores no es pot vincular a una ruta"
},
"author": "autor",
"author_status": "Autor",
"autonomous": {
Expand Down
3 changes: 3 additions & 0 deletions src/translations/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -914,6 +914,9 @@
"at least one route required": {
"API message": "wenigstens eine Route ist nötig"
},
"climbing indoor waypoint cannot be linked to a route": {
"API message": "Indoor-Klettern können nicht mit einer Route verknüpft werden"
},
"at least one user required": {
"API message": "wenigstens ein Benutzerkonto nötig"
},
Expand Down
3 changes: 3 additions & 0 deletions src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,9 @@
"at least one user required": {
"API message": "Select at least one user"
},
"climbing indoor waypoint cannot be linked to a route": {
"API message": "Climbing indoor cannot be linked to a route"
},
"auth-denied": {
"tracking": "Connection denied by user"
},
Expand Down
3 changes: 3 additions & 0 deletions src/translations/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,9 @@
"at least one user required": {
"API message": "al menos un usario requerido"
},
"climbing indoor waypoint cannot be linked to a route": {
"API message": "La escalada en interiores no puede vincularse a una ruta"
},
"author": "Autor",
"author_status": "Autor",
"autonomous": {
Expand Down
3 changes: 3 additions & 0 deletions src/translations/eu.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@
"article_categories": "elkartea"
},
"associations": "Elkarteak",
"climbing indoor waypoint cannot be linked to a route": {
"API message": "Kanpoan igotzea ezin da erlazio bat egitea biderik ez"
},
"author": "egilea",
"avalanche_forecaster": {
"user_categories": "elurjausi_iragarpena"
Expand Down
3 changes: 3 additions & 0 deletions src/translations/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -823,6 +823,9 @@
"at least one user required": {
"API message": "Sélectionnez au moins un itinéraire"
},
"climbing indoor waypoint cannot be linked to a route": {
"API message": "Les SAE ne peuvent pas être reliées à un itinéraire"
},
"auth-denied": {
"tracking": "L'autorisation de connexion au service a été refusée par l'utilisateur."
},
Expand Down
3 changes: 3 additions & 0 deletions src/translations/hu.json
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,9 @@
"at least one user required": {
"API message": "Legalább egy útvonal megadása szükséges"
},
"climbing indoor waypoint cannot be linked to a route": {
"API message": "A beltéri mászás nem hozható összefüggésbe egy útvonallal"
},
"author": "Szerző",
"author_status": "Az eseményben betöltött szerep",
"autonomous": {
Expand Down
3 changes: 3 additions & 0 deletions src/translations/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -828,6 +828,9 @@
"at least one user required": {
"API message": "Selezionare al meno un itinerario"
},
"climbing indoor waypoint cannot be linked to a route": {
"API message": "L'arrampicata indoor non può essere collegata a un percorso"
},
"auth-denied": {
"tracking": "L'autorizzazione a connettersi al servizio è stata rifiutata dall'utente."
},
Expand Down
3 changes: 3 additions & 0 deletions src/translations/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,9 @@
"at least one user required": {
"API message": "требуется по крайней мере одного пользователя"
},
"climbing indoor waypoint cannot be linked to a route": {
"API message": "Залы для скалолазания не могут быть связаны с маршрутом"
},
"author": "автор",
"author_status": "Вовлеченность в ситуацию",
"autonomous": {
Expand Down
3 changes: 3 additions & 0 deletions src/translations/sl.json
Original file line number Diff line number Diff line change
Expand Up @@ -857,6 +857,9 @@
"at least one user required": {
"API message": "Izberite vsaj en uporabnik"
},
"climbing indoor waypoint cannot be linked to a route": {
"API message": "Plezanje v zaprtih prostorih ni mogoče povezati z potjo"
},
"auth-denied": {
"tracking": "Dovoljenje za povezavo s storitvijo je bilo zavrnjeno"
},
Expand Down
3 changes: 3 additions & 0 deletions src/translations/zh_CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -845,6 +845,9 @@
"at least one user required": {
"API message": "选择至少一位用户"
},
"climbing indoor waypoint cannot be linked to a route": {
"API message": "室内攀岩无法链接到路线"
},
"auth-denied": {
"tracking": "拒绝授权"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ export default {
// $gettext('Shorter than minimum length 1', 'API message');
// $gettext('at least one route required', 'API message');
// $gettext('at least one user required', 'API message');
// $gettext('climbing indoor waypoint cannot be linked to a route', 'API message');
// $gettext('This field must be a valid ISBN.', 'API message');

if (fieldsWithError.length !== 0) {
Expand Down
Loading