en.js 732B

1234567891011121314151617181920212223242526272829303132333435
  1. const en = {
  2. translation: { // 'en' in the namespace 'translation'
  3. Header: {
  4. Search: 'Search'
  5. },
  6. Footer: {
  7. marketing_msg: 'Create your own collaborative workspaces on trac.im',
  8. copyright: 'Copyright 2013 - 2017'
  9. },
  10. FileItemHeader: {
  11. type: 'Type',
  12. document_name: "Document's name",
  13. status: 'Status'
  14. },
  15. Folder: {
  16. create: 'Create',
  17. content_type: 'Content type'
  18. },
  19. Sidebar: {
  20. create_new_workspace: 'Create new workspace'
  21. },
  22. Account: {
  23. title: 'My account'
  24. },
  25. role: {
  26. reader: 'Reader',
  27. contributor: 'Contributor',
  28. content_manager: 'Content manager',
  29. manager: 'Manager'
  30. }
  31. }
  32. }
  33. export default en