Skip to content

Commit

Permalink
Added missing language key.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamTV12345 committed May 2, 2023
1 parent 245cf79 commit 761a750
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
3 changes: 0 additions & 3 deletions ui/src/components/AddPodcast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ export const AddPodcast = ()=>{
const [selectedSearchType, setSelectedSearchType] = useState<AddTypes>(AddTypes.ITUNES)
const configModel = useAppSelector(state=>state.common.configModel)




return <Modal onCancel={()=>{}} onAccept={()=>{}} headerText={t('add-podcast')!} onDelete={()=>{}} cancelText={"Abbrechen"} acceptText={"Hinzufügen"} >
<div>
<AddHeader selectedSearchType={selectedSearchType} setSelectedSearchType={setSelectedSearchType} configModel={configModel}/>
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/OpmlAdd.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export const OpmlAdd:FC<OpmlAddProps> = ({})=>{
<div className="flex-1"/>
<button className="bg-blue-800 p-2 disabled:bg-gray-800" disabled={files.length==0} onClick={()=>{
dispatch(setInProgress(true))
uploadOpml()}}>Upload OPML</button>
uploadOpml()}}>{t('upload-opml')}</button>
</div>
</div>
}
3 changes: 2 additions & 1 deletion ui/src/language/json/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,5 +108,6 @@
"version-infos": "Versionsinfo",
"progress": "Fortschritt",
"opml-file": "OPML-Datei",
"rss-feed-url": "RSS Feed URL"
"rss-feed-url": "RSS Feed URL",
"upload-opml-file": "OPML-Datei hochladen"
}
3 changes: 2 additions & 1 deletion ui/src/language/json/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,6 @@
"version-infos": "Version Info",
"progress": "Progress",
"opml-file": "OPML file",
"rss-feed-url": "RSS feed URL"
"rss-feed-url": "RSS feed URL",
"upload-opml-file": "Upload OPML file"
}
3 changes: 2 additions & 1 deletion ui/src/language/json/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,5 +106,6 @@
"version-infos": "Info sur la version",
"progress": "Progression",
"opml-file": "Fichier OPML",
"rss-feed-url": "URL du flux RSS"
"rss-feed-url": "URL du flux RSS",
"upload-opml-file": "Télécharger un fichier OPML"
}

0 comments on commit 761a750

Please sign in to comment.