Compare commits

...

4 Commits

Author SHA1 Message Date
xmflsct 38524e4c6b
Merge branch 'main' into release 2023-08-28 00:40:47 +02:00
xmflsct fa8d7ed47e
New Crowdin updates (#760)
* New translations tabs.json (Portuguese, Brazilian)

* New translations contextMenu.json (Portuguese, Brazilian)

* New translations tabs.json (Portuguese, Brazilian)
2023-08-28 00:40:30 +02:00
xmflsct 4e337e1216
Merge branch 'main' into release 2023-08-28 00:27:21 +02:00
xmflsct 9f8064ded4
Fix Android crashes using PlatformColor 2023-08-28 00:27:10 +02:00
4 changed files with 33 additions and 45 deletions

View File

@ -1,6 +1,6 @@
{
"name": "tooot",
"version": "4.10.2",
"version": "4.10.3",
"description": "tooot for Mastodon",
"author": "xmflsct <me@xmflsct.com>",
"license": "GPL-3.0-or-later",

View File

@ -18,8 +18,8 @@
"followAs": {
"trigger": "",
"succeed_default": "Agora seguindo @{{target}} com @{{source}}",
"succeed_locked": "",
"failed": ""
"succeed_locked": "Enviado o pedido para seguir @{{target}} com {{source}}, aguardando aprovação",
"failed": "Seguir como"
},
"blockReport": "Bloquear e denunciar",
"block": {

View File

@ -172,15 +172,15 @@
},
"filters": {
"title": "Filtros de conteúdo",
"content": ""
"content": "{{count}} ativo"
},
"web_only": {
"title": "",
"title": "Atualizar configurações",
"description": "As configurações abaixo só podem ser atualizadas usando a interface web"
}
},
"preferencesFilters": {
"expired": "",
"expired": "Expirado",
"keywords_one": "{{count}} palavra-chave",
"keywords_other": "{{count}} palavras-chave",
"statuses_one": "{{count}} toot",
@ -271,8 +271,8 @@
"settings": "Ativar em configurações"
},
"missingServerKey": {
"message": "",
"description": ""
"message": "Servidor configurado incorretamente para push",
"description": "Entre em contato com o administrador do servidor para configurar o suporte push"
},
"global": {
"heading": "Habilitar para {{acct}}",
@ -390,7 +390,7 @@
"accessibilityHint": "Você pode silenciar, bloquear, relatar ou compartilhar este usuário"
},
"followed_by": " está seguindo você",
"privateNote": "",
"privateNote": "Adicionar nota privada",
"moved": "Usuário movido",
"created_at": "Registrado em: {{date}}",
"summary": {
@ -404,7 +404,7 @@
},
"accountInLists": {
"name": "Listas de @{{username}}",
"inLists": "",
"inLists": "Nas listas",
"notInLists": "Outras listas"
},
"attachments": {
@ -418,17 +418,17 @@
"name": "Histórico de Edição"
},
"mute": {
"name": "",
"mute": "",
"description": "",
"notification": "",
"name": "Silenciar {{acct}}",
"mute": "Silenciar",
"description": "Oculte postagens e menções a este usuário, mas isso ainda permitirá que ele veja suas postagens e siga você.",
"notification": "Ocultar também notificações deste usuário",
"duration": {
"heading": "",
"0": "",
"1800": "",
"3600": "",
"86400": "",
"604800": ""
"heading": "Por duração",
"0": "Indefinidamente",
"1800": "30 minutos",
"3600": "1 hora",
"86400": "1 dia",
"604800": "1 semana"
}
},
"report": {
@ -481,7 +481,7 @@
"toot": {
"name": "Discussões",
"remoteFetch": {
"title": "",
"title": "Contém conteúdo remoto",
"message": "O conteúdo global nem sempre está disponível na instância local. Estes conteúdos são obtidos de instâncias remotas e marcados. Você pode interagir com esses conteúdos normalmente."
}
},

View File

@ -97,30 +97,18 @@ const themeColors: {
},
separator: {
light: PlatformColor(
Platform.select({
ios: 'separator',
android: '?android:attr/dividerVertical',
default: 'rgb(180, 180, 180)'
}),
'rgb(180, 180, 180)'
) as unknown as string,
dark_lighter: PlatformColor(
Platform.select({
ios: 'separator',
android: '?android:attr/dividerVertical',
default: 'rgb(90, 90, 90)'
}),
'rgb(90, 90, 90)'
) as unknown as string,
dark_darker: PlatformColor(
Platform.select({
ios: 'separator',
android: '?android:attr/dividerVertical',
default: 'rgb(90, 90, 90)'
}),
'rgb(90, 90, 90)'
) as unknown as string
light: Platform.select({
ios: PlatformColor('separator') as unknown as string,
default: 'rgb(180, 180, 180)'
}),
dark_lighter: Platform.select({
ios: PlatformColor('separator') as unknown as string,
default: 'rgb(90, 90, 90)'
}),
dark_darker: Platform.select({
ios: PlatformColor('separator') as unknown as string,
default: 'rgb(90, 90, 90)'
})
},
shimmerDefault: {