JavaScript Extension Development API for Oracle Visual Builder Cloud Service - Classic Applications

Source: components.dt/js/spi/propertyinspectors/TabNames.js

define([
], function(
) {
    'use strict';

    /**
     * This object holds translated human-readable names for tabs standardly
     * used in Property Inspector panel.
     *
     * @AbcsExtension stable
     * @exports components.dt/js/spi/propertyinspectors/TabNames
     * @constructor
     * @private
     * @version 16.3.5
     */
    var TabNames = function () {
        AbcsLib.throwStaticClassError();
    };

    /**
     * Display name for <strong>Properties</strong> tab.
     *
     * @AbcsExtension stable
     * @version 16.3.5
     * @type {string}
     */
    TabNames.TAB_PROPERTIES = AbcsLib.i18n('componentsDt.piProperties');

    /**
     * Display name for <strong>Data</strong> tab.
     *
     * @AbcsExtension stable
     * @version 16.3.5
     * @type {string}
     */
    TabNames.TAB_DATA = AbcsLib.i18n('componentsDt.piData');

    /**
     * Display name for <strong>Actions</strong> tab.
     *
     * @AbcsExtension stable
     * @version 16.3.5
     * @type {string}
     */
    TabNames.TAB_ACTIONS = AbcsLib.i18n('componentsDt.piActions');

    /**
     * Display name for <strong>Responsive</strong> tab.
     *
     * @AbcsExtension stable
     * @version 16.3.5
     * @type {string}
     */
    TabNames.TAB_RESPONSIVE = AbcsLib.i18n('componentsDt.piResponsive');

    /**
     * Display name for <strong>Roles</strong> tab.
     *
     * @AbcsExtension stable
     * @version 16.3.5
     * @type {string}
     */
    TabNames.TAB_ROLES = AbcsLib.i18n('componentsDt.piRoles');

    /**
     * Display name for <strong>Info</strong> tab.
     *
     * @type {string}
     */
    TabNames.TAB_INFO = AbcsLib.i18n('componentsDt.piInfo');

    /**
     * Display name for <strong>Style</strong> tab.
     *
     * @type {string}
     */
    TabNames.TAB_STYLE = AbcsLib.i18n('componentsDt.piStyle');

    return TabNames;
});