https://git.reactos.org/?p=reactos.git;a=commitdiff;h=1cbcc4ac5cf94f853aeb5…
commit 1cbcc4ac5cf94f853aeb5e33ee8589c824a6e2e5
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Wed May 17 13:56:12 2023 +0200
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Wed May 17 16:17:38 2023 +0200
[KERNEL32] Minor comments improvements in CreateProcessInternalW.
---
dll/win32/kernel32/client/proc.c | 20 +++++++++-----------
1 file changed, 9 insertions(+), 11 deletions(-)
diff --git a/dll/win32/kernel32/client/proc.c b/dll/win32/kernel32/client/proc.c
index 22f29ca4bba..6a9fc1087ab 100644
--- a/dll/win32/kernel32/client/proc.c
+++ b/dll/win32/kernel32/client/proc.c
@@ -2222,8 +2222,8 @@ ProcessIdToSessionId(IN DWORD dwProcessId,
}
-#define AddToHandle(x,y) (x) = (HANDLE)((ULONG_PTR)(x) | (y));
-#define RemoveFromHandle(x,y) (x) = (HANDLE)((ULONG_PTR)(x) & ~(y));
+#define AddToHandle(x,y) ((x) = (HANDLE)((ULONG_PTR)(x) | (y)))
+#define RemoveFromHandle(x,y) ((x) = (HANDLE)((ULONG_PTR)(x) & ~(y)))
C_ASSERT(PROCESS_PRIORITY_CLASS_REALTIME == (PROCESS_PRIORITY_CLASS_HIGH + 1));
/*
@@ -4279,13 +4279,12 @@ StartScan:
}
}
- /* For all apps, if this flag is on, the hourglass mouse cursor is shown */
+ /* For all apps, if this flag is on, the hourglass mouse cursor is shown.
+ * Likewise, the opposite holds as well, and no-feedback has precedence. */
if (StartupInfo.dwFlags & STARTF_FORCEONFEEDBACK)
{
AddToHandle(CreateProcessMsg->ProcessHandle, 1);
}
-
- /* Likewise, the opposite holds as well */
if (StartupInfo.dwFlags & STARTF_FORCEOFFFEEDBACK)
{
RemoveFromHandle(CreateProcessMsg->ProcessHandle, 1);
@@ -4297,8 +4296,8 @@ StartScan:
/* And if it really is a VDM app... */
if (VdmBinaryType)
{
- /* Store the task ID and VDM console handle */
- CreateProcessMsg->hVDM = VdmTask ? 0 : Peb->ProcessParameters->ConsoleHandle;
+ /* Store the VDM console handle (none if inherited or WOW app) and the task ID */
+ CreateProcessMsg->hVDM = VdmTask ? NULL : Peb->ProcessParameters->ConsoleHandle;
CreateProcessMsg->VdmTask = VdmTask;
}
else if (VdmReserve)
@@ -4410,10 +4409,9 @@ VdmShortCircuit:
}
else
{
- /* OR-in the special flag to indicate this is not a separate VDM */
+ /* OR-in the special flag to indicate this is not a separate VDM,
+ * and return the handle to the caller */
AddToHandle(VdmWaitObject, 1);
-
- /* Return handle to the caller */
lpProcessInformation->hProcess = VdmWaitObject;
}
@@ -4524,7 +4522,7 @@ Quickie:
if (ThreadHandle)
{
/* So kill the process and close the thread handle */
- NtTerminateProcess(ProcessHandle, 0);
+ NtTerminateProcess(ProcessHandle, STATUS_SUCCESS);
NtClose(ThreadHandle);
}
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=56e93b882d0c576a1b649…
commit 56e93b882d0c576a1b6497a2adf8110801074f88
Author: Thamatip Chitpong <tangaming123456(a)outlook.com>
AuthorDate: Wed May 17 17:41:28 2023 +0700
Commit: GitHub <noreply(a)github.com>
CommitDate: Wed May 17 12:41:28 2023 +0200
[TASKMGR] Add status bar description for "Properties" and "Open File Location" menu items (#5280)
Also fix access key collision for en-US/el-GR.
---
base/applications/taskmgr/lang/bg-BG.rc | 2 ++
base/applications/taskmgr/lang/cs-CZ.rc | 2 ++
base/applications/taskmgr/lang/da-DK.rc | 2 ++
base/applications/taskmgr/lang/de-DE.rc | 2 ++
base/applications/taskmgr/lang/el-GR.rc | 4 +++-
base/applications/taskmgr/lang/en-US.rc | 4 +++-
base/applications/taskmgr/lang/es-ES.rc | 2 ++
base/applications/taskmgr/lang/et-EE.rc | 2 ++
base/applications/taskmgr/lang/fr-FR.rc | 2 ++
base/applications/taskmgr/lang/he-IL.rc | 2 ++
base/applications/taskmgr/lang/hu-HU.rc | 2 ++
base/applications/taskmgr/lang/id-ID.rc | 2 ++
base/applications/taskmgr/lang/it-IT.rc | 2 ++
base/applications/taskmgr/lang/ja-JP.rc | 2 ++
base/applications/taskmgr/lang/ko-KR.rc | 2 ++
base/applications/taskmgr/lang/nl-NL.rc | 2 ++
base/applications/taskmgr/lang/no-NO.rc | 2 ++
base/applications/taskmgr/lang/pl-PL.rc | 2 ++
base/applications/taskmgr/lang/pt-BR.rc | 2 ++
base/applications/taskmgr/lang/pt-PT.rc | 2 ++
base/applications/taskmgr/lang/ro-RO.rc | 2 ++
base/applications/taskmgr/lang/ru-RU.rc | 2 ++
base/applications/taskmgr/lang/sk-SK.rc | 2 ++
base/applications/taskmgr/lang/sq-AL.rc | 2 ++
base/applications/taskmgr/lang/sv-SE.rc | 2 ++
base/applications/taskmgr/lang/tr-TR.rc | 2 ++
base/applications/taskmgr/lang/uk-UA.rc | 2 ++
base/applications/taskmgr/lang/zh-CN.rc | 2 ++
base/applications/taskmgr/lang/zh-HK.rc | 2 ++
base/applications/taskmgr/lang/zh-TW.rc | 2 ++
30 files changed, 62 insertions(+), 2 deletions(-)
diff --git a/base/applications/taskmgr/lang/bg-BG.rc b/base/applications/taskmgr/lang/bg-BG.rc
index 21769152a3e..f59e380b5c0 100644
--- a/base/applications/taskmgr/lang/bg-BG.rc
+++ b/base/applications/taskmgr/lang/bg-BG.rc
@@ -379,6 +379,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Дава на действието ОБИКНОВЕНО първенство"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Дава на действието ПОНИЖЕНО първенство"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Дава на действието НИСКО първенство"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/cs-CZ.rc b/base/applications/taskmgr/lang/cs-CZ.rc
index 2d308767205..5a98f7782c0 100644
--- a/base/applications/taskmgr/lang/cs-CZ.rc
+++ b/base/applications/taskmgr/lang/cs-CZ.rc
@@ -379,6 +379,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Přiřadí procesu normální prioritu"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Přiřadí procesu podprůměrnou prioritu"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Přiřadí procesu nízkou prioritu"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/da-DK.rc b/base/applications/taskmgr/lang/da-DK.rc
index fb98f06e6a3..8c5f42f8df6 100644
--- a/base/applications/taskmgr/lang/da-DK.rc
+++ b/base/applications/taskmgr/lang/da-DK.rc
@@ -379,6 +379,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Sæt proces til Normal Priotet Klasse"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Sæt proces til Under Normal Priotet Klasse"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Sæt proces til Lav Priotet Klasse"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/de-DE.rc b/base/applications/taskmgr/lang/de-DE.rc
index 2e7bb38b5e8..365544b3df4 100644
--- a/base/applications/taskmgr/lang/de-DE.rc
+++ b/base/applications/taskmgr/lang/de-DE.rc
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Legt die Priorität auf NORMAL fest."
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Legt die Priorität auf NIEDRIGER ALS NORMAL fest."
ID_PROCESS_PAGE_SETPRIORITY_LOW "Legt die Priorität auf NIEDRIG fest."
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/el-GR.rc b/base/applications/taskmgr/lang/el-GR.rc
index 71bc45c53df..7f5c18169e8 100644
--- a/base/applications/taskmgr/lang/el-GR.rc
+++ b/base/applications/taskmgr/lang/el-GR.rc
@@ -127,7 +127,7 @@ BEGIN
MENUITEM "End Process &Tree", ID_PROCESS_PAGE_ENDPROCESSTREE
MENUITEM "&Debug", ID_PROCESS_PAGE_DEBUG
MENUITEM SEPARATOR
- POPUP "Set &Priority"
+ POPUP "Set P&riority"
BEGIN
MENUITEM "&Realtime", ID_PROCESS_PAGE_SETPRIORITY_REALTIME
MENUITEM "&High", ID_PROCESS_PAGE_SETPRIORITY_HIGH
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Sets process to the NORMAL priority class"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Sets process to the BELOW NORMAL priority class"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Sets process to the LOW priority class"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/en-US.rc b/base/applications/taskmgr/lang/en-US.rc
index d82f341ec09..e05a4580a8b 100644
--- a/base/applications/taskmgr/lang/en-US.rc
+++ b/base/applications/taskmgr/lang/en-US.rc
@@ -125,7 +125,7 @@ BEGIN
MENUITEM "End Process &Tree", ID_PROCESS_PAGE_ENDPROCESSTREE
MENUITEM "&Debug", ID_PROCESS_PAGE_DEBUG
MENUITEM SEPARATOR
- POPUP "Set &Priority"
+ POPUP "Set P&riority"
BEGIN
MENUITEM "&Realtime", ID_PROCESS_PAGE_SETPRIORITY_REALTIME
MENUITEM "&High", ID_PROCESS_PAGE_SETPRIORITY_HIGH
@@ -377,6 +377,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Sets process to the NORMAL priority class"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Sets process to the BELOW NORMAL priority class"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Sets process to the LOW priority class"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/es-ES.rc b/base/applications/taskmgr/lang/es-ES.rc
index bf23377607a..10db2eba609 100644
--- a/base/applications/taskmgr/lang/es-ES.rc
+++ b/base/applications/taskmgr/lang/es-ES.rc
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Establece el proceso en prioridad NORMAL"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Establece el proceso en prioridad ABAJO DE LO NORMAL"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Establece el proceso en prioridad BAJA"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/et-EE.rc b/base/applications/taskmgr/lang/et-EE.rc
index 58227163024..a3e698d294a 100644
--- a/base/applications/taskmgr/lang/et-EE.rc
+++ b/base/applications/taskmgr/lang/et-EE.rc
@@ -384,6 +384,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Sätib protsessi keskmisele prioriteedile"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "SSätib protsessi alla keskmise prioriteedile"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Sätib protsessi madalals prioriteedile"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/fr-FR.rc b/base/applications/taskmgr/lang/fr-FR.rc
index 232dcc5432b..1e599893fbd 100644
--- a/base/applications/taskmgr/lang/fr-FR.rc
+++ b/base/applications/taskmgr/lang/fr-FR.rc
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Place le processus dans la priorité NORMALE"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Place le processus dans la priorité INFÉRIRIEURE À LA NORMALE"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Place le processus dans la priorité BASSE"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/he-IL.rc b/base/applications/taskmgr/lang/he-IL.rc
index 5d6aeb681be..12b3cdac78b 100644
--- a/base/applications/taskmgr/lang/he-IL.rc
+++ b/base/applications/taskmgr/lang/he-IL.rc
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Sets process to the NORMAL priority class"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Sets process to the BELOW NORMAL priority class"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Sets process to the LOW priority class"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/hu-HU.rc b/base/applications/taskmgr/lang/hu-HU.rc
index 5d83099f012..57915b3d3be 100644
--- a/base/applications/taskmgr/lang/hu-HU.rc
+++ b/base/applications/taskmgr/lang/hu-HU.rc
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Normál prioritásra állítja a folyamatot"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Normál alatti prioritásra állítja a folyamatot"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Alacsony prioritásra állítja a folyamatot"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/id-ID.rc b/base/applications/taskmgr/lang/id-ID.rc
index 1387c83d940..d9d4ec45847 100644
--- a/base/applications/taskmgr/lang/id-ID.rc
+++ b/base/applications/taskmgr/lang/id-ID.rc
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Menyetel proses ke kelas prioritas NORMAL"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Menyetel proses ke kelas prioritas DI BAWAH NORMAL"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Menyetel proses ke kelas prioritas RENDAH"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/it-IT.rc b/base/applications/taskmgr/lang/it-IT.rc
index db9b4270173..e23bf0e4e39 100644
--- a/base/applications/taskmgr/lang/it-IT.rc
+++ b/base/applications/taskmgr/lang/it-IT.rc
@@ -379,6 +379,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Assegna al processo la classe di priorità NORMAL"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Assegna al processo la classe di priorità BELOW NORMAL"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Assegna al processo la classe di priorità LOW"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/ja-JP.rc b/base/applications/taskmgr/lang/ja-JP.rc
index 955c7395db6..081e4e07d5f 100644
--- a/base/applications/taskmgr/lang/ja-JP.rc
+++ b/base/applications/taskmgr/lang/ja-JP.rc
@@ -379,6 +379,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "プロセスを通常優先度クラスに設定します"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "プロセスを通常以下の優先度クラスに設定します"
ID_PROCESS_PAGE_SETPRIORITY_LOW "プロセスを低優先度クラスに設定します"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/ko-KR.rc b/base/applications/taskmgr/lang/ko-KR.rc
index 8126980baa4..2f949c9fd6e 100644
--- a/base/applications/taskmgr/lang/ko-KR.rc
+++ b/base/applications/taskmgr/lang/ko-KR.rc
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "프로세스 우선 순위를 보통으로 설정합니다"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "프로세스 우선 순위를 보통 미만으로 설정합니다"
ID_PROCESS_PAGE_SETPRIORITY_LOW "프로세스 우선 순위를 낮음으로 설정합니다"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/nl-NL.rc b/base/applications/taskmgr/lang/nl-NL.rc
index 26b7b584183..163e534191e 100644
--- a/base/applications/taskmgr/lang/nl-NL.rc
+++ b/base/applications/taskmgr/lang/nl-NL.rc
@@ -379,6 +379,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Het proces wordt ingesteld met de prioriteitsklasse NORMAAL"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Proces instellen op prioriteitsklasse LAGER DAN NORMAAL"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Het proces wordt ingesteld met de prioriteitsklasse LAAG"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/no-NO.rc b/base/applications/taskmgr/lang/no-NO.rc
index 4c542911408..6dbc5dfb5d6 100644
--- a/base/applications/taskmgr/lang/no-NO.rc
+++ b/base/applications/taskmgr/lang/no-NO.rc
@@ -379,6 +379,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Sett prosess til NORMAL prioritet klasse"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Sett prosess til NEDENFOR NORMAL prioritet klasse"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Sett prosess til LAV prioritet klasse"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/pl-PL.rc b/base/applications/taskmgr/lang/pl-PL.rc
index dd883054ff5..6f120d77a51 100644
--- a/base/applications/taskmgr/lang/pl-PL.rc
+++ b/base/applications/taskmgr/lang/pl-PL.rc
@@ -387,6 +387,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Ustawia procesowi priorytet normalny"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Ustawia procesowi priorytet poniżej normalnego"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Ustawia procesowi priorytet niski"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/pt-BR.rc b/base/applications/taskmgr/lang/pt-BR.rc
index 4457dd7c0ab..6a6b15667aa 100644
--- a/base/applications/taskmgr/lang/pt-BR.rc
+++ b/base/applications/taskmgr/lang/pt-BR.rc
@@ -379,6 +379,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Define o processo como tendo classe de prioridade NORMAL"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Define o processo com a classe de prioridade ABAIXO DO NORMAL"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Define o processo como tendo classe de prioridade BAIXA"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/pt-PT.rc b/base/applications/taskmgr/lang/pt-PT.rc
index 635ee17ddbe..4457e784dd2 100644
--- a/base/applications/taskmgr/lang/pt-PT.rc
+++ b/base/applications/taskmgr/lang/pt-PT.rc
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Define o processo como tendo classe de prioridade NORMAL"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Define o processo com a classe de prioridade ABAIXO DO NORMAL"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Define o processo como tendo classe de prioridade BAIXA"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/ro-RO.rc b/base/applications/taskmgr/lang/ro-RO.rc
index 1170b13ae94..85e91a68f48 100644
--- a/base/applications/taskmgr/lang/ro-RO.rc
+++ b/base/applications/taskmgr/lang/ro-RO.rc
@@ -385,6 +385,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Desemnează prioritate ordinară."
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Desemnează regim neprioritar."
ID_PROCESS_PAGE_SETPRIORITY_LOW "Desemnează prioritate minimă."
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/ru-RU.rc b/base/applications/taskmgr/lang/ru-RU.rc
index eff0e54ff3b..61d49828887 100644
--- a/base/applications/taskmgr/lang/ru-RU.rc
+++ b/base/applications/taskmgr/lang/ru-RU.rc
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Установить для процесса Средний приоритет"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Установить для процесса приоритет Ниже среднего"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Установить для процесса Низкий приоритет"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/sk-SK.rc b/base/applications/taskmgr/lang/sk-SK.rc
index 6e8044c3560..0e8caf1dad3 100644
--- a/base/applications/taskmgr/lang/sk-SK.rc
+++ b/base/applications/taskmgr/lang/sk-SK.rc
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Zaradí proces do triedy priorít NORMÁLNA."
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Zaradí proces do triedy priorít ZNÍŽENÁ."
ID_PROCESS_PAGE_SETPRIORITY_LOW "Zaradí proces do triedy priorít NÍZKA."
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/sq-AL.rc b/base/applications/taskmgr/lang/sq-AL.rc
index af1a2d67e34..78e491efa73 100644
--- a/base/applications/taskmgr/lang/sq-AL.rc
+++ b/base/applications/taskmgr/lang/sq-AL.rc
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Vendos procesin ne klasat e prioritet NORMAL"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Vendos procesin ne klasat e prioritet BELOW NORMAL"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Vendos procesin ne klasat e prioritet LOW"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/sv-SE.rc b/base/applications/taskmgr/lang/sv-SE.rc
index 510200c45b8..9f24ef57b84 100644
--- a/base/applications/taskmgr/lang/sv-SE.rc
+++ b/base/applications/taskmgr/lang/sv-SE.rc
@@ -381,6 +381,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Ändrar processens prioritet till normal"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Ändrar processens prioritet till under normal"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Ändrar processens prioritet till låg"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/tr-TR.rc b/base/applications/taskmgr/lang/tr-TR.rc
index 72cf3c41e9c..329fa026f32 100644
--- a/base/applications/taskmgr/lang/tr-TR.rc
+++ b/base/applications/taskmgr/lang/tr-TR.rc
@@ -379,6 +379,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "İşlemi NORMAL öncelik sınıfına getirir."
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "İşlemi NORMAL ALTI öncelik sınıfına getirir."
ID_PROCESS_PAGE_SETPRIORITY_LOW "İşlemi DÜŞÜK öncelik sınıfına getirir."
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/uk-UA.rc b/base/applications/taskmgr/lang/uk-UA.rc
index 0a5664b9990..04fad1c41b6 100644
--- a/base/applications/taskmgr/lang/uk-UA.rc
+++ b/base/applications/taskmgr/lang/uk-UA.rc
@@ -379,6 +379,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "Установлює клас пріоритету ""Середній"" для процесу"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "Установлює клас пріоритету ""Нижче середнього"" для процесу"
ID_PROCESS_PAGE_SETPRIORITY_LOW "Установлює клас пріоритету ""Низький"" для процесу"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/zh-CN.rc b/base/applications/taskmgr/lang/zh-CN.rc
index 5d00256f112..59b69ceaae4 100644
--- a/base/applications/taskmgr/lang/zh-CN.rc
+++ b/base/applications/taskmgr/lang/zh-CN.rc
@@ -386,6 +386,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "将进程设置为正常优先级"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "将进程设置为低于正常优先级"
ID_PROCESS_PAGE_SETPRIORITY_LOW "将进程设置为低优先级"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/zh-HK.rc b/base/applications/taskmgr/lang/zh-HK.rc
index 2c0a99f8852..95e97208e4c 100644
--- a/base/applications/taskmgr/lang/zh-HK.rc
+++ b/base/applications/taskmgr/lang/zh-HK.rc
@@ -387,6 +387,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "設定處理程序優先順序為標準"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "設定處理程序優先順序為低於標準"
ID_PROCESS_PAGE_SETPRIORITY_LOW "設定處理程序優先順序為低"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE
diff --git a/base/applications/taskmgr/lang/zh-TW.rc b/base/applications/taskmgr/lang/zh-TW.rc
index 3f8f0746b27..e9dda1201ea 100644
--- a/base/applications/taskmgr/lang/zh-TW.rc
+++ b/base/applications/taskmgr/lang/zh-TW.rc
@@ -387,6 +387,8 @@ BEGIN
ID_PROCESS_PAGE_SETPRIORITY_NORMAL "設定處理程序優先順序為中等"
ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL "設定處理程序優先順序為中等以下"
ID_PROCESS_PAGE_SETPRIORITY_LOW "設定處理程序優先順序為低"
+ ID_PROCESS_PAGE_PROPERTIES "Shows process file properties"
+ ID_PROCESS_PAGE_OPENFILELOCATION "Opens process file location"
END
STRINGTABLE