mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Merge pull request #334 from Naatan/master
Fixed maniphest transaction types were not translatable
This commit is contained in:
commit
ee82f6f8bd
1 changed files with 7 additions and 7 deletions
|
@ -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'),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue