Skip to content

Commit 14a6718

Browse files
First Initial
0 parents  commit 14a6718

File tree

10 files changed

+1082
-0
lines changed

10 files changed

+1082
-0
lines changed

.editorconfig

+804
Large diffs are not rendered by default.

.gitattributes

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
* text=auto
2+
3+
.github/ export-ignore
4+
5+
.editorconfig export-ignore
6+
.gitattributes export-ignore
7+
.gitignore export-ignore
8+
9+
README.md export-ignore

.github/ISSUE_TEMPLATE/config.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Bug Report
4+
url: https://github.com/Laravel-Lang/common/issues/new?assignees=andrey-helldar&labels=bug%2Clocale-list&template=bug_report.yml&title=%5BBug%5D%3A+&environment-package-name=laravel-lang%2Flocale-list
5+
about: Report a bug or other issue
6+
- name: Feature Request
7+
url: https://github.com/Laravel-Lang/common/issues/new?labels=feature%2Clocale-list&projects=&template=feature_request.yml
8+
about: Propose a new feature
9+
- name: Questions & Other
10+
url: https://github.com/Laravel-Lang/common/discussions
11+
about: 'If you want to ask about something else, use the discussions.'
12+
- name: Laravel Issue
13+
url: https://github.com/laravel/framework/issues
14+
about: 'If you have a question about your Laravel implementation, ask it in your Laravel project.'

.github/dependabot.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
-
4+
package-ecosystem: github-actions
5+
directory: /
6+
schedule:
7+
interval: daily

.github/workflows/code-style.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Code Style
2+
3+
on: [ push, pull_request ]
4+
5+
permissions: write-all
6+
7+
jobs:
8+
style:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
15+
- name: Detect job name
16+
id: detect
17+
run: |
18+
[[ ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} ]] && NAME="Fix" || NAME="Check"
19+
20+
echo "name=${NAME}" >> $GITHUB_OUTPUT
21+
22+
- name: ${{ steps.detect.outputs.name }} the code style
23+
uses: TheDragonCode/codestyler@v3
24+
with:
25+
github_token: ${{ secrets.COMPOSER_TOKEN }}
26+
fix: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
27+
verbose: true

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.idea/
2+
_site/
3+
build/
4+
node_modules/
5+
vendor/
6+
tmp/
7+
8+
.cache
9+
.DS_Store
10+
.env
11+
.php_cs.cache
12+
.phpintel
13+
.temp
14+
15+
*.bak
16+
*.cache
17+
*.clover
18+
*.orig
19+
20+
composer.lock
21+
package-lock.json

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Andrey Helldar, Laravel Lang Team
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Locale List
2+
3+
![laravel-lang locale list](https://preview.dragon-code.pro/laravel-lang/locale-list.svg?brand=laravel&mode=dark)
4+
5+
[![Stable Version][badge_stable]][link_packagist]
6+
[![Unstable Version][badge_unstable]][link_packagist]
7+
[![Total Downloads][badge_downloads]][link_packagist]
8+
[![License][badge_license]][link_license]
9+
10+
## Documentation
11+
12+
See the [documentation](https://laravel-lang.com) for detailed installation and [usage](https://laravel-lang.com/usage/features/locale-list.html) instructions.
13+
14+
## Contributing
15+
16+
Please see [CONTRIBUTING](https://laravel-lang.com/contributing.html) for details.
17+
18+
## License
19+
20+
This package is licensed under the [MIT License][link_license].
21+
22+
23+
[badge_stable]: https://img.shields.io/github/v/release/Laravel-Lang/locale-list?label=stable&style=flat-square
24+
25+
[badge_unstable]: https://img.shields.io/badge/unstable-dev--main-orange?style=flat-square
26+
27+
[badge_downloads]: https://img.shields.io/packagist/dt/Laravel-Lang/locale-list.svg?style=flat-square
28+
29+
[badge_license]: https://img.shields.io/packagist/l/Laravel-Lang/locale-list.svg?style=flat-square
30+
31+
[link_packagist]: https://packagist.org/packages/Laravel-Lang/locale-list
32+
33+
[link_license]: LICENSE

composer.json

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"name": "laravel-lang/locale-list",
3+
"description": "List of localizations available in Laravel Lang projects",
4+
"license": "MIT",
5+
"type": "library",
6+
"keywords": [
7+
"lang",
8+
"languages",
9+
"laravel",
10+
"laravel-lang",
11+
"locale",
12+
"locales",
13+
"localization",
14+
"translation",
15+
"translations"
16+
],
17+
"authors": [
18+
{
19+
"name": "Andrey Helldar",
20+
"email": "[email protected]"
21+
},
22+
{
23+
"name": "Laravel-Lang Team",
24+
"homepage": "https://laravel-lang.com"
25+
}
26+
],
27+
"support": {
28+
"issues": "https://github.com/Laravel-Lang/locale-list/issues",
29+
"source": "https://github.com/Laravel-Lang/locale-list"
30+
},
31+
"require": {
32+
"php": "^8.1",
33+
"archtechx/enums": "^0.3.2"
34+
},
35+
"minimum-stability": "stable",
36+
"prefer-stable": true,
37+
"autoload": {
38+
"psr-4": {
39+
"LaravelLang\\LocaleList\\": "src/"
40+
}
41+
},
42+
"config": {
43+
"allow-plugins": {
44+
"dragon-code/codestyler": true,
45+
"ergebnis/composer-normalize": true,
46+
"friendsofphp/php-cs-fixer": true,
47+
"pestphp/pest-plugin": true,
48+
"php-http/discovery": true,
49+
"symfony/thanks": true
50+
},
51+
"preferred-install": "dist",
52+
"sort-packages": true
53+
}
54+
}

src/Locale.php

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace LaravelLang\LocaleList;
6+
7+
use ArchTech\Enums\Values;
8+
9+
enum Locale: string
10+
{
11+
use Values;
12+
13+
case Afrikaans = 'af';
14+
case Albanian = 'sq';
15+
case Arabic = 'ar';
16+
case Armenian = 'hy';
17+
case Azerbaijani = 'az';
18+
case Basque = 'eu';
19+
case Belarusian = 'be';
20+
case Bengali = 'bn';
21+
case Bosnian = 'bs';
22+
case Bulgarian = 'bg';
23+
case Catalan = 'ca';
24+
case CentralKhmer = 'km';
25+
case Chinese = 'zh_CN';
26+
case ChineseHongKong = 'zh_HK';
27+
case ChineseT = 'zh_TW';
28+
case Croatian = 'hr';
29+
case Czech = 'cs';
30+
case Danish = 'da';
31+
case Dutch = 'nl';
32+
case English = 'en';
33+
case Estonian = 'et';
34+
case Finnish = 'fi';
35+
case French = 'fr';
36+
case Galician = 'gl';
37+
case Georgian = 'ka';
38+
case German = 'de';
39+
case GermanSwitzerland = 'de_CH';
40+
case Greek = 'el';
41+
case Gujarati = 'gu';
42+
case Hebrew = 'he';
43+
case Hindi = 'hi';
44+
case Hungarian = 'hu';
45+
case Icelandic = 'is';
46+
case Indonesian = 'id';
47+
case Italian = 'it';
48+
case Japanese = 'ja';
49+
case Kannada = 'kn';
50+
case Kazakh = 'kk';
51+
case Korean = 'ko';
52+
case Latvian = 'lv';
53+
case Lithuanian = 'lt';
54+
case Macedonian = 'mk';
55+
case Malay = 'ms';
56+
case Marathi = 'mr';
57+
case Mongolian = 'mn';
58+
case Nepali = 'ne';
59+
case NorwegianBokmal = 'nb';
60+
case NorwegianNynorsk = 'nn';
61+
case Occitan = 'oc';
62+
case Pashto = 'ps';
63+
case Persian = 'fa';
64+
case Pilipino = 'fil';
65+
case Polish = 'pl';
66+
case Portuguese = 'pt';
67+
case PortugueseBrazil = 'pt_BR';
68+
case Romanian = 'ro';
69+
case Russian = 'ru';
70+
case Sardinian = 'sc';
71+
case SerbianCyrillic = 'sr_Cyrl';
72+
case SerbianLatin = 'sr_Latn';
73+
case SerbianMontenegrin = 'sr_Latn_ME';
74+
case Sinhala = 'si';
75+
case Slovak = 'sk';
76+
case Slovenian = 'sl';
77+
case Spanish = 'es';
78+
case Swahili = 'sw';
79+
case Swedish = 'sv';
80+
case Tagalog = 'tl';
81+
case Tajik = 'tg';
82+
case Thai = 'th';
83+
case Turkish = 'tr';
84+
case Turkmen = 'tk';
85+
case Uighur = 'ug';
86+
case Ukrainian = 'uk';
87+
case Urdu = 'ur';
88+
case UzbekCyrillic = 'uz_Cyrl';
89+
case UzbekLatin = 'uz_Latn';
90+
case Vietnamese = 'vi';
91+
case Welsh = 'cy';
92+
}

0 commit comments

Comments
 (0)