diff --git a/app/src/components/ZoneSelectize.vue b/app/src/components/ZoneSelectize.vue
index b873bd4e..9361d0a1 100644
--- a/app/src/components/ZoneSelectize.vue
+++ b/app/src/components/ZoneSelectize.vue
@@ -2,12 +2,12 @@
-
+
{{ item | filter(format) }}
@@ -34,7 +34,6 @@ export default {
props: {
itemIcon: { type: String, default: null },
itemRoute: { type: String, default: null },
- itemVariant: { type: String, default: 'secondary' },
selected: { type: Array, required: true },
// needed by SelectizeBase
choices: { type: Array, required: true },
diff --git a/app/src/i18n/locales/fr.json b/app/src/i18n/locales/fr.json
index 35260e48..cae0add7 100644
--- a/app/src/i18n/locales/fr.json
+++ b/app/src/i18n/locales/fr.json
@@ -69,9 +69,9 @@
"hook_conf_ynh_certs": "Certificats SSL",
"hook_conf_ynh_firewall": "Pare-feu",
"hook_conf_ynh_mysql": "Mot de passe MySQL",
- "hook_data_home": "Données de l’utilisateur",
- "hook_data_home_desc": "Les données de l’utilisateur situées dans /home/USER",
- "hook_data_mail": "Courriel",
+ "hook_data_home": "Données des utilisateurs",
+ "hook_data_home_desc": "Données utilisateurs situées dans /home/USER",
+ "hook_data_mail": "Courriels",
"hook_data_mail_desc": "Courriels (au format brut) stockés sur le serveur",
"id": "ID",
"infos": "Info",
@@ -103,11 +103,11 @@
"path": "Chemin",
"port": "Port",
"ports": "Ports",
- "postinstall_domain": "C'est le premier nom de domaine lié à votre serveur YunoHost, mais également celui qui servira pour le portail d'authentification. Il sera donc visible pour tous vos utilisateurs, choisissez-le avec soin.",
+ "postinstall_domain": "Il s'agit du premier nom de domaine lié à votre serveur YunoHost. C'est également celui qui servira pour le portail d'authentification. Il sera donc visible pour tous vos utilisateurs, choisissez-le avec soin.",
"postinstall_intro_1": "Félicitations ! YunoHost a été installé avec succès.",
"postinstall_intro_2": "Deux étapes de configuration supplémentaires sont nécessaires pour activer les services de votre serveur.",
- "postinstall_intro_3": "Vous pouvez obtenir plus d'informations en vous rendant sur la page de documentation appropriée",
- "postinstall_password": "C'est le mot de passe qui vous permettra d'accéder à l'interface d'administration et de contrôler votre serveur. Prenez le temps d'en choisir un bon.",
+ "postinstall_intro_3": "Vous pouvez obtenir plus d'informations en vous rendant sur la page de documentation appropriée",
+ "postinstall_password": "Il s'agit du mot de passe qui permettra d'accéder à l'interface d'administration et de contrôler votre serveur. Prenez le temps d'en choisir un bon.",
"previous": "Précédent",
"protocol": "Protocole",
"restore": "Restaurer",
diff --git a/app/src/main.js b/app/src/main.js
index 24cd8b6e..e0d532f0 100644
--- a/app/src/main.js
+++ b/app/src/main.js
@@ -29,7 +29,7 @@ Vue.use(BootstrapVue, {
// FIXME find or wait for a better way
Vue.prototype.$askConfirmation = function (message, props) {
return this.$bvModal.msgBoxConfirm(message, {
- okTitle: this.$i18n.t('yes'),
+ okTitle: this.$i18n.t('ok'),
cancelTitle: this.$i18n.t('cancel'),
...props
})
diff --git a/app/src/scss/main.scss b/app/src/scss/main.scss
index b9df648f..d1348b14 100644
--- a/app/src/scss/main.scss
+++ b/app/src/scss/main.scss
@@ -47,6 +47,10 @@ body {
}
}
+.font-weight-bold {
+ font-weight: 500 !important;
+}
+
// Bootstrap overrides
.list-group-item {
@@ -89,13 +93,31 @@ body {
}
.card-header {
+ padding: 0.6rem 1rem;
+}
+
+.card {
h1, h2, h3, h4, h5, h6 {
margin: 0;
}
h2 {
- font-size: 1.75rem;
+ font-size: 1.5rem;
}
+
+ h3 {
+ font-size: 1.4rem;
+ }
+
+ h4 {
+ font-size: 1.25rem;
+ }
+
+ h5 {
+ font-size: 1.1rem;
+ }
+
+
}
.card-body {
@@ -129,3 +151,7 @@ body {
padding: 1rem;
background-color: $light;
}
+
+code {
+ background: ghostwhite;
+}
diff --git a/app/src/views/PostInstall.vue b/app/src/views/PostInstall.vue
index 4b6329ba..8edcae6a 100644
--- a/app/src/views/PostInstall.vue
+++ b/app/src/views/PostInstall.vue
@@ -21,7 +21,7 @@
-
+
diff --git a/app/src/views/_partials/WaitingDisplay.vue b/app/src/views/_partials/WaitingDisplay.vue
index e98e0edd..1dc76fb7 100644
--- a/app/src/views/_partials/WaitingDisplay.vue
+++ b/app/src/views/_partials/WaitingDisplay.vue
@@ -59,7 +59,7 @@ export default {