Skip to content

Commit e1b098f

Browse files
committed
fix(#445): missing add label
1 parent b9b9466 commit e1b098f

10 files changed

Lines changed: 10 additions & 5 deletions

File tree

src/app/components/EditorAwards.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export default function EditorAwards({ lang }: Props): JSX.Element {
120120
disabled={current.trim() === ""}
121121
onClick={add}
122122
>
123-
Add
123+
{t("editor.form.add")}
124124
</Button>
125125
</div>
126126
</InputGroup>

src/app/components/EditorFeatures.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default function EditorFeatures({ lang }: Props): JSX.Element {
118118
disabled={current.trim() === ""}
119119
onClick={add}
120120
>
121-
Add feature
121+
{t("editor.form.add")}
122122
</Button>
123123
</div>
124124
</InputGroup>

src/app/components/EditorScreenshots.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export default function EditorScreenshots({ lang }: Props): JSX.Element {
106106
disabled={current.trim() === ""}
107107
onClick={add}
108108
>
109-
Add screenshot
109+
{t("editor.form.add")}
110110
</Button>
111111
</div>
112112
</InputGroup>

src/app/components/EditorUsedBy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export default function EditorUsedBy(): JSX.Element {
9090
}
9191
onClick={add}
9292
>
93-
Add PA
93+
{t("editor.form.add")}
9494
</Button>
9595
</div>
9696
</InputGroup>

src/app/components/EditorVideos.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export default function EditorVideos({ lang }: Props): JSX.Element {
180180
disabled={current.trim() === "" || !isValidUrl}
181181
onClick={add}
182182
>
183-
Add video
183+
{t("editor.form.add")}
184184
</Button>
185185
</div>
186186
</InputGroup>

src/i18n/locales/de.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"yamlloading": "Fehler beim Laden von YAML"
3030
},
3131
"form": {
32+
"add": "Hinzufügen",
3233
"deprecatedField": "Veraltet",
3334
"reset": {
3435
"button": "Zurücksetzen",

src/i18n/locales/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"yamlloading": "Error loading yaml"
4343
},
4444
"form": {
45+
"add": "Add",
4546
"deprecatedField": "deprecated",
4647
"reset": {
4748
"button": "Reset",

src/i18n/locales/fr.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"yamlloading": "Error loading yaml"
4343
},
4444
"form": {
45+
"add": "Ajouter",
4546
"deprecatedField": "deprecated",
4647
"reset": {
4748
"button": "Reset",

src/i18n/locales/it.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"yamlloading": "Errore nel caricamento dello yaml"
4444
},
4545
"form": {
46+
"add": "Aggiungi",
4647
"deprecatedField": "deprecated",
4748
"reset": {
4849
"button": "Reimposta",

src/i18n/locales/nl.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"yamlloading": "Fout bij het laden van yaml"
4343
},
4444
"form": {
45+
"add": "Toevoegen",
4546
"deprecatedField": "verouderd",
4647
"reset": {
4748
"button": "Resetten",

0 commit comments

Comments
 (0)