Skip to content

Commit

Permalink
Fix spelling errors in group names and enum references across multipl…
Browse files Browse the repository at this point in the history
…e files
  • Loading branch information
IceOnly committed Dec 12, 2024
1 parent 83ec1ff commit 3f59121
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ page 9451 "File Account Wizard"
}
}

group(NoConnectrosAvailableGroup)
group(NoConnectorsAvailableGroup)
{
Visible = ChooseConnectorVisible and not ConnectorsAvailable;
label(NoConnectorsAvailable)
Expand Down Expand Up @@ -466,7 +466,7 @@ page 9451 "File Account Wizard"
AppSourceTok: Label 'AppSource';
ExtensionManagementTok: Label 'Extension Management';
FileCategoryLbl: Label 'File', Locked = true;
LearnMoreURLTxt: Label 'https://go.microsoft.com/fwlink/?linkid=2134520', Locked = true; //FIXME
LearnMoreURLTxt: Label 'https://go.microsoft.com/fwlink/?linkid=2134520', Locked = true; //TODO Replace with correct URL to new documentation
LearnMoreTok: Label 'Learn more';
NoLimitTxt: Label 'No limit';
AccountCreationSuccessfullyCompletedDurationLbl: Label 'Successful creation of account completed. Duration: %1 milliseconds.', Comment = '%1 - Duration', Locked = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ page 9455 "File Account Browser"
trigger OnDrillDown()
begin
case true of
(Rec.Name = '..'):
Rec.Name = '..':
BrowseFolder(Rec."Parent Directory");
(Rec.Type = Rec.Type::Directory):
Rec.Type = Rec.Type::Directory:
BrowseFolder(Rec);
(not IsInLookupMode):
not IsInLookupMode:
FileAccountBrowserMgt.DownloadFile(Rec);
end;
end;
Expand All @@ -56,7 +56,6 @@ page 9455 "File Account Browser"

group(SaveFileNameGroup)
{
Caption = '', Locked = true;
ShowCaption = false;
Visible = ShowFileName;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ codeunit 9458 "File Account Browser Mgt."
until FileAccountContentToAdd.Next() = 0;

FileAccountContent.Init();
FileAccountContent.Name := '..';
FileAccountContent.Type := FileAccountContent.Type::Directory;
FileAccountContent."Parent Directory" := CopyStr(FileSystem.GetParentPath(CurrentPath), 1, MaxStrLen(FileAccountContent."Parent Directory"));
FileAccountContent.Validate(Name, '..');
FileAccountContent.Validate(Type, FileAccountContent.Type::Directory);
FileAccountContent.Validate("Parent Directory", CopyStr(FileSystem.GetParentPath(CurrentPath), 1, MaxStrLen(FileAccountContent."Parent Directory")));
FileAccountContent.Insert();
end;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ table 9455 "File Account Content"
Caption = 'File Account Content';
DataClassification = SystemMetadata;
TableType = Temporary;
Extensible = false;

fields
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace System.FileSystem;

enum 9453 "File Acount Entry Type"
enum 9453 "File Account Entry Type"
{
Access = Internal;
Extensible = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ table 9453 "File Account Scenario"
field(3; "Account Id"; Guid) { }
field(4; "Display Name"; Text[2048]) { }
field(5; Default; Boolean) { }
field(6; EntryType; Enum "File Acount Entry Type") { }
field(6; EntryType; Enum "File Account Entry Type") { }
field(7; Position; Integer) { }
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ codeunit 9453 "File Scenario Impl."
FileAccountScenarios.SetCurrentKey("Display Name"); // sort scenarios by "Display Name"
end;

local procedure AddEntry(var FileAccountScenario: Record "File Account Scenario"; EntryType: Enum "File Acount Entry Type"; Scenario: Integer; AccountId: Guid; FileSystemConnector: Enum "File System Connector"; DisplayName: Text[2048]; Default: Boolean; var Position: Integer)
local procedure AddEntry(var FileAccountScenario: Record "File Account Scenario"; EntryType: Enum "File Account Entry Type"; Scenario: Integer; AccountId: Guid; FileSystemConnector: Enum "File System Connector"; DisplayName: Text[2048]; Default: Boolean; var Position: Integer)
begin
// Add entry to the File Account Scenario while maintaining the position so that the tree represents the data correctly
FileAccountScenario.Init();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ page 9452 "File Scenario Setup"
FileAccountId: Guid;
FileConnector: Enum "File System Connector";
Style, DefaultTxt : Text;
TypeOfEntry: Enum "File Acount Entry Type";
TypeOfEntry: Enum "File Account Entry Type";
Indentation: Integer;
CanUserManageFileSetup: Boolean;
}

0 comments on commit 3f59121

Please sign in to comment.