Skip to content

Commit e5eec0e

Browse files
authoredDec 7, 2024··
refactor(locale): fix various locale data with trailing spaces (#3329)
* fix: fix various locale data with trailing spaces in the case of ar/location/state and hr/location/street_name, this was also a duplicate of a line without a space, so removed. * Delete test file
1 parent c9284dc commit e5eec0e

File tree

14 files changed

+22
-24
lines changed

14 files changed

+22
-24
lines changed
 

‎src/locales/ar/location/state.ts

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ export default [
2020
'عرابة',
2121
'رام الله',
2222
'طولكرم',
23-
'بئر السبع ',
2423
'تونس',
2524
'بن عروس',
2625
'أريانة',

‎src/locales/en/animal/horse.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default [
5050
'Bavarian Warmblood',
5151
'Belgian Half-blood',
5252
'Belgian Horse',
53-
'Belgian Warmblood ',
53+
'Belgian Warmblood',
5454
'Bhutia Horse',
5555
'Black Forest Horse',
5656
'Blazer Horse',

‎src/locales/en/book/title.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export default [
110110
'Nightmare Abbey',
111111
'Nineteen Eighty Four',
112112
'Nostromo',
113-
'Notes from the Underground ',
113+
'Notes from the Underground',
114114
'Of Mice and Men',
115115
'Oliver Twist',
116116
'On the Duty of Civil Disobedience',

‎src/locales/en_IN/location/city_name.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ export default [
196196
'Haldwani-cum-Kathgodam',
197197
'Hansi',
198198
'Hapur',
199-
'Hardoi ',
199+
'Hardoi',
200200
'Hardwar',
201201
'Hazaribag',
202202
'Hindupur',

‎src/locales/fa/lorem/word.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ export default [
5555
'بیشتری را',
5656
'برای',
5757
'رایانه ای',
58-
'علی الخصوص ',
58+
'علی الخصوص',
5959
'طراحان خلاقی',
6060
'و فرهنگ پیشرو',
61-
'در زبان فارسی ',
61+
'در زبان فارسی',
6262
'ایجاد',
6363
'کرد',
6464
'در این صورت',

‎src/locales/fr/animal/horse.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default [
5656
'Baicha',
5757
'Baise',
5858
'Baixadeiro',
59-
'Baixo-Amazona ',
59+
'Baixo-Amazona',
6060
'Bajau',
6161
'Baladi',
6262
'Bale',

‎src/locales/fr/word/preposition.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default [
4040
'à bas de',
4141
'à cause de',
4242
'à côté de',
43-
'à défaut de ',
43+
'à défaut de',
4444
'afin de',
4545
'à force de',
4646
'à la merci',

‎src/locales/hr/location/country.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ export default [
230230
'Tuvalu',
231231
'Uganda',
232232
'Ukrajina',
233-
'Ujedinjeni Arapski Emirati ',
233+
'Ujedinjeni Arapski Emirati',
234234
'Ujedinjeno Kraljevstvo',
235235
'Sjedinjenje Američke Države',
236236
'Urugvaj',

‎src/locales/hr/location/street_name.ts

-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,6 @@ export default [
346346
'Vladimira Vidrića',
347347
'Vlašićka',
348348
'Voćarska',
349-
'Voćarska ',
350349
'Voćinska',
351350
'Vodenička',
352351
'Vranska',

‎src/locales/nl/location/city_prefix.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ export default [
414414
'Dellen',
415415
'Delwijnen',
416416
'Demen',
417-
'Den ',
417+
'Den',
418418
'Deursen',
419419
'Deuteren',
420420
'Deventer',

‎src/locales/pt_BR/color/human.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default [
99
'bordô',
1010
'bronze',
1111
'caramelo',
12-
'castanho ',
12+
'castanho',
1313
'cenoura',
1414
'cinza',
1515
'cobre',

‎src/locales/sr_RS_latin/location/country.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ export default [
230230
'Tuvalu',
231231
'Uganda',
232232
'Ukrajina',
233-
'Ujedinjeni Arapski Emirati ',
233+
'Ujedinjeni Arapski Emirati',
234234
'Ujedinjeno Kraljevstvo',
235235
'Sjedinjenje Američke Države',
236236
'Urugvaj',

‎src/locales/tr/location/street_name.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ export default [
1212
'Sarıkaya Caddesi',
1313
'Yunus Emre Sokak',
1414
'Dar Sokak',
15-
'Fatih Sokak ',
16-
'Harman Yolu Sokak ',
17-
'Ergenekon Sokak ',
15+
'Fatih Sokak',
16+
'Harman Yolu Sokak',
17+
'Ergenekon Sokak',
1818
'Ülkü Sokak',
1919
'Sağlık Sokak',
2020
'Okul Sokak',

‎src/locales/tr/person/last_name.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
'Adıvar',
99
'Akal',
1010
'Akan',
11-
'Akar ',
11+
'Akar',
1212
'Akay',
1313
'Akaydın',
1414
'Akbulut',
@@ -54,9 +54,9 @@ export default {
5454
'Demirbaş',
5555
'Demirel',
5656
'Denkel',
57-
'Dizdar ',
58-
'Doğan ',
59-
'Durak ',
57+
'Dizdar',
58+
'Doğan',
59+
'Durak',
6060
'Durmaz',
6161
'Duygulu',
6262
'Düşenkalkar',
@@ -94,7 +94,7 @@ export default {
9494
'Karaer',
9595
'Kasapoğlu',
9696
'Kavaklıoğlu',
97-
'Kaya ',
97+
'Kaya',
9898
'Keseroğlu',
9999
'Keçeci',
100100
'Kocabıyık',
@@ -116,7 +116,7 @@ export default {
116116
'Köylüoğlu',
117117
'Küçükler',
118118
'Kılıççı',
119-
'Kıraç ',
119+
'Kıraç',
120120
'Limoncuoğlu',
121121
'Mayhoş',
122122
'Menemencioğlu',
@@ -174,7 +174,7 @@ export default {
174174
'Yetkiner',
175175
'Yeşilkaya',
176176
'Yorulmaz',
177-
'Yıldırım ',
177+
'Yıldırım',
178178
'Yıldızoğlu',
179179
'Yılmazer',
180180
'Çamdalı',
@@ -195,7 +195,7 @@ export default {
195195
'Özdoğan',
196196
'Özgörkey',
197197
'Özkara',
198-
'Özkök ',
198+
'Özkök',
199199
'Öztonga',
200200
'Öztuna',
201201
],

0 commit comments

Comments
 (0)
Please sign in to comment.