mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
1bd330cd81
This commit contains a complete rewrite of find console utility. The goal of it was to make the source code easier to maintain and to add a missing feature (/offline switch). Additional changes: * now the program operates on Unicode strings; * added conutils and shlwapi as program's libraries; * added IDS_INVALID_SWITCH string into resources; * modified IDS_USAGE string to include /offline switch description. https://ss64.com/nt/find.html was used for reference.
15 lines
763 B
Text
15 lines
763 B
Text
LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
IDS_USAGE "FIND: Localiza uma seqüência de texto em um ou mais arquivos.\n\n\
|
|
FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] ""seqüência"" [arquivo...]\n\
|
|
/V Exibe todas as linhas que NÃO contêm a seqüência especificada.\n\
|
|
/C Exibe apenas o número de linhas que contêm a seqüência.\n\
|
|
/N Exibe o número de cada linha, iniciando no 1.\n\
|
|
/I Ignora maiúsculas/minúsculas ao localizar uma seqüência.\n\
|
|
/OFF[LINE] Do not skip files that have the offline attribute set."
|
|
IDS_NO_SUCH_FILE "FIND: %s: Arquivo não encontrado\n"
|
|
IDS_CANNOT_OPEN "FIND: %s: Não foi possível abrir o arquivo\n"
|
|
IDS_INVALID_SWITCH "FIND: Invalid switch\n"
|
|
END
|