mirror of
https://github.com/stashapp/stash.git
synced 2026-02-07 16:05:47 +01:00
Add localized messages for changelog header and select directory
This commit is contained in:
parent
ab7a5a35dc
commit
f6a24f124b
3 changed files with 10 additions and 2 deletions
|
|
@ -256,7 +256,9 @@ const Changelog: React.FC = () => {
|
|||
|
||||
return (
|
||||
<div className="changelog">
|
||||
<h1 className="mb-4">Changelog</h1>
|
||||
<h1 className="mb-4">
|
||||
<FormattedMessage id="config.changelog.header" />
|
||||
</h1>
|
||||
{releases.map((r) => (
|
||||
<Version
|
||||
key={r.version}
|
||||
|
|
|
|||
|
|
@ -18,7 +18,9 @@ export const FolderSelectDialog: React.FC<IProps> = ({
|
|||
|
||||
return (
|
||||
<Modal show onHide={() => onClose()} title="">
|
||||
<Modal.Header>Select directory</Modal.Header>
|
||||
<Modal.Header>
|
||||
<FormattedMessage id="actions.add_directory" />
|
||||
</Modal.Header>
|
||||
<Modal.Body>
|
||||
<div className="dialog-content">
|
||||
<FolderSelect
|
||||
|
|
|
|||
|
|
@ -115,6 +115,7 @@
|
|||
"scrape_with": "Scrape with…",
|
||||
"search": "Search",
|
||||
"select_all": "Select All",
|
||||
"select_directory": "Select directory",
|
||||
"select_entity": "Select {entityType}",
|
||||
"select_folders": "Select folders",
|
||||
"select_none": "Select None",
|
||||
|
|
@ -270,6 +271,9 @@
|
|||
"tasks": "Tasks",
|
||||
"tools": "Tools"
|
||||
},
|
||||
"changelog": {
|
||||
"header": "Changelog"
|
||||
},
|
||||
"dlna": {
|
||||
"allow_temp_ip": "Allow {tempIP}",
|
||||
"allowed_ip_addresses": "Allowed IP addresses",
|
||||
|
|
|
|||
Loading…
Reference in a new issue