resources.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. var R = {
  2. id: {
  3. chanList: "chanList"
  4. ,chatList: "chatList"
  5. ,currentRoom: {
  6. title: "currentRoomTitle"
  7. ,content: "chatWindow"
  8. }
  9. ,message: {
  10. form: "msgForm"
  11. ,input: "msgInput"
  12. ,replyTo: "replyToContainer"
  13. ,file: {
  14. bt: "attachFile"
  15. ,formContainer: "fileUploadContainer"
  16. ,fileInput: "fileUploadInput"
  17. ,form: "fileUploadForm"
  18. ,error: "fileUploadError"
  19. ,cancel: "fileUploadCancel"
  20. }
  21. }
  22. }
  23. ,klass: {
  24. selected: "selected"
  25. ,hidden: "hidden"
  26. ,noRoomSelected: "no-room-selected"
  27. ,noNetwork: "no-network"
  28. ,unread: "unread"
  29. ,unreadHi: "unreadHi"
  30. ,replyingTo: "replyingTo"
  31. ,chatList: {
  32. entry: "slack-context-room"
  33. ,typeChannel: "slack-channel"
  34. ,typeGroup: "slack-group"
  35. ,typeDirect: "slack-ims"
  36. }
  37. ,msg: {
  38. item: "slackmsg-item"
  39. ,ts: "slackmsg-ts"
  40. ,author: "slackmsg-author"
  41. ,authorname: "slackmsg-author-name"
  42. ,authorAvatar: "slackmsg-author-img"
  43. ,msg: "slackmsg-msg"
  44. ,hover: {
  45. container: "slackmsg-hover"
  46. ,reply: "slackmsg-hover-reply"
  47. }
  48. ,replyTo: {
  49. close: "replyto-close"
  50. }
  51. ,link: "slackmsg-link"
  52. ,linkuser: "slackmsg-link-user"
  53. ,linkchan: "slackmsg-link-chan"
  54. ,style: {
  55. bold: "slackmsg-style-bold"
  56. ,code: "slackmsg-style-code"
  57. ,italic: "slackmsg-style-italic"
  58. ,strike: "slackmsg-style-strike"
  59. ,quote: "slackmsg-style-quote"
  60. }
  61. }
  62. }
  63. };