resources.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. ,favicon: "linkFavicon"
  23. }
  24. ,klass: {
  25. selected: "selected"
  26. ,hidden: "hidden"
  27. ,noRoomSelected: "no-room-selected"
  28. ,noNetwork: "no-network"
  29. ,unread: "unread"
  30. ,unreadHi: "unreadHi"
  31. ,replyingTo: "replyingTo"
  32. ,emoji: {
  33. emoji: "emoji"
  34. ,small: "emoji-small"
  35. ,medium: "emoji-medium"
  36. ,custom: "emoji-custom"
  37. }
  38. ,chatList: {
  39. entry: "slack-context-room"
  40. ,typeChannel: "slack-channel"
  41. ,typeGroup: "slack-group"
  42. ,typeDirect: "slack-ims"
  43. }
  44. ,msg: {
  45. item: "slackmsg-item"
  46. ,meMessage: "slackmsg-me_message"
  47. ,ts: "slackmsg-ts"
  48. ,author: "slackmsg-author"
  49. ,authorname: "slackmsg-author-name"
  50. ,authorAvatar: "slackmsg-author-img"
  51. ,msg: "slackmsg-msg"
  52. ,hover: {
  53. container: "slackmsg-hover"
  54. ,reply: "slackmsg-hover-reply"
  55. }
  56. ,replyTo: {
  57. close: "replyto-close"
  58. }
  59. ,link: "slackmsg-link"
  60. ,linkuser: "slackmsg-link-user"
  61. ,linkchan: "slackmsg-link-chan"
  62. ,attachment: {
  63. container: "slackmsg-attachment"
  64. ,list: "slackmsg-attachments"
  65. ,pretext: "slackmsg-attachment-pretext"
  66. ,title: "slackmsg-attachment-title"
  67. ,text: "slackmsg-attachment-text"
  68. ,thumbImg: "slackmsg-attachment-thumb"
  69. ,img: "slackmsg-attachment-img"
  70. ,footer: "slackmsg-attachment-footer"
  71. ,footerText: "slackmsg-attachment-footer-text"
  72. ,footerIcon: "slackmsg-attachment-footer-icon"
  73. }
  74. ,reactions: {
  75. container: "slackmsg-reactions"
  76. ,item: "slackmsg-reaction-item"
  77. }
  78. ,style: {
  79. bold: "slackmsg-style-bold"
  80. ,code: "slackmsg-style-code"
  81. ,italic: "slackmsg-style-italic"
  82. ,strike: "slackmsg-style-strike"
  83. ,quote: "slackmsg-style-quote"
  84. }
  85. }
  86. }
  87. };