mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +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
752 B
Text
15 lines
752 B
Text
LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
IDS_USAGE "FIND: Imprime todas las líneas de un fichero que contiene una cadena.\n\n\
|
|
FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] ""cadena"" [fichero...]\n\
|
|
/V Muestra las líneas que no contienen la cadena de caracteres.\n\
|
|
/C Cuenta el número de líneas que contienen la cadena de caracteres.\n\
|
|
/N Numero de líneas a mostrar en pantalla, a partir de la primera.\n\
|
|
/I Ignora mayúsculas y minúsculas.\n\
|
|
/OFF[LINE] Do not skip files that have the offline attribute set."
|
|
IDS_NO_SUCH_FILE "FIND: %s: No se encontró el fichero\n"
|
|
IDS_CANNOT_OPEN "FIND: %s: No se pudo abrir el fichero\n"
|
|
IDS_INVALID_SWITCH "FIND: Invalid switch\n"
|
|
END
|