Skip to content

Commit

Permalink
fix - bkp - Fixed file selector message
Browse files Browse the repository at this point in the history
---

Like seriously, how did "FilesystemTools" manage to come at the end of the
message? In commit 5607a54!

  - Backportable for 0.1.1
  - backportable for 0.1.0

---

Type: fix
Breaking: False
Doc Required: False
Backport Required: True
Part: 1/1
  • Loading branch information
AptiviCEO committed Feb 6, 2025
1 parent fb1645c commit 508c442
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1647,7 +1647,7 @@
"Is selected",
"File size",
"File path",
"Selected '{0}'. Press ESC to exit and confirm FilesystemTools.",
"Selected '{0}'. Press ESC to exit and confirm your selection.",
"Can't open folder or select file",
"Enter a path or a full path to a local folder.",
"Press SPACE for more info",
Expand Down
2 changes: 1 addition & 1 deletion public/Nitrocid.Locales/AddonTranslations/eng.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1643,7 +1643,7 @@ Is a directory
Is selected
File size
File path
Selected '{0}'. Press ESC to exit and confirm FilesystemTools.
Selected '{0}'. Press ESC to exit and confirm your selection.
Can't open folder or select file
Enter a path or a full path to a local folder.
Press SPACE for more info
Expand Down
2 changes: 1 addition & 1 deletion public/Nitrocid.Locales/AddonTranslations/enk.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1643,7 +1643,7 @@ Is a directory
Is selected
File size
File path
Selected '{0}'. Press ESC to exit and confirm FilesystemTools.
Selected '{0}'. Press ESC to exit and confirm your selection.
Can't open folder or select file
Enter a path or a full path to a local folder.
Press SPACE for more info
Expand Down
2 changes: 1 addition & 1 deletion public/Nitrocid.Locales/CustomLanguages/eng.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1643,7 +1643,7 @@ Is a directory
Is selected
File size
File path
Selected '{0}'. Press ESC to exit and confirm FilesystemTools.
Selected '{0}'. Press ESC to exit and confirm your selection.
Can't open folder or select file
Enter a path or a full path to a local folder.
Press SPACE for more info
Expand Down
2 changes: 1 addition & 1 deletion public/Nitrocid.Locales/Translations/eng.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1643,7 +1643,7 @@ Is a directory
Is selected
File size
File path
Selected '{0}'. Press ESC to exit and confirm FilesystemTools.
Selected '{0}'. Press ESC to exit and confirm your selection.
Can't open folder or select file
Enter a path or a full path to a local folder.
Press SPACE for more info
Expand Down
2 changes: 1 addition & 1 deletion public/Nitrocid/Misc/Interactives/FileSelectorCli.cs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ internal void SelectOrGoTo(FileSystemEntry? currentFileSystemEntry)
{
// We're dealing with a file. Clear the screen and open the appropriate editor.
selectedFile = currentFileSystemEntry.FilePath;
InfoBoxModalColor.WriteInfoBoxModalColorBack(Translate.DoTranslation("Selected '{0}'. Press ESC to exit and confirm FilesystemTools."), Settings.BoxForegroundColor, Settings.BoxBackgroundColor, selectedFile);
InfoBoxModalColor.WriteInfoBoxModalColorBack(Translate.DoTranslation("Selected '{0}'. Press ESC to exit and confirm your selection."), Settings.BoxForegroundColor, Settings.BoxBackgroundColor, selectedFile);
}
}
catch (Exception ex)
Expand Down
2 changes: 1 addition & 1 deletion public/Nitrocid/Misc/Interactives/FolderSelectorCli.cs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ internal void Select(FileSystemEntry? currentFileSystemEntry)
if (currentFileSystemEntry.Type == FileSystemEntryType.Directory)
{
selectedFolder = currentFileSystemEntry.FilePath;
InfoBoxModalColor.WriteInfoBoxModalColorBack(Translate.DoTranslation("Selected '{0}'. Press ESC to exit and confirm FilesystemTools."), Settings.BoxForegroundColor, Settings.BoxBackgroundColor, selectedFolder);
InfoBoxModalColor.WriteInfoBoxModalColorBack(Translate.DoTranslation("Selected '{0}'. Press ESC to exit and confirm your selection."), Settings.BoxForegroundColor, Settings.BoxBackgroundColor, selectedFolder);
}
}
catch (Exception ex)
Expand Down
2 changes: 1 addition & 1 deletion public/Nitrocid/Resources/Languages/eng.json
Original file line number Diff line number Diff line change
Expand Up @@ -1647,7 +1647,7 @@
"Is selected",
"File size",
"File path",
"Selected '{0}'. Press ESC to exit and confirm FilesystemTools.",
"Selected '{0}'. Press ESC to exit and confirm your selection.",
"Can't open folder or select file",
"Enter a path or a full path to a local folder.",
"Press SPACE for more info",
Expand Down

0 comments on commit 508c442

Please sign in to comment.