Skip to content

Commit 2b32d6e

Browse files
authored
feat(locale): add Welsh (cy) book format definitions (#3846) (#3846)
1 parent 0bc038d commit 2b32d6e

3 files changed

Lines changed: 15 additions & 0 deletions

File tree

src/locales/cy/book/format.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default ['Clawr caled', 'Clawr meddal', 'E-lyfr ', 'Llyfr sain'];

src/locales/cy/book/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* This file is automatically generated.
3+
* Run 'pnpm run generate:locales' to update.
4+
*/
5+
import type { BookDefinition } from '../../..';
6+
import format from './format';
7+
8+
const book: BookDefinition = {
9+
format,
10+
};
11+
12+
export default book;

src/locales/cy/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*/
55
import type { LocaleDefinition } from '../..';
66
import animal from './animal';
7+
import book from './book';
78
import color from './color';
89
import date from './date';
910
import location from './location';
@@ -19,6 +20,7 @@ import vehicle from './vehicle';
1920
*/
2021
const cy: LocaleDefinition = {
2122
animal,
23+
book,
2224
color,
2325
date,
2426
location,

0 commit comments

Comments
 (0)