mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 16:57:09 +00:00
Add language
This commit is contained in:
@@ -1,18 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages here.
|
||||
|
|
||||
*/
|
||||
|
||||
'invalid_domain' => 'Due to security constraints, you cannot register from this domain.',
|
||||
'file_already_attached' => 'Uploaded file ":name" is already attached to this object.',
|
||||
'file_attached' => 'Succesfully uploaded file ":name".',
|
||||
@@ -73,6 +61,4 @@ return [
|
||||
"unique" => "The :attribute has already been taken.",
|
||||
"url" => "The :attribute format is invalid.",
|
||||
"timezone" => "The :attribute must be a valid zone.",
|
||||
'attributes' => [],
|
||||
|
||||
];
|
||||
|
60
resources/lang/pt_BR/breadcrumbs.php
Normal file
60
resources/lang/pt_BR/breadcrumbs.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
return [
|
||||
'home' => 'Início',
|
||||
|
||||
// accounts
|
||||
'cash_accounts' => 'Contas Correntes',
|
||||
'edit_account' => 'Editar conta ":name"',
|
||||
|
||||
// currencies
|
||||
'edit_currency' => 'Editar moedas ":name"',
|
||||
'delete_currency' => 'Apagar moedas ":name"',
|
||||
|
||||
// piggy banks
|
||||
'newPiggyBank' => 'Criar um novo cofrinho',
|
||||
'edit_piggyBank' => 'Editar cofrinho ":name"',
|
||||
|
||||
// top menu
|
||||
'preferences' => 'Preferências',
|
||||
'profile' => 'Perfil',
|
||||
'changePassword' => 'Alterar sua senha',
|
||||
|
||||
// bills
|
||||
'bills' => 'Faturas',
|
||||
'newBill' => 'Nova fatura',
|
||||
'edit_bill' => 'Editar fatura ":name"',
|
||||
'delete_bill' => 'Apagar fatura ":name"',
|
||||
|
||||
// reports
|
||||
'reports' => 'Relatórios',
|
||||
'monthly_report' => 'Relatório Mensal para :date',
|
||||
'monthly_report_shared' => 'Relatório mensal para :date (incluindo contas compartilhadas)',
|
||||
'yearly_report' => 'Relatório Anual para :date',
|
||||
'yearly_report_shared' => 'Relatório anual para :date (incluindo contas compartilhadas)',
|
||||
'budget_report' => 'Relatório Orçamentário para :date',
|
||||
|
||||
// search
|
||||
'searchResult' => 'Pesquisa por ":query"',
|
||||
|
||||
// transaction lists.
|
||||
'withdrawal_list' => 'Despesas',
|
||||
'deposit_list' => 'Receitas, renda e depósitos',
|
||||
'transfer_list' => 'Transferências',
|
||||
'transfers_list' => 'Transferências',
|
||||
|
||||
// create transactions
|
||||
'create_withdrawal' => 'Criar uma nova retirada',
|
||||
'create_deposit' => 'Criar um novo depósito',
|
||||
'create_transfer' => 'Criar nova transferência',
|
||||
|
||||
// edit transactions
|
||||
'edit_journal' => 'Editar transação ":description"',
|
||||
'delete_journal' => 'Apagar transação ":description"',
|
||||
|
||||
// tags
|
||||
'tags' => 'Etiquetas',
|
||||
'createTag' => 'Criar nova etiqueta',
|
||||
'edit_tag' => 'Editar etiqueta ":tag"',
|
||||
'delete_tag' => 'Apagar etiqueta ":tag"',
|
||||
|
||||
];
|
487
resources/lang/pt_BR/firefly.php
Normal file
487
resources/lang/pt_BR/firefly.php
Normal file
@@ -0,0 +1,487 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
// general stuff
|
||||
'test' => 'Você selecionou Inglês',
|
||||
'close' => 'Fechar',
|
||||
'pleaseHold' => 'Por favor espere...',
|
||||
'actions' => 'Ações',
|
||||
'edit' => 'Editar',
|
||||
'delete' => 'Apagar',
|
||||
'welcomeBack' => 'What\'s playing?',
|
||||
'everything' => 'Tudo',
|
||||
'customRange' => 'Intervalo Personalizado',
|
||||
'apply' => 'Aplicar',
|
||||
'cancel' => 'Cancelar',
|
||||
'from' => 'De',
|
||||
'to' => 'Até',
|
||||
'total_sum' => 'Soma Total',
|
||||
'period_sum' => 'Soma por período',
|
||||
'showEverything' => 'Mostrar tudo',
|
||||
'never' => 'Never',
|
||||
'search_results_for' => 'Pesquisar resultados por ":query"',
|
||||
'bounced_error' => 'A mensagem enviado para :email ressaltado, não tem acesso para você.',
|
||||
'deleted_error' => 'Estas credenciais não correspondem aos nossos registros.',
|
||||
'general_blocked_error' => 'Sua conta foi desativada, você não pode entrar.',
|
||||
'removed_amount' => ':amount removido',
|
||||
'added_amount' => ':amount adicionada',
|
||||
'asset_account_role_help' => 'Quaisquer opções extras resultantes da sua escolha pode ser definido mais tarde.',
|
||||
'Opening balance' => 'Saldo inicial',
|
||||
'create_new_stuff' => 'Criar novas coisas',
|
||||
'new_withdrawal' => 'Nova retirada',
|
||||
'new_deposit' => 'Novo depósito',
|
||||
'new_transfer' => 'Nova transferência',
|
||||
'new_asset_account' => 'Nova conta de ativo',
|
||||
'new_expense_account' => 'Nova conta de despesa',
|
||||
'new_revenue_account' => 'Nova conta de receita',
|
||||
'new_budget' => 'Novo orçamento',
|
||||
'new_bill' => 'Nova fatura',
|
||||
|
||||
// tags
|
||||
'store_new_tag' => 'Armazenar nova tag',
|
||||
'update_tag' => 'Atualizar tag',
|
||||
'no_location_set' => 'Nenhuma localização.',
|
||||
'meta_data' => 'Meta dados',
|
||||
'location' => 'Localização',
|
||||
|
||||
// preferences
|
||||
'pref_home_screen_accounts' => 'Conta da tela inicial',
|
||||
'pref_home_screen_accounts_help' => 'Que conta deve ser exibida na tela inicial?',
|
||||
'pref_budget_settings' => 'Definições de Orçamento',
|
||||
'pref_budget_settings_help' => 'Qual a quantidade máxima de dinheiro um envelope orçamental pode conter?',
|
||||
'pref_view_range' => 'Ver intervalo',
|
||||
'pref_view_range_help' => 'Alguns gráficos são agrupados automaticamente em períodos. Qual período você prefere?',
|
||||
'pref_1D' => 'Um dia',
|
||||
'pref_1W' => 'Uma semana',
|
||||
'pref_1M' => 'Um mês',
|
||||
'pref_3M' => 'Trimestral',
|
||||
'pref_6M' => 'Semestral',
|
||||
'pref_languages' => 'Idiomas',
|
||||
'pref_languages_help' => 'Firefly III suporta muitos idiomas. Qual você prefere?',
|
||||
'pref_save_settings' => 'Salvar definições',
|
||||
|
||||
// profile
|
||||
'change_your_password' => 'Alterar sua senha',
|
||||
'delete_account' => 'Apagar conta',
|
||||
'current_password' => 'Senha atual',
|
||||
'new_password' => 'Nova senha',
|
||||
'new_password_again' => 'Nova senha (novamente)',
|
||||
'delete_your_account' => 'Apagar sua conta',
|
||||
'delete_your_account_help' => 'Exclusão da conta também excluirá todas as contas, transações, <em>qualquer coisa</em> que você poderia ter salvo em Firefly III. Tudo será perdido.',
|
||||
'delete_your_account_password' => 'Coloque sua senha para continuar.',
|
||||
'password' => 'Senha',
|
||||
'are_you_sure' => 'Você tem certeza? Você não poderá desfazer isso.',
|
||||
'delete_account_button' => 'Apagar sua conta',
|
||||
'invalid_current_password' => 'Senha atual inválida!',
|
||||
'password_changed' => 'Senha alterada!',
|
||||
'should_change' => 'A idéia é alterar sua senha.',
|
||||
'invalid_password' => 'Senha inválida!',
|
||||
|
||||
|
||||
// attachments
|
||||
'nr_of_attachments' => 'Um anexo|:count anexos',
|
||||
'attachments' => 'Anexos',
|
||||
'edit_attachment' => 'Editar anexo ":name"',
|
||||
'update_attachment' => 'Atualizar anexo',
|
||||
'delete_attachment' => 'Apagar anexo ":name"',
|
||||
'attachment_deleted' => 'Anexo apagado ":name"',
|
||||
'upload_max_file_size' => 'Tamanho máximo do arquivo: :size',
|
||||
|
||||
// tour
|
||||
'prev' => 'Anterior',
|
||||
'next' => 'Próximo',
|
||||
'end-tour' => 'Fim do Tour',
|
||||
'pause' => 'Parar',
|
||||
|
||||
// transaction index
|
||||
'title_expenses' => 'Despesas',
|
||||
'title_withdrawal' => 'Despesas',
|
||||
'title_revenue' => 'Receitas / Renda',
|
||||
'title_deposit' => 'Receita / Renda',
|
||||
'title_transfer' => 'Transferências',
|
||||
'title_transfers' => 'Transferências',
|
||||
|
||||
// csv import
|
||||
'csv_import' => 'Importar arquivo CSV',
|
||||
'csv' => 'CSV',
|
||||
'csv_index_title' => 'Carregar e importar um arquivo CSV',
|
||||
'csv_define_column_roles' => 'Definir papeis da coluna',
|
||||
'csv_map_values' => 'Valores mapeados encontrados para valores existentes',
|
||||
'csv_download_config' => 'Download do arquivo CSV de configuração.',
|
||||
'csv_index_text' => 'This form allows you to import a CSV file with transactions into Firefly. It is based on the excellent CSV importer made by the folks at <a href="https://www.atlassian.com/">Atlassian</a>. Simply upload your CSV file and follow the instructions. If you would like to learn more, please click on the <i class="fa fa-question-circle"></i> button at the top of this page.',
|
||||
'csv_index_beta_warning' => 'Esta ferramenta está em beta. Por favor proceder com cautela',
|
||||
'csv_header_help' => 'Check this box when your CSV file\'s first row consists of column names, not actual data',
|
||||
'csv_date_help' => 'Date time format in your CSV. Follow the format like <a href="https://secure.php.net/manual/en/datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters">this page</a> indicates. The default value will parse dates that look like this: 20151201',
|
||||
'csv_csv_file_help' => 'Select the CSV file here. You can only upload one file at a time',
|
||||
'csv_csv_config_file_help' => 'Select your CSV import configuration here. If you do not know what this is, ignore it. It will be explained later.',
|
||||
'csv_upload_button' => 'Iniciando importação do CSV',
|
||||
'csv_column_roles_title' => 'Definir papeis da coluna',
|
||||
'csv_column_roles_text' => 'Firefly does not know what each column means. You need to indicate what every column is. Please check out the example data if you\'re not sure yourself. Click on the question mark (top right of the page) to learn what each column means. If you want to map imported data onto existing data in Firefly, use the checkbox. The next step will show you what this button does.',
|
||||
'csv_column_roles_table' => 'Papéis da Coluna',
|
||||
'csv_column' => 'Coluna CSV',
|
||||
'csv_column_name' => 'Nome da coluna do CSV',
|
||||
'csv_column_example' => 'Exemplo de dados da coluna',
|
||||
'csv_column_role' => 'Coluna contém?',
|
||||
'csv_do_map_value' => 'Valor mapeado?',
|
||||
'csv_continue' => 'Continuar para o próximo passo',
|
||||
'csv_go_back' => 'Voltar para o passo anterior',
|
||||
'csv_map_title' => 'Valores mapeados encontrados para valores existentes',
|
||||
'csv_map_text' => 'This page allows you to map the values from the CSV file to existing entries in your database. This ensures that accounts and other things won\'t be created twice.',
|
||||
'csv_field_value' => 'Valor do campo do CSV',
|
||||
'csv_field_mapped_to' => 'Deve ser mapeado para...',
|
||||
'csv_do_not_map' => 'Não mapear este valor',
|
||||
'csv_download_config_title' => 'Download do CSV de configuração ',
|
||||
'csv_download_config_text' => 'Everything you\'ve just set up can be downloaded as a configuration file. Click the button to do so.',
|
||||
'csv_more_information_text' => 'If the import fails, you can use this configuration file so you don\'t have to start all over again. But, if the import succeeds, it will be easier to upload similar CSV files.',
|
||||
'csv_do_download_config' => 'Download do arquivo de configuração.',
|
||||
'csv_empty_description' => '(descrição vazia)',
|
||||
'csv_upload_form' => 'Formulário de Upload do CSV',
|
||||
'csv_index_unsupported_warning' => 'O importador de CSV está incapaz de fazer o seguinte:',
|
||||
'csv_unsupported_map' => 'The importer cannot map the column ":columnRole" to existing values in the database.',
|
||||
'csv_unsupported_value' => 'The importer does not know how to handle values in columns marked as ":columnRole".',
|
||||
'csv_cannot_store_value' => 'The importer has not reserved space for columns marked ":columnRole" and will be incapable of processing them.',
|
||||
'csv_process_title' => 'Importação do CSV terminou!',
|
||||
'csv_process_text' => 'O importador do CSV terminou e processou :rows linhas',
|
||||
'csv_row' => 'Linha',
|
||||
'csv_import_with_errors' => 'Houve um erro.|Houve :errors erros.',
|
||||
'csv_error_see_logs' => 'Verifique o arquivo de log para ver detalhes.',
|
||||
'csv_process_new_entries' => 'Firefly criou :imported nova(s) transação(ões)',
|
||||
'csv_start_over' => 'Importar novamente',
|
||||
'csv_to_index' => 'Voltar para tela inicial',
|
||||
'csv_upload_not_writeable' => 'Cannot write to the path mentioned here. Cannot upload',
|
||||
'csv_column__ignore' => '(ignorar esta coluna)',
|
||||
'csv_column_account-iban' => 'Conta de Ativo (IBAN)',
|
||||
'csv_column_account-id' => 'ID da Conta de Ativo (correspondente Firefly)',
|
||||
'csv_column_account-name' => 'Conta de Ativo (nome)',
|
||||
'csv_column_amount' => 'Valor',
|
||||
'csv_column_bill-id' => 'ID Fatura (correspondente Firefly)',
|
||||
'csv_column_bill-name' => 'Nom da Fatura',
|
||||
'csv_column_budget-id' => 'ID do Orçamento (correspondente Firefly)',
|
||||
'csv_column_budget-name' => 'Nome do Orçamento',
|
||||
'csv_column_category-id' => 'ID da Categoria (correspondente Firefly)',
|
||||
'csv_column_category-name' => 'Nome da Categoria',
|
||||
'csv_column_currency-code' => 'Código da Moeda (ISO 4217)',
|
||||
'csv_column_currency-id' => 'ID da Moeda (correspondente Firefly)',
|
||||
'csv_column_currency-name' => 'Nome da Moeda (correspondente Firefly)',
|
||||
'csv_column_currency-symbol' => 'Símbolo da Moeda (correspondente Firefly)',
|
||||
'csv_column_date-rent' => 'Rent calculation date',
|
||||
'csv_column_date-transaction' => 'Data',
|
||||
'csv_column_description' => 'Descrição',
|
||||
'csv_column_opposing-iban' => 'Opposing account (IBAN)',
|
||||
'csv_column_opposing-id' => 'Opposing account ID (matching Firefly)',
|
||||
'csv_column_opposing-name' => 'Opposing account (name)',
|
||||
'csv_column_rabo-debet-credit' => 'Rabobank specific debet/credit indicator',
|
||||
'csv_column_sepa-ct-id' => 'SEPA Credit Transfer end-to-end ID',
|
||||
'csv_column_sepa-ct-op' => 'SEPA Credit Transfer opposing account',
|
||||
'csv_column_sepa-db' => 'SEPA Direct Debet',
|
||||
'csv_column_tags-comma' => 'Tags (separadas por vírgula)',
|
||||
'csv_column_tags-space' => 'Tags (separadas por espaço)',
|
||||
'csv_specifix_RabobankDescription' => 'Select this when you\'re importing Rabobank CSV export files.',
|
||||
'csv_specifix_Dummy' => 'Checking this has no effect whatsoever.',
|
||||
'csv_import_account_help' => 'If your CSV file does NOT contain information about your asset account(s), use this dropdown to select to which account the transactions in the CSV belong to.',
|
||||
'csv_date_parse_error' => 'Could not parse a valid date from ":value", using the format ":format". Are you sure your CSV is correct?',
|
||||
|
||||
|
||||
// create new stuff
|
||||
'create_new_withdrawal' => 'Criar nova retirada',
|
||||
'create_new_deposit' => 'Criar um novo depósito',
|
||||
'create_new_transfer' => 'Criar nova transferência',
|
||||
'create_new_asset' => 'Criar nova conta de ativo',
|
||||
'create_new_expense' => 'Criar nova conta de despesa',
|
||||
'create_new_revenue' => 'Criar nova conta de receita',
|
||||
'create_new_piggy_bank' => 'Criar novo cofrinho',
|
||||
'create_new_bill' => 'Criar nova fatura',
|
||||
|
||||
|
||||
// currencies
|
||||
'create_currency' => 'Criar uma nova moeda',
|
||||
'edit_currency' => 'Editar moeda ":name"',
|
||||
'store_currency' => 'Armazenar nova moeda',
|
||||
'update_currency' => 'Atualizar moeda',
|
||||
|
||||
// new user
|
||||
'submit' => 'Enviar',
|
||||
'getting_started' => 'Iniciar',
|
||||
'to_get_started' => 'To get started with Firefly, please enter your current bank\'s name, and the balance of your checking account:',
|
||||
'savings_balance_text' => 'If you have a savings account, please enter the current balance of your savings account:',
|
||||
'cc_balance_text' => 'If you have a credit card, please enter your credit card\'s limit.',
|
||||
|
||||
// forms
|
||||
'mandatoryFields' => 'Campos obrigatórios',
|
||||
'optionalFields' => 'Campos opcionais',
|
||||
'options' => 'Opções',
|
||||
'something' => 'Qualquer coisa!',
|
||||
|
||||
// budgets
|
||||
'create_new_budget' => 'Criar um novo orçamento',
|
||||
'store_new_budget' => 'Armazenar novo orçamento',
|
||||
'availableIn' => 'Disponível em :date',
|
||||
'transactionsWithoutBudget' => 'Despesas sem orçamentos',
|
||||
'transactionsWithoutBudgetDate' => 'Despesas sem orçamentos em :date',
|
||||
'createBudget' => 'Novo orçamento',
|
||||
'inactiveBudgets' => 'Orçamentos inativos',
|
||||
'without_budget_between' => 'Transactions without a budget between :start and :end',
|
||||
'budget_in_month' => ':name no :month',
|
||||
'delete_budget' => 'Delete budget ":name"',
|
||||
'edit_budget' => 'Edit budget ":name"',
|
||||
'update_amount' => 'Update amount',
|
||||
'update_budget' => 'Update budget',
|
||||
|
||||
// bills
|
||||
'delete_bill' => 'Delete bill ":name"',
|
||||
'edit_bill' => 'Edit bill ":name"',
|
||||
'update_bill' => 'Update bill',
|
||||
'store_new_bill' => 'Store new bill',
|
||||
|
||||
// accounts
|
||||
'details_for_asset' => 'Details for asset account ":name"',
|
||||
'details_for_expense' => 'Details for expense account ":name"',
|
||||
'details_for_revenue' => 'Details for revenue account ":name"',
|
||||
'details_for_cash' => 'Details for cash account ":name"',
|
||||
|
||||
'store_new_asset_account' => 'Store new asset account',
|
||||
'store_new_expense_account' => 'Store new expense account',
|
||||
'store_new_revenue_account' => 'Store new revenue account',
|
||||
|
||||
'edit_asset_account' => 'Edit asset account ":name"',
|
||||
'edit_expense_account' => 'Edit expense account ":name"',
|
||||
'edit_revenue_account' => 'Edit revenue account ":name"',
|
||||
|
||||
'delete_asset_account' => 'Delete asset account ":name"',
|
||||
'delete_expense_account' => 'Delete expense account ":name"',
|
||||
'delete_revenue_account' => 'Delete revenue account ":name"',
|
||||
|
||||
'asset_deleted' => 'Successfully deleted asset account ":name"',
|
||||
'expense_deleted' => 'Successfully deleted expense account ":name"',
|
||||
'revenue_deleted' => 'Successfully deleted revenue account ":name"',
|
||||
|
||||
'update_asset_account' => 'Update asset account',
|
||||
'update_expense_account' => 'Update expense account',
|
||||
'update_revenue_account' => 'Update revenue account',
|
||||
|
||||
'make_new_asset_account' => 'Create a new asset account',
|
||||
'make_new_expense_account' => 'Create a new expense account',
|
||||
'make_new_revenue_account' => 'Create a new revenue account',
|
||||
|
||||
'asset_accounts' => 'Asset accounts',
|
||||
'expense_accounts' => 'Expense accounts',
|
||||
'revenue_accounts' => 'Revenue accounts',
|
||||
|
||||
'accountExtraHelp_asset' => '',
|
||||
'accountExtraHelp_expense' => '',
|
||||
'accountExtraHelp_revenue' => '',
|
||||
'account_type' => 'Account type',
|
||||
'save_transactions_by_moving' => 'Save these transaction(s) by moving them to another account:',
|
||||
|
||||
// categories
|
||||
'new_category' => 'New category',
|
||||
'create_new_category' => 'Create a new category',
|
||||
'without_category' => 'Without a category',
|
||||
'update_category' => 'Wijzig categorie',
|
||||
'categories' => 'Categories',
|
||||
'edit_category' => 'Edit category ":name"',
|
||||
'no_category' => '(no category)',
|
||||
'category' => 'Category',
|
||||
'delete_category' => 'Delete category ":name"',
|
||||
'store_category' => 'Store new category',
|
||||
|
||||
// transactions
|
||||
'update_withdrawal' => 'Update withdrawal',
|
||||
'update_deposit' => 'Update deposit',
|
||||
'update_transfer' => 'Update transfer',
|
||||
'delete_withdrawal' => 'Delete withdrawal ":description"',
|
||||
'delete_deposit' => 'Delete deposit ":description"',
|
||||
'delete_transfer' => 'Delete transfer ":description"',
|
||||
|
||||
// new user
|
||||
'welcome' => 'Welcome to Firefly!',
|
||||
'createNewAsset' => 'Create a new asset account to get started. This will allow you to create transactions and start your financial management',
|
||||
'createNewAssetButton' => 'Criar nova conta de ativo',
|
||||
|
||||
// home page
|
||||
'yourAccounts' => 'Your accounts',
|
||||
'budgetsAndSpending' => 'Budgets and spending',
|
||||
'savings' => 'Savings',
|
||||
'markAsSavingsToContinue' => 'Mark your asset accounts as "Savings account" to fill this panel',
|
||||
'createPiggyToContinue' => 'Create piggy banks to fill this panel.',
|
||||
'newWithdrawal' => 'New expense',
|
||||
'newDeposit' => 'Novo depósito',
|
||||
'newTransfer' => 'Nova transferência',
|
||||
'moneyIn' => 'Money in',
|
||||
'moneyOut' => 'Money out',
|
||||
'billsToPay' => 'Bills to pay',
|
||||
'billsPaid' => 'Bills paid',
|
||||
'viewDetails' => 'View details',
|
||||
'divided' => 'divided',
|
||||
'toDivide' => 'left to divide',
|
||||
|
||||
// menu and titles, should be recycled as often as possible
|
||||
'toggleNavigation' => 'Toggle navigation',
|
||||
'currency' => 'Currency',
|
||||
'preferences' => 'Preferences',
|
||||
'logout' => 'Logout',
|
||||
'searchPlaceholder' => 'Search...',
|
||||
'dashboard' => 'Dashboard',
|
||||
'currencies' => 'Currencies',
|
||||
'accounts' => 'Accounts',
|
||||
'Asset account' => 'Asset account',
|
||||
'Default account' => 'Asset account',
|
||||
'Expense account' => 'Conta de Despesa',
|
||||
'Revenue account' => 'Conta de Receita',
|
||||
'Initial balance account' => 'Initial balance account',
|
||||
'budgets' => 'Budgets',
|
||||
'tags' => 'Tags',
|
||||
'reports' => 'Relatórios',
|
||||
'transactions' => 'Transações',
|
||||
'expenses' => 'Despesas',
|
||||
'income' => 'Receita / Renda',
|
||||
'transfers' => 'Transferências',
|
||||
'moneyManagement' => 'Gerenciamento de Dinheiro',
|
||||
'piggyBanks' => 'Cofrinhos',
|
||||
'bills' => 'Faturas',
|
||||
'createNew' => 'Criar nova(o)',
|
||||
'withdrawal' => 'Retirada',
|
||||
'deposit' => 'Depósito',
|
||||
'account' => 'Conta',
|
||||
'transfer' => 'Transferência',
|
||||
'Withdrawal' => 'Retirada',
|
||||
'Deposit' => 'Depósito',
|
||||
'Transfer' => 'Transferência',
|
||||
'bill' => 'Fatura',
|
||||
'yes' => 'Sim',
|
||||
'no' => 'Não',
|
||||
'amount' => 'Valor',
|
||||
'newBalance' => 'Novo saldo',
|
||||
'overview' => 'Visão Geral',
|
||||
'saveOnAccount' => 'Salvar na conta',
|
||||
'unknown' => 'Desconhecido',
|
||||
'daily' => 'Diário',
|
||||
'weekly' => 'Semanal',
|
||||
'monthly' => 'Mensal',
|
||||
'quarterly' => 'Trimestral',
|
||||
'half-year' => 'Semestral',
|
||||
'yearly' => 'Anual',
|
||||
'profile' => 'Perfil',
|
||||
|
||||
// reports
|
||||
'report_default' => 'Default financial report for :start until :end',
|
||||
'quick_link_reports' => 'Quick links',
|
||||
'quick_link_default_report' => 'Default financial report',
|
||||
'report_this_month_quick' => 'Current month, all accounts',
|
||||
'report_this_year_quick' => 'Current year, all accounts',
|
||||
'report_all_time_quick' => 'All-time, all accounts',
|
||||
'reports_can_bookmark' => 'Remember that reports can be bookmarked.',
|
||||
'incomeVsExpenses' => 'Renda vs. Despesas',
|
||||
'accountBalances' => 'Saldos de Contas',
|
||||
'balanceStartOfYear' => 'Balance at start of year',
|
||||
'balanceEndOfYear' => 'Balance at end of year',
|
||||
'balanceStartOfMonth' => 'Balance at start of month',
|
||||
'balanceEndOfMonth' => 'Balance at end of month',
|
||||
'balanceStart' => 'Balance at start of period',
|
||||
'balanceEnd' => 'Balance at end of period',
|
||||
'reportsOwnAccounts' => 'Reports for your own accounts',
|
||||
'reportsOwnAccountsAndShared' => 'Reports for your own accounts and shared accounts',
|
||||
'splitByAccount' => 'Split by account',
|
||||
'balancedByTransfersAndTags' => 'Balanced by transfers and tags',
|
||||
'coveredWithTags' => 'Covered with tags',
|
||||
'leftUnbalanced' => 'Left unbalanced',
|
||||
'expectedBalance' => 'Saldo Experado',
|
||||
'outsideOfBudgets' => 'Fora do orçamento',
|
||||
'leftInBudget' => 'Deixou no orçamento',
|
||||
'sumOfSums' => 'Soma dos montantes',
|
||||
'noCategory' => '(no category)',
|
||||
'notCharged' => 'Não cobrado (ainda)',
|
||||
'inactive' => 'Inativo',
|
||||
'difference' => 'Diferente',
|
||||
'in' => 'Entrada',
|
||||
'out' => 'Saída',
|
||||
'topX' => 'top :number',
|
||||
'showTheRest' => 'Mostrar tudo',
|
||||
'hideTheRest' => 'Mostrar apenas os top :number',
|
||||
'sum_of_year' => 'Soma do ano',
|
||||
'sum_of_years' => 'Sum of years',
|
||||
'average_of_year' => 'Média do ano',
|
||||
'average_of_years' => 'Average of years',
|
||||
'categories_earned_in_year' => 'Categories (by earnings)',
|
||||
'categories_spent_in_year' => 'Categories (by spendings)',
|
||||
'report_type' => 'Report type',
|
||||
'report_type_default' => 'Default financial report',
|
||||
'report_included_accounts' => 'Included accounts',
|
||||
'report_date_range' => 'Date range',
|
||||
'report_include_help' => 'In all cases, transfers to shared accounts count as expenses, and transfers from shared accounts count as income.',
|
||||
'report_preset_ranges' => 'Pre-set ranges',
|
||||
'shared' => 'Shared',
|
||||
|
||||
// charts
|
||||
'dayOfMonth' => 'Dia do mês',
|
||||
'month' => 'Mês',
|
||||
'budget' => 'Orçamento',
|
||||
'spent' => 'Gasto',
|
||||
'earned' => 'Ganho',
|
||||
'overspent' => 'Gasto excedido',
|
||||
'left' => 'Left',
|
||||
'noBudget' => '(sem orçamento)',
|
||||
'maxAmount' => 'Valor Máximo',
|
||||
'minAmount' => 'Valor Mínimo',
|
||||
'billEntry' => 'Current bill entry',
|
||||
'name' => 'Nome',
|
||||
'date' => 'Data',
|
||||
'paid' => 'Pago',
|
||||
'unpaid' => 'Não pago',
|
||||
'day' => 'Dia',
|
||||
'budgeted' => 'Orçado',
|
||||
'period' => 'Período',
|
||||
'balance' => 'Saldo',
|
||||
'summary' => 'Sumário',
|
||||
'sum' => 'Soma',
|
||||
'average' => 'Média',
|
||||
'balanceFor' => 'Saldo para ":name"',
|
||||
|
||||
// piggy banks
|
||||
'piggy_bank' => 'Cofrinho',
|
||||
'new_piggy_bank' => 'Criar novo cofrinho',
|
||||
'store_piggy_bank' => 'Store new piggy bank',
|
||||
'account_status' => 'Account status',
|
||||
'left_for_piggy_banks' => 'Left for piggy banks',
|
||||
'sum_of_piggy_banks' => 'Sum of piggy banks',
|
||||
'saved_so_far' => 'Saved so far',
|
||||
'left_to_save' => 'Left to save',
|
||||
'add_money_to_piggy_title' => 'Add money to piggy bank ":name"',
|
||||
'remove_money_from_piggy_title' => 'Remove money from piggy bank ":name"',
|
||||
'add' => 'Adicionar',
|
||||
'remove' => 'Remover',
|
||||
'max_amount_add' => 'The maximum amount you can add is',
|
||||
'max_amount_remove' => 'The maximum amount you can remove is',
|
||||
'update_piggy_button' => 'Update piggy bank',
|
||||
'update_piggy_title' => 'Update piggy bank ":name"',
|
||||
'details' => 'Detalhes',
|
||||
'events' => 'Eventos',
|
||||
'target_amount' => 'Valor alvo',
|
||||
'start_date' => 'Data de Início',
|
||||
'target_date' => 'Data Alvo',
|
||||
'no_target_date' => 'Nenhum data',
|
||||
'todo' => 'A fazer',
|
||||
'table' => 'Tabela',
|
||||
'piggy_bank_not_exists' => 'Piggy bank no longer exists.',
|
||||
'add_any_amount_to_piggy' => 'Add money to this piggy bank to reach your target of :amount.',
|
||||
'add_set_amount_to_piggy' => 'Add :amount to fill this piggy bank on :date',
|
||||
'delete_piggy_bank' => 'Apagar cofrinho ":name"',
|
||||
|
||||
// tags
|
||||
'regular_tag' => 'Just a regular tag.',
|
||||
'balancing_act' => 'The tag takes at most two transactions; an expense and a transfer. They\'ll balance each other out.',
|
||||
'advance_payment' => 'The tag accepts one expense and any number of deposits aimed to repay the original expense.',
|
||||
|
||||
'delete_tag' => 'Apagar tag ":tag"',
|
||||
'new_tag' => 'Fazer nova tag',
|
||||
'edit_tag' => 'Editar tag ":tag"',
|
||||
'no_year' => 'Nenhum ano definido',
|
||||
'no_month' => 'Nenhum mês definido',
|
||||
'tag_title_nothing' => 'Tags padrões',
|
||||
'tag_title_balancingAct' => 'Balancing act tags',
|
||||
'tag_title_advancePayment' => 'Advance payment tags',
|
||||
'tags_introduction' => 'Usually tags are singular words, designed to quickly band items together using things like <span class="label label-info">expensive</span>, <span class="label label-info">bill</span> or <span class="label label-info">for-party</span>. In Firefly III, tags can have more properties such as a date, description and location. This allows you to join transactions together in a more meaningful way. For example, you could make a tag called <span class="label label-success">Christmas dinner with friends</span> and add information about the restaurant. Such tags are "singular", you would only use them for a single occasion, perhaps with multiple transactions.',
|
||||
'tags_group' => 'Tags group transactions together, which makes it possible to store reimbursements (in case you front money for others) and other "balancing acts" where expenses are summed up (the payments on your new TV) or where expenses and deposits are cancelling each other out (buying something with saved money). It\'s all up to you. Using tags the old-fashioned way is of course always possible. ',
|
||||
'tags_start' => 'Create a tag to get started or enter tags when creating new transactions.',
|
||||
|
||||
];
|
96
resources/lang/pt_BR/form.php
Normal file
96
resources/lang/pt_BR/form.php
Normal file
@@ -0,0 +1,96 @@
|
||||
<?php
|
||||
return [
|
||||
|
||||
// new user:
|
||||
'bank_name' => 'Nome do banco',
|
||||
'bank_balance' => 'Saldo',
|
||||
'savings_balance' => 'Salda da Poupança',
|
||||
'credit_card_limit' => 'Limite do Cartão de Crédito',
|
||||
'automatch' => 'Match automatically',
|
||||
'skip' => 'Pular',
|
||||
'name' => 'Nome',
|
||||
'active' => 'Ativar',
|
||||
'amount_min' => 'Valor Mínimo',
|
||||
'amount_max' => 'Valor Máximo',
|
||||
'match' => 'Corresponde em',
|
||||
'repeat_freq' => 'Repetições',
|
||||
'account_from_id' => 'da conta',
|
||||
'account_to_id' => 'para conta',
|
||||
'account_id' => 'Asset account',
|
||||
'budget_id' => 'Orçamento',
|
||||
'openingBalance' => 'Saldo inicial',
|
||||
'tagMode' => 'Tag mode',
|
||||
'tagPosition' => 'Tag location',
|
||||
'virtualBalance' => 'Saldo virtual',
|
||||
'longitude_latitude' => 'Localização',
|
||||
'targetamount' => 'Valor alvo',
|
||||
'accountRole' => 'Account role',
|
||||
'openingBalanceDate' => 'Data do Saldo inicial',
|
||||
'ccType' => 'Plano de pagamento do Cartão de Crédito',
|
||||
'ccMonthlyPaymentDate' => 'Data do pagamento mensal do Cartão de Crédito',
|
||||
'piggy_bank_id' => 'Cofrinho',
|
||||
'returnHere' => 'Retornar aqui',
|
||||
'returnHereExplanation' => 'Depois de armazenar, retorne aqui para criar outro.',
|
||||
'returnHereUpdateExplanation' => 'Depois da atualização, retorne aqui',
|
||||
'description' => 'Descrição',
|
||||
'expense_account' => 'Conta de Despesa',
|
||||
'revenue_account' => 'Conta de Receita',
|
||||
'amount' => 'Valor',
|
||||
'date' => 'Data',
|
||||
'category' => 'Categoria',
|
||||
'tags' => 'Tags',
|
||||
'deletePermanently' => 'Apagar permanentemente',
|
||||
'cancel' => 'Cancelar',
|
||||
'targetdate' => 'Data Alvo',
|
||||
'tag' => 'Tag',
|
||||
'under' => 'Debaixo',
|
||||
'symbol' => 'Símbolo',
|
||||
'code' => 'Código',
|
||||
'iban' => 'IBAN',
|
||||
'csv' => 'Arquivo CSV',
|
||||
'has_headers' => 'Cabeçalhos',
|
||||
'date_format' => 'Formato da Data',
|
||||
'csv_config' => 'Importar CSV de configuração',
|
||||
'specifix' => 'Bank- or file specific fixes',
|
||||
'csv_import_account' => 'Default import account',
|
||||
'attachments[]' => 'Anexos',
|
||||
'store_new_withdrawal' => 'Store new withdrawal',
|
||||
'store_new_deposit' => 'Store new deposit',
|
||||
'store_new_transfer' => 'Store new transfer',
|
||||
'add_new_withdrawal' => 'Add a new withdrawal',
|
||||
'add_new_deposit' => 'Add a new deposit',
|
||||
'add_new_transfer' => 'Add a new transfer',
|
||||
'noPiggybank' => '(no piggy bank)',
|
||||
'noBudget' => '(sem orçamento)',
|
||||
'title' => 'Título',
|
||||
'notes' => 'Notas',
|
||||
'filename' => 'Nome do arquivo',
|
||||
'mime' => 'Mime type',
|
||||
'size' => 'Tamanho',
|
||||
|
||||
'delete_account' => 'Apagar conta ":name"',
|
||||
'delete_bill' => 'Apagar fatura ":name"',
|
||||
'delete_budget' => 'Delete budget ":name"',
|
||||
'delete_category' => 'Delete category ":name"',
|
||||
'delete_currency' => 'Delete currency ":name"',
|
||||
'delete_journal' => 'Delete transaction with description ":description"',
|
||||
'delete_attachment' => 'Apagar anexo ":name"',
|
||||
|
||||
'attachment_areYouSure' => 'Are you sure you want to delete the attachment named ":name"?',
|
||||
'account_areYouSure' => 'Are you sure you want to delete the account named ":name"?',
|
||||
'bill_areYouSure' => 'Você tem certeza que quer apagar a fatura ":name"?',
|
||||
'budget_areYouSure' => 'Are you sure you want to delete the budget named ":name"?',
|
||||
'category_areYouSure' => 'Are you sure you want to delete the category named ":name"?',
|
||||
'currency_areYouSure' => 'Are you sure you want to delete the currency named ":name"?',
|
||||
'piggyBank_areYouSure' => 'Are you sure you want to delete the piggy bank named ":name"?',
|
||||
'journal_areYouSure' => 'Are you sure you want to delete the transaction described ":description"?',
|
||||
'tag_areYouSure' => 'Você tem certeza que quer apagar a tag ":tag"?',
|
||||
|
||||
'permDeleteWarning' => 'Deleting stuff from Firely is permanent and cannot be undone.',
|
||||
'also_delete_transactions' => 'The only transaction connected to this account will be deleted as well.|All :count transactions connected to this account will be deleted as well.',
|
||||
'also_delete_piggyBanks' => 'The only piggy bank connected to this account will be deleted as well.|All :count piggy bank connected to this account will be deleted as well.',
|
||||
'bill_keep_transactions' => 'A única transação vinculada para esta fatura não será apagada.|Todas :count transações vinculadas a esta fatura não serão apagadas.',
|
||||
'budget_keep_transactions' => 'The only transaction connected to this budget will not be deleted.|All :count transactions connected to this budget will spared deletion.',
|
||||
'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.|All :count transactions connected to this category will spared deletion.',
|
||||
'tag_keep_transactions' => 'The only transaction connected to this tag will not be deleted.|All :count transactions connected to this tag will spared deletion.',
|
||||
];
|
93
resources/lang/pt_BR/help.php
Normal file
93
resources/lang/pt_BR/help.php
Normal file
@@ -0,0 +1,93 @@
|
||||
<?php
|
||||
return [
|
||||
|
||||
// tour!
|
||||
'main-content-title' => 'Bem Vindo ao Firefly III',
|
||||
'main-content-text' => 'Do yourself a favor and follow this short guide to make sure you know your way around.',
|
||||
'sidebar-toggle-title' => 'Sidebar to create stuff',
|
||||
'sidebar-toggle-text' => 'Hidden under the plus icon are all the buttons to create new stuff. Accounts, transactions, everything!',
|
||||
'account-menu-title' => 'All your accounts',
|
||||
'account-menu-text' => 'Here you can find all the accounts you\'ve made.',
|
||||
'budget-menu-title' => 'Budgets',
|
||||
'budget-menu-text' => 'Use this page to organise your finances and limit spending.',
|
||||
'report-menu-title' => 'Relatórios',
|
||||
'report-menu-text' => 'Check this out when you want a solid overview of your fiances.',
|
||||
'transaction-menu-title' => 'Transações',
|
||||
'transaction-menu-text' => 'All transactions you\'ve created can be found here.',
|
||||
'option-menu-title' => 'Opções',
|
||||
'option-menu-text' => 'This is pretty self-explanatory.',
|
||||
'main-content-end-title' => 'Fim!',
|
||||
'main-content-end-text' => 'Remember that every page has a small question mark at the right top. Click it to get help about the page you\'re on.',
|
||||
|
||||
|
||||
'register' => 'register',
|
||||
'index' => 'The main index',
|
||||
'home' => 'home',
|
||||
'flush' => 'flush',
|
||||
'accounts-index' => 'accounts.index',
|
||||
'accounts-create' => 'accounts.create',
|
||||
'accounts-edit' => 'accounts.edit',
|
||||
'accounts-delete' => 'accounts.delete',
|
||||
'accounts-show' => 'accounts.show',
|
||||
'bills-index' => 'bills.index',
|
||||
'bills-rescan' => 'bills.rescan',
|
||||
'bills-create' => 'bills.create',
|
||||
'bills-edit' => 'bills.edit',
|
||||
'bills-delete' => 'bills.delete',
|
||||
'bills-show' => 'bills.show',
|
||||
'budgets-index' => 'budgets.index',
|
||||
'budgets-income' => 'budgets.income',
|
||||
'budgets-create' => 'budgets.create',
|
||||
'budgets-edit' => 'budgets.edit',
|
||||
'budgets-delete' => 'budgets.delete',
|
||||
'budgets-show' => 'budgets.show',
|
||||
'budgets-noBudget' => 'budgets.noBudget',
|
||||
'categories-index' => 'categories.index',
|
||||
'categories-create' => 'categories.create',
|
||||
'categories-edit' => 'categories.edit',
|
||||
'categories-delete' => 'categories.delete',
|
||||
'categories-show' => 'categories.show',
|
||||
'categories-noCategory' => 'categories.noCategory',
|
||||
'csv-index' => 'Carregar e importar um arquivo CSV',
|
||||
'currency-index' => 'currency.index',
|
||||
'currency-create' => 'currency.create',
|
||||
'currency-edit' => 'currency.edit',
|
||||
'currency-delete' => 'currency.delete',
|
||||
'currency-default' => 'currency.default',
|
||||
'help-show' => 'help.show',
|
||||
'json-expense-accounts' => 'json.expense-accounts',
|
||||
'json-revenue-accounts' => 'json.revenue-accounts',
|
||||
'json-categories' => 'json.categories',
|
||||
'json-tags' => 'json.tags',
|
||||
'json-box-in' => 'json.box.in',
|
||||
'json-box-out' => 'json.box.out',
|
||||
'json-box-paid' => 'json.box.paid',
|
||||
'json-box-unpaid' => 'json.box.unpaid',
|
||||
'new-user-index' => 'new-user.index',
|
||||
'piggy-banks-index' => 'piggy-banks.index',
|
||||
'piggy-banks-addMoney' => 'piggy-banks.addMoney',
|
||||
'piggy-banks-removeMoney' => 'piggy-banks.removeMoney',
|
||||
'piggy-banks-create' => 'piggy-banks.create',
|
||||
'piggy-banks-edit' => 'piggy-banks.edit',
|
||||
'piggy-banks-delete' => 'piggy-banks.delete',
|
||||
'piggy-banks-show' => 'piggy-banks.show',
|
||||
'preferences' => 'preferences',
|
||||
'profile' => 'profile',
|
||||
'profile-change-password' => 'profile.change-password',
|
||||
'profile-delete-account' => 'profile.delete-account',
|
||||
'reports-index' => 'reports.index',
|
||||
'reports-year' => 'reports.year',
|
||||
'reports-month' => 'reports.month',
|
||||
'search' => 'search',
|
||||
'tags-index' => 'tags.index',
|
||||
'tags-create' => 'tags.create',
|
||||
'tags-show' => 'tags.show',
|
||||
'tags-edit' => 'tags.edit',
|
||||
'tags-delete' => 'tags.delete',
|
||||
'transactions-index' => 'transactions.index',
|
||||
'transactions-create' => 'transactions.create',
|
||||
'transactions-edit' => 'transactions.edit',
|
||||
'transactions-delete' => 'transactions.delete',
|
||||
'transactions-show' => 'transactions.show',
|
||||
'logout' => 'logout',
|
||||
];
|
33
resources/lang/pt_BR/list.php
Normal file
33
resources/lang/pt_BR/list.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
// all table headers.
|
||||
|
||||
return [
|
||||
'name' => 'Nome',
|
||||
'role' => 'Papel',
|
||||
'currentBalance' => 'Saldo atual',
|
||||
'active' => 'Está ativo?',
|
||||
'lastActivity' => 'Última atividade',
|
||||
'balanceDiff' => 'Saldo diferente entre :start e :end',
|
||||
'matchedOn' => 'Coincide',
|
||||
'matchesOn' => 'Correspondido em',
|
||||
'matchingAmount' => 'Total',
|
||||
'lastMatch' => 'Último equivalente',
|
||||
'expectedMatch' => 'Equivalente esperado',
|
||||
'automatch' => 'Auto equivale?',
|
||||
'repeat_freq' => 'Repetições',
|
||||
'description' => 'Descrição',
|
||||
'amount' => 'Total',
|
||||
'date' => 'Data',
|
||||
'from' => 'De',
|
||||
'to' => 'Até',
|
||||
'budget' => 'Orçamento',
|
||||
'category' => 'Categoria',
|
||||
'bill' => 'Fatura',
|
||||
'withdrawal' => 'Retirada',
|
||||
'deposit' => 'Depósito',
|
||||
'transfer' => 'Transferência',
|
||||
'type' => 'Tipo',
|
||||
'completed' => 'Completo',
|
||||
'iban' => 'IBAN',
|
||||
];
|
19
resources/lang/pt_BR/pagination.php
Normal file
19
resources/lang/pt_BR/pagination.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Anterior',
|
||||
'next' => 'Próximo »',
|
||||
|
||||
];
|
22
resources/lang/pt_BR/passwords.php
Normal file
22
resources/lang/pt_BR/passwords.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
"password" => "As senhas devem ter pelo menos seis caracteres e devem ser iguais.",
|
||||
"user" => "Não podemos encontrar um usuário com esse endereço de e-mail.",
|
||||
"token" => "Este token de redefinição de senha é inválido.",
|
||||
"sent" => "Nós te enviamos um email com um link para trocar a senha!",
|
||||
"reset" => "Sua senha foi redefinida!",
|
||||
'blocked' => 'Nice try though.'
|
||||
|
||||
];
|
Reference in New Issue
Block a user