reactos/base/applications/cmdutils/find/lang/sv-SE.rc
Paweł Cholewa 1bd330cd81
[FIND] Rewrite of the find utility. (#1553)
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.
2019-05-14 20:37:38 +02:00

16 lines
653 B
Plaintext

LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
IDS_USAGE "FIND: Skriver ut alla rader i en fil som innehåller en sträng.\n\n\
FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] ""sträng"" [fil...]\n\
/V Skriver ut rader som inte innehåller strängen.\n\
/C Räkna antalet rader som innehåller en strängen.\n\
/N Antal visade rader, börjar på 1.\n\
/I Ignorera skiftläge.\n\
/OFF[LINE] Do not skip files that have the offline attribute set."
IDS_NO_SUCH_FILE "FIND: %s: Ingen sorts fil\n"
IDS_CANNOT_OPEN "FIND: %s: Kan inte öppna filen\n"
IDS_INVALID_SWITCH "FIND: Invalid switch\n"
END