https://git.reactos.org/?p=reactos.git;a=commitdiff;h=6e65e6b28d78eae93896a…
commit 6e65e6b28d78eae93896aeb95fc4876b83063c85
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Thu Jun 10 19:24:04 2021 +0200
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Fri Jun 11 02:21:47 2021 +0200
[NTOS:IO] Minor code style fixes (typos; improve comments/DPRINT; IN vs. OUT parameter).
---
ntoskrnl/fstub/fstubex.c | 14 +++++++-------
ntoskrnl/io/iomgr/arcname.c | 36 +++++++++++++++++-------------------
2 files changed, 24 insertions(+), 26 deletions(-)
diff --git a/ntoskrnl/fstub/fstubex.c b/ntoskrnl/fstub/fstubex.c
index 84296e0a722..6e43f238e66 100644
--- a/ntoskrnl/fstub/fstubex.c
+++ b/ntoskrnl/fstub/fstubex.c
@@ -1852,7 +1852,7 @@ IoGetBootDiskInformation(IN OUT PBOOTDISK_INFORMATION BootDiskInformation,
PAGED_CODE();
- /* Get loader block. If it's null, we come to late */
+ /* Get loader block. If it's null, we come too late */
if (!IopLoaderBlock)
{
return STATUS_TOO_LATE;
@@ -1865,7 +1865,7 @@ IoGetBootDiskInformation(IN OUT PBOOTDISK_INFORMATION BootDiskInformation,
}
/* Init some useful stuff:
- * Get arc disks information
+ * Get ARC disks information
* Check whether we have a single disk
* Check received structure size (extended or not?)
* Init boot strings (system/boot)
@@ -1955,7 +1955,7 @@ IoGetBootDiskInformation(IN OUT PBOOTDISK_INFORMATION BootDiskInformation,
DiskGeometry.BytesPerSector = 512;
}
- /* Now, for each arc disk, try to find the matching */
+ /* Now, for each ARC disk, try to find the matching */
for (NextEntry = ArcDiskInformation->DiskSignatureListHead.Flink;
NextEntry != &ArcDiskInformation->DiskSignatureListHead;
NextEntry = NextEntry->Flink)
@@ -1963,7 +1963,7 @@ IoGetBootDiskInformation(IN OUT PBOOTDISK_INFORMATION BootDiskInformation,
ArcDiskSignature = CONTAINING_RECORD(NextEntry,
ARC_DISK_SIGNATURE,
ListEntry);
- /* If they matches, ie
+ /* If they match, i.e.
* - There's only one disk for both BIOS and detected
* - Signatures are matching
* - This is MBR
@@ -1973,7 +1973,7 @@ IoGetBootDiskInformation(IN OUT PBOOTDISK_INFORMATION BootDiskInformation,
(IopVerifyDiskSignature(DriveLayout, ArcDiskSignature, &Signature))) &&
(DriveLayout->PartitionStyle == PARTITION_STYLE_MBR))
{
- /* Create arc name */
+ /* Create ARC name */
sprintf(ArcBuffer, "\\ArcName\\%s", ArcDiskSignature->ArcName);
RtlInitAnsiString(&ArcNameStringA, ArcBuffer);
@@ -1995,7 +1995,7 @@ IoGetBootDiskInformation(IN OUT PBOOTDISK_INFORMATION BootDiskInformation,
Signature = DriveLayout->Mbr.Signature;
}
- /* Create partial arc name */
+ /* Create partial ARC name */
sprintf(ArcBuffer, "%spartition(%lu)", ArcDiskSignature->ArcName, PartitionNumber);
RtlInitAnsiString(&ArcNameStringA, ArcBuffer);
@@ -2524,7 +2524,7 @@ IoWritePartitionTableEx(IN PDEVICE_OBJECT DeviceObject,
FALSE,
DriveLayout->PartitionCount,
DriveLayout->PartitionEntry);
- /* If it succeed, also update backup table */
+ /* If it succeeded, also update backup table */
if (NT_SUCCESS(Status))
{
Status = FstubWritePartitionTableEFI(Disk,
diff --git a/ntoskrnl/io/iomgr/arcname.c b/ntoskrnl/io/iomgr/arcname.c
index 2e7cbb968b1..c36af33a5e8 100644
--- a/ntoskrnl/io/iomgr/arcname.c
+++ b/ntoskrnl/io/iomgr/arcname.c
@@ -24,16 +24,14 @@ PCHAR IoLoaderArcBootDeviceName;
CODE_SEG("INIT")
NTSTATUS
NTAPI
-IopCreateArcNamesCd(IN PLOADER_PARAMETER_BLOCK LoaderBlock
-);
+IopCreateArcNamesCd(IN PLOADER_PARAMETER_BLOCK LoaderBlock);
CODE_SEG("INIT")
NTSTATUS
NTAPI
IopCreateArcNamesDisk(IN PLOADER_PARAMETER_BLOCK LoaderBlock,
IN BOOLEAN SingleDisk,
- IN PBOOLEAN FoundBoot
-);
+ OUT PBOOLEAN FoundBoot);
CODE_SEG("INIT")
NTSTATUS
@@ -136,7 +134,7 @@ IopCreateArcNames(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
/* Loop every disk and try to find boot disk */
Status = IopCreateArcNamesDisk(LoaderBlock, SingleDisk, &FoundBoot);
- /* If it succeed but we didn't find boot device, try to browse Cds */
+ /* If it succeeded but we didn't find boot device, try to browse Cds */
if (NT_SUCCESS(Status) && !FoundBoot)
{
Status = IopCreateArcNamesCd(LoaderBlock);
@@ -178,7 +176,7 @@ IopCreateArcNamesCd(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
* that have been successfully handled by MountMgr driver
* and that already own their device name. This is the "new" way
* to handle them, that came with NT5.
- * Currently, Windows 2003 provides an arc names creation based
+ * Currently, Windows 2003 provides an ARC names creation based
* on both enabled drives and not enabled drives (lack from
* the driver).
* Given the current ReactOS state, that's good for us.
@@ -357,7 +355,7 @@ IopCreateArcNamesCd(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
Status = IoStatusBlock.Status;
}
- /* Reading succeed, compute checksum by adding data, 2048 bytes checksum */
+ /* If reading succeeded, compute checksum by adding data, 2048 bytes checksum */
if (NT_SUCCESS(Status))
{
for (i = 0; i < 2048 / sizeof(ULONG); i++)
@@ -413,7 +411,7 @@ NTSTATUS
NTAPI
IopCreateArcNamesDisk(IN PLOADER_PARAMETER_BLOCK LoaderBlock,
IN BOOLEAN SingleDisk,
- IN PBOOLEAN FoundBoot)
+ OUT PBOOLEAN FoundBoot)
{
PIRP Irp;
PVOID Data;
@@ -644,7 +642,7 @@ IopCreateArcNamesDisk(IN PLOADER_PARAMETER_BLOCK LoaderBlock,
goto Cleanup;
}
- /* Read a sector for computing checksum */
+ /* Read the first sector for computing checksum */
Irp = IoBuildSynchronousFsdRequest(IRP_MJ_READ,
DeviceObject,
PartitionBuffer,
@@ -677,7 +675,7 @@ IopCreateArcNamesDisk(IN PLOADER_PARAMETER_BLOCK LoaderBlock,
ObDereferenceObject(FileObject);
- /* Calculate checksum, that's an easy computation, just adds read data */
+ /* Calculate checksum by adding data */
for (i = 0, CheckSum = 0; i < 512 / sizeof(ULONG) ; i++)
{
CheckSum += PartitionBuffer[i];
@@ -692,7 +690,7 @@ IopCreateArcNamesDisk(IN PLOADER_PARAMETER_BLOCK LoaderBlock,
ARC_DISK_SIGNATURE,
ListEntry);
- /* If they matches, ie
+ /* If they match, i.e.
* - There's only one disk for both BIOS and detected/enabled
* - Signatures are matching
* - Checksums are matching
@@ -789,15 +787,15 @@ IopCreateArcNamesDisk(IN PLOADER_PARAMETER_BLOCK LoaderBlock,
}
else
{
- /* In case there's a valid partition, a matching signature,
- BUT a none matching checksum, or there's a duplicate
- signature, or even worse a virus played with partition
- table */
- if (ArcDiskSignature->Signature == Signature &&
- (ArcDiskSignature->CheckSum + CheckSum != 0) &&
- ArcDiskSignature->ValidPartitionTable)
+ /* Debugging feedback: Warn in case there's a valid partition,
+ * a matching signature, BUT a non-matching checksum: this can
+ * be the sign of a duplicate signature, or even worse a virus
+ * played with the partition table. */
+ if (ArcDiskSignature->ValidPartitionTable &&
+ (ArcDiskSignature->Signature == Signature) &&
+ (ArcDiskSignature->CheckSum + CheckSum != 0))
{
- DPRINT("Be careful, or you have a duplicate disk signature, or a virus altered your MBR!\n");
+ DPRINT("Be careful, you have a duplicate disk signature, or a virus altered your MBR!\n");
}
}
}
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=6e29107f316e7d2f69cde…
commit 6e29107f316e7d2f69cde974639d208fbaa40fef
Author: Oleg Dubinskiy <oleg.dubinskij2013(a)yandex.ua>
AuthorDate: Fri Jun 4 17:32:07 2021 +0300
Commit: Stanislav Motylkov <x86corez(a)gmail.com>
CommitDate: Fri Jun 11 02:06:11 2021 +0300
[SOUNDS] Add new Recycle Bin system sound
Add new sound for Recycle Bin sound event.
Since this sound event is now working properly after some fixes in shell32 code, it's now possible for user to set the sound for this sound event manually.
But don't enable it by default, since it is also disabled on Windows Server 2003.
CORE-15868
---
media/CMakeLists.txt | 1 +
media/sounds/ReactOS_Recycle.wav | Bin 0 -> 109412 bytes
2 files changed, 1 insertion(+)
diff --git a/media/CMakeLists.txt b/media/CMakeLists.txt
index dd2a78ea9f8..2f8cecc8b22 100644
--- a/media/CMakeLists.txt
+++ b/media/CMakeLists.txt
@@ -12,6 +12,7 @@ add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/drivers/etc/networks DESTINATION re
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/drivers/etc/protocol DESTINATION reactos/system32/drivers/etc FOR all)
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/drivers/etc/services DESTINATION reactos/system32/drivers/etc FOR all)
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/sounds/ReactOS_LogOn.wav DESTINATION reactos/media FOR all)
+add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/sounds/ReactOS_Recycle.wav DESTINATION reactos/media FOR all)
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/systemcompatible.manifest DESTINATION reactos/winsxs/manifests FOR all)
add_cd_file(FILE ${CMAKE_CURRENT_SOURCE_DIR}/forwardcompatible.manifest DESTINATION reactos/winsxs/manifests FOR all)
diff --git a/media/sounds/ReactOS_Recycle.wav b/media/sounds/ReactOS_Recycle.wav
new file mode 100644
index 00000000000..bf9c7fa57f1
Binary files /dev/null and b/media/sounds/ReactOS_Recycle.wav differ
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=558908e709f4e9614bf8c…
commit 558908e709f4e9614bf8c4c07dd6ad24dfd80d47
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Thu Jun 10 02:34:23 2021 +0200
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Thu Jun 10 02:36:12 2021 +0200
[MORE] Update and complete MORE's help usage.
And add french translation.
---
base/applications/cmdutils/more/lang/bg-BG.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/ca-ES.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/cs-CZ.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/de-DE.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/el-GR.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/en-US.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/es-ES.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/et-EE.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/fr-FR.rc | 64 +++++++++++++++++----------
base/applications/cmdutils/more/lang/it-IT.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/lt-LT.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/no-NO.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/pl-PL.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/ro-RO.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/ru-RU.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/sk-SK.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/sq-AL.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/sv-SE.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/tr-TR.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/uk-UA.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/zh-CN.rc | 60 ++++++++++++++++---------
base/applications/cmdutils/more/lang/zh-TW.rc | 60 ++++++++++++++++---------
22 files changed, 839 insertions(+), 485 deletions(-)
diff --git a/base/applications/cmdutils/more/lang/bg-BG.rc b/base/applications/cmdutils/more/lang/bg-BG.rc
index 28a942377cd..24a8a384a2f 100644
--- a/base/applications/cmdutils/more/lang/bg-BG.rc
+++ b/base/applications/cmdutils/more/lang/bg-BG.rc
@@ -2,29 +2,45 @@ LANGUAGE LANG_BULGARIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_USAGE "Показва данните на екрана, разделени на страници.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Показва данните на екрана, разделени на страници.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Продължаване --"
IDS_CONTINUE_PROGRESS "-- Продължаване (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/ca-ES.rc b/base/applications/cmdutils/more/lang/ca-ES.rc
index 8762861dc4d..f14562e6600 100644
--- a/base/applications/cmdutils/more/lang/ca-ES.rc
+++ b/base/applications/cmdutils/more/lang/ca-ES.rc
@@ -2,29 +2,45 @@ LANGUAGE LANG_CATALAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_USAGE "Mostra en pantalla el contingut pàgina per pàgina.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Mostra en pantalla el contingut pàgina per pàgina.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Continua --"
IDS_CONTINUE_PROGRESS "-- Continua (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/cs-CZ.rc b/base/applications/cmdutils/more/lang/cs-CZ.rc
index 3b2780ebc8f..fd1db132622 100644
--- a/base/applications/cmdutils/more/lang/cs-CZ.rc
+++ b/base/applications/cmdutils/more/lang/cs-CZ.rc
@@ -8,29 +8,45 @@ LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_USAGE "Zobrazí výstup po jednotlivých stránkách na obrazovku.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Zobrazí výstup po jednotlivých stránkách na obrazovku.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Pokračovat --"
IDS_CONTINUE_PROGRESS "-- Pokračovat (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/de-DE.rc b/base/applications/cmdutils/more/lang/de-DE.rc
index db101d924f8..bfa56fcd9df 100644
--- a/base/applications/cmdutils/more/lang/de-DE.rc
+++ b/base/applications/cmdutils/more/lang/de-DE.rc
@@ -2,29 +2,45 @@ LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_USAGE "Zeigt Daten seitenweise auf dem Bildschirm an.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Zeigt Daten seitenweise auf dem Bildschirm an.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Fortsetzung --"
IDS_CONTINUE_PROGRESS "-- Fortsetzung (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/el-GR.rc b/base/applications/cmdutils/more/lang/el-GR.rc
index 589fe0cf599..6750bbd9317 100644
--- a/base/applications/cmdutils/more/lang/el-GR.rc
+++ b/base/applications/cmdutils/more/lang/el-GR.rc
@@ -2,29 +2,45 @@ LANGUAGE LANG_GREEK, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_USAGE "Εμφανίζει τα δεδομένα σελίδα-παρά-σελίδα στην οθόνη.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Εμφανίζει τα δεδομένα σελίδα-παρά-σελίδα στην οθόνη.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Συνέχεια --"
IDS_CONTINUE_PROGRESS "-- Συνέχεια (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/en-US.rc b/base/applications/cmdutils/more/lang/en-US.rc
index d6498d48806..5f182d8e173 100644
--- a/base/applications/cmdutils/more/lang/en-US.rc
+++ b/base/applications/cmdutils/more/lang/en-US.rc
@@ -2,29 +2,45 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
STRINGTABLE
BEGIN
- IDS_USAGE "Displays data page-by-page on the screen.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Displays data page by page on the screen.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Continue --"
IDS_CONTINUE_PROGRESS "-- Continue (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/es-ES.rc b/base/applications/cmdutils/more/lang/es-ES.rc
index 94e84369b00..d0191aa2557 100644
--- a/base/applications/cmdutils/more/lang/es-ES.rc
+++ b/base/applications/cmdutils/more/lang/es-ES.rc
@@ -2,29 +2,45 @@ LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_USAGE "Muestra datos página por página en la pantalla.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Muestra datos página por página en la pantalla.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Continuar --"
IDS_CONTINUE_PROGRESS "-- Continuar (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/et-EE.rc b/base/applications/cmdutils/more/lang/et-EE.rc
index 123eaae2922..4ff3b31a452 100644
--- a/base/applications/cmdutils/more/lang/et-EE.rc
+++ b/base/applications/cmdutils/more/lang/et-EE.rc
@@ -2,29 +2,45 @@ LANGUAGE LANG_ESTONIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_USAGE "Kuvab andmeid lehekülje kaupa ekraanil.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Kuvab andmeid lehekülje kaupa ekraanil.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Jätka --"
IDS_CONTINUE_PROGRESS "-- Jätka (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/fr-FR.rc b/base/applications/cmdutils/more/lang/fr-FR.rc
index 28899eac3ce..dd774f048eb 100644
--- a/base/applications/cmdutils/more/lang/fr-FR.rc
+++ b/base/applications/cmdutils/more/lang/fr-FR.rc
@@ -2,29 +2,47 @@ LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_USAGE "Affiche les données page par page à l'écran.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
-Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ IDS_USAGE "Affiche des données page par page à l'écran.\n\
+\n\
+MORE [/E [options]] < [lect:][chemin]fichier\n\
+commande | MORE [/E [options]]\n\
+\n\
+ [lect:][chemin]fichier Un fichier dont le contenu sera affiché.\n\
+ commande Une commande dont la sortie sera affichée.\n\
+\n\
+Lorsque les Fonctions Étendues sont activées, la forme suivante est reconnue :\n\
+MORE [/E] [options] [fichiers]\n\
+\n\
+Options :\n\
+ /E Active les Fonctions Étendues.\n\
+ L'état par défaut des Fonctions Étendues est contrôlé par les paramètres\n\
+ de registre par défaut pour CMD.EXE. Pour plus de détails sur comment\n\
+ changer ces paramètres, consultez la section ""Extensions de Commandes""\n\
+ dans l'aide de CMD.EXE.\n\
+\n\
+ Lorsque les Fonctions Étendues sont activées, les options suivantes sont\n\
+ disponibles :\n\
+ /C Efface l'écran avant d'afficher une page.\n\
+ /P Développe les caractères de saut de page.\n\
+ /S Groupe toutes lignes vides consécutives en une seule ligne.\n\
+ /Tn Développe les tabulations en n espaces (défaut : 8).\n\
+\n\
+ Ces options peuvent être présentes dans la variable d'environnement MORE.\n\
+\n\
+ +n Débute l'affichage du premier fichier à la ligne n.\n\
+ fichiers Liste de fichiers à afficher, séparés par des blancs.\n\
+\n\
+Lorsque les Fonctions Étendues sont activées, les commandes suivantes sont\n\
+disponibles à l'invite ""-- Continuer --"" :\n\
+\n\
+ P n Affiche les n lignes suivantes.\n\
+ S n Saute les n lignes suivantes.\n\
+ F Affiche le fichier suivant.\n\
+ Q Quitte.\n\
+ = Montre le numéro de ligne.\n\
+ ? Montre la ligne d'aide.\n\
+ <Espace> Affiche la page suivante.\n\
+ <Entrée> Affiche la ligne suivante.\n"
IDS_CONTINUE "-- Continuer --"
IDS_CONTINUE_PROGRESS "-- Continuer (%d %%) --"
diff --git a/base/applications/cmdutils/more/lang/it-IT.rc b/base/applications/cmdutils/more/lang/it-IT.rc
index 05f6e15a38b..32eb4497938 100644
--- a/base/applications/cmdutils/more/lang/it-IT.rc
+++ b/base/applications/cmdutils/more/lang/it-IT.rc
@@ -2,29 +2,45 @@ LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_USAGE "Visualizza dati una schermata per volta.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Visualizza dati una schermata per volta.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Continua --"
IDS_CONTINUE_PROGRESS "-- Continua (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/lt-LT.rc b/base/applications/cmdutils/more/lang/lt-LT.rc
index 76ff2a42bb1..e7b3013a754 100644
--- a/base/applications/cmdutils/more/lang/lt-LT.rc
+++ b/base/applications/cmdutils/more/lang/lt-LT.rc
@@ -11,29 +11,45 @@ LANGUAGE LANG_LITHUANIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_USAGE "Atvaizduoja duomenis puslapiais.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Atvaizduoja duomenis puslapiais.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Toliau --"
IDS_CONTINUE_PROGRESS "-- Toliau (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/no-NO.rc b/base/applications/cmdutils/more/lang/no-NO.rc
index 7260d258f7e..6274bd17536 100644
--- a/base/applications/cmdutils/more/lang/no-NO.rc
+++ b/base/applications/cmdutils/more/lang/no-NO.rc
@@ -2,29 +2,45 @@ LANGUAGE LANG_NORWEGIAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_USAGE "Vis data side-etter-side på skjermen.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Vis data side-etter-side på skjermen.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Fortsett --"
IDS_CONTINUE_PROGRESS "-- Fortsett (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/pl-PL.rc b/base/applications/cmdutils/more/lang/pl-PL.rc
index b8ba373f398..9b564b1578c 100644
--- a/base/applications/cmdutils/more/lang/pl-PL.rc
+++ b/base/applications/cmdutils/more/lang/pl-PL.rc
@@ -10,29 +10,45 @@ LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_USAGE "Wyświetla dane, podzielone na odcinki o długości ekranu.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Wyświetla dane, podzielone na odcinki o długości ekranu.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Kontynuuj --"
IDS_CONTINUE_PROGRESS "-- Kontynuuj (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/ro-RO.rc b/base/applications/cmdutils/more/lang/ro-RO.rc
index 8d5c990c484..41f25717910 100644
--- a/base/applications/cmdutils/more/lang/ro-RO.rc
+++ b/base/applications/cmdutils/more/lang/ro-RO.rc
@@ -10,29 +10,45 @@ LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_USAGE "Afișează date pe ecran, pagină-cu-pagină.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Afișează date pe ecran, pagină-cu-pagină.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Continuă --"
IDS_CONTINUE_PROGRESS "-- Continuă (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/ru-RU.rc b/base/applications/cmdutils/more/lang/ru-RU.rc
index d251bb0cd5a..13f2aa219d2 100644
--- a/base/applications/cmdutils/more/lang/ru-RU.rc
+++ b/base/applications/cmdutils/more/lang/ru-RU.rc
@@ -10,29 +10,45 @@ LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_USAGE "Показывать данные постранично заполняя экран.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Показывать данные постранично заполняя экран.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Продолжить --"
IDS_CONTINUE_PROGRESS "-- Продолжить (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/sk-SK.rc b/base/applications/cmdutils/more/lang/sk-SK.rc
index db3f798c03f..d9c83207ab8 100644
--- a/base/applications/cmdutils/more/lang/sk-SK.rc
+++ b/base/applications/cmdutils/more/lang/sk-SK.rc
@@ -6,29 +6,45 @@ LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_USAGE "Zobrazuje údaje, stránku za stránkou, na obrazovke.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Zobrazuje údaje, stránku za stránkou, na obrazovke.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Pokračujte --"
IDS_CONTINUE_PROGRESS "-- Pokračujte (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/sq-AL.rc b/base/applications/cmdutils/more/lang/sq-AL.rc
index 6cf4a8bbef8..29b508426bd 100644
--- a/base/applications/cmdutils/more/lang/sq-AL.rc
+++ b/base/applications/cmdutils/more/lang/sq-AL.rc
@@ -6,29 +6,45 @@ LANGUAGE LANG_ALBANIAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_USAGE "Shfaq të dhëna faqe-per-faqe ne ekran.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Shfaq të dhëna faqe-per-faqe ne ekran.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Vazhdo --"
IDS_CONTINUE_PROGRESS "-- Vazhdo (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/sv-SE.rc b/base/applications/cmdutils/more/lang/sv-SE.rc
index ea513e2a66a..5a4e250d8dd 100644
--- a/base/applications/cmdutils/more/lang/sv-SE.rc
+++ b/base/applications/cmdutils/more/lang/sv-SE.rc
@@ -9,29 +9,45 @@ LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_USAGE "Visa data sida-efter-sida på skärmen.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Visa data sida-efter-sida på skärmen.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Fortsätt --"
IDS_CONTINUE_PROGRESS "-- Fortsätt (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/tr-TR.rc b/base/applications/cmdutils/more/lang/tr-TR.rc
index a8cb35ef39d..e0599d0ce26 100644
--- a/base/applications/cmdutils/more/lang/tr-TR.rc
+++ b/base/applications/cmdutils/more/lang/tr-TR.rc
@@ -4,29 +4,45 @@ LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_USAGE "Görüntülükte veriyi sayfa sayfa görüntüler.\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Görüntülükte veriyi sayfa sayfa görüntüler.\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Sürdür --"
IDS_CONTINUE_PROGRESS "-- Sürdür (%%%d) --"
diff --git a/base/applications/cmdutils/more/lang/uk-UA.rc b/base/applications/cmdutils/more/lang/uk-UA.rc
index cdb59048ddc..c5c131419c4 100644
--- a/base/applications/cmdutils/more/lang/uk-UA.rc
+++ b/base/applications/cmdutils/more/lang/uk-UA.rc
@@ -9,29 +9,45 @@ LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_USAGE "Виводить iнфрмацію поекранно. Використання:\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "Виводить iнфрмацію поекранно. Використання:\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- Далi --"
IDS_CONTINUE_PROGRESS "-- Далi (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/zh-CN.rc b/base/applications/cmdutils/more/lang/zh-CN.rc
index da92aa57b2b..007bb73397b 100644
--- a/base/applications/cmdutils/more/lang/zh-CN.rc
+++ b/base/applications/cmdutils/more/lang/zh-CN.rc
@@ -4,29 +4,45 @@ LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
STRINGTABLE
BEGIN
- IDS_USAGE "在屏幕上一页一页地显示内容。\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "在屏幕上一页一页地显示内容。\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- 继续 --"
IDS_CONTINUE_PROGRESS "-- 继续 (%d%%) --"
diff --git a/base/applications/cmdutils/more/lang/zh-TW.rc b/base/applications/cmdutils/more/lang/zh-TW.rc
index 9e26993fbfc..d246582949d 100644
--- a/base/applications/cmdutils/more/lang/zh-TW.rc
+++ b/base/applications/cmdutils/more/lang/zh-TW.rc
@@ -4,29 +4,45 @@ LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL
STRINGTABLE
BEGIN
- IDS_USAGE "在螢幕上一頁一頁地顯示內容。\n\n\
- MORE [options] < [Drive:][Path]Filename\n\
- Command | MORE [options]\n\
- MORE [options] [Drive:][Path]Filename\n\n\
+ IDS_USAGE "在螢幕上一頁一頁地顯示內容。\n\
+\n\
+MORE [/E [options]] < [drive:][path]filename\n\
+command | MORE [/E [options]]\n\
+\n\
+ [drive:][path]filename A file whose contents are to be displayed.\n\
+ command A command whose output is to be displayed.\n\
+\n\
+When Extended Features are enabled, the following form is supported:\n\
+MORE [/E] [options] [files]\n\
+\n\
Options:\n\
- /E Enable extended features.\n\
- /C Clear screen before displaying page.\n\
- /P Expand form-feed characters.\n\
- /S Shrink multiple blank lines to a single line.\n\
- /Tn Expand tabs to n spaces (default: 8).\n\
- +n Start displaying the first file at line n.\n\n\
- [Drive:][Path]Filename A file, whose content shall be displayed.\n\
- Command A command, whose output shall be displayed.\n\n\
-If extended features are enabled, the following commands are available\n\
-at ""-- Continue --"" prompt:\n\
- P n Display n lines.\n\
- S n Skip n lines.\n\
- F Display next file.\n\
- Q Quit.\n\
- ? Show help line.\n\
- = Show line number.\n\
- <Space> Display next page.\n\
- <Enter> Display next line.\n"
+ /E Enable Extended Features.\n\
+ The default state of the Extended Features is controlled by the default\n\
+ registry settings for CMD.EXE. For more details on how to change these\n\
+ settings, see the section ""Command Extensions"" in CMD.EXE help.\n\
+\n\
+ When Extended Features are enabled, the following options are available:\n\
+ /C Clear the screen before displaying a page.\n\
+ /P Expand Form-Feed characters.\n\
+ /S Shrink successive blank lines to a single line.\n\
+ /Tn Expand tabs to n spaces (default: 8).\n\
+\n\
+ These options can be specified in the MORE environment variable.\n\
+\n\
+ +n Start displaying the first file at line n.\n\
+ files List of files to display, separated by blanks.\n\
+\n\
+When Extended Features are enabled, the following commands are available\n\
+at the ""-- Continue --"" prompt:\n\
+\n\
+ P n Display the next n lines.\n\
+ S n Skip the next n lines.\n\
+ F Display the next file.\n\
+ Q Quit.\n\
+ = Show the line number.\n\
+ ? Show the help line.\n\
+ <Space> Display the next page.\n\
+ <Enter> Display the next line.\n"
IDS_CONTINUE "-- 繼續 --"
IDS_CONTINUE_PROGRESS "-- 繼續 (%d%%) --"