mirror of
https://github.com/sct/overseerr.git
synced 2025-12-26 00:16:16 +01:00
docs: fixed multiple typos, updated latest en.json strings (#371) [skip ci]
This commit is contained in:
@@ -20,7 +20,7 @@ const Login: React.FC = () => {
|
||||
|
||||
// Effect that is triggered when the `authToken` comes back from the Plex OAuth
|
||||
// We take the token and attempt to login. If we get a success message, we will
|
||||
// ask swr to revalidate the user which _shouid_ come back with a valid user.
|
||||
// ask swr to revalidate the user which _should_ come back with a valid user.
|
||||
useEffect(() => {
|
||||
const login = async () => {
|
||||
setProcessing(true);
|
||||
|
||||
@@ -23,13 +23,12 @@ const messages = defineMessages({
|
||||
'Grants permission to manage Overseerr users. Users with this permission cannot modify users with Administrator privilege, or grant it.',
|
||||
settings: 'Manage Settings',
|
||||
settingsDescription:
|
||||
'Grants permission to modify all Overseerr settings. User must have this permission to be able to grant it to others.',
|
||||
'Grants permission to modify all Overseerr settings. A user must have this permission to grant it to others.',
|
||||
managerequests: 'Manage Requests',
|
||||
managerequestsDescription:
|
||||
'Grants permission to manage Overseerr requests. This includes approving and denying requests.',
|
||||
request: 'Request',
|
||||
requestDescription:
|
||||
'Grants permission to make requests for movies or tv shows.',
|
||||
requestDescription: 'Grants permission to request movies and series.',
|
||||
vote: 'Vote',
|
||||
voteDescription:
|
||||
'Grants permission to vote on requests (voting not yet implemented)',
|
||||
@@ -38,7 +37,7 @@ const messages = defineMessages({
|
||||
'Grants auto approval for any requests made by this user.',
|
||||
save: 'Save',
|
||||
saving: 'Saving...',
|
||||
usersaved: 'User succesfully saved',
|
||||
usersaved: 'User saved',
|
||||
userfail: 'Something went wrong saving the user.',
|
||||
});
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ export type Nullable<T> = T | null;
|
||||
export type Maybe<T> = T | null | undefined;
|
||||
|
||||
/**
|
||||
* Helps type objects with an abitrary number of properties that are
|
||||
* Helps type objects with an arbitrary number of properties that are
|
||||
* usually being defined at export.
|
||||
*
|
||||
* @param component Main object you want to apply properties to
|
||||
|
||||
Reference in New Issue
Block a user