mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
36e2d02d6e
Summary: `pht`ize a whole bunch of strings in rP. Test Plan: Intense eyeballing. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: hach-que, Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12797
23 lines
543 B
PHP
23 lines
543 B
PHP
<?php
|
|
|
|
echo pht('Adding names to Drydock blueprints.')."\n";
|
|
|
|
$table = new DrydockBlueprint();
|
|
$conn_w = $table->establishConnection('w');
|
|
$iterator = new LiskMigrationIterator($table);
|
|
foreach ($iterator as $blueprint) {
|
|
$id = $blueprint->getID();
|
|
|
|
echo pht('Populating blueprint %d...', $id)."\n";
|
|
|
|
if (!strlen($blueprint->getBlueprintName())) {
|
|
queryfx(
|
|
$conn_w,
|
|
'UPDATE %T SET blueprintName = %s WHERE id = %d',
|
|
$table->getTableName(),
|
|
pht('Blueprint %s', $id),
|
|
$id);
|
|
}
|
|
}
|
|
|
|
echo pht('Done.')."\n";
|