Skip to content

Commit

Permalink
Add pt_BR support
Browse files Browse the repository at this point in the history
  • Loading branch information
aislandener authored Jun 3, 2024
1 parent eeae23d commit 5c36578
Show file tree
Hide file tree
Showing 4 changed files with 129 additions and 0 deletions.
34 changes: 34 additions & 0 deletions resources/lang/pt_BR/forms.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?php

return [
'sections' => [
'details' => 'Detalhes',
'exif' => 'Dados do Exif',
'file' => 'Arquivo',
'meta' => 'Meta',
'preview' => 'Pré-visualização',
'upload_new' => 'Enviar novo',
'upload_new_helper' => 'Caso você tenha alguma curadoria para esta mídia possivelmente precisará recriá-la, isso não acontecerá automaticamente.',
'curation' => 'Curadoria',
],
'fields' => [
'alt' => 'Texto Alternativo',
'alt_hint' => 'Texto Alternativo?',
'caption' => 'Legenda',
'description' => 'Descrição',
'file' => 'Arquivo',
'title' => 'Título',
'name' => 'Nome',
],
'notices' => [
'success' => 'Item atualizado com sucesso.',
],
'curations' => [
'button_label' => 'Criado Curadoria',
],
'multi_upload' => [
'action_label' => 'Envio Múltiplo',
'modal_heading' => 'Enviar Vários Arquivos',
'modal_file_label' => 'Arquivos',
],
];
8 changes: 8 additions & 0 deletions resources/lang/pt_BR/notifications.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

return [
'update_success' => 'O registro foi atualizado com sucesso.',
'update_error' => 'Ocorreu um erro ao atualizar o registro.',
'delete_success' => 'O registro foi excluído com sucesso.',
'delete_error' => 'Ocorreu um erro ao excluir o registro.',
];
16 changes: 16 additions & 0 deletions resources/lang/pt_BR/tables.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

return [
'columns' => [
'url' => 'URL',
'name' => 'Nome',
'ext' => 'Extensão',
'disk' => 'Disco',
'directory' => 'Diretório',
'created_at' => 'Criado em',
],
'actions' => [
'toggle_table_grid' => 'Ver em grade',
'toggle_table_list' => 'Ver em Lista',
],
];
71 changes: 71 additions & 0 deletions resources/lang/pt_BR/views.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<?php

return [
'details' => [
'uploaded_on' => 'Carregado em',
'file_type' => 'Tipo de arquivo',
'file_size' => 'Tamanho do arquivo',
'dimensions' => 'Dimensões',
'disk' => 'Disco',
'directory' => 'Diretório',
'file_url' => 'URL do arquivo',
'file' => 'Arquivo',
'ext' => 'Ext',
'copy_url' => 'Copiar URL',
'url_copied' => 'Copiado!',
],
'picker' => [
'button' => 'Adicionar mídia',
'reorder' => 'Reordenar',
'view' => 'Visualizar',
'edit' => 'Editar',
'download' => 'Download',
'remove' => 'Remover',
'clear' => 'Deletar tudo',
],
'panel' => [
'button' => 'Adicionar mídia',
'heading' => 'Seletor de mídia',
'search_label' => 'Procurar',
'search_placeholder' => 'Procurar',
'upload_tab' => 'Carregar mídia',
'media_library_tab' => 'Biblioteca de mídia',
'deselect' => 'Desmarcar',
'load_more' => 'Carregue mais',
'empty' => 'Nenhum arquivo na biblioteca ou nada encontrado para sua pesquisa.',
'edit_media' => 'Editar mídia',
'edit_save' => 'Salvar',
'edit_delete' => 'Excluir',
'edit_cancel' => 'Cancelar',
'use_selected_image' => 'Inserir',
'add_files' => 'Adicionar arquivos',
'view' => 'Visualizar',
'edit' => 'Editar',
'download' => 'Download',
'remove' => 'Remover',
'deselect_all' => 'Desmarcar todos',
'add_multiple_file' => ':key + Clique para selecionar vários arquivos.',
],
'curation' => [
'heading' => 'Curadoria',
'adjustments' => 'Ajustes',
'cancel' => 'Cancelar',
'custom' => 'Personalizado',
'key' => 'Chave',
'key_helper' => 'Esta é a referência usada para recuperar sua curadoria para exibição.',
'zoom_in' => 'Mais Zoom',
'zoom_out' => 'Reduzir o zoom',
'flip_horizontally' => 'Virar horizontalmente',
'flip_vertically' => 'Virar verticalmente',
'drag_mode' => 'Modo de arrastar',
'crop_mode' => 'Modo de corte',
'reset' => 'Reiniciar',
'save_curation' => 'Salvar curadoria',
'height' => 'Altura',
'width' => 'Largura',
'format' => 'Formato',
'quality' => 'Qualidade',
'rotate' => 'Girar',
'rotate_deg' => 'deg',
],
];

0 comments on commit 5c36578

Please sign in to comment.