Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
add city names for th
  • Loading branch information
matthewmayer committed Apr 21, 2023
commit 6c954f2d925b910f4a01725bb5e77f1499d21401
1 change: 1 addition & 0 deletions src/locales/th/location/city.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['{{location.city_name}}'];
Comment thread
ST-DDT marked this conversation as resolved.
12 changes: 12 additions & 0 deletions src/locales/th/location/city_name.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export default [
'กรุงเทพมหานคร',
'ปากเกร็ด',
'เมืองสมุทรปราการ',
'เมืองนนทบุรี',
'อุดรธานี',
'ชลบุรี',
'นครศรีธรรมราช',
'เชียงราย',
'พิษณุโลก',
'พัทยา',
];
1 change: 0 additions & 1 deletion src/locales/th/location/city_prefix.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/locales/th/location/city_suffix.ts

This file was deleted.

8 changes: 4 additions & 4 deletions src/locales/th/location/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
*/
import type { LocationDefinitions } from '../../..';
import building_number from './building_number';
import city_prefix from './city_prefix';
import city_suffix from './city_suffix';
import city from './city';
import city_name from './city_name';
import country from './country';
import default_country from './default_country';
import postcode from './postcode';
Expand All @@ -14,8 +14,8 @@ import street_name from './street_name';

const location: LocationDefinitions = {
building_number,
city_prefix,
city_suffix,
city,
city_name,
country,
default_country,
postcode,
Expand Down