Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Language] Add current culture to language module #2471

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/System Application/App/Language/src/Language.Codeunit.al
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,17 @@ codeunit 43 Language
exit(LanguageImpl.GetCultureName(LanguageID));
end;

/// <summary>
/// Retrieves the current culture name for the session.
/// </summary>
/// <returns>The culture name. For example, 'en-US'.</returns>
procedure GetCurrentCultureName(): Text
var
LanguageImpl: Codeunit "Language Impl.";
begin
exit(LanguageImpl.GetCurrentCultureName());
end;

/// <summary>
/// Integration event, emitted from <see cref="GetUserLanguageCode"/>.
/// Subscribe to this event to change the default behavior by changing the provided parameter(s).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,13 @@ codeunit 54 "Language Impl."
exit(CultureInfo.Name);
end;

procedure GetCurrentCultureName(): Text
var
CultureInfo: DotNet CultureInfo;
begin
exit(CultureInfo.CurrentCulture.Name);
end;

[EventSubscriber(ObjectType::Codeunit, Codeunit::"UI Helper Triggers", GetApplicationLanguage, '', false, false)]
local procedure SetApplicationLanguageId(var language: Integer)
begin
Expand Down
Loading