40 lines
1.6 KiB
C
40 lines
1.6 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_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]"
|
|
#define STR_REMOVED_FILE "[Arquivo removido]"
|
|
#define STR_REMOVED_DIR "[Pasta removida]"
|
|
#define STR_DIR_COUNT "[Contagem de pastas]"
|
|
#define STR_FOUND_DIR "[Pasta encontrada]"
|
|
#define STR_FOUND_FILE "[Arquivo encontrado]"
|
|
#define STR_FOUND_ITEM "[Item encontrado]"
|
|
#define STR_FAILED_DIR_LIST "Um erro ocorreu ao tentar enumerar os arquivos dentro de uma pasta especificada."
|
|
|
|
#define STR_ERROR_LIC "Falha ao ler arquivo de licença. Visite <https://www.gnu.org/licenses/> para mais informações."
|
|
|
|
#endif |