Advertisement
Ihor0k

Untitled

Jun 7th, 2017
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. Fixed = 0, NeedToFix = 1
  2. "There is a case using this process and it need to be converted manually." //red
  3.  
  4. Fixed = 0, NeedToFix > 1
  5. "There are *count* cases using this process and all of them need to be converted manually." //red
  6.  
  7. Fixed = 1, NeedToFix = 0
  8. "A case using this process can be converted automatically." //black
  9.  
  10. Fixed = 1, NeedToFix = 1
  11. "There are *total_count* using this process:" //black
  12. "1 case can be converted automatically." //black
  13. "1 case requires manual covnersion." //red
  14.  
  15. Fixed = 1, NeedToFix > 1
  16. "There are *total_count* using this process:" //black
  17. "1 case can be converted automatically." //black
  18. "*count* cases need to be converted manually." //red
  19.  
  20. Fixed > 1, NeedToFix = 0
  21. "There are *count* cases using this process and all of them need can be converted automatically." //black
  22.  
  23. Fixed > 1, NeedToFix = 1
  24. "There are *total_count* using this process:" //black
  25. "*count* cases can be converted automatically." //black
  26. "1 case requires manual conversion"
  27.  
  28. Fixed > 1, NeedToFix > 1
  29. "There are *total_count* using this process:" //black
  30. "*count* cases can be converted automatically." //black
  31. "*count* cases need to be converted manually." //red
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement