Skip to content

Commit

Permalink
fix(entrance): error when moving an entrance to another cave #975
Browse files Browse the repository at this point in the history
  • Loading branch information
vmarseguerra committed Aug 20, 2024
1 parent 3867d56 commit 2aba687
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/web-app/public/lang/bg.json
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@
"Entrance name language": "Език за името на входа",
"Entrance properties": "свойства на Входа",
"Entrance successfully created!": "Входът е създаден успешно!",
"Entrance successfully moved from {intialCave} to {finalCave}!": "Вход успешно преместен от {intialCave} в {finalCave}!",
"Entrance successfully moved from {initialCave} to {finalCave}!": "Вход успешно преместен от {initialCave} в {finalCave}!",
"Entrance successfully updated!": "Входът е актуализиран успешно!",
"entrances": "входове",
"Entrances": "Входове",
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app/public/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@
"Entrance name language": "Entrance name language",
"Entrance properties": "Entrance properties",
"Entrance successfully created!": "Entrance successfully created!",
"Entrance successfully moved from {intialCave} to {finalCave}!": "Entrance successfully moved from {intialCave} to {finalCave}!",
"Entrance successfully moved from {initialCave} to {finalCave}!": "Entrance successfully moved from {initialCave} to {finalCave}!",
"Entrance successfully updated!": "Entrance successfully updated!",
"entrances": "entrances",
"Entrances": "Entrances",
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app/public/lang/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@
"Entrance name language": "Idioma del nombre de la entrada",
"Entrance properties": "Propiedades de la entrada",
"Entrance successfully created!": "¡Entrada creada con éxito!",
"Entrance successfully moved from {intialCave} to {finalCave}!": "¡Entrada movida con éxito de {intialCave} a {finalCave}!",
"Entrance successfully moved from {initialCave} to {finalCave}!": "¡Entrada movida con éxito de {initialCave} a {finalCave}!",
"Entrance successfully updated!": "¡Entrada actualizada con éxito!",
"entrances": "entradas",
"Entrances": "Entradas",
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app/public/lang/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@
"Entrance name language": "Langue du nom de l'entrée",
"Entrance properties": "Propriétés de l'entrée",
"Entrance successfully created!": "Entrée créée avec succès !",
"Entrance successfully moved from {intialCave} to {finalCave}!": "Entrée déplacée avec succès depuis {initialCave} vers {finalCave} !",
"Entrance successfully moved from {initialCave} to {finalCave}!": "Entrée déplacée avec succès depuis {initialCave} vers {finalCave} !",
"Entrance successfully updated!": "Entrée mise à jour avec succès !",
"entrances": "entrées",
"Entrances": "Entrées",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ const MoveEntranceToCaveForm = ({ entrance }) => {
<Alert
content={formatMessage(
{
id: 'Entrance successfully moved from {intialCave} to {finalCave}!',
id: 'Entrance successfully moved from {initialCave} to {finalCave}!',
defaultMessage:
'Entrance successfully moved from {intialCave} to {finalCave}!'
'Entrance successfully moved from {initialCave} to {finalCave}!'
},
{
intialCave: <b>{entrance.cave.name}</b>,
initialCave: <b>{entrance.cave.name}</b>,
finalCave: <b>{newCave.name}</b>
}
)}
Expand Down

0 comments on commit 2aba687

Please sign in to comment.