mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +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
713 B
Text
15 lines
713 B
Text
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
IDS_USAGE "FIND: Affiche toutes les lignes d'un fichier qui contiennent un morceau de texte.\n\n\
|
|
FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] ""texte"" [fichier...]\n\
|
|
/V Affiche les lignes qui ne contiennent pas le texte.\n\
|
|
/C Compte le nombre de lignes qui contiennent le texte.\n\
|
|
/N Numérote les lignes affichées en commençant à 1.\n\
|
|
/I Insensible à la casse.\n\
|
|
/OFF[LINE] Ne pas ignorer les fichiers ayant l'attribut hors-ligne."
|
|
IDS_NO_SUCH_FILE "FIND: %s : fichier inexistant\n"
|
|
IDS_CANNOT_OPEN "FIND: %s : impossible d'ouvrir le fichier\n"
|
|
IDS_INVALID_SWITCH "FIND: Invalid switch\n"
|
|
END
|