Skip to content

Commit e985f0d

Browse files
committed
translates /reference (closes #48)
1 parent 305fcbc commit e985f0d

File tree

9 files changed

+99
-30
lines changed

9 files changed

+99
-30
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
import AsyncIframe from '@components/AsyncIframe.astro';
3+
---
4+
5+
<h2>Website</h2>
6+
7+
<a href="https://www.figma.com/design/qSLmDyHzShcVtcdRChP9fK/Propromo-Design?node-id=0-1&t=7WntnAIrOac2qAGx-1" target="_blank" rel="noopener noreferrer">Open in Figma</a>
8+
9+
<AsyncIframe>
10+
<iframe
11+
src="https://www.figma.com/embed?embed_host=share&url=https://www.figma.com/file/qSLmDyHzShcVtcdRChP9fK/Propromo-Design?node-id=0-1&t=7WntnAIrOac2qAGx-1"
12+
allowfullscreen
13+
style="border:none; width:100%; height:100%">
14+
</iframe>
15+
</AsyncIframe>
16+
17+
<h2>Mobile</h2>
18+
19+
<h3>IOS</h3>
20+
21+
<a href="https://www.figma.com/design/YgzDa3oP7vMwPp9wJ8sV6C/Propromo.ios?node-id=402-25305&t=e9bEacYSRj05KtI7-1" target="_blank" rel="noopener noreferrer">Open in Figma</a>
22+
23+
<AsyncIframe>
24+
<iframe
25+
src="https://www.figma.com/embed?embed_host=share&url=https://www.figma.com/file/YgzDa3oP7vMwPp9wJ8sV6C/Propromo.ios?node-id=402-25305&t=e9bEacYSRj05KtI7-1"
26+
allowfullscreen
27+
style="border:none; width:100%; height:100%">
28+
</iframe>
29+
</AsyncIframe>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: EVA
3+
description: Propromo - What is an "Earned Value Analysis"?
4+
---
5+
6+
## Planned Value (PV)
7+
8+
The PV is the budgeted value intended for the work planned up to the current point in time. It represents the planned budget that should be utilized based on the schedule at the present time.
9+
10+
## Earned Value (EV)
11+
12+
The EV indicates how much budget the work completed to date represents. This value is determined by multiplying the percentage of completed work by the total budget. The EV helps to quantify the actual project progress.
13+
14+
## Actual Cost (AC)
15+
16+
The AC represents the actual costs incurred up to the current point in time for the work performed.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Design
3+
description: Propromo - Design Wireframe
4+
sidebar:
5+
order: 1
6+
---
7+
8+
import Design from '@components/pages/reference/Design.astro';
9+
10+
<Design />
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: KPIs
3+
description: Propromo - What are "Key Performance Indicators" of agile SCRUM projects?
4+
---
5+
6+
## Key Performance Indicators
7+
8+
> Project progress can be viewed transparently and traceably using Propromo and our KPIs.
9+
10+
1. **Project Information** - What is it about?
11+
* Source code URL,
12+
* Project description,
13+
* Versions and version frequency (deployments and releases),
14+
* Security risks,
15+
* Team information,
16+
17+
---
18+
19+
2. **Project Activity** - How actively is the project being worked on (and who is working on what)?
20+
* Team Performance (& Developer Performance):
21+
* Commits,
22+
* Pull Requests &
23+
* Issues,
24+
* Sprints &
25+
* Milestones per time unit
26+
27+
---
28+
29+
3. **Project Progress** - How far has the entire project progressed?
30+
* Percentage of completed and pending issues (, milestones & sprints).
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Stack
3+
description: What Propromo is built with.
4+
sidebar:
5+
order: 2
6+
---
7+
8+
Propromos core is built using Laravel, Livewire, AlpineJS and ElysiaJS.

src/content/docs/reference/Lexicon/eva.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: EVA
3-
description: Propromo - What is a "Earned Value Analysis"?
3+
description: Propromo - Was ist eine "Earned Value Analysis"?
44
---
55

66
## Geplanter Wert (Planned Value, PV)

src/content/docs/reference/design.mdx

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,6 @@ sidebar:
55
order: 1
66
---
77

8-
import AsyncIframe from '../../../components/AsyncIframe.astro';
8+
import Design from '@components/pages/reference/Design.astro';
99

10-
## Website
11-
12-
<a href="https://www.figma.com/design/qSLmDyHzShcVtcdRChP9fK/Propromo-Design?node-id=0-1&t=7WntnAIrOac2qAGx-1" target="_blank" rel="noopener noreferrer">Open in Figma</a>
13-
14-
<AsyncIframe>
15-
<iframe
16-
src="https://www.figma.com/embed?embed_host=share&url=https://www.figma.com/file/qSLmDyHzShcVtcdRChP9fK/Propromo-Design?node-id=0-1&t=7WntnAIrOac2qAGx-1"
17-
allowfullscreen
18-
style="border:none; width:100%; height:100%">
19-
</iframe>
20-
</AsyncIframe>
21-
22-
## Mobile
23-
24-
### IOS
25-
26-
<a href="https://www.figma.com/design/YgzDa3oP7vMwPp9wJ8sV6C/Propromo.ios?node-id=402-25305&t=e9bEacYSRj05KtI7-1" target="_blank" rel="noopener noreferrer">Open in Figma</a>
27-
28-
<AsyncIframe>
29-
<iframe
30-
src="https://www.figma.com/embed?embed_host=share&url=https://www.figma.com/file/YgzDa3oP7vMwPp9wJ8sV6C/Propromo.ios?node-id=402-25305&t=e9bEacYSRj05KtI7-1"
31-
allowfullscreen
32-
style="border:none; width:100%; height:100%">
33-
</iframe>
34-
</AsyncIframe>
10+
<Design />

src/content/docs/reference/kpis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: KPIs
3-
description: Propromo - What are "Key Performance Indicators", of agile SCRUM projects?
3+
description: Propromo - Was sind "Key Performance Indicators" von agilen SCRUM-Projekten?
44
---
55

66
## Key Performance Indicators
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Stack
3-
description: What Propromo is built with.
3+
description: Womit Propromo programmiert wurde.
44
sidebar:
55
order: 2
66
---
77

8-
Propromos core is built using Laravel, Livewire, AlpineJS and ElysiaJS.
8+
Der Kern von Propromo besteht aus Laravel und ElysiaJS.

0 commit comments

Comments
 (0)