mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-23 23:20:57 +03:00
Add more Portuguese translations
This commit is contained in:
parent
605253446a
commit
161a9b340c
ui/src
@ -53,32 +53,44 @@ export default deepmerge(portugueseMessages, {
|
||||
user: {
|
||||
name: 'Usuário |||| Usuários',
|
||||
fields: {
|
||||
name: 'Nome'
|
||||
}
|
||||
},
|
||||
transcoding: {
|
||||
name: 'Conversão |||| Conversões',
|
||||
fields: {
|
||||
userName: 'Usuário',
|
||||
isAdmin: 'Admin?',
|
||||
lastLoginAt: 'Últ. Login',
|
||||
updatedAt: 'Últ. Atualização',
|
||||
name: 'Nome'
|
||||
}
|
||||
},
|
||||
player: {
|
||||
name: 'Tocador |||| Tocadores',
|
||||
fields: {
|
||||
name: 'Nome'
|
||||
name: 'Nome',
|
||||
transcodingId: 'Conversão',
|
||||
maxBitRate: 'Bitrate máx',
|
||||
client: 'Cliente',
|
||||
userName: 'Usuário',
|
||||
lastSeen: 'Últ. acesso'
|
||||
}
|
||||
},
|
||||
transcoding: {
|
||||
name: 'Conversão |||| Conversões',
|
||||
fields: {
|
||||
name: 'Nome',
|
||||
targetFormat: 'Formato',
|
||||
defaultBitRate: 'Bitrate padrão',
|
||||
command: 'Comando'
|
||||
}
|
||||
}
|
||||
},
|
||||
ra: {
|
||||
auth: {
|
||||
welcome1: 'Thanks for installing Navidrome!',
|
||||
welcome2: 'To start, create an admin user',
|
||||
confirmPassword: 'Confirm Password',
|
||||
buttonCreateAdmin: 'Create Admin'
|
||||
welcome1: 'Obrigado por instalar Navidrome!',
|
||||
welcome2: 'Para iniciar, crie um usuário admin',
|
||||
confirmPassword: 'Confirme a senha',
|
||||
buttonCreateAdmin: 'Criar Admin'
|
||||
},
|
||||
validation: {
|
||||
invalidChars: 'Please only use letter and numbers',
|
||||
passwordDoesNotMatch: 'Password does not match'
|
||||
invalidChars: 'Somente use letras e numeros',
|
||||
passwordDoesNotMatch: 'Senha não confere'
|
||||
}
|
||||
},
|
||||
menu: {
|
||||
|
@ -19,7 +19,6 @@ const PlayerEdit = (props) => (
|
||||
<SimpleForm>
|
||||
<TextInput source="name" validate={[required()]} />
|
||||
<ReferenceInput
|
||||
label="Transcoding"
|
||||
source="transcodingId"
|
||||
reference="transcoding"
|
||||
sort={{ field: 'name', order: 'ASC' }}
|
||||
|
@ -13,15 +13,10 @@ const PlayerList = (props) => (
|
||||
<List title={<Title subTitle={'Players'} />} exporter={false} {...props}>
|
||||
<Datagrid rowClick="edit">
|
||||
<TextField source="name" />
|
||||
<ReferenceField
|
||||
label="Transcoding"
|
||||
source="transcodingId"
|
||||
reference="transcoding"
|
||||
>
|
||||
<ReferenceField source="transcodingId" reference="transcoding">
|
||||
<TextField source="name" />
|
||||
</ReferenceField>
|
||||
<FunctionField
|
||||
label="MaxBitRate"
|
||||
source="maxBitRate"
|
||||
render={(r) => (r.maxBitRate ? r.maxBitRate : 'Unlimited')}
|
||||
/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user