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

fix french missing translations #892

Merged
merged 4 commits into from
Nov 21, 2024
Merged
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
41 changes: 19 additions & 22 deletions src/gui/src/i18n/translations/fr.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const fr = {
english_name: "French",
code: "fr",
dictionary: {
about: "A propos",
about: "À propos",
account: "Compte",
account_password: "Vérifier le mot de passe du compte",
access_granted_to: "Accès accordé à",
Expand All @@ -42,8 +42,8 @@ const fr = {
change_email: "Changer l'e-mail",
change_language: "Changer de langue",
change_password: "Changer le mot de passe",
change_ui_colors: "Changer les couleurs d'interface",
change_username: "Change le nom d'utilisateur",
change_ui_colors: "Changer les couleurs de l'interface",
change_username: "Changer le nom d'utilisateur",
close: 'Fermer',
close_all_windows: "Fermer toutes les fenêtres",
close_all_windows_confirm: "Êtes-vous sûr de vouloir fermer toutes les fenêtres ?",
Expand Down Expand Up @@ -346,25 +346,22 @@ const fr = {
login2fa_recovery_back: 'Retour',
login2fa_recovery_placeholder: 'XXXXXXXX',

// ***********************************
// Missing translations
// ***********************************
"change": undefined, // In English: "Change"
"clock_visibility": undefined, // In English: "Clock Visibility"
"confirm": undefined, // In English: "Confirm"
"public": undefined, // In English: "Public"
"reading": undefined, // In English: "Reading %strong%"
"writing": undefined, // In English: "Writing %strong%"
"unzipping": undefined, // In English: "Unzipping %strong%"
"sequencing": undefined, // In English: "Sequencing %strong%"
"zipping": undefined, // In English: "Zipping %strong%"
"Editor": undefined, // In English: "Editor"
"Viewer": undefined, // In English: "Viewer"
"People with access": undefined, // In English: "People with access"
"Share With…": undefined, // In English: "Share With…"
"Owner": undefined, // In English: "Owner"
"You can't share with yourself.": undefined, // In English: "You can't share with yourself."
"This user already has access to this item": undefined, // In English: "This user already has access to this item"
"change": 'changer',
"clock_visibility": "visibilité de l'horloge",
"confirm": 'confirmer',
"public": 'public',
"reading": 'lecture %strong%',
"writing": 'écriture %strong%',
"unzipping": 'décomprésser %strong%',
"sequencing": 'séquençage %strong%',
"zipping": 'compresser %strong%',
"Editor": 'Éditeur',
"Viewer": 'Lecteur',
"People with access": 'Utilisateurs avec accès',
"Share With…": 'Partager avec...',
"Owner": 'Propriétaire',
"You can't share with yourself.": 'Vous ne pouvez pas partager avec vous-même',
"This user already has access to this item": 'Cet utilisateur à déja accès à cet élément',
}
};

Expand Down