@26lights/orcha 0.41.1 → 0.41.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/locales/en/translation.json +5 -0
- package/dist/orcha.cjs.js +2 -2
- package/dist/orcha.css +1 -1
- package/dist/orcha.es.js +4523 -4379
- package/dist/orcha.umd.js +3 -3
- package/dist/src/components/AoCardProjectItemMilestone.vue.d.ts +12 -0
- package/dist/src/components/AoCardProjectItemPhase.vue.d.ts +12 -0
- package/dist/src/components/AoCardTemplate.vue.d.ts +2 -0
- package/dist/src/components/AoProjectPhase.vue.d.ts +6 -0
- package/dist/src/components/AoProjectPhases.vue.d.ts +6 -0
- package/dist/src/components/AoSaveTemplateModal.vue.d.ts +17 -0
- package/dist/src/types/index.d.ts +9 -2
- package/dist/src/types/styles.d.ts +2 -0
- package/dist/src/views/AoProjectOverviewProject.vue.d.ts +15 -1
- package/dist/src/views/AoTemplateDetails.vue.d.ts +2 -2
- package/dist/src/views/AoTemplatesList.vue.d.ts +3 -1
- package/package.json +2 -2
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"activity.blocking.label": "Blocking",
|
|
26
26
|
"activity.dependingMilestone.label": "The validation of this activity opens",
|
|
27
27
|
"archive": "Archive",
|
|
28
|
+
"unarchive": "Unarchive",
|
|
28
29
|
"feed.activity.add": "Add activity",
|
|
29
30
|
"feed.column.future.label": "Future",
|
|
30
31
|
"feed.column.this_month.label": "This month",
|
|
@@ -77,6 +78,10 @@
|
|
|
77
78
|
"activity.project.label": "Project",
|
|
78
79
|
"project.switch.feed": "Feed",
|
|
79
80
|
"project.switch.overview": "Overview",
|
|
81
|
+
"project.template.save.label": "Save as template",
|
|
82
|
+
"project.template.save.title": "Save as new template",
|
|
83
|
+
"project.template.name.label": "Template's name",
|
|
84
|
+
"project.template.phases.label": "Phases",
|
|
80
85
|
"project.template.apply.title": "Apply a new template",
|
|
81
86
|
"project.template.apply.label": "Apply template",
|
|
82
87
|
"project.template.apply.notice": "Applying the template will add its phases and their content (milestones, activity, tasks) to your current project without modifying the one already present.",
|