Drupal is a registered trademark of Dries Buytaert
Protected Pages 3.0.0 Major update available for module protected_pages (3.0.0). Commerce Core 3.3.8 Minor update available for module commerce (3.3.8). Search API HTML Element Filter 1.0.7 Minor update available for module search_api_html_element_filter (1.0.7). Layout Builder Reorder 2.0.1 Minor update available for module layout_builder_reorder (2.0.1). Ban 1.1.0 Minor update available for module ban (1.1.0). Field Formatter Range 2.0.0 Major update available for module field_formatter_range (2.0.0). Field Formatter Range 8.x-1.8 Minor update available for module field_formatter_range (8.x-1.8). Varbase Media Header 9.2.1 Minor update available for module varbase_media_header (9.2.1). Search API Solr 4.3.11 Module search_api_solr updated after 14 months of inactivity (4.3.11). Provus Mega Menu Module provus_mega_menu crossed 1,000 active installs.

Translation Owner

1 sites No security coverage
View on drupal.org

This module provides tools to manage the owner of translated content. It allows you to update the owner of individual translations or perform bulk updates using a CSV file.

Overview

The Translation Owner Manager module provides tools to manage the ownership (UID) of translated nodes in Drupal. It is particularly useful for content managers or developers who need to bulk edit or programmatically update the owner of translated content.

This module includes Drush commands for streamlined command-line execution.

Features

  • Drush Commands:
    • Update the owner (UID) of a single node translation.
    • Perform bulk updates of translation owners using a CSV file.
  • Fully compatible with Drush 11 and PHP 8.

Requirements

  • Drupal 9.4 or later.
  • Drush 11 or later.
  • PHP 8.0 or later.

Installation

  1. Download the module via Composer:
    composer require drupal/translation_owner
  2. Enable the module:
    drush en translation_owner
  3. Clear Drush cache to register the commands:
    drush cache:clear drush

Usage

Single Translation Update

To update the owner (UID) of a specific node translation, use the following Drush command:


drush translation-owner:update-uid <nid> <langcode> <new_uid>

Example:

drush translation-owner:update-uid 113486 fr 28716

This updates the French translation of node 113486 to have user ID 28716 as its owner.

Bulk Translation Update

To update multiple translations via a CSV file:

  1. Prepare a CSV file with the following structure:
    nid,langcode,new_uid
    123,en,5
    456,fr,8
  2. Run the bulk update command:
    drush translation-owner:bulk-update /path/to/file.csv

Note: The CSV file must contain a header row with nid, langcode, and new_uid columns.

Command Aliases

For convenience, the following aliases are available:

  • translation-owner:update-uid: Aliases tou, translation-owner-update.
  • translation-owner:bulk-update: Aliases toub, translation-owner-bulk.

Developer Notes

Extending the Module

If you wish to extend the module or integrate it with custom workflows:

  • Commands are defined in the \Drupal\translation_owner\Commands\TranslationOwnerCommands class.
  • Dependencies are injected via the translation_owner.services.yml file.

Debugging

If commands do not appear, ensure you clear Drush cache:

drush cache:clear drush

Support

This module is maintained by the Drupal community. Please report issues in the Drupal.org issue queue.

Sponsored by https://landportal.org

Activity

Total releases
2
First release
Aug 2025
Latest release
10 months ago
Releases (12 mo)
2 ▲ from 0
Maintenance
Slowing

Releases

Version Type Release date
1.0.3 Stable Sep 2, 2025
1.0.2 Stable Aug 16, 2025