en.js 540B

1234567891011121314151617181920212223242526
  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. }
  23. }
  24. export default en