-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
feat(locale): add ku_kmr_latin locale #3629
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
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
a458df6
feat(locale): add ku_kmr_latin locale
mazyar-kawa02 574ff77
fix(locale): update Kurdish (Kurmanji, Latin) metadata and correct co…
mazyar-kawa02 8622ab1
fix(locale): correct language identifier for Kurdish (Kurmanji, Latin)
mazyar-kawa02 bcc5fee
fix(locale): standardize color names to lowercase and remove duplicat…
mazyar-kawa02 7e6dcc2
feat(locale): add ku_kmr_latin locale character set
mazyar-kawa02 57087e3
Merge branch 'next' into next
matthewmayer 1815412
chore: remove commented file paths from job_type, last_name, and prefix
mazyar-kawa02 ba738ee
Merge branch 'next' into mazyar-kawa02/next
matthewmayer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,25 @@ | ||
| /* | ||
| * This file is automatically generated. | ||
| * Run 'pnpm run generate:locales' to update. | ||
| */ | ||
|
|
||
| import { Faker } from '../faker'; | ||
| import base from '../locales/base'; | ||
| import en from '../locales/en'; | ||
| import ku_kmr_latin from '../locales/ku_kmr_latin'; | ||
|
|
||
| /** | ||
| * The faker instance for the `ku_kmr_latin` locale. | ||
| * | ||
| * - Language: Kurdish (Kurmanji, Latin) | ||
| * - Endonym: کوردیی ناوەڕاست لاتینی | ||
| * | ||
| * This instance uses the following locales internally (in descending precedence): | ||
| * | ||
| * - `ku_kmr_latin` | ||
| * - `en` | ||
| * - `base` | ||
| */ | ||
| export const faker = new Faker({ | ||
| locale: [ku_kmr_latin, en, base], | ||
| }); |
This file contains hidden or 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 hidden or 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,22 @@ | ||
| export default [ | ||
| 'bor', | ||
| 'gola sor', | ||
| 'grî', | ||
| 'kesk', | ||
| 'kesoka tarî', | ||
| 'krem', | ||
| 'melûl', | ||
| 'mor', | ||
| 'pembe', | ||
| 'pirteqalî', | ||
| 'qehweyî', | ||
| 'qermezî', | ||
| 'reş', | ||
| 'sor', | ||
| 'spî', | ||
| 'turuncî', | ||
| 'zer', | ||
| 'zerika zêrîn', | ||
| 'şîn', | ||
| 'şîna asîmanî', | ||
| ]; |
This file contains hidden or 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,12 @@ | ||
| /* | ||
| * This file is automatically generated. | ||
| * Run 'pnpm run generate:locales' to update. | ||
| */ | ||
| import type { ColorDefinition } from '../../..'; | ||
| import human from './human'; | ||
|
|
||
| const color: ColorDefinition = { | ||
| human, | ||
| }; | ||
|
|
||
| export default color; |
This file contains hidden or 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,22 @@ | ||
| /* | ||
| * This file is automatically generated. | ||
| * Run 'pnpm run generate:locales' to update. | ||
| */ | ||
| import type { LocaleDefinition } from '../..'; | ||
| import color from './color'; | ||
| import metadata from './metadata'; | ||
| import person from './person'; | ||
|
|
||
| /** | ||
| * The locale data for the `ku_kmr_latin` locale. | ||
| * | ||
| * - Language: Kurdish (Kurmanji, Latin) | ||
| * - Endonym: کوردیی ناوەڕاست لاتینی | ||
| */ | ||
| const ku_kmr_latin: LocaleDefinition = { | ||
| color, | ||
| metadata, | ||
| person, | ||
| }; | ||
|
|
||
| export default ku_kmr_latin; |
This file contains hidden or 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,13 @@ | ||
| import type { PreBuiltMetadataDefinition } from '../../definitions/metadata'; | ||
|
|
||
| const metadata: PreBuiltMetadataDefinition = { | ||
| title: 'Kurdish (Kurmanji, Latin)', | ||
| code: 'ku_kmr_latin', | ||
| language: 'ku', | ||
| variant: 'kmr_latin', | ||
| endonym: 'کوردیی ناوەڕاست لاتینی', | ||
| dir: 'ltr', | ||
| script: 'Latn', | ||
| }; | ||
|
xDivisionByZerox marked this conversation as resolved.
|
||
|
|
||
| export default metadata; | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.