Skip to content

Commit c35b564

Browse files
author
Joshua Spence
committedNov 2, 2015
Various translation improvements
Summary: Depends on D14070. Test Plan: Eyeball it. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, hach-que Differential Revision: https://secure.phabricator.com/D14073
1 parent 495cb7a commit c35b564

File tree

53 files changed

+217
-142
lines changed

Some content is hidden

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

53 files changed

+217
-142
lines changed
 

‎scripts/symbols/import_repository_symbols.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function commit_symbols(
102102
$repository->getPHID());
103103
}
104104

105-
echo pht('Loading %s symbols...', new PhutilNumber(count($sql))), "\n";
105+
echo pht('Loading %s symbols...', phutil_count($sql)), "\n";
106106
foreach (array_chunk($sql, 128) as $chunk) {
107107
queryfx(
108108
$conn_w,

‎src/applications/auth/controller/config/PhabricatorAuthListController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public function processRequest() {
109109
'only users with a verified email address at one of these %s '.
110110
'allowed domain(s) will be able to register an account: %s',
111111
$domains_link,
112-
new PhutilNumber(count($domains_value)),
112+
phutil_count($domains_value),
113113
phutil_tag('strong', array(), implode(', ', $domains_value)));
114114
} else {
115115
$issues[] = pht(

0 commit comments

Comments
 (0)
Failed to load comments.