Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 12e99f8f2a | |||
| 3358b23edd |
@@ -37,7 +37,14 @@ export const Admin = () => {
|
|||||||
flexDirection="column"
|
flexDirection="column"
|
||||||
alignItems="start"
|
alignItems="start"
|
||||||
>
|
>
|
||||||
<Text variant="note" wrap="pretty" margin="md">
|
<Text
|
||||||
|
variant="note"
|
||||||
|
wrap="pretty"
|
||||||
|
className={css({
|
||||||
|
textStyle: 'sm',
|
||||||
|
})}
|
||||||
|
margin={'md'}
|
||||||
|
>
|
||||||
{t('description')}
|
{t('description')}
|
||||||
</Text>
|
</Text>
|
||||||
<RACSeparator
|
<RACSeparator
|
||||||
@@ -68,8 +75,8 @@ export const Admin = () => {
|
|||||||
</Text>
|
</Text>
|
||||||
<Field
|
<Field
|
||||||
type="radioGroup"
|
type="radioGroup"
|
||||||
label="Type d'accès à la réunion"
|
label={t('access.type')}
|
||||||
aria-label="Type d'accès à la réunion"
|
aria-label={t('access.type')}
|
||||||
labelProps={{
|
labelProps={{
|
||||||
className: css({
|
className: css({
|
||||||
fontSize: '1rem',
|
fontSize: '1rem',
|
||||||
|
|||||||
@@ -189,6 +189,7 @@
|
|||||||
"access": {
|
"access": {
|
||||||
"title": "",
|
"title": "",
|
||||||
"description": "",
|
"description": "",
|
||||||
|
"type": "",
|
||||||
"levels": {
|
"levels": {
|
||||||
"public": {
|
"public": {
|
||||||
"label": "",
|
"label": "",
|
||||||
|
|||||||
@@ -188,6 +188,7 @@
|
|||||||
"access": {
|
"access": {
|
||||||
"title": "Room access",
|
"title": "Room access",
|
||||||
"description": "These settings will also apply to future occurrences of this meeting.",
|
"description": "These settings will also apply to future occurrences of this meeting.",
|
||||||
|
"type": "Meeting access types",
|
||||||
"levels": {
|
"levels": {
|
||||||
"public": {
|
"public": {
|
||||||
"label": "Open",
|
"label": "Open",
|
||||||
|
|||||||
@@ -188,6 +188,7 @@
|
|||||||
"access": {
|
"access": {
|
||||||
"title": "Accès à la réunion",
|
"title": "Accès à la réunion",
|
||||||
"description": "Ces paramètres s'appliqueront également aux futures occurrences de cette réunion.",
|
"description": "Ces paramètres s'appliqueront également aux futures occurrences de cette réunion.",
|
||||||
|
"type": "Type d'accès à la réunion",
|
||||||
"levels": {
|
"levels": {
|
||||||
"public": {
|
"public": {
|
||||||
"label": "Ouvrir",
|
"label": "Ouvrir",
|
||||||
|
|||||||
@@ -188,6 +188,7 @@
|
|||||||
"access": {
|
"access": {
|
||||||
"title": "Toegang tot vergadering",
|
"title": "Toegang tot vergadering",
|
||||||
"description": "Deze instellingen zijn ook van toepassing op toekomstige sessies van deze vergadering.",
|
"description": "Deze instellingen zijn ook van toepassing op toekomstige sessies van deze vergadering.",
|
||||||
|
"type": "Vergaderings toegangstypen",
|
||||||
"levels": {
|
"levels": {
|
||||||
"public": {
|
"public": {
|
||||||
"label": "Open",
|
"label": "Open",
|
||||||
|
|||||||
@@ -218,8 +218,10 @@ export const Field = <T extends object>({
|
|||||||
{item.description && (
|
{item.description && (
|
||||||
<Text
|
<Text
|
||||||
variant="note"
|
variant="note"
|
||||||
|
wrap={'pretty'}
|
||||||
className={css({
|
className={css({
|
||||||
textStyle: 'sm',
|
textStyle: 'sm',
|
||||||
|
marginBottom: '0.5rem',
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
{item.description}
|
{item.description}
|
||||||
|
|||||||
Reference in New Issue
Block a user