-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from davy7125/master
French translation update
- Loading branch information
Showing
9 changed files
with
160 additions
and
7 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
src/website/js/locale/locale_files/locale_en/settings/renderer_settings.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
src/website/js/locale/locale_files/locale_fr/synthesizer_controller/effects_config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
export const effectsConfig = { | ||
button: { | ||
title: "Configuration des effets", | ||
description: "Configure les effets de chorus et de réverbération ainsi que le vibrato personnalisé" | ||
}, | ||
reverbConfig: { | ||
title: "Configuration de la réverbération", | ||
description: "Configure l'effet de réverbération", | ||
impulseResponse: { | ||
title: "Response impulsionnelle", | ||
description: "Sélectionnez la réponse impulsionnelle pour la réverbération à convolution" | ||
} | ||
}, | ||
|
||
chorusConfig: { | ||
title: "Configuration du chorus", | ||
description: "Configure l'effet de chorus", | ||
nodesAmount: { | ||
title: "Nombre de lignes de retard", | ||
description: "Nombre de lignes de retard (pour chaque canal stéréo) à utiliser" | ||
}, | ||
defaultDelay: { | ||
title: "Délai (s)", | ||
description: "Durée en secondes de la première ligne de retard" | ||
}, | ||
delayVariation: { | ||
title: "Augmentation du délai (s)", | ||
description: "Durée à ajouter en secondes pour chaque ligne de retard après la première" | ||
}, | ||
stereoDifference: { | ||
title: "Différence stéréo (s)", | ||
description: "Différence du délai entre 2 canaux (ajouté au canal de gauche et soustrait au canal de droite)" | ||
}, | ||
oscillatorFrequency: { | ||
title: "Fréquence LFO (Hz)", | ||
description: "Fréquence de l'oscillateur (LFO) de la première ligne de retard, en Hz. Le LFO contrôle la durée du retard." | ||
}, | ||
frequencyVariation: { | ||
title: "Augmentation LFO (Hz)", | ||
description: "Quantité à ajouter à la fréquence d'oscillation de chaque ligne de retard après la première, en Hz" | ||
}, | ||
oscillatorGain: { | ||
title: "Gain LFO (s)", | ||
description: "Combien l'oscillateur modifie-t-il le délai des lignes de retard, en secondes " | ||
}, | ||
apply: { | ||
title: "Valider", | ||
description: "Sauvegarde les paramètres des effets" | ||
} | ||
} | ||
}; |
68 changes: 68 additions & 0 deletions
68
src/website/js/locale/locale_files/locale_fr/synthesizer_controller/key_modifiers.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
export const keyModifiers = { | ||
button: { | ||
title: "Modificateur de notes", | ||
description: "Permet de modifier des notes, individuellement" | ||
}, | ||
|
||
mainTitle: "Éditeur de modifications de notes", | ||
|
||
detailedDescription: "Ce menu vous permet de modifier une note MIDI d'un canal choisi.\n" | ||
+ "Vous pouvez actuellement modifier sa vélocité et assigner un patch (instrument).\n" + | ||
"Cette fonction est particulièrement utile pour les percussions.", | ||
|
||
prompt: "Que voulez-vous faire ?", | ||
|
||
selectKey: { | ||
prompt: "Appuyez sur la note que vous voulez modifier sur le clavier.", | ||
title: "Sélectionner une note", | ||
change: "Changer la note" | ||
}, | ||
|
||
selectedChannel: { | ||
title: "Canal sélectionné", | ||
description: "Le canal auquel appartient la note à modifier" | ||
}, | ||
|
||
selectedKey: { | ||
title: "Note sélectionnée : {0}", | ||
description: "Vous avez sélectionné la note MIDI {0}" | ||
}, | ||
|
||
modifyKey: { | ||
title: "Modifier une note", | ||
description: "Modifie une note d'un canal choisi", | ||
velocity: { | ||
title: "Forcer la vélocité", | ||
description: "Vélocité à utiliser pour cette note, ignorant la vélocité indiquée par les signaux MIDI. La valeur -1 désactive le forçage" | ||
}, | ||
preset: { | ||
title: "Forcer le preset", | ||
description: "Preset à utiliser pour cette note", | ||
unchanged: "Inchangé" | ||
}, | ||
apply: { | ||
title: "Valider", | ||
description: "Sauvegarder les modificateurs" | ||
} | ||
}, | ||
|
||
removeModification: { | ||
title: "Enlever un modificateur", | ||
description: "Enlever un modificateur s'appliquant à une note pour un canal donné", | ||
|
||
remove: { | ||
title: "Enlever", | ||
description: "Enlever ce modificateur de note" | ||
} | ||
}, | ||
|
||
resetModifications: { | ||
title: "Tout réinitialiser", | ||
description: "Enlever tous les modificateurs de notes pour tous les canaux", | ||
|
||
confirmation: { | ||
title: "Confirmation", | ||
description: "Êtes-vous sûr(e) de bien vouloir supprimer tous les modificateurs ?" | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters