-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranslations.js
More file actions
48 lines (48 loc) · 1.62 KB
/
Copy pathtranslations.js
File metadata and controls
48 lines (48 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// translations.js
window.TRANSLATIONS = {
fr: {
welcome: "Bienvenue",
workHours: "Heures travaillées",
timeRemaining: "Temps restant",
timeExceeded: "Temps dépassé",
estimatedEnd: "Fin prévue",
estimatedEndPlusPause: "Fin prévue (pause incluse)",
pauseDetected: "Pause détectée",
pauseAdded: "Temps ajouté pour pause",
remainingWeekTime: "Temps restant dans la semaine",
overtimeThisWeek: "Heures supplémentaires cette semaine",
none: "Aucun",
yes: "Oui",
no: "Non"
},
en: {
welcome: "Welcome",
workHours: "Worked Hours",
timeRemaining: "Time Remaining",
timeExceeded: "Time Exceeded",
estimatedEnd: "Estimated End",
estimatedEndPlusPause: "Estimated End (break included)",
pauseDetected: "Pause Detected",
pauseAdded: "Time Added for Pause",
remainingWeekTime: "Remaining Time in the Week",
overtimeThisWeek: "Overtime This Week",
none: "None",
yes: "Yes",
no: "No"
},
de: {
welcome: "Willkommen",
workHours: "Geleistete Stunden",
timeRemaining: "Verbleibende Zeit",
timeExceeded: "Zeit überschritten",
estimatedEnd: "Geplantes Ende",
estimatedEndPlusPause: "Geplantes Ende (Pause inbegriffen)",
pauseDetected: "Pause erkannt",
pauseAdded: "Hinzugefügte Zeit für Pause",
remainingWeekTime: "Verbleibende Zeit in der Woche",
overtimeThisWeek: "Überstunden diese Woche",
none: "Keine",
yes: "Ja",
no: "Nein"
}
};