diff --git a/ui/src/i18n/en.json b/ui/src/i18n/en.json
index 2773c393..1ab756fd 100644
--- a/ui/src/i18n/en.json
+++ b/ui/src/i18n/en.json
@@ -16,6 +16,7 @@
"compilation": "Compilation",
"year": "Year",
"size": "File size",
+ "bitRate": "Bit rate",
"updatedAt": "Uploaded at"
},
"actions": {
@@ -34,7 +35,8 @@
"name": "Name",
"genre": "Genre",
"compilation": "Compilation",
- "year": "Year"
+ "year": "Year",
+ "updatedAt":"Updated at"
},
"actions": {
"playAll": "Play",
@@ -54,10 +56,12 @@
"name": "User |||| Users",
"fields": {
"userName": "Username",
+ "name": "Name",
+ "password": "Password",
"isAdmin": "Is Admin",
"lastLoginAt": "Last Login At",
- "updatedAt": "Updated At",
- "name": "Name"
+ "updatedAt": "Updated at",
+ "createdAt": "Created at"
}
},
"player": {
@@ -253,4 +257,4 @@
"shufflePlay": "Shuffle"
}
}
-}
\ No newline at end of file
+}
diff --git a/ui/src/player/PlayerEdit.js b/ui/src/player/PlayerEdit.js
index 4890f7a8..009b1c13 100644
--- a/ui/src/player/PlayerEdit.js
+++ b/ui/src/player/PlayerEdit.js
@@ -42,7 +42,7 @@ const PlayerEdit = (props) => (
{ id: 192, name: '192' },
{ id: 256, name: '256' },
{ id: 320, name: '320' },
- { id: 0, name: 'Unlimited' },
+ { id: 0, name: '-' },
]}
/>
diff --git a/ui/src/player/PlayerList.js b/ui/src/player/PlayerList.js
index ad2b2d28..4d9e7f65 100644
--- a/ui/src/player/PlayerList.js
+++ b/ui/src/player/PlayerList.js
@@ -24,7 +24,7 @@ const PlayerList = (props) => {
r.client}
secondaryText={(r) => r.userName}
- tertiaryText={(r) => (r.maxBitRate ? r.maxBitRate : 'Unlimited')}
+ tertiaryText={(r) => (r.maxBitRate ? r.maxBitRate : '-')}
/>
) : (
@@ -34,7 +34,7 @@ const PlayerList = (props) => {
(r.maxBitRate ? r.maxBitRate : 'Unlimited')}
+ render={(r) => (r.maxBitRate ? r.maxBitRate : '-')}
/>