Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13976737
D13270.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D13270.diff
View Options
diff --git a/src/infrastructure/lint/linter/PhabricatorJavelinLinter.php b/src/infrastructure/lint/linter/PhabricatorJavelinLinter.php
--- a/src/infrastructure/lint/linter/PhabricatorJavelinLinter.php
+++ b/src/infrastructure/lint/linter/PhabricatorJavelinLinter.php
@@ -20,8 +20,8 @@
public function getInfoDescription() {
return pht(
'This linter is intended for use with the Javelin JS library and '.
- 'extensions. Use `javelinsymbols` to run Javelin rules on Javascript '.
- 'source files.');
+ 'extensions. Use `%s` to run Javelin rules on Javascript source files.',
+ 'javelinsymbols');
}
private function getBinaryPath() {
diff --git a/src/infrastructure/markup/interpreter/PhabricatorRemarkupFigletBlockInterpreter.php b/src/infrastructure/markup/interpreter/PhabricatorRemarkupFigletBlockInterpreter.php
--- a/src/infrastructure/markup/interpreter/PhabricatorRemarkupFigletBlockInterpreter.php
+++ b/src/infrastructure/markup/interpreter/PhabricatorRemarkupFigletBlockInterpreter.php
@@ -10,7 +10,9 @@
public function markupContent($content, array $argv) {
if (!Filesystem::binaryExists('figlet')) {
return $this->markupError(
- pht('Unable to locate the `figlet` binary. Install figlet.'));
+ pht(
+ 'Unable to locate the `%s` binary. Install figlet.',
+ 'figlet'));
}
$font = idx($argv, 'font', 'standard');
diff --git a/src/infrastructure/markup/interpreter/PhabricatorRemarkupGraphvizBlockInterpreter.php b/src/infrastructure/markup/interpreter/PhabricatorRemarkupGraphvizBlockInterpreter.php
--- a/src/infrastructure/markup/interpreter/PhabricatorRemarkupGraphvizBlockInterpreter.php
+++ b/src/infrastructure/markup/interpreter/PhabricatorRemarkupGraphvizBlockInterpreter.php
@@ -10,7 +10,9 @@
public function markupContent($content, array $argv) {
if (!Filesystem::binaryExists('dot')) {
return $this->markupError(
- pht('Unable to locate the `dot` binary. Install Graphviz.'));
+ pht(
+ 'Unable to locate the `%s` binary. Install Graphviz.',
+ 'dot'));
}
$width = $this->parseDimension(idx($argv, 'width'));
@@ -24,7 +26,8 @@
if ($err) {
return $this->markupError(
pht(
- 'Execution of `dot` failed (#%d), check your syntax: %s',
+ 'Execution of `%s` failed (#%d), check your syntax: %s',
+ 'dot',
$err,
$stderr));
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Oct 19, 3:31 PM (3 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6720050
Default Alt Text
D13270.diff (2 KB)
Attached To
Mode
D13270: Tidy up some translation strings
Attached
Detach File
Event Timeline
Log In to Comment