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.
19 lines
802 B
Text
19 lines
802 B
Text
/* TRANSLATOR: Mário Kačmár /Mario Kacmar/ aka Kario (kario@szm.sk)
|
|
* DATE OF TR: 12-02-2008
|
|
*/
|
|
|
|
LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
IDS_USAGE "FIND: Zobrazí všetky riadky súboru obsahujúce hľadaný reťazec.\n\n\
|
|
FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] ""reťazec"" [súbor...]\n\
|
|
/V Zobrazí všetky riadky, ktoré neobsahujú hľadaný reťazec.\n\
|
|
/C Zobrazí počet riadkov, ktoré obsahujú reťazec.\n\
|
|
/N Čísluje zobrazené riadky, začína od 1.\n\
|
|
/I Ignoruje veľkosť písmen.\n\
|
|
/OFF[LINE] Do not skip files that have the offline attribute set."
|
|
IDS_NO_SUCH_FILE "FIND: Súbor %s sa nenašiel.\n"
|
|
IDS_CANNOT_OPEN "FIND: Súbor %s sa nedá otvoriť.\n"
|
|
IDS_INVALID_SWITCH "FIND: Invalid switch\n"
|
|
END
|