music-assistant-server

1.5 KBJSON
strings.json
1.5 KB49 lines • json
1{
2  "config_entries": {
3    "_provider": {
4      "label": "Provider",
5      "description": "The endpoint to use, defaults to Last.fm",
6      "options": {
7        "lastfm": "Last.FM",
8        "librefm": "LibreFM"
9      }
10    },
11    "_api_key": {
12      "label": "API Key",
13      "description": "Override the built-in Last.fm API key. Required for Libre.fm."
14    },
15    "_api_secret": {
16      "label": "Shared secret",
17      "description": "Override the built-in Last.fm shared secret. Required for Libre.fm."
18    },
19    "_username": {
20      "label": "Logged in user"
21    },
22    "_api_session_key": {
23      "label": "Session key"
24    },
25    "save_reminder": {
26      "label": "Successfully logged in as {0}, don't forget to hit save to complete the setup"
27    },
28    "authorize": {
29      "label": "Authorize with {0}"
30    }
31  },
32  "setup_flow": {
33    "user": {
34      "title": "Choose the scrobbling network",
35      "description": "Select Last.fm or Libre.fm. Advanced users can supply their own API key and secret; leave them blank to use the built-in Last.fm app."
36    },
37    "auth": {
38      "title": "Authorize scrobbling",
39      "description": "Sign in and grant access in the window that opens, then return here to finish."
40    }
41  },
42  "errors": {
43    "auth_failed": "Authorization was not completed. Please try again."
44  },
45  "manifest": {
46    "description": "Scrobbles your listening history to Last.fm (and others with a compatible API like Libre.fm), building rich listening stats and recommendations."
47  }
48}
49