@beterdichtbij/component-library 0.66.0-beta.0 → 0.66.0-beta.2
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/nl.json
CHANGED
|
@@ -108,5 +108,31 @@
|
|
|
108
108
|
"cameraPermissionMissing": "Je hebt geen toestemming gegeven voor gebruik van de camera door BeterDichtbij.",
|
|
109
109
|
"microphonePermissionMissing": "Je hebt geen toestemming gegeven voor gebruik van de microfoon door BeterDichtbij.",
|
|
110
110
|
"helpMessage": "om te controleren of je camera en microfoon goed werken."
|
|
111
|
+
},
|
|
112
|
+
"videoCallTemplate": {
|
|
113
|
+
"fullScreen": "Volledig scherm",
|
|
114
|
+
"miniPlayer": "Mini player",
|
|
115
|
+
"shareScreen": "Scherm delen",
|
|
116
|
+
"stopSharingScreen": "Stop scherm delen",
|
|
117
|
+
"signalStrength": {
|
|
118
|
+
"weak": "Zwak signaal",
|
|
119
|
+
"steady": "Matig signaal",
|
|
120
|
+
"strong": "Sterk signaal"
|
|
121
|
+
},
|
|
122
|
+
"serviceDesk": "Servicedesk",
|
|
123
|
+
"testCall": "Doe de beeldbeltest",
|
|
124
|
+
"endCall": "Gesprek beëindigen",
|
|
125
|
+
"placeholderSettingsHelpTitle": "Problemen met de verbinding?",
|
|
126
|
+
"placeholderSettingsHelpMessage": "Sluit het gesprek en probeer opnieuw te bellen.",
|
|
127
|
+
"messageWhenVideoCallHangedUp": "Er is opgehangen.",
|
|
128
|
+
"messageWhenVideoCallDeclined": "Er kon op dit moment niet worden opgenomen.",
|
|
129
|
+
"messageWhenDevicePermissionDenied": "Er kan geen gesprek worden gestart",
|
|
130
|
+
"permissionDeniedForVideo":"Geen toegang beschikbaar tot de camera",
|
|
131
|
+
"permissionDeniedForAudio":"Er is geen toegang beschikbaar tot uw microfoon",
|
|
132
|
+
"closeWindow": "Venster sluiten",
|
|
133
|
+
"switchCamera": "Wissel camera",
|
|
134
|
+
"hasNoAvailableCamera": "Er is geen camera beschikbaar.",
|
|
135
|
+
"hasOneAvailableCamera": "Er is één camera beschikbaar.",
|
|
136
|
+
"hasMultipleAvailableCameras": "Er zijn meerdere camera's beschikbaar."
|
|
111
137
|
}
|
|
112
138
|
}
|
package/dist/scss/_loader.scss
CHANGED
|
@@ -5,10 +5,8 @@
|
|
|
5
5
|
position: relative;
|
|
6
6
|
margin-bottom: 10px;
|
|
7
7
|
|
|
8
|
-
svg {
|
|
9
|
-
fill
|
|
10
|
-
}
|
|
11
|
-
img, svg {
|
|
8
|
+
img, svg.icon.icon-videocall {
|
|
9
|
+
fill: $color-border;
|
|
12
10
|
position: absolute;
|
|
13
11
|
top: 50%;
|
|
14
12
|
left: 50%;
|
|
@@ -26,7 +24,7 @@
|
|
|
26
24
|
}
|
|
27
25
|
}
|
|
28
26
|
&.md {
|
|
29
|
-
img, svg {
|
|
27
|
+
img, svg.icon.icon-videocall {
|
|
30
28
|
width: 88px;
|
|
31
29
|
height: 88px;
|
|
32
30
|
}
|
|
@@ -36,7 +34,7 @@
|
|
|
36
34
|
}
|
|
37
35
|
}
|
|
38
36
|
&.lg {
|
|
39
|
-
img, svg {
|
|
37
|
+
img, svg.icon.icon-videocall {
|
|
40
38
|
width: 180px;
|
|
41
39
|
height: 180px;
|
|
42
40
|
}
|
package/package.json
CHANGED