en.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. $lang->branch->common = 'Branch';
  3. $lang->branch->manage = 'Manage Branch';
  4. $lang->branch->sort = 'Sort Branch';
  5. $lang->branch->delete = 'Delete Branch';
  6. $lang->branch->add = 'Add';
  7. $lang->branch->manageTitle = '%s Management';
  8. $lang->branch->all = 'All ';
  9. $lang->branch->main = 'Main';
  10. $lang->branch->edit = 'Edit %s';
  11. $lang->branch->editAction = 'Edit Branch';
  12. $lang->branch->activate = 'Activate';
  13. $lang->branch->activateAction = 'Activate Branch';
  14. $lang->branch->close = 'Close';
  15. $lang->branch->closeAction = 'Close Branch';
  16. $lang->branch->create = 'Create %s';
  17. $lang->branch->createAction = 'Create Branch';
  18. $lang->branch->merge = 'Merge';
  19. $lang->branch->batchEdit = 'Batch Edit';
  20. $lang->branch->defaultBranch = 'Default Branch';
  21. $lang->branch->setDefault = 'Set as Default';
  22. $lang->branch->setDefaultAction = 'Set Default Branch';
  23. $lang->branch->mergeTo = 'Merge to';
  24. $lang->branch->mergeBranch = 'Merge branch';
  25. $lang->branch->mergeBranchAction = 'Merge branch';
  26. $lang->branch->id = 'ID';
  27. $lang->branch->product = $lang->productCommon;
  28. $lang->branch->name = 'Name';
  29. $lang->branch->status = 'Status';
  30. $lang->branch->createdDate = 'Created on';
  31. $lang->branch->closedDate = 'Closed on';
  32. $lang->branch->desc = 'Description';
  33. $lang->branch->order = 'Sort';
  34. $lang->branch->deleted = 'Deleted';
  35. $lang->branch->closed = 'Closed';
  36. $lang->branch->default = 'Default';
  37. $lang->branch->confirmDelete = 'Are you sure you want to delete this @branch@?';
  38. $lang->branch->confirmSetDefault = 'Are you sure you want to set this @branch@ as the default? Once set, plans and releases will default to this @branch@.';
  39. $lang->branch->canNotDelete = 'This @branch@ contains data and cannot be deleted.';
  40. $lang->branch->nameNotEmpty = 'Name is required.';
  41. $lang->branch->confirmClose = 'Are you sure you want to close this @branch@?';
  42. $lang->branch->confirmActivate = 'Are you sure you want to activate this @branch@?';
  43. $lang->branch->existName = '@branch@ name already exists.';
  44. $lang->branch->mergedMain = 'Trunk cannot be merged.';
  45. $lang->branch->mergeTips = 'After merging, all releases, plans, builds, modules, stories, bugs, and test cases under this @branch@ will be moved to the target @branch@.';
  46. $lang->branch->targetBranchTips = 'You can merge it into an existing @branch@, into trunk, or create a new @branch@.';
  47. $lang->branch->confirmMerge = 'Data from mergedBranch will be merged into targetBranch. Are you sure you want to proceed? This action cannot be undone.';
  48. $lang->branch->noData = 'No branches yet.';
  49. $lang->branch->mainBranch = "{$lang->productCommon} default trunk: %s.";
  50. $lang->branch->statusList = array();
  51. $lang->branch->statusList['active'] = 'Activate';
  52. $lang->branch->statusList['closed'] = 'Closed';
  53. $lang->branch->featureBar['manage']['all'] = 'All';
  54. $lang->branch->featureBar['manage']['active'] = 'Activate';
  55. $lang->branch->featureBar['manage']['closed'] = 'Closed';