1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Merge pull request #334 from Naatan/master

Fixed maniphest transaction types were not translatable
This commit is contained in:
Evan Priestley 2013-06-07 18:22:54 -07:00
commit ee82f6f8bd

View file

@ -21,13 +21,13 @@ final class ManiphestTransactionType extends ManiphestConstants {
public static function getTransactionTypeMap() {
return array(
self::TYPE_NONE => 'Comment',
self::TYPE_STATUS => 'Close Task',
self::TYPE_OWNER => 'Reassign / Claim',
self::TYPE_CCS => 'Add CCs',
self::TYPE_PRIORITY => 'Change Priority',
self::TYPE_ATTACH => 'Upload File',
self::TYPE_PROJECTS => 'Associate Projects',
self::TYPE_NONE => pht('Comment'),
self::TYPE_STATUS => pht('Close Task'),
self::TYPE_OWNER => pht('Reassign / Claim'),
self::TYPE_CCS => pht('Add CCs'),
self::TYPE_PRIORITY => pht('Change Priority'),
self::TYPE_ATTACH => pht('Upload File'),
self::TYPE_PROJECTS => pht('Associate Projects'),
);
}