Skip to content

Commit

Permalink
Fix string in label (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
eddsaura committed Jan 20, 2022
1 parent b019e65 commit dc09fe3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/components/Web/Forms/CreateFishbowl.tsx
Expand Up @@ -180,7 +180,7 @@ const Form = (props: FormProps & FormikProps<FormValues>) => {
name="language"
icon="language"
autoComplete="off">
<option value="">{t('fishbowl.selectLanguage')}</option>
<option value="">{t('fishbowl.selectLanguageLabel')}</option>
{locales.map(locale => (
<option value={locale} key={`locale-${locale}`}>
{t(`common:languages.${locale}`)}
Expand Down
1 change: 1 addition & 0 deletions frontend/locales/ca/form.json
Expand Up @@ -13,6 +13,7 @@
"selectDay": "Selecciona el dia",
"time": "Comença a les",
"selectTime": "Hora",
"selectLanguageLabel": "Selecciona el teu idioma",
"language": "Idioma",
"hours": "h",
"minutes": "m",
Expand Down
1 change: 1 addition & 0 deletions frontend/locales/de/form.json
Expand Up @@ -11,6 +11,7 @@
"equalPassword": "Die beiden Passwörter müssen gleich sein"
},
"fishbowl": {
"selectLanguageLabel": "Sprache wählen",
"language": "Sprache",
"hours": "St.",
"minutes": "Min.",
Expand Down
1 change: 1 addition & 0 deletions frontend/locales/en/form.json
Expand Up @@ -14,6 +14,7 @@
"time": "Starts at",
"selectTime": "Select time",
"language": "Language",
"selectLanguageLabel": "Select language",
"hours": "h",
"minutes": "m",
"duration": "Duration",
Expand Down
1 change: 1 addition & 0 deletions frontend/locales/es/form.json
Expand Up @@ -14,6 +14,7 @@
"time": "Empieza a las",
"selectTime": "Selecciona la hora",
"language": "Idioma",
"selectLanguageLabel": "Selecciona el idioma",
"hours": "h",
"minutes": "m",
"duration": "Duración",
Expand Down
1 change: 1 addition & 0 deletions frontend/locales/fr/form.json
Expand Up @@ -4,6 +4,7 @@
"title": "Titre",
"selectDay": "Sélectionnez le jour",
"language": "Langue",
"selectLanguageLabel": "Sélectionnez la langue",
"day": "Date",
"time": "Commence à",
"selectTime": "Sélectionner l'heure",
Expand Down

0 comments on commit dc09fe3

Please sign in to comment.