resources.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. ,emoji: {
  32. small: "emoji-small"
  33. }
  34. ,chatList: {
  35. entry: "slack-context-room"
  36. ,typeChannel: "slack-channel"
  37. ,typeGroup: "slack-group"
  38. ,typeDirect: "slack-ims"
  39. }
  40. ,msg: {
  41. item: "slackmsg-item"
  42. ,meMessage: "slackmsg-me_message"
  43. ,ts: "slackmsg-ts"
  44. ,author: "slackmsg-author"
  45. ,authorname: "slackmsg-author-name"
  46. ,authorAvatar: "slackmsg-author-img"
  47. ,msg: "slackmsg-msg"
  48. ,hover: {
  49. container: "slackmsg-hover"
  50. ,reply: "slackmsg-hover-reply"
  51. }
  52. ,replyTo: {
  53. close: "replyto-close"
  54. }
  55. ,link: "slackmsg-link"
  56. ,linkuser: "slackmsg-link-user"
  57. ,linkchan: "slackmsg-link-chan"
  58. ,attachment: {
  59. container: "slackmsg-attachment"
  60. ,list: "slackmsg-attachments"
  61. ,pretext: "slackmsg-attachment-pretext"
  62. ,title: "slackmsg-attachment-title"
  63. ,text: "slackmsg-attachment-text"
  64. ,thumbImg: "slackmsg-attachment-thumb"
  65. ,img: "slackmsg-attachment-img"
  66. ,footer: "slackmsg-attachment-footer"
  67. ,footerText: "slackmsg-attachment-footer-text"
  68. ,footerIcon: "slackmsg-attachment-footer-icon"
  69. }
  70. ,style: {
  71. bold: "slackmsg-style-bold"
  72. ,code: "slackmsg-style-code"
  73. ,italic: "slackmsg-style-italic"
  74. ,strike: "slackmsg-style-strike"
  75. ,quote: "slackmsg-style-quote"
  76. }
  77. }
  78. }
  79. };