Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NAS-131307 / 25.04 / Text does not fit in network widget #10751

Merged
merged 2 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,14 @@
.info-list-item {
display: grid;
font-size: 16px;
grid-template-columns: minmax(50px, 25%) minmax(100px, 75%);
grid-template-columns: minmax(50px, 50%) minmax(100px, 50%);

span:first-child {
font-weight: bold;
text-align: right;
white-space: normal;
word-break: break-word;
word-wrap: break-word;
}
}
}
Expand Down Expand Up @@ -127,8 +130,8 @@
}

.nic-info {
flex: 1 1 30%;
max-width: 30%;
flex: 1 1 35%;
max-width: 35%;

@media (max-width: $breakpoint-xs) {
flex: 1;
Expand All @@ -139,9 +142,9 @@
.nic-chart {
align-items: center;
display: flex;
flex: 1 1 70%;
flex: 1 1 65%;
justify-content: center;
max-width: 70%;
max-width: 65%;

@media (max-width: $breakpoint-xs) {
flex: 1;
Expand Down
4 changes: 2 additions & 2 deletions src/assets/i18n/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,6 @@
"Import Configuration": "",
"Import File": "",
"Improvement": "",
"In": "",
"Incoming / Outgoing network traffic": "",
"Incoming [{networkInterfaceName}]": "",
"Init/Shutdown Script": "",
Expand Down Expand Up @@ -463,7 +462,6 @@
"Other Execute": "",
"Other Read": "",
"Other Write": "",
"Out": "",
"Outbound Network:": "",
"Outgoing [{networkInterfaceName}]": "",
"Parent": "",
Expand Down Expand Up @@ -2779,6 +2777,7 @@
"Import the private key from an existing SSH keypair or select <i>Generate New</i> to create a new SSH key for this credential.": "Importez la clé privée d'une paire de clés SSH existante ou sélectionnez <i>Générer nouveau</i> pour créer une nouvelle clé SSH pour ce credential.",
"Importing Pool": "Importation du volume",
"Importing pools.": "Importation des volumes.",
"In": "Descendant",
"In KiBs or greater. A default of <i>0 KiB</i> means unlimited. ": "En KiBs ou plus. Un défaut de <i>0 KiB</i> signifie illimité ",
"In order for dRAID to overweight its benefits over RaidZ the minimum recommended number of disks per dRAID vdev is 10.": "Pour que dRAID surpasse ses avantages par rapport à RaidZ, le nombre minimum recommandé de disques par vdev dRAID est de 10.",
"In some cases it's possible that the provided key/passphrase is valid but the path where the dataset is supposed to be mounted after being unlocked already exists and is not empty. In this case, unlock operation would fail. This can be overridden by Force flag. When it is set, system will rename the existing directory/file path where the dataset should be mounted resulting in successful unlock of the dataset.": "Dans certains cas, il est possible que la clé/passphrase fournie soit valide mais que le chemin où le dataset est censé être monté après avoir été déverrouillé existe déjà et n'est pas vide. Dans ce cas, l'opération de déverrouillage échouerait. Cela peut être remplacé par le Flag force (indicateur). Lorsqu'il est défini, le système renomme le chemin d'accès au répertoire/fichier existant où le dataset doit être monté, ce qui entraîne un déverrouillage réussi du dataset.",
Expand Down Expand Up @@ -3416,6 +3415,7 @@
"Other node is currently configuring the system dataset.": "Un autre nœud configure actuellement le dataset système.",
"Other node is currently processing a failover event.": "Un autre nœud traite actuellement un événement de basculement.",
"Others": "Autres",
"Out": "Montant",
"Outbound Activity": "Activité sortante",
"Outbound Network": "Réseau sortant",
"Outgoing Mail Server": "Serveur de courrier sortant",
Expand Down
Loading