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.
23 lines
1.1 KiB
Text
23 lines
1.1 KiB
Text
/*
|
||
* PROJECT: Find
|
||
* LICENSE: GPL - See COPYING in the top level directory
|
||
* FILE: base/applications/cmdutils/find/lang/uk-UA.rc
|
||
* PURPOSE: Ukraianian Language File for find
|
||
* TRANSLATOR: Artem Reznikov
|
||
*/
|
||
|
||
LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT
|
||
|
||
STRINGTABLE
|
||
BEGIN
|
||
IDS_USAGE "FIND: Виведення всіх рядків файлу, які містять рядок.\n\n\
|
||
FIND [/V] [/C] [/N] [/I] [/OFF[LINE]] ""рядок"" [файл...]\n\
|
||
/V Виведення рядків, які не містять заданий рядок.\n\
|
||
/C Порахувати кількість рядків, які містять рядок.\n\
|
||
/N Нумерувати рядки, які відображаються (починаючи з 1).\n\
|
||
/I Не враховувати регістр символів.\n\
|
||
/OFF[LINE] Do not skip files that have the offline attribute set."
|
||
IDS_NO_SUCH_FILE "FIND: %s: Файл не існує\n"
|
||
IDS_CANNOT_OPEN "FIND: %s: Неможливо відкрити файл\n"
|
||
IDS_INVALID_SWITCH "FIND: Invalid switch\n"
|
||
END
|