Skip to content

Commit 36e2d02

Browse files
committedMay 22, 2015
phtize all the things
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
1 parent d3268ae commit 36e2d02

File tree

928 files changed

+5268
-4240
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

928 files changed

+5268
-4240
lines changed
 

‎.arclint

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@
7474
"type": "xhpast",
7575
"include": "(\\.php$)",
7676
"severity": {
77-
"16": "advice",
7877
"34": "error"
7978
},
8079
"xhpast.blacklisted.function": {

‎resources/sql/autopatches/20140106.macromailkey.2.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22

3-
echo "Adding mailkeys to macros.\n";
3+
echo pht('Adding mailkeys to macros.')."\n";
44

55
$table = new PhabricatorFileImageMacro();
66
$conn_w = $table->establishConnection('w');
77
$iterator = new LiskMigrationIterator($table);
88
foreach ($iterator as $macro) {
99
$id = $macro->getID();
1010

11-
echo "Populating macro {$id}...\n";
11+
echo pht('Populating macro %d...', $id)."\n";
1212

1313
if (!$macro->getMailKey()) {
1414
queryfx(
@@ -20,4 +20,4 @@
2020
}
2121
}
2222

23-
echo "Done.\n";
23+
echo pht('Done.')."\n";

0 commit comments

Comments
 (0)
Failed to load comments.