pokerogue/src/locales/fr/status-effect.ts
Lugiad aeb0e0470a
[Localization] Update French dialogues + typos in general (#2724)
* Update dialogue.ts

* Update dialogue.ts

* Update dialogue.ts

* Update dialogue.ts

* Update dialogue.ts

* Update dialogue.ts

* Update dialogue.ts

* Update dialogue.ts

* Update dialogue.ts

* Update dialogue.ts

* Update src/locales/fr/dialogue.ts

Co-authored-by: Dakurei <maxime.palanchini@gmail.com>

* Update src/locales/fr/dialogue.ts

Co-authored-by: Dakurei <maxime.palanchini@gmail.com>

* Update src/locales/fr/dialogue.ts

Co-authored-by: Dakurei <maxime.palanchini@gmail.com>

* Update src/locales/fr/dialogue.ts

Co-authored-by: Dakurei <maxime.palanchini@gmail.com>

* Update src/locales/fr/dialogue.ts

Co-authored-by: Dakurei <maxime.palanchini@gmail.com>

* Update src/locales/fr/dialogue.ts

Co-authored-by: Dakurei <maxime.palanchini@gmail.com>

* Update src/locales/fr/dialogue.ts

Co-authored-by: Dakurei <maxime.palanchini@gmail.com>

* Update src/locales/fr/dialogue.ts

Co-authored-by: Dakurei <maxime.palanchini@gmail.com>

* Update src/locales/fr/dialogue.ts

Co-authored-by: Dakurei <maxime.palanchini@gmail.com>

* Update src/locales/fr/dialogue.ts

Co-authored-by: Dakurei <maxime.palanchini@gmail.com>

* Update dialogue.ts

* Update modifier-type.ts

* Update starter-select-ui-handler.ts

* Update pokemon-info.ts

* Update menu-ui-handler.ts

* Update berry.ts

* Update status-effect.ts

---------

Co-authored-by: Dakurei <maxime.palanchini@gmail.com>
2024-07-04 16:38:19 -04:00

68 lines
2.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { StatusEffectTranslationEntries } from "#app/interfaces/locales.js";
export const statusEffect: StatusEffectTranslationEntries = {
none: {
name: "Aucun",
description: "",
obtain: "",
obtainSource: "",
activation: "",
overlap: "",
heal: ""
},
poison: {
name: "Empoisonnement",
description: "empoisonné",
obtain: "{{pokemonNameWithAffix}} est\nempoisonné !",
obtainSource: "{{pokemonNameWithAffix}} est\nempoisonné par {{sourceText}} !",
activation: "{{pokemonNameWithAffix}}\nsouffre du poison !",
overlap: "{{pokemonNameWithAffix}} est\ndéjà empoisonné.",
heal: "{{pokemonNameWithAffix}} nest\nplus empoisonné !"
},
toxic: {
name: "Empoisonnement grave",
description: "gravement empoisonné",
obtain: "{{pokemonNameWithAffix}} est\ngravement empoisonné !",
obtainSource: "{{pokemonNameWithAffix}} est\ngravement empoisonné par {{sourceText}} !",
activation: "{{pokemonNameWithAffix}}\nsouffre du poison !",
overlap: "{{pokemonNameWithAffix}} est\ndéjà empoisonné.",
heal: "{{pokemonNameWithAffix}} nest\nplus empoisonné !"
},
paralysis: {
name: "Paralysie",
description: "paralysé",
obtain: "{{pokemonNameWithAffix}} est paralysé !\nIl aura du mal à attaquer !",
obtainSource: "{{pokemonNameWithAffix}} est paralysé\npar {{sourceText}} ! Il aura du mal à attaquer !",
activation: "{{pokemonNameWithAffix}} est paralysé !\nIl na pas pu attaquer !",
overlap: "{{pokemonNameWithAffix}} est\ndéjà paralysé.",
heal: "{{pokemonNameWithAffix}} nest\nplus paralysé !"
},
sleep: {
name: "Sommeil",
description: "endormi",
obtain: "{{pokemonNameWithAffix}}\nsest endormi !",
obtainSource: "{{pokemonNameWithAffix}} est\nendormi par {{sourceText}} !",
activation: "{{pokemonNameWithAffix}}\ndort profondément.",
overlap: "{{pokemonNameWithAffix}}\ndort déjà.",
heal: "{{pokemonNameWithAffix}}\nse réveille !"
},
freeze: {
name: "Gelé",
description: "gelé",
obtain: "{{pokemonNameWithAffix}} est\ngelé !",
obtainSource: "{{pokemonNameWithAffix}} est\ngelé par {{sourceText}} !",
activation: "{{pokemonNameWithAffix}} est gelé !\nIl ne peut plus attaquer !",
overlap: "{{pokemonNameWithAffix}} est\ndéjà gelé.",
heal: "{{pokemonNameWithAffix}} nest\nplus gelé !"
},
burn: {
name: "Brulure",
description: "brulé",
obtain: "{{pokemonNameWithAffix}} est\nbrulé !",
obtainSource: "{{pokemonNameWithAffix}} est\nbrulé par {{sourceText}} !",
activation: "{{pokemonNameWithAffix}}\nsouffre de sa brulure !",
overlap: "{{pokemonNameWithAffix}} est\ndéjà brulé.",
heal: "{{pokemonNameWithAffix}} nest\nplus brulé !"
},
} as const;