Skip to content
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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

version: 2
updates:
- package-ecosystem: "Cargo" # See documentation for possible values
- package-ecosystem: "cargo" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
3 changes: 3 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
- name: Check | Formatting (Rust)
run: cargo make format-rust -- --check

- name: Check | Formatting (JSON)
run: npx prettier --check "**/*.json"

- name: Check | Clippy (Host)
run: cargo make clippy-host

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
cargo make doc-guest
mkdir -p ./pages/guest/
cp -r ./target/wasm32-unknown-unknown/doc/guest/* ./pages/guest/
cp -r ./target/wasm32-unknown-unknown/doc/* ./pages/guest/

- name: Build | WASM demonstration (en)
working-directory: ./examples/wasm
Expand Down
6 changes: 5 additions & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@ install_crate = "taplo-cli"
command = "taplo"
args = ["format", "${@}"]

[tasks.format-json]
command = "npx"
args = ["prettier", "--write", "**/*.json", "${@}"]

[tasks.format]
dependencies = ["format-rust", "format-toml"]
dependencies = ["format-rust", "format-toml", "format-json"]

[tasks.check-host]
toolchain = "stable"
Expand Down
44 changes: 44 additions & 0 deletions executables/settings/locales/en.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"Settings": "Settings",
"Graphics error : {}": "Graphics error : {}",
"File system error: {}": "File system error: {}",
"Virtual file system error: {}": "Virtual file system error: {}",
"Failed to create object": "Failed to create object",
"Failed to get child object": "Failed to get child object",
"Failed to set environment variable: {}": "Failed to set environment variable: {}",
"Invalid UTF-8 string: {}": "Invalid UTF-8 string: {}",
"Failed to set task user: {}": "Failed to set task user: {}",
"Failed to get current task identifier: {}": "Failed to get current task identifier: {}",
"Failed to read directory: {}": "Failed to read directory: {}",
"Failed to open standard file: {}": "Failed to open standard file: {}",
"Null character in string: {}": "Null character in string: {}",
"Failed to create UI element": "Failed to create UI element",
"Authentication failed: {}": "Authentication failed: {}",
"Formatting error": "Formatting error",
"General": "General",
"General settings will be implemented here.": "General settings will be implemented here.",
"Password": "Password",
"Current Password": "Current Password",
"New Password": "New Password",
"Confirm Password": "Confirm Password",
"Change Password": "Change Password",
"About": "About",
"Operating System:": "Operating System:",
"Description:": "Description:",
"Developed by:": "Developed by:",
"License:": "License:",
"Version:": "Version:",
"Locale:": "Locale:",
"Memory:": "Memory:",
"Cancel": "Cancel",
"Apply": "Apply",
"None": "None",
"DHCP": "DHCP",
"Static": "Static",
"Configuration Mode": "Configuration Mode",
"MAC Address": "MAC Address",
"Address": "Address",
"Routes": "Routes",
"Gateway": "Gateway",
"DNS Servers": "DNS Servers"
}
151 changes: 0 additions & 151 deletions executables/settings/locales/en/messages.po

This file was deleted.

44 changes: 44 additions & 0 deletions executables/settings/locales/fr.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"Settings": "Réglages",
"Graphics error : {}": "Erreur graphique: {}",
"File system error: {}": "Erreur du système de fichiers: {}",
"Virtual file system error: {}": "Erreur du système de fichiers virtuel: {}",
"Failed to create object": "Échec de la création de l'objet",
"Failed to get child object": "Échec de l'obtention de l'objet enfant",
"Failed to set environment variable: {}": "Échec de la définition de la variable d'environnement: {}",
"Invalid UTF-8 string: {}": "Chaîne UTF-8 invalide : {}",
"Failed to set task user: {}": "Échec de la définition de l'utilisateur de la tâche: {}",
"Failed to get current task identifier: {}": "Échec de l'obtention de l'identifiant de la tâche en cours: {}",
"Failed to read directory: {}": "Échec de la lecture du répertoire: {}",
"Failed to open standard file: {}": "Échec de l'ouverture du fichier standard: {}",
"Null character in string: {}": "Caractère nul dans la chaîne: {}",
"Failed to create UI element": "Échec de la création de l'élément d'interface utilisateur",
"Authentication failed: {}": "Échec de l'authentification: {}",
"Formatting error": "Erreur de formatage",
"General": "Général",
"General settings will be implemented here.": "Les réglages généraux seront implémentés ici.",
"Password": "Mot de passe",
"Current Password": "Mot de passe actuel",
"New Password": "Nouveau mot de passe",
"Confirm Password": "Confirmer le mot de passe",
"Change Password": "Changer le mot de passe",
"About": "À propos",
"Operating System:": "Système d'exploitation :",
"Description:": "Description :",
"Developed by:": "Développé par :",
"License:": "Licence :",
"Version:": "Version :",
"Locale:": "Langue :",
"Memory:": "Mémoire :",
"Cancel": "Annuler",
"Apply": "Appliquer",
"None": "Aucun",
"DHCP": "DHCP",
"Static": "Statique",
"Configuration Mode": "Mode de configuration",
"MAC Address": "Adresse MAC",
"Address": "Adresse",
"Routes": "Routes",
"Gateway": "Passerelle",
"DNS Servers": "Serveurs DNS"
}
Loading