mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
More share translations
This commit is contained in:
parent
12bb6c3847
commit
72a12e344e
2 changed files with 11 additions and 6 deletions
|
@ -38,18 +38,21 @@ export const ShareDialog = ({ open, onClose, ids, resource, name }) => {
|
||||||
navigator.clipboard
|
navigator.clipboard
|
||||||
.writeText(url)
|
.writeText(url)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
notify(`URL copied to clipboard: ${url}`, {
|
notify(translate('message.shareSuccess', { url }), {
|
||||||
type: 'info',
|
type: 'info',
|
||||||
multiLine: true,
|
multiLine: true,
|
||||||
duration: 0,
|
duration: 0,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
notify(`Error copying URL ${url} to clipboard: ${err.message}`, {
|
notify(
|
||||||
type: 'warning',
|
translate('message.shareFailure', { url }) + ': ' + err.message,
|
||||||
multiLine: true,
|
{
|
||||||
duration: 0,
|
type: 'warning',
|
||||||
})
|
multiLine: true,
|
||||||
|
duration: 0,
|
||||||
|
}
|
||||||
|
)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
onFailure: (error) =>
|
onFailure: (error) =>
|
||||||
|
|
|
@ -371,6 +371,8 @@
|
||||||
"lastfmLink": "Read More...",
|
"lastfmLink": "Read More...",
|
||||||
"shareOriginalFormat": "Share in original format",
|
"shareOriginalFormat": "Share in original format",
|
||||||
"shareDialogTitle": "Share %{resource} '%{name}'",
|
"shareDialogTitle": "Share %{resource} '%{name}'",
|
||||||
|
"shareSuccess": "URL copied to clipboard: %{url}",
|
||||||
|
"shareFailure": "Error copying URL %{url} to clipboard",
|
||||||
"downloadDialogTitle": "Download %{resource} '%{name}' (%{size})",
|
"downloadDialogTitle": "Download %{resource} '%{name}' (%{size})",
|
||||||
"originalFormat": "Download in original format"
|
"originalFormat": "Download in original format"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue