Skip to content
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

fix(locale): incomplete airline names in zh_CN #2558

Merged
merged 1 commit into from
Nov 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/locales/zh_CN/airline/airline.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export default [
{ name: '爱琴海航空公司', iataCode: 'A3' },
{ name: '俄罗斯航空公司', iataCode: 'SU' },
{ name: '阿根廷航空', iataCode: 'AR' },
{ name: '墨西哥国际航空', iataCode: 'AM' },
{ name: '阿根廷航空公司', iataCode: 'AR' },
{ name: '墨西哥国际航空公司', iataCode: 'AM' },
{ name: '阿尔及利亚航空公司', iataCode: 'AH' },
{ name: '阿拉伯航空公司', iataCode: 'G9' },
{ name: '加拿大航空公司', iataCode: 'AC' },
Expand All @@ -27,7 +27,7 @@ export default [
{ name: '韩亚航空公司', iataCode: 'OZ' },
{ name: '哥伦比亚航空公司', iataCode: 'AV' },
{ name: '巴西蔚蓝航空公司', iataCode: 'AD' },
{ name: '蓝色航空', iataCode: 'ZF' },
{ name: '蓝色航空公司', iataCode: 'ZF' },
{ name: '北京首都航空公司', iataCode: 'JD' },
{ name: '玻利维亚航空公司', iataCode: 'OB' },
{ name: '英国航空公司', iataCode: 'BA' },
Expand Down
Loading