| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2018 The OGP Development Team
- *
- * http://www.opengamepanel.org/
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- */
- define('OGP_LANG_dir_not_found', "Diretório '%s' não encontrado pelo servidor.");
- define('OGP_LANG_filename', "Nome do arquivo");
- define('OGP_LANG_filesize', "Tamanho do arquivo");
- define('OGP_LANG_bytes', "Bytes");
- define('OGP_LANG_owner', "Proprietário");
- define('OGP_LANG_group', "Grupo");
- define('OGP_LANG_empty_directory', "O diretório está vazio.");
- define('OGP_LANG_currently_viewing', "Atualmente visualizando o diretório '%s'");
- define('OGP_LANG_wrote_changes', "Alterações salvas com sucesso.");
- define('OGP_LANG_failed_write', "Falha ao gravar arquivo no servidor remoto.");
- define('OGP_LANG_failed_read', "Falha ao ler o arquivo do servidor remoto.");
- define('OGP_LANG_failed_list', "Falha ao recuperar a lista de diretórios.");
- define('OGP_LANG_level_up', "^Subir um nível^");
- define('OGP_LANG_unallowed_char', "Caracteres não permitidos encontrados no caminho.");
- define('OGP_LANG_button_edit', "[Editar]");
- define('OGP_LANG_save', "Salvar");
- define('OGP_LANG_home_id_missing', "O ID inicial está em falta.");
- define('OGP_LANG_upload', "Carregar através do computador");
- define('OGP_LANG_upload_failed', "O carregamento falhou, o erro causado foi: %s .");
- define('OGP_LANG_can_not_create_upload_folder_path', "Não é possível criar o caminho da pasta de upload %s");
- define('OGP_LANG_url_is_not_accesible_from_agent', "URL %s não é acessível pelo Agente");
- define('OGP_LANG_upload_file', "Carregar arquivo");
- define('OGP_LANG_uncompress', "Descompactar");
- define('OGP_LANG_create_folder', "Criar pasta");
- define('OGP_LANG_create', "Criar");
- define('OGP_LANG_delete_item', "Apagar %s?");
- define('OGP_LANG_upload_in_progress', "Envio de arquivo em progresso...");
- define('OGP_LANG_upload_complete', "Envio completo.");
- define('OGP_LANG_chattr_yes', "Bloquear arquivo");
- define('OGP_LANG_chattr_no', "Desbloquear arquivo");
- define('OGP_LANG_secure_item', "Seguro/não seguro %s?");
- define('OGP_LANG_filesecure', "Segurança do Arquivo");
- define('OGP_LANG_chattr_locked', "Arquivo Bloqueado");
- define('OGP_LANG_chattr_unlocked', "Arquivo desbloqueado");
- define('OGP_LANG_rename', "Renomear");
- define('OGP_LANG_move', "Mover");
- define('OGP_LANG_copy', "Copiar");
- define('OGP_LANG_compress', "Comprimir");
- define('OGP_LANG_create_file', "Criar arquivo");
- define('OGP_LANG_select_at_least_one_item', "Selecione pelo menos um item");
- define('OGP_LANG_rename_item', "Renomear item(s)");
- define('OGP_LANG_move_item', "Mover item(s)");
- define('OGP_LANG_copy_item', "Copiar item(s)");
- define('OGP_LANG_compress_item', "Comprimir item(s)");
- define('OGP_LANG_uncompress_item', "Descompactar item(s)");
- define('OGP_LANG_archive_name', "Nome do arquivo");
- define('OGP_LANG_archive_type', "Tipo de arquivo");
- define('OGP_LANG_file_name', "Nome do arquivo");
- define('OGP_LANG_folder_name', "nome da pasta");
- define('OGP_LANG_compresses_files_separately', "Comprime arquivos separadamente");
- define('OGP_LANG_to', "para");
- define('OGP_LANG_upload_to_web', "Carregar para a Web");
- define('OGP_LANG_transfer_to_server', "Transferir para o servidor");
- define('OGP_LANG_mail_sent_successfully', "E-mail enviado com sucesso");
- define('OGP_LANG_send_item_by_email', "Enviar item(s) por e-mail");
- define('OGP_LANG_subject', "Assunto");
- define('OGP_LANG_message', "Mensagem");
- define('OGP_LANG_dest_email', "E-mail de destino");
- define('OGP_LANG_remove', "Remover");
- define('OGP_LANG_send_by_email', "Enviar por email");
- define('OGP_LANG_send_by_email_info', "Para enviar arquivos, o pacote 'mutt' deve ser instalado em todos os Agentes disponíveis.");
- define('OGP_LANG_settings_updated', "Configurações atualizadas");
- define('OGP_LANG_update_settings', "Atualizar configurações");
- ?>
|