Add French move translation TS classes
This commit is contained in:
parent
8830b55061
commit
fe288ce16c
|
@ -1,11 +1,4 @@
|
|||
interface MoveTranslationEntry {
|
||||
name: string,
|
||||
effect: string
|
||||
}
|
||||
|
||||
interface MoveTranslations {
|
||||
[key: string]: MoveTranslationEntry
|
||||
}
|
||||
import { MoveTranslations } from "#app/plugins/i18n";
|
||||
|
||||
export const move: MoveTranslations = {
|
||||
"pound": {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
export const move = {
|
||||
import { MoveTranslations } from "#app/plugins/i18n";
|
||||
|
||||
export const move: MoveTranslations = {
|
||||
"pound": {
|
||||
name: "Écras'Face",
|
||||
effect: "Le lanceur écrase la cible avec l’un de ses membres, tels qu’une de ses pattes avant ou sa longue queue."
|
||||
|
|
|
@ -6,6 +6,15 @@ import { menu as frMenu } from '../locales/fr/menu';
|
|||
import { move as enMove } from '../locales/en/move';
|
||||
import { move as frMove } from '../locales/fr/move';
|
||||
|
||||
export interface MoveTranslationEntry {
|
||||
name: string,
|
||||
effect: string
|
||||
}
|
||||
|
||||
export interface MoveTranslations {
|
||||
[key: string]: MoveTranslationEntry
|
||||
}
|
||||
|
||||
const DEFAULT_LANGUAGE_OVERRIDE = '';
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue