Skip to content

Commit

Permalink
[Feature] Update French workstream name for SECURITY (#12376)
Browse files Browse the repository at this point in the history
* Update PoolStream case for SECURITY in French

* Add migration

* Update PHP formatting
  • Loading branch information
mnigh authored Dec 27, 2024
1 parent b1b6fad commit 76d02e9
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;

return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
DB::table('work_streams')
->where('key', 'SECURITY')
->update(['name->fr' => 'Sécurité']);
}

/**
* Reverse the migrations.
*/
public function down(): void
{
DB::table('work_streams')
->where('key', 'SECURITY')
->update(['name->fr' => 'Sécurité de la TI']);
}
};
2 changes: 1 addition & 1 deletion api/lang/fr/pool_stream.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'infrastructure_operations' => 'Opérations d’infrastructure de la TI',
'planning_and_reporting' => 'Planification et établissement de rapports en matière de TI',
'project_portfolio_management' => 'Gestion de portefeuilles de projets de la TI',
'security' => 'Sécurité de la TI',
'security' => 'Sécurité',
'software_solutions' => 'Solutions logicielles de la TI',
'information_data_functions' => 'Fonctions d’information et de données',
'executive_group' => 'Groupe de la direction',
Expand Down

0 comments on commit 76d02e9

Please sign in to comment.