History log of /reactos/base/applications/taskmgr/lang/et-EE.rc (Results 1 – 13 of 13)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 978503cd 01-Nov-2024 Joachim Henze <joachim.henze@reactos.org>

[TASKMGR] *.rc: Tweak all AUTOCHECKBOXes (#7409)

- no functional change intended
- shrinks the rc files sizes and shrinks the binary size of taskmgr:
RosBEWin2.2.2 GCC8.4.0dbg taskmgr.exe from 696

[TASKMGR] *.rc: Tweak all AUTOCHECKBOXes (#7409)

- no functional change intended
- shrinks the rc files sizes and shrinks the binary size of taskmgr:
RosBEWin2.2.2 GCC8.4.0dbg taskmgr.exe from 696.320 -> 678.912 bytes ==> 17.408 bytes saved in the binary
- does also slightly beautify those lines when displaying them in the reshacker

JIRA issue: none

show more ...


Revision tags: 0.4.16-dev, 0.4.15
# 628d4a92 27-Nov-2023 Joachim Henze <joachim.henze@reactos.org>

[TASKMGR] Fix text cutoff statusbar2 CPU%, improve statusbar3 Mem (#5978)


ReactOS taskmgr writes a bit more *useful* dynamically
generated strings in the status-bar field 3 with the memory
than

[TASKMGR] Fix text cutoff statusbar2 CPU%, improve statusbar3 Mem (#5978)


ReactOS taskmgr writes a bit more *useful* dynamically
generated strings in the status-bar field 3 with the memory
than MS Windows XP taskmgr does for example.
Available space in the statusbar is very limited,
therefore we use the following trick to get as much as possible of that helpful text visible
for the majority of the translations:
- We do shrink the CPU% column a bit in width and static text lengths, as it is the one which
has very little variety in length of its dynamic part: 0% to 100%

This improves the display for all languages, and for some languages it also fixes
text-cutoff that we even had with the wider width in the CPU% column already.

also fix an accelerator collision in nl-NL.rc

show more ...


# b693eddd 14-Nov-2023 Joachim Henze <joachim.henze@reactos.org>

[TASKMGR] Harmonize and beautify the borders in performance tab (#5949)


- When I started I actually just wanted to make the 2 red lines the same length. see PR-pic
- Ultimately I was able to harm

[TASKMGR] Harmonize and beautify the borders in performance tab (#5949)


- When I started I actually just wanted to make the 2 red lines the same length. see PR-pic
- Ultimately I was able to harmonize all ctrls sizes and position for all rc's.
- This does also fix text truncation and overflows in several rc's.
- Also this prevents the numbers (actual data) in some rc's to be cut off much earlier than in others,
e.g. hu-HU.rc had IDC_KERNEL_MEMORY_PAGED width just 33 which is very small and will lead to quick truncation.
Now all languages use width 45 for all data fields and width 57 for all text fields,
which means if truncation would ever happen with very large numbers in the 64bit era,
we will see that happen in all rc's at the same moment and not arbitrarily scattered over a century.
It will happen later after this PR is applied.
- After this PR the two red lines do have the same length. see PR-pic
- After this PR the two green lines do have the same length. see PR-pic
- After this PR the two yellow lines do have the same length. see PR-pic
- After this PR the four brown lines do have the same length. see PR-pic
- After this PR the five cyan lines do have the same length. see PR-pic

show more ...


# 63eaf2bd 19-Oct-2023 Joachim Henze <joachim.henze@reactos.org>

[TASKMGR] *.rc Deduplicate dynamic menu strings (#5772)


Some of the Menu-controls are just dummies in the RC,
because those controls are dynamically replaced at runtime
based on which tab/propsh

[TASKMGR] *.rc Deduplicate dynamic menu strings (#5772)


Some of the Menu-controls are just dummies in the RC,
because those controls are dynamically replaced at runtime
based on which tab/propsheet is active in taskmgr.
They are replaced by the IDS_MENU_* strings then.

Deduplicating them has many advantages:
1.) It shrinks binary size:
master taskmgr.exe RosBEWin2.2.2 GCC8.4.0dbg 708.608 -> 696.832 bytes
2.) Translators don't get lured into translating dead stuff,
assuming they translated the menu properly, while in fact they did not.
This is *real*. Happened even to me multiple times already, although
I am actually aware of the design.
3.) Some of them were offsync already between the dummy and the real thing.
4.) It reduces diff between en-US and other rc's.


* Aside of that improve alignment in some languages rcs in the "Shutdown"-menu-section,
* and improve a translation in de-DE, sq-AL, and zh-CN.
* [TASKMGR] id-ID.rc 2 accelerators in the same string is definitely wrong
* [TASKMGR] *.rc, make sure that warning is in all 30 langs, especially in en-US.rc
* [TASKMGR] for several translations add FIXME-comments regarding accelerator collisions

show more ...


# 42c93e3c 07-Oct-2023 Joachim Henze <joachim.henze@reactos.org>

[TASKMGR] *.rc: Fix accelerator collisions &Priority <-> &Properties (#5758)


We had collisions in many languages.
For most languages (which are derived from en-US) we should use
&Priority
P&rop

[TASKMGR] *.rc: Fix accelerator collisions &Priority <-> &Properties (#5758)


We had collisions in many languages.
For most languages (which are derived from en-US) we should use
&Priority
P&roperties

We introduced the collisions during 0.4.15-dev'ing when
MENUITEM ID_PROCESS_PAGE_PROPERTIES
and
MENUITEM ID_PROCESS_PAGE_OPENFILELOCATION
were added.


We verified Win7-en and Win2k3-en to behave as proposed in this PR (R for properties, P for priority).
But *french* Windows (I believe Hermes picture was from WinVista-fr or Win7-fr or Win10-fr maybe) does it differently.

the existing de-DE also has been double-checked to exactly match MS with the accelerators in that menu.

show more ...


# 46b4b558 03-Oct-2023 Joachim Henze <joachim.henze@reactos.org>

[TASKMGR] Favor _countof(), no functional change intended (#5757)


Taskmgr used a mixture: Sometimes _countof(), sometimes ARRAYSIZE()
and sometimes it calculated the count plain by sizeof(var)/si

[TASKMGR] Favor _countof(), no functional change intended (#5757)


Taskmgr used a mixture: Sometimes _countof(), sometimes ARRAYSIZE()
and sometimes it calculated the count plain by sizeof(var)/sizeof(TYPE).
Harmonize everywhere to _countof() as it is the shortest solution.

Fix some formatting sins, like placing comments before else-statement.
Shorten the length of some very long line
intentionally *without introducing additional linebreaks* !

Shorten vertical length of some functions to increase their chance to
fit on the screen without scrolling.

Fix wrong indentation level in TaskManagerWndProc().

*.rc: Remove superfluous and redundant comment in all langs

No functional change intended.

show more ...


# 65ce2089 03-Oct-2023 Joachim Henze <Joachim.Henze@reactos.org>

[TASKMGR] *.rc Strip unused IDD_DEBUG_CHANNELS_DIALOG

This is an addendum to 0.4.15-dev-413-g ed7196d9645f66b49db434c509c2b7e18817dcca

binary size shrinks slightly although that dlg was unused:
tas

[TASKMGR] *.rc Strip unused IDD_DEBUG_CHANNELS_DIALOG

This is an addendum to 0.4.15-dev-413-g ed7196d9645f66b49db434c509c2b7e18817dcca

binary size shrinks slightly although that dlg was unused:
taskmgr.exe RosBEWin2.2.2 GCC8.4.0dbg 715.264 -> 708.608

show more ...


# 99271634 04-Jun-2022 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>

[TASKMGR] Reorder page controls to have natural TAB-ordering.


# 56e93b88 17-May-2023 Thamatip Chitpong <tangaming123456@outlook.com>

[TASKMGR] Add status bar description for "Properties" and "Open File Location" menu items (#5280)

Also fix access key collision for en-US/el-GR.


# 46ea5171 12-Sep-2022 Joachim Henze <33393466+JoachimHenze@users.noreply.github.com>

[TASKMGR] Pixel-perfection for left border (#4680)

CORE-18061

This makes the left border 2 pixels smaller in
IDD_APPLICATION_PAGE and IDD_PROCESS_PAGE.

The goal is:
- matching XPSP3 taskmgr

[TASKMGR] Pixel-perfection for left border (#4680)

CORE-18061

This makes the left border 2 pixels smaller in
IDD_APPLICATION_PAGE and IDD_PROCESS_PAGE.

The goal is:
- matching XPSP3 taskmgr to 100% on left border.
- leaving more room for the content of the 2 SysListView32.
- better aligning left border of IDD_APPLICATION_PAGE
and IDD_PROCESS_PAGE to IDD_PERFORMANCE_PAGE
upon tab-switching.

In addition: Update german (de-DE) translation:
Make wording of IDS_MSG_TRAYICONCPUUSAGE (used in tooltip)
match the wording used in IDS_STATUS_CPUUSAGE (used in status bar).

show more ...


# 59dcec1f 11-Apr-2022 Thamatip Chitpong <weedgamer131@gmail.com>

[TASKMGR] Processes page: Add "Properties" and "Open File Location" context menu items (#4323)

Signed-off-by: Thamatip Chitpong <tangaming123456@outlook.com>
Reviewed-by: Katayama Hirofumi MZ <kata

[TASKMGR] Processes page: Add "Properties" and "Open File Location" context menu items (#4323)

Signed-off-by: Thamatip Chitpong <tangaming123456@outlook.com>
Reviewed-by: Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
Reviewed-by: Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Reviewed-by: Joachim Henze <joachim.henze@reactos.org>
Reviewed-by: Mark Jansen <mark.jansen@reactos.org>

show more ...


Revision tags: 0.4.14-release
# ed7196d9 10-Jun-2020 Serge Gautherie <reactos-git_serge_171003@gautherie.fr>

[TASKMGR] Remove 'Debug Channels' feature, which is Wine-specific


Revision tags: 0.4.15-dev, 0.4.14-RC, 0.4.13-release, 0.4.14-dev, 0.4.13-RC, 0.4.12-release, 0.4.12-RC, 0.4.13-dev, 0.4.11-release, 0.4.11-RC, 0.4.12-dev, 0.4.10-release
# 331bcae7 24-Oct-2018 Joann Mõndresku <joann.mondresku@gmail.com>

[TASKMGR][TRANSLATION] Estonian localization