This repository has been archived on 2020-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
ldl3/str.h

54 lines
2.9 KiB
C

/*
limpador do luca0N! 3
Copyright (C) 2020 luca0N!
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 3 of the License, or
(at your option) 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, see <https://www.gnu.org/licenses/>.
Contact me by e-mail via <mailto:luca0n@protonmail.com>.
*/
#ifndef STR_DEF
#define STR_DEF
#define STR_LN "--------------------------------------"
#define STR_TAMPER_WARNING "Este programa é distribuído gratuitamente em <https://github.com/luca0N/ldl3> na licença GNU General Public License versão 3. Você deve ter recebido um arquivo chamado \"LICENSE\" junto com este programa. O arquivo de licença pode ter sido modificado por alguma outra pessoa. Visite <https://www.gnu.org/licenses/> na ocorrência em que o arquivo não seja genuíno.\n"
#define STR_USE_WARNING "Aviso: é recomendado fechar todos os programas abertos antes de utilizar este programa para poder remover mais arquivos temporários. Deseja continuar? (s/n)"
#define STR_FETCHING_ADD_DIRS "Recolhendo pastas adicionais..."
#define STR_CLEANING_DIR "[Limpando pasta] %s\n"
#define STR_DELETED_FILE " [Arquivo removido]\n"
#define STR_DELETED_DIR "[Pasta removida] %s\n"
#define STR_DIR_COUNT "[Contagem de pastas] %d\n"
#define STR_FOUND_DIR "\n[Pasta encontrada] [%s] %s\n"
#define STR_FOUND_FILE "[Arquivo encontrado] %s\n"
#define STR_FOUND_ITEM "[Item encontrado] %s\n"
#define STR_FAILED_DIR_LIST "Um erro ocorreu ao tentar enumerar os arquivos dentro de uma pasta especificada.\n"
#define STR_FAILED_FILE " [Arquivo mantido] Não foi possível apagar este arquivo pelo seguinte erro:\n"
#define STR_FAILED_DIR "[Pasta mantida] Não foi possível apagar esta pasta pelo seguinte erro:\n"
#define STR_OBJECT_COUNT "\n[Relatório] %u objetos foram apagados com sucesso.\n"
#define STR_TOTAL_DELETED_BYTES "[Relatório] %lu baites ou mais foram liberados.\n"
#define STR_TOTAL_DELETED_KIBIBYTES "[Relatório] %.2f KiB ou mais foram liberados.\n"
#define STR_TOTAL_DELETED_MEBIBYTES "[Relatório] %.2f MiB ou mais foram liberados.\n"
#define STR_TOTAL_DELETED_GIBIBYTES "[Relatório] %.2f GiB ou mais foram liberados.\n"
#define STR_MEM_ERR "[Erro fatal] Não foi possível alocar memória. Tente fechar alguns programas abertos e tente novamente.\n"
#define STR_ERROR_LIC "Falha ao ler arquivo da licença GNU General Public License versão 3.0. Visite <https://www.gnu.org/licenses/> para mais informações.\n"
#define STR_EXIT_PAUSE "\nPressione qualquer tecla para sair do programa.\n"
#endif