mirror of
https://github.com/projectsend/projectsend.git
synced 2026-09-11 22:38:54 +00:00
6e47d76ba6
Client file sharing, rebuilt from the ground up: a private area per client, resumable uploads, folders, groups and categories, sharing with expiry dates and download limits, comments, file versions, an activity log, a REST API, and sixteen languages. This repository begins here. ProjectSend 2 was developed privately, and that development history is not published — the previous generation remains available, with its own history, at projectsend/legacy. Free software under the GNU General Public License v2, or (at your option) any later version.
289 lines
19 KiB
PHP
289 lines
19 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'accepted' => 'O campo :attribute deve ser aceito.',
|
|
'accepted_if' => 'O :attribute deve ser aceito quando :other for :value.',
|
|
'active_url' => 'O campo :attribute não contém uma URL válida.',
|
|
'after' => 'O campo :attribute deve conter uma data posterior a :date.',
|
|
'after_or_equal' => 'O campo :attribute deve conter uma data posterior ou igual a :date.',
|
|
'alpha' => 'O campo :attribute deve conter apenas letras.',
|
|
'alpha_dash' => 'O campo :attribute deve conter apenas letras, números e traços.',
|
|
'alpha_num' => 'O campo :attribute deve conter apenas letras e números.',
|
|
'any_of' => 'O campo :attribute é inválido.',
|
|
'array' => 'O campo :attribute deve conter uma coleção de elementos.',
|
|
'ascii' => 'O :attribute deve conter apenas caracteres alfanuméricos de byte único e símbolos.',
|
|
'before' => 'O campo :attribute deve conter uma data anterior a :date.',
|
|
'before_or_equal' => 'O campo :attribute deve conter uma data anterior ou igual a :date.',
|
|
'between' => [
|
|
'array' => ':attribute deve conter entre :min e :max itens.',
|
|
'file' => 'O arquivo :attribute deve ter entre :min e :max quilobytes.',
|
|
'numeric' => 'O campo :attribute deve ter um valor entre :min e :max.',
|
|
'string' => 'O campo :attribute deve conter entre :min e :max caracteres.',
|
|
],
|
|
'boolean' => 'O campo :attribute deve conter o valor verdadeiro ou falso.',
|
|
'can' => 'O campo :attribute contém um valor não autorizado.',
|
|
'confirmed' => 'A confirmação para o campo :attribute não coincide.',
|
|
'contains' => 'O campo :attribute não possui um valor obrigatório.',
|
|
'current_password' => 'A senha está incorreta.',
|
|
'date' => 'O campo :attribute não contém uma data válida.',
|
|
'date_equals' => 'O campo :attribute deve ser uma data igual a :date.',
|
|
'date_format' => 'A data indicada para o campo :attribute não respeita o formato :format.',
|
|
'decimal' => 'O :attribute deve ter :decimal casas decimais.',
|
|
'declined' => 'O :attribute deve ser recusado.',
|
|
'declined_if' => 'O :attribute deve ser recusado quando :other for :value.',
|
|
'different' => 'Os campos :attribute e :other devem conter valores diferentes.',
|
|
'digits' => 'O campo :attribute deve conter :digits dígitos.',
|
|
'digits_between' => 'O campo :attribute deve conter entre :min e :max dígitos.',
|
|
'dimensions' => 'O campo :attribute deve conter uma dimensão de imagem válida.',
|
|
'distinct' => 'O campo :attribute contém um valor duplicado.',
|
|
'doesnt_contain' => 'O campo :attribute não deve conter nenhum dos seguintes: :values.',
|
|
'doesnt_end_with' => 'O campo :attribute não pode terminar com um dos seguintes: :values.',
|
|
'doesnt_start_with' => 'O campo :attribute não pode começar com um dos seguintes: :values.',
|
|
'email' => 'O campo :attribute não contém um endereço de e-mail válido.',
|
|
'encoding' => 'O campo :attribute deve ser codificado em :encoding.',
|
|
'ends_with' => 'O campo :attribute deve terminar com um dos seguintes: :values.',
|
|
'enum' => 'O :attribute selecionado é inválido.',
|
|
'exists' => 'O valor selecionado para o campo :attribute é inválido.',
|
|
'extensions' => 'O campo :attribute deve ter uma das seguintes extensões: :values.',
|
|
'file' => 'O campo :attribute deve conter um arquivo.',
|
|
'filled' => 'É obrigatória a indicação de um valor para o campo :attribute.',
|
|
'gt' => [
|
|
'array' => 'O campo :attribute deve ter mais de :value itens.',
|
|
'file' => 'O campo :attribute deve ter mais de :value quilobytes.',
|
|
'numeric' => 'O campo :attribute deve ser maior que :value.',
|
|
'string' => 'O campo :attribute deve ter mais de :value caracteres.',
|
|
],
|
|
'gte' => [
|
|
'array' => 'O campo :attribute deve ter :value itens ou mais.',
|
|
'file' => 'O campo :attribute deve ter :value quilobytes ou mais.',
|
|
'numeric' => 'O campo :attribute deve ser maior ou igual a :value.',
|
|
'string' => 'O campo :attribute deve ter :value caracteres ou mais.',
|
|
],
|
|
'hex_color' => 'O campo :attribute deve ter uma cor hexadecimal válida.',
|
|
'image' => 'O campo :attribute deve conter uma imagem.',
|
|
'in' => 'O campo :attribute não contém um valor válido.',
|
|
'in_array' => 'O campo :attribute não existe em :other.',
|
|
'in_array_keys' => 'O campo :attribute deve conter pelo menos uma das seguintes chaves: :values.',
|
|
'integer' => 'O campo :attribute deve conter um número inteiro.',
|
|
'ip' => 'O campo :attribute deve conter um IP válido.',
|
|
'ipv4' => 'O campo :attribute deve conter um IPv4 válido.',
|
|
'ipv6' => 'O campo :attribute deve conter um IPv6 válido.',
|
|
'json' => 'O campo :attribute deve conter um JSON válido.',
|
|
'list' => 'O campo :attribute deve ser uma lista.',
|
|
'lowercase' => 'O campo :attribute deve estar em minúsculas.',
|
|
'lt' => [
|
|
'array' => 'O campo :attribute deve ter menos de :value itens.',
|
|
'file' => 'O campo :attribute deve ter menos de :value quilobytes.',
|
|
'numeric' => 'O campo :attribute deve ser inferior a :value.',
|
|
'string' => 'O campo :attribute deve ter menos de :value caracteres.',
|
|
],
|
|
'lte' => [
|
|
'array' => 'O campo :attribute não pode ter mais de :value itens.',
|
|
'file' => 'O campo :attribute deve ter :value quilobytes ou menos.',
|
|
'numeric' => 'O campo :attribute deve ser inferior ou igual a :value.',
|
|
'string' => 'O campo :attribute deve ter :value caracteres ou menos.',
|
|
],
|
|
'mac_address' => 'O :attribute deve ser um endereço MAC válido.',
|
|
'max' => [
|
|
'array' => 'O campo :attribute não deve conter mais de :max elementos.',
|
|
'file' => 'O campo :attribute não deve ter um tamanho superior a :max quilobytes.',
|
|
'numeric' => 'O campo :attribute não deve conter um valor superior a :max.',
|
|
'string' => 'O campo :attribute não deve conter mais de :max caracteres.',
|
|
],
|
|
'max_digits' => 'O campo :attribute não pode ter mais do que :max dígitos.',
|
|
'mimes' => 'O campo :attribute deve conter um arquivo do tipo: :values.',
|
|
'mimetypes' => 'O campo :attribute deve conter um arquivo do tipo: :values.',
|
|
'min' => [
|
|
'array' => 'O campo :attribute deve conter no mínimo :min elementos.',
|
|
'file' => 'O campo :attribute deve ter no mínimo :min quilobytes.',
|
|
'numeric' => 'O campo :attribute deve ter um valor superior ou igual a :min.',
|
|
'string' => 'O campo :attribute deve conter no mínimo :min caracteres.',
|
|
],
|
|
'min_digits' => 'O campo :attribute deve ter pelo menos :min dígitos.',
|
|
'missing' => 'O campo :attribute deve estar ausente.',
|
|
'missing_if' => 'O campo :attribute deve estar ausente quando :other for :value.',
|
|
'missing_unless' => 'O campo :attribute deve estar ausente, a menos que :other seja :value.',
|
|
'missing_with' => 'O campo :attribute deve estar ausente quando :values estiver presente.',
|
|
'missing_with_all' => 'O campo :attribute deve estar ausente quando :values estiverem presentes.',
|
|
'multiple_of' => 'O :attribute deve ser um múltiplo de :value.',
|
|
'not_in' => 'O campo :attribute contém um valor inválido.',
|
|
'not_regex' => 'O formato de :attribute não é válido.',
|
|
'numeric' => 'O campo :attribute deve conter um valor numérico.',
|
|
'password' => [
|
|
'letters' => 'O campo :attribute deve conter pelo menos uma letra.',
|
|
'mixed' => 'O campo :attribute deve conter pelo menos uma letra maiúscula e uma minúscula.',
|
|
'numbers' => 'O campo :attribute deve conter pelo menos um número.',
|
|
'symbols' => 'O campo :attribute deve conter pelo menos um símbolo.',
|
|
'uncompromised' => 'O campo :attribute apareceu em uma violação de dados. Por favor, escolha um :attribute diferente.',
|
|
],
|
|
'present' => 'O campo :attribute deve estar presente.',
|
|
'present_if' => 'O campo :attribute deve estar presente quando :other for :value.',
|
|
'present_unless' => 'O campo :attribute deve estar presente, a menos que :other seja :value.',
|
|
'present_with' => 'O campo :attribute deve estar presente quando :values estiver presente.',
|
|
'present_with_all' => 'O campo :attribute deve estar presente quando :values estiverem presentes.',
|
|
'prohibited' => 'O campo :attribute é proibido.',
|
|
'prohibited_if' => 'O campo :attribute é proibido quando :other for :value.',
|
|
'prohibited_if_accepted' => 'O campo :attribute é proibido quando :other é aceito.',
|
|
'prohibited_if_declined' => 'O campo :attribute é proibido quando :other é recusado.',
|
|
'prohibited_unless' => 'O campo :attribute é proibido a menos que :other esteja em :values.',
|
|
'prohibits' => 'O campo :attribute proíbe :other de estar presente.',
|
|
'regex' => 'O formato do valor para o campo :attribute é inválido.',
|
|
'required' => 'É obrigatória a indicação de um valor para o campo :attribute.',
|
|
'required_array_keys' => 'O campo :attribute deve conter entradas para: :values.',
|
|
'required_if' => 'É obrigatória a indicação de um valor para o campo :attribute quando o valor de :other é igual a :value.',
|
|
'required_if_accepted' => 'O campo :attribute é obrigatório quando :other foi aceito.',
|
|
'required_if_declined' => 'O campo :attribute é obrigatório quando :other foi recusado.',
|
|
'required_unless' => 'É obrigatória a indicação de um valor para o campo :attribute a menos que :other esteja presente em :values.',
|
|
'required_with' => 'É obrigatória a indicação de um valor para o campo :attribute quando :values está presente.',
|
|
'required_with_all' => 'É obrigatória a indicação de um valor para o campo :attribute quando um dos :values está presente.',
|
|
'required_without' => 'É obrigatória a indicação de um valor para o campo :attribute quando :values não está presente.',
|
|
'required_without_all' => 'É obrigatória a indicação de um valor para o campo :attribute quando nenhum dos :values está presente.',
|
|
'same' => 'Os campos :attribute e :other devem conter valores iguais.',
|
|
'size' => [
|
|
'array' => 'O campo :attribute deve conter :size elementos.',
|
|
'file' => 'O arquivo :attribute deve ter :size quilobytes.',
|
|
'numeric' => 'O campo :attribute deve conter o valor :size.',
|
|
'string' => 'O campo :attribute deve conter :size caracteres.',
|
|
],
|
|
'starts_with' => 'O campo :attribute deve começar com um dos seguintes valores: :values.',
|
|
'string' => 'O campo :attribute deve conter texto.',
|
|
'timezone' => 'O campo :attribute deve ter um fuso horário válido.',
|
|
'ulid' => 'O :attribute deve ser um ULID válido.',
|
|
'unique' => 'O valor indicado para o campo :attribute já se encontra registrado.',
|
|
'uploaded' => 'Falha no upload do arquivo :attribute.',
|
|
'uppercase' => 'O campo :attribute deve estar em maiúsculas.',
|
|
'url' => 'O formato de URL indicado para o campo :attribute é inválido.',
|
|
'uuid' => ':Attribute deve ser um UUID válido.',
|
|
'attributes' => [
|
|
'address' => 'endereço',
|
|
'affiliate_url' => 'URL de afiliado',
|
|
'age' => 'idade',
|
|
'amount' => 'motante',
|
|
'announcement' => 'anúncio',
|
|
'area' => 'área',
|
|
'audience_prize' => 'prêmio do público',
|
|
'audience_winner' => 'vencedor do público',
|
|
'available' => 'disponível',
|
|
'birthday' => 'aniversário',
|
|
'body' => 'conteúdo',
|
|
'city' => 'cidade',
|
|
'color' => 'cor',
|
|
'company' => 'empresa',
|
|
'compilation' => 'compilação',
|
|
'concept' => 'conceito',
|
|
'conditions' => 'condições',
|
|
'content' => 'conteúdo',
|
|
'contest' => 'contestar',
|
|
'country' => 'país',
|
|
'cover' => 'cobrir',
|
|
'created_at' => 'criado em',
|
|
'creator' => 'criador',
|
|
'currency' => 'moeda',
|
|
'current_password' => 'senha atual',
|
|
'customer' => 'cliente',
|
|
'date' => 'data',
|
|
'date_of_birth' => 'data de nascimento',
|
|
'dates' => 'datas',
|
|
'day' => 'dia',
|
|
'deleted_at' => 'excluído em',
|
|
'description' => 'descrição',
|
|
'display_type' => 'Tipo de exibição',
|
|
'district' => 'distrito',
|
|
'duration' => 'duração',
|
|
'email' => 'e-mail',
|
|
'excerpt' => 'resumo',
|
|
'filter' => 'filtro',
|
|
'finished_at' => 'terminou em',
|
|
'first_name' => 'primeiro nome',
|
|
'gender' => 'gênero',
|
|
'grand_prize' => 'grande Prêmio',
|
|
'group' => 'grupo',
|
|
'hour' => 'hora',
|
|
'image' => 'imagem',
|
|
'image_desktop' => 'imagem da área de trabalho',
|
|
'image_main' => 'imagem principal',
|
|
'image_mobile' => 'imagem móvel',
|
|
'images' => 'imagens',
|
|
'is_audience_winner' => 'é vencedor de audiência',
|
|
'is_hidden' => 'está escondido',
|
|
'is_subscribed' => 'está inscrito',
|
|
'is_visible' => 'é visível',
|
|
'is_winner' => 'é vencedor',
|
|
'items' => 'Unid',
|
|
'key' => 'chave',
|
|
'last_name' => 'sobrenome',
|
|
'lesson' => 'lição',
|
|
'line_address_1' => 'endereço de linha 1',
|
|
'line_address_2' => 'endereço de linha 2',
|
|
'login' => 'Conecte-se',
|
|
'message' => 'mensagem',
|
|
'middle_name' => 'nome do meio',
|
|
'minute' => 'minuto',
|
|
'mobile' => 'celular',
|
|
'month' => 'mês',
|
|
'name' => 'nome',
|
|
'national_code' => 'código nacional',
|
|
'number' => 'número',
|
|
'password' => 'senha',
|
|
'password_confirmation' => 'confirmação da senha',
|
|
'phone' => 'telefone',
|
|
'photo' => 'foto',
|
|
'portfolio' => 'portfólio',
|
|
'postal_code' => 'código postal',
|
|
'preview' => 'visualização',
|
|
'price' => 'preço',
|
|
'product_id' => 'ID do produto',
|
|
'product_uid' => 'UID do produto',
|
|
'product_uuid' => 'UUID do produto',
|
|
'promo_code' => 'Código promocional',
|
|
'province' => 'província',
|
|
'quantity' => 'quantidade',
|
|
'reason' => 'razão',
|
|
'recaptcha_response_field' => 'campo de resposta recaptcha',
|
|
'referee' => 'juiz',
|
|
'referees' => 'árbitros',
|
|
'region' => 'região',
|
|
'reject_reason' => 'rejeitar a razão',
|
|
'remember' => 'lembrar-me',
|
|
'restored_at' => 'restaurado em',
|
|
'result_text_under_image' => 'texto do resultado sob a imagem',
|
|
'role' => 'função',
|
|
'rule' => 'regra',
|
|
'rules' => 'regras',
|
|
'second' => 'segundo',
|
|
'sex' => 'sexo',
|
|
'shipment' => 'envio',
|
|
'short_text' => 'texto pequeno',
|
|
'size' => 'tamanho',
|
|
'skills' => 'habilidades',
|
|
'slug' => 'lesma',
|
|
'specialization' => 'especialização',
|
|
'started_at' => 'começou às',
|
|
'state' => 'estado',
|
|
'status' => 'estado',
|
|
'street' => 'rua',
|
|
'student' => 'estudante',
|
|
'subject' => 'assunto',
|
|
'tag' => 'marcação',
|
|
'tags' => 'Tag',
|
|
'teacher' => 'professor',
|
|
'terms' => 'termos',
|
|
'test_description' => 'descrição de teste',
|
|
'test_locale' => 'local de teste',
|
|
'test_name' => 'nome de teste',
|
|
'text' => 'texto',
|
|
'time' => 'hora',
|
|
'title' => 'título',
|
|
'type' => 'tipo',
|
|
'updated_at' => 'atualizado em',
|
|
'user' => 'do utilizador',
|
|
'username' => 'usuário',
|
|
'value' => 'valor',
|
|
'winner' => 'ganhador',
|
|
'work' => 'trabalho',
|
|
'year' => 'ano',
|
|
],
|
|
];
|