1234567891011121314151617181920212223242526272829303132333435 |
- const en = {
- translation: { // 'en' in the namespace 'translation'
- Header: {
- Search: 'Search'
- },
- Footer: {
- marketing_msg: 'Create your own collaborative workspaces on trac.im',
- copyright: 'Copyright 2013 - 2017'
- },
- FileItemHeader: {
- type: 'Type',
- document_name: "Document's name",
- status: 'Status'
- },
- Folder: {
- create: 'Create',
- content_type: 'Content type'
- },
- Sidebar: {
- create_new_workspace: 'Create new workspace'
- },
- Account: {
- title: 'My account'
- },
- role: {
- reader: 'Reader',
- contributor: 'Contributor',
- content_manager: 'Content manager',
- manager: 'Manager'
- }
- }
- }
-
- export default en
|