bodrumtaxi 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -1
- package/index.js +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Bodrum Taxi
|
|
2
2
|
|
|
3
3
|
> A lightweight Node.js toolkit for **Bodrum taxi & transfer** information and **estimated** fare calculations across the Bodrum peninsula.
|
|
4
4
|
|
|
@@ -40,6 +40,7 @@ The package is intentionally small (under 100 lines of logic, **zero dependencie
|
|
|
40
40
|
- [Examples](#examples)
|
|
41
41
|
- [Error handling](#error-handling)
|
|
42
42
|
- [About Bodrum](#about-bodrum)
|
|
43
|
+
- [Website languages](#website-languages)
|
|
43
44
|
- [Disclaimer](#disclaimer)
|
|
44
45
|
- [Roadmap](#roadmap)
|
|
45
46
|
- [Contributing](#contributing)
|
|
@@ -416,6 +417,27 @@ Most international visitors arrive at **Milas-Bodrum Airport (IATA: BJV)**, loca
|
|
|
416
417
|
|
|
417
418
|
---
|
|
418
419
|
|
|
420
|
+
## Website languages
|
|
421
|
+
|
|
422
|
+
The companion website at [bodrumtaxi.pages.dev](https://bodrumtaxi.pages.dev) is fully localised into **10 languages**, reflecting the international mix of visitors to the Bodrum peninsula. You can switch languages from the selector in the site header.
|
|
423
|
+
|
|
424
|
+
| Code | Language | Native name |
|
|
425
|
+
| ---- | ---------- | ----------- |
|
|
426
|
+
| 🇬🇧 EN | English | English |
|
|
427
|
+
| 🇹🇷 TR | Turkish | Türkçe |
|
|
428
|
+
| 🇩🇪 DE | German | Deutsch |
|
|
429
|
+
| 🇫🇷 FR | French | Français |
|
|
430
|
+
| 🇪🇸 ES | Spanish | Español |
|
|
431
|
+
| 🇳🇱 NL | Dutch | Nederlands |
|
|
432
|
+
| 🇵🇱 PL | Polish | Polski |
|
|
433
|
+
| 🇷🇴 RO | Romanian | Română |
|
|
434
|
+
| 🇪🇪 ET | Estonian | Eesti |
|
|
435
|
+
| 🇷🇺 RU | Russian | Русский |
|
|
436
|
+
|
|
437
|
+
> **Note on scope:** This npm package itself ships API labels and messages in **English only** — localisation is handled at the website layer. If you are embedding `bodrumtaxi` in a multilingual UI, translate the displayed fields (`from`, `to`, `note`, etc.) in your own presentation code.
|
|
438
|
+
|
|
439
|
+
---
|
|
440
|
+
|
|
419
441
|
## Disclaimer
|
|
420
442
|
|
|
421
443
|
This package is an **independent open-source utility**. The fare formula and distance table are best-effort approximations and **do not constitute a price quote**. Real-world pricing varies with:
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bodrumtaxi",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Bodrum taxi & transfer toolkit — service info, supported locations, and estimated transfer pricing for the Bodrum peninsula.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -14,17 +14,17 @@
|
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
16
|
"bodrum",
|
|
17
|
-
"taxi",
|
|
18
|
-
"transfer",
|
|
19
|
-
"airport",
|
|
20
|
-
"milas",
|
|
21
|
-
"yalikavak",
|
|
22
|
-
"turgutreis",
|
|
23
|
-
"vip",
|
|
24
|
-
"shuttle",
|
|
25
|
-
"fare",
|
|
26
|
-
"estimate",
|
|
27
|
-
"turkey"
|
|
17
|
+
" taxi",
|
|
18
|
+
" transfer",
|
|
19
|
+
" airport",
|
|
20
|
+
" milas",
|
|
21
|
+
" yalikavak",
|
|
22
|
+
" turgutreis",
|
|
23
|
+
" vip",
|
|
24
|
+
" shuttle",
|
|
25
|
+
" fare",
|
|
26
|
+
" estimate",
|
|
27
|
+
" turkey"
|
|
28
28
|
],
|
|
29
29
|
"author": "Taximatic",
|
|
30
30
|
"license": "MIT",
|