litefm.php 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) 2008 - 2018 The OGP Development Team
  6. *
  7. * http://www.opengamepanel.org/
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. */
  24. define('OGP_LANG_dir_not_found', "Diretório '%s' não encontrado pelo servidor.");
  25. define('OGP_LANG_filename', "Nome do arquivo");
  26. define('OGP_LANG_filesize', "Tamanho do arquivo");
  27. define('OGP_LANG_bytes', "Bytes");
  28. define('OGP_LANG_owner', "Proprietário");
  29. define('OGP_LANG_group', "Grupo");
  30. define('OGP_LANG_empty_directory', "O diretório está vazio.");
  31. define('OGP_LANG_currently_viewing', "Atualmente visualizando o diretório '%s'");
  32. define('OGP_LANG_wrote_changes', "Alterações salvas com sucesso.");
  33. define('OGP_LANG_failed_write', "Falha ao gravar arquivo no servidor remoto.");
  34. define('OGP_LANG_failed_read', "Falha ao ler o arquivo do servidor remoto.");
  35. define('OGP_LANG_failed_list', "Falha ao recuperar a lista de diretórios.");
  36. define('OGP_LANG_level_up', "^Subir um nível^");
  37. define('OGP_LANG_unallowed_char', "Caracteres não permitidos encontrados no caminho.");
  38. define('OGP_LANG_button_edit', "[Editar]");
  39. define('OGP_LANG_save', "Salvar");
  40. define('OGP_LANG_home_id_missing', "O ID inicial está em falta.");
  41. define('OGP_LANG_upload', "Carregar através do computador");
  42. define('OGP_LANG_upload_failed', "O carregamento falhou, o erro causado foi: %s .");
  43. define('OGP_LANG_can_not_create_upload_folder_path', "Não é possível criar o caminho da pasta de upload %s");
  44. define('OGP_LANG_url_is_not_accesible_from_agent', "URL %s não é acessível pelo Agente");
  45. define('OGP_LANG_upload_file', "Carregar arquivo");
  46. define('OGP_LANG_uncompress', "Descompactar");
  47. define('OGP_LANG_create_folder', "Criar pasta");
  48. define('OGP_LANG_create', "Criar");
  49. define('OGP_LANG_delete_item', "Apagar %s?");
  50. define('OGP_LANG_upload_in_progress', "Envio de arquivo em progresso...");
  51. define('OGP_LANG_upload_complete', "Envio completo.");
  52. define('OGP_LANG_chattr_yes', "Bloquear arquivo");
  53. define('OGP_LANG_chattr_no', "Desbloquear arquivo");
  54. define('OGP_LANG_secure_item', "Seguro/não seguro %s?");
  55. define('OGP_LANG_filesecure', "Segurança do Arquivo");
  56. define('OGP_LANG_chattr_locked', "Arquivo Bloqueado");
  57. define('OGP_LANG_chattr_unlocked', "Arquivo desbloqueado");
  58. define('OGP_LANG_rename', "Renomear");
  59. define('OGP_LANG_move', "Mover");
  60. define('OGP_LANG_copy', "Copiar");
  61. define('OGP_LANG_compress', "Comprimir");
  62. define('OGP_LANG_create_file', "Criar arquivo");
  63. define('OGP_LANG_select_at_least_one_item', "Selecione pelo menos um item");
  64. define('OGP_LANG_rename_item', "Renomear item(s)");
  65. define('OGP_LANG_move_item', "Mover item(s)");
  66. define('OGP_LANG_copy_item', "Copiar item(s)");
  67. define('OGP_LANG_compress_item', "Comprimir item(s)");
  68. define('OGP_LANG_uncompress_item', "Descompactar item(s)");
  69. define('OGP_LANG_archive_name', "Nome do arquivo");
  70. define('OGP_LANG_archive_type', "Tipo de arquivo");
  71. define('OGP_LANG_file_name', "Nome do arquivo");
  72. define('OGP_LANG_folder_name', "nome da pasta");
  73. define('OGP_LANG_compresses_files_separately', "Comprime arquivos separadamente");
  74. define('OGP_LANG_to', "para");
  75. define('OGP_LANG_upload_to_web', "Carregar para a Web");
  76. define('OGP_LANG_transfer_to_server', "Transferir para o servidor");
  77. define('OGP_LANG_mail_sent_successfully', "E-mail enviado com sucesso");
  78. define('OGP_LANG_send_item_by_email', "Enviar item(s) por e-mail");
  79. define('OGP_LANG_subject', "Assunto");
  80. define('OGP_LANG_message', "Mensagem");
  81. define('OGP_LANG_dest_email', "E-mail de destino");
  82. define('OGP_LANG_remove', "Remover");
  83. define('OGP_LANG_send_by_email', "Enviar por email");
  84. define('OGP_LANG_send_by_email_info', "Para enviar arquivos, o pacote 'mutt' deve ser instalado em todos os Agentes disponíveis.");
  85. define('OGP_LANG_settings_updated', "Configurações atualizadas");
  86. define('OGP_LANG_update_settings', "Atualizar configurações");
  87. ?>