Page 80 Country/Region Translations, source in 29

Source29

src/Layers/W1/BaseApp/Foundation/Address/CountryRegionTranslations.Page.al33 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Foundation.Address;

page 80 "Country/Region Translations"
{
    Caption = 'Country/Region Translations';
    PageType = List;
    ApplicationArea = All;
    UsageCategory = None;
    SourceTable = "Country/Region Translation";

    layout
    {
        area(Content)
        {
            repeater(Lines)
            {
                field("Language Code"; Rec."Language Code")
                {
                    ApplicationArea = All;
                }
                field(Name; Rec.Name)
                {
                    ApplicationArea = All;
                }
            }
        }
    }
}