rozod
    Preparing search index...

    Variable postLocalizationTableTablesTableidEntriesTranslationFeedbackConst Api Param

    postLocalizationTableTablesTableidEntriesTranslationFeedback: EndpointGeneric<
        { gameId?: number; tableId: string },
        {
            entries: {
                feedbackCount: number;
                identifier: {
                    context: string;
                    key: string;
                    source: string;
                    translation: {
                        feedbackCount: number;
                        locale: string;
                        translationText: string;
                        translator: { agentType: "User" | "Automation"; id: number };
                        updatedTime: string;
                    };
                };
                playerSuggestionText: string[];
                reasons: (
                    | "None"
                    | "Untranslated"
                    | "Inaccurate"
                    | "SpellingOrGrammar"
                    | "Inappropriate"
                )[];
                robloxSuggestionText: string;
            }[];
            tableId: string;
        },
        {
            entries: {
                context: string;
                key: string;
                source: string;
                translation: {
                    feedbackCount: number;
                    locale: string;
                    translationText: string;
                    translator: { agentType: "User"
                    | "Automation"; id: number };
                    updatedTime: string;
                };
            }[];
            sourceLocale: string;
        },
    > = ...

    POST https://localizationtables.roblox.com/v1/localization-table/tables/:tableId/entries/translation-feedback Gets the translation feedback for each entry passed in. body A request body containing all relevant data for entry translation feedback lookup. tableId The entries' tableId. gameId The game id.