Table 11 Country/Region Translation, source in 29

Source29

src/Layers/W1/BaseApp/Foundation/Address/CountryRegionTranslation.Table.al48 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;

using System.Globalization;

table 11 "Country/Region Translation"
{
    Caption = 'Country/Region Translation';
    DataClassification = CustomerContent;

    fields
    {
        field(1; "Country/Region Code"; Code[10])
        {
            Caption = 'Country/Region Code';
            NotBlank = true;
            TableRelation = "Country/Region";
        }
        field(2; "Language Code"; Code[10])
        {
            Caption = 'Language Code';
            ToolTip = 'Specifies the Language Code.';
            TableRelation = Language;
        }
        field(3; Name; Text[50])
        {
            Caption = 'Name';
            ToolTip = 'Specifies the translation of the name.';
        }
    }

    keys
    {
        key(Key1; "Country/Region Code", "Language Code")
        {
            Clustered = true;
        }
    }

    fieldgroups
    {
    }
}