Skip to content

Commit

Permalink
Make naming more accurate
Browse files Browse the repository at this point in the history
  • Loading branch information
donho committed Sep 7, 2024
1 parent d5ec03a commit 4393f0c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions PowerEditor/installer/nativeLang/english.xml
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,8 @@ Translation note:
<Item id="11005" name="Path Z to A"/>
<Item id="11006" name="Type A to Z"/>
<Item id="11007" name="Type Z to A"/>
<Item id="11008" name="Size Smaller to Larger"/>
<Item id="11009" name="Size Larger to Smaller"/>
<Item id="11008" name="Content Length Ascending"/>
<Item id="11009" name="Content Length Descending"/>
</Commands>
</Main>
<TabBar>
Expand Down Expand Up @@ -746,14 +746,14 @@ Translation note:
<Item id="44113" name="Apply Tab Color 3"/>
<Item id="44114" name="Apply Tab Color 4"/>
<Item id="44115" name="Apply Tab Color 5"/>
<Item id="11002" name="Sort By Name A to Z"/>
<Item id="11003" name="Sort By Name Z to A"/>
<Item id="11004" name="Sort By Path A to Z"/>
<Item id="11005" name="Sort By Path Z to A"/>
<Item id="11006" name="Sort By Type A to Z"/>
<Item id="11007" name="Sort By Type Z to A"/>
<Item id="11008" name="Sort By Size Smaller to Larger"/>
<Item id="11009" name="Sort By Size Larger to Smaller"/>
<Item id="11002" name="Sort by Name A to Z"/>
<Item id="11003" name="Sort by Name Z to A"/>
<Item id="11004" name="Sort by Path A to Z"/>
<Item id="11005" name="Sort by Path Z to A"/>
<Item id="11006" name="Sort by Type A to Z"/>
<Item id="11007" name="Sort by Type Z to A"/>
<Item id="11008" name="Sort by Content Length Ascending"/>
<Item id="11009" name="Sort by Content Length Descending"/>
</MainCommandNames>
</ShortcutMapper>
<ShortcutMapperSubDialg title="Shortcut">
Expand Down
4 changes: 2 additions & 2 deletions PowerEditor/src/Notepad_plus.rc
Original file line number Diff line number Diff line change
Expand Up @@ -1289,8 +1289,8 @@ BEGIN
MENUITEM "Path Z to A", IDM_WINDOW_SORT_FP_DSC
MENUITEM "Type A to Z", IDM_WINDOW_SORT_FT_ASC
MENUITEM "Type Z to A", IDM_WINDOW_SORT_FT_DSC
MENUITEM "Size Smaller to Larger", IDM_WINDOW_SORT_FS_ASC
MENUITEM "Size Larger to Smaller", IDM_WINDOW_SORT_FS_DSC
MENUITEM "Content Length Ascending", IDM_WINDOW_SORT_FS_ASC
MENUITEM "Content Length Descending", IDM_WINDOW_SORT_FS_DSC
END
MENUITEM "&Windows...", IDM_WINDOW_WINDOWS
MENUITEM SEPARATOR
Expand Down
16 changes: 8 additions & 8 deletions PowerEditor/src/Parameters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,14 +431,14 @@ static const WinMenuKeyDefinition winKeyDefs[] =
{ VK_F5, IDM_EXECUTE, false, false, false, nullptr },

{ VK_NULL, IDM_WINDOW_WINDOWS, false, false, false, nullptr },
{ VK_NULL, IDM_WINDOW_SORT_FN_ASC, false, false, false, L"Sort By Name A to Z" },
{ VK_NULL, IDM_WINDOW_SORT_FN_DSC, false, false, false, L"Sort By Name Z to A" },
{ VK_NULL, IDM_WINDOW_SORT_FP_ASC, false, false, false, L"Sort By Path A to Z" },
{ VK_NULL, IDM_WINDOW_SORT_FP_DSC, false, false, false, L"Sort By Path Z to A" },
{ VK_NULL, IDM_WINDOW_SORT_FT_ASC, false, false, false, L"Sort By Type A to Z" },
{ VK_NULL, IDM_WINDOW_SORT_FT_DSC, false, false, false, L"Sort By Type Z to A" },
{ VK_NULL, IDM_WINDOW_SORT_FS_ASC, false, false, false, L"Sort By Size Smaller to Larger" },
{ VK_NULL, IDM_WINDOW_SORT_FS_DSC, false, false, false, L"Sort By Size Larger to Smaller" },
{ VK_NULL, IDM_WINDOW_SORT_FN_ASC, false, false, false, L"Sort by Name A to Z" },
{ VK_NULL, IDM_WINDOW_SORT_FN_DSC, false, false, false, L"Sort by Name Z to A" },
{ VK_NULL, IDM_WINDOW_SORT_FP_ASC, false, false, false, L"Sort by Path A to Z" },
{ VK_NULL, IDM_WINDOW_SORT_FP_DSC, false, false, false, L"Sort by Path Z to A" },
{ VK_NULL, IDM_WINDOW_SORT_FT_ASC, false, false, false, L"Sort by Type A to Z" },
{ VK_NULL, IDM_WINDOW_SORT_FT_DSC, false, false, false, L"Sort by Type Z to A" },
{ VK_NULL, IDM_WINDOW_SORT_FS_ASC, false, false, false, L"Sort by Content Length Ascending" },
{ VK_NULL, IDM_WINDOW_SORT_FS_DSC, false, false, false, L"Sort by Content Length Descending" },

{ VK_NULL, IDM_CMDLINEARGUMENTS, false, false, false, nullptr },
{ VK_NULL, IDM_HOMESWEETHOME, false, false, false, nullptr },
Expand Down

0 comments on commit 4393f0c

Please sign in to comment.