sgerp-frontend-lib 0.1.1 → 0.1.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 +1 -1
- package/dist/connection-manager.d.ts +48 -0
- package/dist/connection-manager.d.ts.map +1 -0
- package/dist/connection-manager.js +156 -0
- package/dist/index.js +20 -2
- package/dist/locales/locale-server.d.ts +10 -0
- package/dist/locales/locale-server.d.ts.map +1 -0
- package/dist/locales/locale-server.js +49 -0
- package/dist/locales/locale.d.ts +23 -0
- package/dist/locales/locale.d.ts.map +1 -0
- package/dist/locales/locale.js +145 -0
- package/dist/locales/locale_en.d.ts.map +1 -1
- package/dist/locales/locale_en.js +84 -9
- package/dist/locales/locale_ja.d.ts.map +1 -1
- package/dist/locales/locale_ja.js +84 -9
- package/dist/locales/locale_ms.d.ts.map +1 -1
- package/dist/locales/locale_ms.js +84 -9
- package/dist/locales/useLocalization.d.ts +11 -0
- package/dist/locales/useLocalization.d.ts.map +1 -0
- package/dist/locales/useLocalization.js +64 -0
- package/dist/locales.d.ts +228 -0
- package/dist/locales.d.ts.map +1 -0
- package/dist/locales.js +229 -0
- package/dist/sgerp/api/client.d.ts +45 -0
- package/dist/sgerp/api/client.d.ts.map +1 -0
- package/dist/sgerp/api/client.js +141 -0
- package/dist/sgerp/client.js +341 -0
- package/dist/sgerp/collection.d.ts +391 -0
- package/dist/sgerp/collection.d.ts.map +1 -0
- package/dist/sgerp/collection.js +756 -0
- package/dist/sgerp/collections/account/user.d.ts +8 -0
- package/dist/sgerp/collections/account/user.d.ts.map +1 -0
- package/dist/sgerp/collections/account/user.js +10 -0
- package/dist/sgerp/collections/masstransit/building.d.ts +26 -0
- package/dist/sgerp/collections/masstransit/building.d.ts.map +1 -0
- package/dist/sgerp/collections/masstransit/building.js +53 -0
- package/dist/sgerp/collections/masstransit/transitstop.d.ts +15 -0
- package/dist/sgerp/collections/masstransit/transitstop.d.ts.map +1 -0
- package/dist/sgerp/collections/masstransit/transitstop.js +54 -0
- package/dist/sgerp/collections/masstransit/transitstopset.d.ts +10 -0
- package/dist/sgerp/collections/masstransit/transitstopset.d.ts.map +1 -0
- package/dist/sgerp/collections/masstransit/transitstopset.js +10 -0
- package/dist/sgerp/collections/sharing/organization-project.d.ts +11 -0
- package/dist/sgerp/collections/sharing/organization-project.d.ts.map +1 -0
- package/dist/sgerp/collections/sharing/organization-project.js +13 -0
- package/dist/sgerp/collections/sharing/organization.d.ts +11 -0
- package/dist/sgerp/collections/sharing/organization.d.ts.map +1 -0
- package/dist/sgerp/collections/sharing/organization.js +13 -0
- package/dist/sgerp/collections/sharing/pricing.d.ts +18 -0
- package/dist/sgerp/collections/sharing/pricing.d.ts.map +1 -0
- package/dist/sgerp/collections/sharing/pricing.js +23 -0
- package/dist/sgerp/collections/sharing/project-member.d.ts +8 -0
- package/dist/sgerp/collections/sharing/project-member.d.ts.map +1 -0
- package/dist/sgerp/collections/sharing/project-member.js +10 -0
- package/dist/sgerp/collections/sharing/project.d.ts +8 -0
- package/dist/sgerp/collections/sharing/project.d.ts.map +1 -0
- package/dist/sgerp/collections/sharing/project.js +10 -0
- package/dist/sgerp/collections/simulation/booking.d.ts +11 -0
- package/dist/sgerp/collections/simulation/booking.d.ts.map +1 -0
- package/dist/sgerp/collections/simulation/booking.js +13 -0
- package/dist/sgerp/collections/simulation/dataset.d.ts +14 -0
- package/dist/sgerp/collections/simulation/dataset.d.ts.map +1 -0
- package/dist/sgerp/collections/simulation/dataset.js +17 -0
- package/dist/sgerp/collections/simulation/driver.d.ts +12 -0
- package/dist/sgerp/collections/simulation/driver.d.ts.map +1 -0
- package/dist/sgerp/collections/simulation/driver.js +40 -0
- package/dist/sgerp/collections/simulation/geofence.d.ts +24 -0
- package/dist/sgerp/collections/simulation/geofence.d.ts.map +1 -0
- package/dist/sgerp/collections/simulation/geofence.js +66 -0
- package/dist/sgerp/collections/simulation/mapboxtoken.d.ts +18 -0
- package/dist/sgerp/collections/simulation/mapboxtoken.d.ts.map +1 -0
- package/dist/sgerp/collections/simulation/mapboxtoken.js +24 -0
- package/dist/sgerp/collections/simulation/node.js +13 -0
- package/dist/sgerp/collections/simulation/operationslocation.d.ts +28 -0
- package/dist/sgerp/collections/simulation/operationslocation.d.ts.map +1 -0
- package/dist/sgerp/collections/simulation/operationslocation.js +64 -0
- package/dist/sgerp/collections/simulation/operationslocationgroup.d.ts +12 -0
- package/dist/sgerp/collections/simulation/operationslocationgroup.d.ts.map +1 -0
- package/dist/sgerp/collections/simulation/operationslocationgroup.js +24 -0
- package/dist/sgerp/collections/simulation/routingprofile.d.ts +10 -0
- package/dist/sgerp/collections/simulation/routingprofile.d.ts.map +1 -0
- package/dist/sgerp/collections/simulation/routingprofile.js +10 -0
- package/dist/sgerp/collections/simulation/simulation.d.ts +12 -0
- package/dist/sgerp/collections/simulation/simulation.d.ts.map +1 -0
- package/dist/sgerp/collections/simulation/simulation.js +35 -0
- package/dist/sgerp/collections/simulation/simulationprocessor.d.ts +19 -0
- package/dist/sgerp/collections/simulation/simulationprocessor.d.ts.map +1 -0
- package/dist/sgerp/collections/simulation/simulationprocessor.js +27 -0
- package/dist/sgerp/collections/simulation/vehicle.js +13 -0
- package/dist/sgerp/collections/simulation/vehicletype.d.ts +11 -0
- package/dist/sgerp/collections/simulation/vehicletype.d.ts.map +1 -0
- package/dist/sgerp/collections/simulation/vehicletype.js +13 -0
- package/dist/sgerp/collections/sms_notify/smsscheduled.d.ts +11 -0
- package/dist/sgerp/collections/sms_notify/smsscheduled.d.ts.map +1 -0
- package/dist/sgerp/collections/sms_notify/smsscheduled.js +13 -0
- package/dist/sgerp/collections/transportation/passenger.d.ts +8 -0
- package/dist/sgerp/collections/transportation/passenger.d.ts.map +1 -0
- package/dist/sgerp/collections/transportation/passenger.js +10 -0
- package/dist/sgerp/collections/transportation/ticket.d.ts +11 -0
- package/dist/sgerp/collections/transportation/ticket.d.ts.map +1 -0
- package/dist/sgerp/collections/transportation/ticket.js +13 -0
- package/dist/sgerp/collections/transportation/transaction.d.ts +11 -0
- package/dist/sgerp/collections/transportation/transaction.d.ts.map +1 -0
- package/dist/sgerp/collections/transportation/transaction.js +13 -0
- package/dist/sgerp/constants/bulkoperations-enums.d.ts +71 -0
- package/dist/sgerp/constants/bulkoperations-enums.d.ts.map +1 -0
- package/dist/sgerp/constants/bulkoperations-enums.js +99 -0
- package/dist/sgerp/constants/messages-enums.d.ts +47 -0
- package/dist/sgerp/constants/messages-enums.d.ts.map +1 -0
- package/dist/sgerp/constants/messages-enums.js +67 -0
- package/dist/sgerp/constants/scheduling-enums.d.ts +42 -0
- package/dist/sgerp/constants/scheduling-enums.d.ts.map +1 -0
- package/dist/sgerp/constants/scheduling-enums.js +61 -0
- package/dist/sgerp/constants/simulation-enums.d.ts +93 -0
- package/dist/sgerp/constants/simulation-enums.d.ts.map +1 -0
- package/dist/sgerp/constants/simulation-enums.js +147 -0
- package/dist/sgerp/constants/solver-strategies.d.ts +75 -0
- package/dist/sgerp/constants/solver-strategies.d.ts.map +1 -0
- package/dist/sgerp/constants/solver-strategies.js +26 -0
- package/dist/sgerp/context/sgerp-context.js +134 -0
- package/dist/sgerp/domains.d.ts +47 -0
- package/dist/sgerp/domains.d.ts.map +1 -0
- package/dist/sgerp/domains.js +45 -0
- package/dist/sgerp/hooks/use-collection.js +122 -0
- package/dist/sgerp/hooks/use-live-updates.js +16 -13
- package/dist/sgerp/index.js +153 -0
- package/dist/sgerp/map-states/operations-location-state.d.ts +12 -0
- package/dist/sgerp/map-states/operations-location-state.d.ts.map +1 -0
- package/dist/sgerp/map-states/operations-location-state.js +86 -0
- package/dist/sgerp/routing/index.d.ts +51 -0
- package/dist/sgerp/routing/index.d.ts.map +1 -0
- package/dist/sgerp/routing/index.js +373 -0
- package/dist/sgerp/simulation-logic/fetchUtils.js +226 -0
- package/dist/sgerp/simulation-logic/index.js +27 -7
- package/dist/sgerp/simulation-logic/manualEditUtils.js +69 -0
- package/dist/sgerp/simulation-logic/mapUtils.js +58 -0
- package/dist/sgerp/simulation-logic/optimisticUpdateUtils.js +8 -5
- package/dist/sgerp/simulation-logic/referenceUtils.js +110 -0
- package/dist/sgerp/simulation-logic/routeCalculationUtils.js +43 -0
- package/dist/sgerp/simulation-logic/timeShiftUtils.js +63 -0
- package/dist/sgerp/types/account/user.d.ts +38 -0
- package/dist/sgerp/types/account/user.d.ts.map +1 -0
- package/dist/sgerp/types/account/user.js +2 -0
- package/dist/sgerp/types/bulkoperations/index.d.ts +37 -0
- package/dist/sgerp/types/bulkoperations/index.d.ts.map +1 -0
- package/dist/sgerp/types/bulkoperations/index.js +35 -0
- package/dist/sgerp/types/bulkoperations/vehicle-upload.d.ts +335 -0
- package/dist/sgerp/types/bulkoperations/vehicle-upload.d.ts.map +1 -0
- package/dist/sgerp/types/bulkoperations/vehicle-upload.js +49 -0
- package/dist/sgerp/types/config.d.ts +25 -0
- package/dist/sgerp/types/config.d.ts.map +1 -0
- package/dist/sgerp/types/config.js +2 -0
- package/dist/sgerp/types/geojson.d.ts +45 -0
- package/dist/sgerp/types/geojson.d.ts.map +1 -0
- package/dist/sgerp/types/geojson.js +6 -0
- package/dist/sgerp/types/map.d.ts +24 -0
- package/dist/sgerp/types/map.d.ts.map +1 -0
- package/dist/sgerp/types/map.js +2 -0
- package/dist/sgerp/types/masstransit/building.d.ts +24 -0
- package/dist/sgerp/types/masstransit/building.d.ts.map +1 -0
- package/dist/sgerp/types/masstransit/building.js +2 -0
- package/dist/sgerp/types/masstransit/transitstop.d.ts +35 -0
- package/dist/sgerp/types/masstransit/transitstop.d.ts.map +1 -0
- package/dist/sgerp/types/masstransit/transitstop.js +2 -0
- package/dist/sgerp/types/masstransit/transitstopset.d.ts +14 -0
- package/dist/sgerp/types/masstransit/transitstopset.d.ts.map +1 -0
- package/dist/sgerp/types/masstransit/transitstopset.js +2 -0
- package/dist/sgerp/types/sharing/organization-project.d.ts +14 -0
- package/dist/sgerp/types/sharing/organization-project.d.ts.map +1 -0
- package/dist/sgerp/types/sharing/organization-project.js +2 -0
- package/dist/sgerp/types/sharing/organization.d.ts +14 -0
- package/dist/sgerp/types/sharing/organization.d.ts.map +1 -0
- package/dist/sgerp/types/sharing/organization.js +2 -0
- package/dist/sgerp/types/sharing/pricing.d.ts +98 -0
- package/dist/sgerp/types/sharing/pricing.d.ts.map +1 -0
- package/dist/sgerp/types/sharing/pricing.js +2 -0
- package/dist/sgerp/types/sharing/project-member.d.ts +15 -0
- package/dist/sgerp/types/sharing/project-member.d.ts.map +1 -0
- package/dist/sgerp/types/sharing/project-member.js +2 -0
- package/dist/sgerp/types/sharing/project.d.ts +16 -0
- package/dist/sgerp/types/sharing/project.d.ts.map +1 -0
- package/dist/sgerp/types/sharing/project.js +2 -0
- package/dist/sgerp/types/simulation/booking.d.ts +128 -0
- package/dist/sgerp/types/simulation/booking.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/booking.js +24 -0
- package/dist/sgerp/types/simulation/calculation-params.d.ts +20 -0
- package/dist/sgerp/types/simulation/calculation-params.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/calculation-params.js +2 -0
- package/dist/sgerp/types/simulation/dataset.d.ts +16 -0
- package/dist/sgerp/types/simulation/dataset.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/dataset.js +2 -0
- package/dist/sgerp/types/simulation/driver.d.ts +19 -0
- package/dist/sgerp/types/simulation/driver.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/driver.js +2 -0
- package/dist/sgerp/types/simulation/geofence.d.ts +19 -0
- package/dist/sgerp/types/simulation/geofence.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/geofence.js +2 -0
- package/dist/sgerp/types/simulation/logistics-api-settings.d.ts +98 -0
- package/dist/sgerp/types/simulation/logistics-api-settings.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/logistics-api-settings.js +104 -0
- package/dist/sgerp/types/simulation/mapboxtoken.d.ts +13 -0
- package/dist/sgerp/types/simulation/mapboxtoken.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/mapboxtoken.js +2 -0
- package/dist/sgerp/types/simulation/node.js +5 -2
- package/dist/sgerp/types/simulation/operationslocation.d.ts +40 -0
- package/dist/sgerp/types/simulation/operationslocation.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/operationslocation.js +2 -0
- package/dist/sgerp/types/simulation/operationslocationgroup.d.ts +11 -0
- package/dist/sgerp/types/simulation/operationslocationgroup.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/operationslocationgroup.js +2 -0
- package/dist/sgerp/types/simulation/pricing.d.ts +171 -0
- package/dist/sgerp/types/simulation/pricing.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/pricing.js +2 -0
- package/dist/sgerp/types/simulation/route-cost-modification.d.ts +35 -0
- package/dist/sgerp/types/simulation/route-cost-modification.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/route-cost-modification.js +5 -0
- package/dist/sgerp/types/simulation/routing-engine-settings.d.ts +42 -0
- package/dist/sgerp/types/simulation/routing-engine-settings.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/routing-engine-settings.js +35 -0
- package/dist/sgerp/types/simulation/routingprofile.d.ts +32 -0
- package/dist/sgerp/types/simulation/routingprofile.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/routingprofile.js +37 -0
- package/dist/sgerp/types/simulation/simulation.d.ts +120 -0
- package/dist/sgerp/types/simulation/simulation.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/simulation.js +2 -0
- package/dist/sgerp/types/simulation/simulationprocessor.d.ts +31 -0
- package/dist/sgerp/types/simulation/simulationprocessor.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/simulationprocessor.js +2 -0
- package/dist/sgerp/types/simulation/vehicle.js +2 -1
- package/dist/sgerp/types/simulation/vehicletype.d.ts +33 -0
- package/dist/sgerp/types/simulation/vehicletype.d.ts.map +1 -0
- package/dist/sgerp/types/simulation/vehicletype.js +2 -0
- package/dist/sgerp/types/sms_notify/smsscheduled.d.ts +36 -0
- package/dist/sgerp/types/sms_notify/smsscheduled.d.ts.map +1 -0
- package/dist/sgerp/types/sms_notify/smsscheduled.js +6 -0
- package/dist/sgerp/types/transportation/passenger.d.ts +49 -0
- package/dist/sgerp/types/transportation/passenger.d.ts.map +1 -0
- package/dist/sgerp/types/transportation/passenger.js +13 -0
- package/dist/sgerp/types/transportation/ticket.d.ts +31 -0
- package/dist/sgerp/types/transportation/ticket.d.ts.map +1 -0
- package/dist/sgerp/types/transportation/ticket.js +2 -0
- package/dist/sgerp/types/transportation/transaction.d.ts +71 -0
- package/dist/sgerp/types/transportation/transaction.d.ts.map +1 -0
- package/dist/sgerp/types/transportation/transaction.js +54 -0
- package/dist/sgerp/utils/bookingPayload.d.ts +80 -0
- package/dist/sgerp/utils/bookingPayload.d.ts.map +1 -0
- package/dist/sgerp/utils/bookingPayload.js +44 -0
- package/dist/sgerp/utils/color.d.ts +30 -0
- package/dist/sgerp/utils/color.d.ts.map +1 -0
- package/dist/sgerp/utils/color.js +117 -0
- package/dist/sgerp/utils/enum-helpers.d.ts +41 -0
- package/dist/sgerp/utils/enum-helpers.d.ts.map +1 -0
- package/dist/sgerp/utils/enum-helpers.js +54 -0
- package/dist/sgerp/utils/routeUtils.js +171 -0
- package/package.json +1 -1
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.translations = void 0;
|
|
4
|
+
exports.translations = {
|
|
2
5
|
// SGERP Login
|
|
3
6
|
"sgerp_login.username": "ユーザー名",
|
|
4
7
|
"sgerp_login.password": "パスワード",
|
|
@@ -137,17 +140,82 @@ export const translations = {
|
|
|
137
140
|
"interactive_demo.loading": "読み込み中...",
|
|
138
141
|
"interactive_demo.code_equivalent": "同等のコード",
|
|
139
142
|
// Homepage
|
|
140
|
-
"homepage.
|
|
141
|
-
"homepage.
|
|
143
|
+
"homepage.badge": "物流・TMS向けフロントエンドコンポーネント",
|
|
144
|
+
"homepage.title": "モビリティ・物流アプリを高速構築",
|
|
145
|
+
"homepage.subtitle": "swatmobility.comサービスに対応した本番環境対応のReactコンポーネント",
|
|
146
|
+
"homepage.description": "モビリティ・物流プラットフォーム向けのShadcnスタイルの再利用可能なコンポーネント。完全にカスタマイズ可能で、任意のReactアプリにドロップし、デザインシステムに適応。人員輸送と物流アプリケーションに最適。",
|
|
142
147
|
"homepage.try_it_out": "試してみる",
|
|
143
148
|
"homepage.get_started": "はじめに",
|
|
144
149
|
"homepage.documentation": "ドキュメント",
|
|
145
|
-
|
|
146
|
-
"homepage.
|
|
147
|
-
"homepage.
|
|
148
|
-
"homepage.
|
|
149
|
-
"homepage.
|
|
150
|
-
|
|
150
|
+
// Stats
|
|
151
|
+
"homepage.stat_components": "コンポーネント",
|
|
152
|
+
"homepage.stat_tables": "データテーブル",
|
|
153
|
+
"homepage.stat_pages": "フルページ",
|
|
154
|
+
"homepage.stat_typescript": "TypeScript",
|
|
155
|
+
// Features Section
|
|
156
|
+
"homepage.features_title": "モビリティ・物流アプリに必要なすべて",
|
|
157
|
+
"homepage.features_subtitle": "モビリティ・配送管理のためのswatmobility.comインフラストラクチャに支えられたフロントエンドコンポーネント",
|
|
158
|
+
"homepage.feature_transport_title": "人員輸送",
|
|
159
|
+
"homepage.feature_transport_desc": "予約管理、ライドシェアリング対応、ドライバー割り当て、リアルタイム追跡を備えた完全な旅客輸送ソリューション。効率的な人員移動を実現。",
|
|
160
|
+
"homepage.feature_logistics_title": "物流",
|
|
161
|
+
"homepage.feature_logistics_desc": "配送管理とサプライチェーン業務のための18の事前構築テーブルコンポーネント、10以上の完全なページ、専門的なエディター。shadcn CLIでインストールしてカスタマイズ。",
|
|
162
|
+
"homepage.feature_backend_title": "バックエンド駆動",
|
|
163
|
+
"homepage.feature_backend_desc": "すべてのコンポーネントは本番グレードの物流APIに接続します。自動認証と型安全性でライブデータを取得。",
|
|
164
|
+
"homepage.feature_maps_title": "インタラクティブマップ",
|
|
165
|
+
"homepage.feature_maps_desc": "Mapbox GLを使用したルート可視化。インタラクティブマップ上に車両ルート、経由地点、ライブ追跡を表示。",
|
|
166
|
+
"homepage.feature_routing_title": "ルートプランニング",
|
|
167
|
+
"homepage.feature_routing_desc": "自動計画アルゴリズムまたは手動編集で配車問題を解決。自動計画で最適ルートを作成し、実際の制約に合わせて手動で微調整。",
|
|
168
|
+
"homepage.feature_customizable_title": "Shadcnスタイルコンポーネント",
|
|
169
|
+
"homepage.feature_customizable_desc": "任意のReactアプリにドロップできる完全カスタマイズ可能なコンポーネント。Radix UIプリミティブとTailwind CSSで構築。コピー、ペースト、そしてデザインシステムに適応。",
|
|
170
|
+
// Use Cases Section
|
|
171
|
+
"homepage.usecases_title": "実世界の物流向けに構築",
|
|
172
|
+
"homepage.usecases_subtitle": "車両運用、配送管理、ルート最適化で輸送会社から信頼されています",
|
|
173
|
+
"homepage.usecase_fleet_title": "車両管理",
|
|
174
|
+
"homepage.usecase_fleet_desc": "車両を追跡し、ドライバーを割り当て、サービススケジュールを監視し、複数のプロジェクト間で車両利用を最適化。",
|
|
175
|
+
"homepage.usecase_rideshare_title": "ライドシェア&カープール",
|
|
176
|
+
"homepage.usecase_rideshare_desc": "乗客予約の管理、ライダーのマッチング、ルート計算、JITシフトベースの輸送サービスの処理。",
|
|
177
|
+
"homepage.usecase_delivery_title": "ラストマイル配送",
|
|
178
|
+
"homepage.usecase_delivery_desc": "配送ルートの最適化、荷物の追跡、ノードの管理、効率的なラストマイル物流のためのドライバー調整。",
|
|
179
|
+
"homepage.usecase_routing_title": "ルート最適化",
|
|
180
|
+
"homepage.usecase_routing_desc": "swatmobilityルート最適化APIを使用した最適ルートの計算、経由地点の可視化、移動時間の推定、運用コストの削減。",
|
|
181
|
+
// Showcase Section
|
|
182
|
+
"homepage.showcase_title": "実際の動作を見る",
|
|
183
|
+
"homepage.showcase_subtitle": "モビリティ・物流管理のあらゆる側面に対応した本番環境対応のコンポーネント",
|
|
184
|
+
"homepage.hero_feature_title": "完全なルート計画インターフェース — 開発不要",
|
|
185
|
+
"homepage.hero_feature_desc": "インタラクティブマップ、車両管理、タイムラインビューを備えた完全機能のルート計画インターフェースをドロップイン。swatmobility開発者によるバックエンド接続済み — インストールして使用またはカスタマイズするだけ。",
|
|
186
|
+
"homepage.showcase_services": "サービス管理",
|
|
187
|
+
"homepage.showcase_services_desc": "フィルタリングとスケジューリングを備えた輸送サービス管理の完全なページ",
|
|
188
|
+
"homepage.showcase_drivers": "ドライバー管理",
|
|
189
|
+
"homepage.showcase_drivers_desc": "ドライバーの可用性、割り当て、パフォーマンス指標を追跡",
|
|
190
|
+
"homepage.showcase_passengers": "乗客予約",
|
|
191
|
+
"homepage.showcase_passengers_desc": "乗客情報、予約、取引履歴を管理",
|
|
192
|
+
"homepage.showcase_timeline": "タイムラインビュー",
|
|
193
|
+
"homepage.showcase_timeline_desc": "車両スケジュールとルートを視覚化するガント形式のタイムライン",
|
|
194
|
+
"homepage.showcase_notifications": "通知",
|
|
195
|
+
"homepage.showcase_notifications_desc": "乗客とドライバー向けのSMSとプッシュ通知をスケジュール",
|
|
196
|
+
"homepage.showcase_trackplayer": "ルート再生",
|
|
197
|
+
"homepage.showcase_trackplayer_desc": "速度制御と経由地点追跡による履歴ルートの再生",
|
|
198
|
+
// CTA Section
|
|
199
|
+
"homepage.cta_title": "今日から構築を開始",
|
|
200
|
+
"homepage.cta_subtitle": "shadcn CLIでコンポーネントをインストールし、SGERPバックエンドに接続。完全なTypeScriptサポート付き。",
|
|
201
|
+
// Footer
|
|
202
|
+
"footer.about": "について",
|
|
203
|
+
"footer.about_desc": "SWAT Mobilityが提供する、モビリティ・物流プラットフォーム向けの本番環境対応Reactコンポーネント。",
|
|
204
|
+
"footer.documentation": "ドキュメント",
|
|
205
|
+
"footer.getting_started": "はじめに",
|
|
206
|
+
"footer.api_reference": "APIリファレンス",
|
|
207
|
+
"footer.components": "コンポーネント",
|
|
208
|
+
"footer.pages": "ページ",
|
|
209
|
+
"footer.resources": "リソース",
|
|
210
|
+
"footer.try_demo": "デモを試す",
|
|
211
|
+
"footer.github": "GitHub",
|
|
212
|
+
"footer.npm_package": "NPMパッケージ",
|
|
213
|
+
"footer.connect": "コネクト",
|
|
214
|
+
"footer.swat_website": "SWAT Mobility",
|
|
215
|
+
"footer.contact": "お問い合わせ",
|
|
216
|
+
"footer.about_us": "会社概要",
|
|
217
|
+
"footer.copyright": "SWAT Mobility. All rights reserved.",
|
|
218
|
+
"footer.terms": "利用規約",
|
|
151
219
|
// PT App
|
|
152
220
|
"ptapp.title": "人員輸送管理",
|
|
153
221
|
"ptapp.login_required": "人員輸送管理にアクセスするにはログインしてください",
|
|
@@ -1932,4 +2000,11 @@ export const translations = {
|
|
|
1932
2000
|
"example.map.feature_style": "ドロップダウン(左上)でマップスタイルを変更",
|
|
1933
2001
|
"example.map.feature_zoom": "マウスまたはタッチでズームとパン",
|
|
1934
2002
|
"example.map.feature_updates": "コレクションが変更されると自動的にデータが更新されます",
|
|
2003
|
+
// Table Examples
|
|
2004
|
+
"examples.live_example": "ライブ例",
|
|
2005
|
+
"examples.integrated_editor_recommended": "統合エディター(推奨)",
|
|
2006
|
+
"examples.integrated_editor_desc": "enableEditor={true} のみで編集を有効にします。テーブルはドロワーとエディターを自動的に処理します。",
|
|
2007
|
+
"examples.custom_onedit_handler": "カスタム onEdit ハンドラー",
|
|
2008
|
+
"examples.custom_onedit_desc": "高度なユースケースでは、独自の onEdit ハンドラーを提供して完全に制御できます。",
|
|
2009
|
+
"examples.see_code_above": "カスタム実装については上記のコード例を参照してください",
|
|
1935
2010
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"locale_ms.d.ts","sourceRoot":"","sources":["../../sgerplib/locales/locale_ms.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"locale_ms.d.ts","sourceRoot":"","sources":["../../sgerplib/locales/locale_ms.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAykE/C,CAAC"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.translations = void 0;
|
|
4
|
+
exports.translations = {
|
|
2
5
|
// SGERP Login
|
|
3
6
|
"sgerp_login.username": "Nama Pengguna",
|
|
4
7
|
"sgerp_login.password": "Kata Laluan",
|
|
@@ -137,17 +140,82 @@ export const translations = {
|
|
|
137
140
|
"interactive_demo.loading": "Memuatkan...",
|
|
138
141
|
"interactive_demo.code_equivalent": "Kod Setara",
|
|
139
142
|
// Homepage
|
|
140
|
-
"homepage.
|
|
141
|
-
"homepage.
|
|
143
|
+
"homepage.badge": "Komponen Frontend untuk Logistik & TMS",
|
|
144
|
+
"homepage.title": "Bina Aplikasi Mobiliti dan Logistik dengan Pantas",
|
|
145
|
+
"homepage.subtitle": "Komponen React siap produksi yang disokong oleh perkhidmatan swatmobility.com",
|
|
146
|
+
"homepage.description": "Komponen boleh guna semula gaya Shadcn untuk platform mobiliti dan logistik. Boleh disesuaikan sepenuhnya, masukkan ke mana-mana aplikasi React, dan sesuaikan dengan sistem reka bentuk anda. Sesuai untuk aplikasi pengangkutan penumpang dan logistik.",
|
|
142
147
|
"homepage.try_it_out": "Cuba Sekarang",
|
|
143
148
|
"homepage.get_started": "Bermula",
|
|
144
149
|
"homepage.documentation": "Dokumentasi",
|
|
145
|
-
|
|
146
|
-
"homepage.
|
|
147
|
-
"homepage.
|
|
148
|
-
"homepage.
|
|
149
|
-
"homepage.
|
|
150
|
-
|
|
150
|
+
// Stats
|
|
151
|
+
"homepage.stat_components": "Komponen",
|
|
152
|
+
"homepage.stat_tables": "Jadual Data",
|
|
153
|
+
"homepage.stat_pages": "Halaman Penuh",
|
|
154
|
+
"homepage.stat_typescript": "TypeScript",
|
|
155
|
+
// Features Section
|
|
156
|
+
"homepage.features_title": "Semua yang Anda Perlukan untuk Aplikasi Mobiliti & Logistik",
|
|
157
|
+
"homepage.features_subtitle": "Komponen frontend yang disokong oleh infrastruktur swatmobility.com untuk pengurusan mobiliti dan penghantaran",
|
|
158
|
+
"homepage.feature_transport_title": "Pengangkutan Penumpang",
|
|
159
|
+
"homepage.feature_transport_desc": "Penyelesaian pengangkutan penumpang lengkap dengan pengurusan tempahan, sokongan perkongsian perjalanan, penugasan pemandu, dan penjejakan masa nyata untuk pergerakan orang yang cekap.",
|
|
160
|
+
"homepage.feature_logistics_title": "Logistik",
|
|
161
|
+
"homepage.feature_logistics_desc": "18 komponen jadual pra-bina, 10+ halaman lengkap, dan editor khusus untuk pengurusan penghantaran dan operasi rantaian bekalan. Pasang dengan CLI shadcn dan sesuaikan.",
|
|
162
|
+
"homepage.feature_backend_title": "Dikuasakan Backend",
|
|
163
|
+
"homepage.feature_backend_desc": "Semua komponen bersambung ke API logistik gred produksi. Dapatkan data langsung dengan pengesahan automatik dan keselamatan jenis.",
|
|
164
|
+
"homepage.feature_maps_title": "Peta Interaktif",
|
|
165
|
+
"homepage.feature_maps_desc": "Visualisasi laluan dengan Mapbox GL. Paparkan laluan kenderaan, titik laluan, dan penjejakan langsung pada peta interaktif.",
|
|
166
|
+
"homepage.feature_routing_title": "Perancangan Laluan",
|
|
167
|
+
"homepage.feature_routing_desc": "Selesaikan masalah penghalaan kenderaan dengan algoritma perancangan automatik atau penyuntingan manual. Cipta laluan optimum dengan autoplan, kemudian laraskan secara manual untuk kekangan dunia sebenar.",
|
|
168
|
+
"homepage.feature_customizable_title": "Komponen Gaya Shadcn",
|
|
169
|
+
"homepage.feature_customizable_desc": "Komponen boleh disesuaikan sepenuhnya yang boleh dimasukkan ke mana-mana aplikasi React. Dibina dengan primitif Radix UI dan Tailwind CSS. Salin, tampal, dan sesuaikan dengan sistem reka bentuk anda.",
|
|
170
|
+
// Use Cases Section
|
|
171
|
+
"homepage.usecases_title": "Dibina untuk Logistik Dunia Sebenar",
|
|
172
|
+
"homepage.usecases_subtitle": "Dipercayai oleh syarikat pengangkutan untuk operasi kenderaan, pengurusan penghantaran, dan pengoptimuman laluan",
|
|
173
|
+
"homepage.usecase_fleet_title": "Pengurusan Kenderaan",
|
|
174
|
+
"homepage.usecase_fleet_desc": "Jejak kenderaan, tetapkan pemandu, pantau jadual perkhidmatan, dan optimumkan penggunaan kenderaan merentasi pelbagai projek.",
|
|
175
|
+
"homepage.usecase_rideshare_title": "Perkongsian Perjalanan & Carpooling",
|
|
176
|
+
"homepage.usecase_rideshare_desc": "Urus tempahan penumpang, padankan penumpang, kira laluan, dan kendalikan perkhidmatan pengangkutan berasaskan syif JIT.",
|
|
177
|
+
"homepage.usecase_delivery_title": "Penghantaran Batu Terakhir",
|
|
178
|
+
"homepage.usecase_delivery_desc": "Optimumkan laluan penghantaran, jejak pakej, urus nod, dan koordinasi pemandu untuk logistik batu terakhir yang cekap.",
|
|
179
|
+
"homepage.usecase_routing_title": "Pengoptimuman Laluan",
|
|
180
|
+
"homepage.usecase_routing_desc": "Kira laluan optimum menggunakan API pengoptimuman laluan swatmobility, visualkan titik laluan, anggarkan masa perjalanan, dan kurangkan kos operasi.",
|
|
181
|
+
// Showcase Section
|
|
182
|
+
"homepage.showcase_title": "Lihat Dalam Tindakan",
|
|
183
|
+
"homepage.showcase_subtitle": "Komponen siap produksi untuk setiap aspek pengurusan mobiliti dan logistik",
|
|
184
|
+
"homepage.hero_feature_title": "Antara Muka Perancangan Laluan Lengkap — Tanpa Pembangunan",
|
|
185
|
+
"homepage.hero_feature_desc": "Masukkan antara muka perancangan laluan berfitur penuh dengan peta interaktif, pengurusan kenderaan, dan paparan garis masa. Disambungkan ke backend oleh pembangun swatmobility — hanya pasang dan gunakan atau sesuaikan.",
|
|
186
|
+
"homepage.showcase_services": "Pengurusan Perkhidmatan",
|
|
187
|
+
"homepage.showcase_services_desc": "Halaman lengkap untuk mengurus perkhidmatan pengangkutan dengan penapisan dan penjadualan",
|
|
188
|
+
"homepage.showcase_drivers": "Pengurusan Pemandu",
|
|
189
|
+
"homepage.showcase_drivers_desc": "Jejak ketersediaan pemandu, tugasan, dan metrik prestasi",
|
|
190
|
+
"homepage.showcase_passengers": "Tempahan Penumpang",
|
|
191
|
+
"homepage.showcase_passengers_desc": "Urus maklumat penumpang, tempahan, dan sejarah transaksi",
|
|
192
|
+
"homepage.showcase_timeline": "Paparan Garis Masa",
|
|
193
|
+
"homepage.showcase_timeline_desc": "Garis masa gaya Gantt untuk memvisualisasikan jadual kenderaan dan laluan",
|
|
194
|
+
"homepage.showcase_notifications": "Notifikasi",
|
|
195
|
+
"homepage.showcase_notifications_desc": "Jadualkan SMS dan notifikasi push untuk penumpang dan pemandu",
|
|
196
|
+
"homepage.showcase_trackplayer": "Main Semula Laluan",
|
|
197
|
+
"homepage.showcase_trackplayer_desc": "Main semula laluan sejarah dengan kawalan kelajuan dan penjejakan titik laluan",
|
|
198
|
+
// CTA Section
|
|
199
|
+
"homepage.cta_title": "Mulakan Pembinaan Hari Ini",
|
|
200
|
+
"homepage.cta_subtitle": "Pasang komponen melalui CLI shadcn dan sambung ke backend SGERP anda. Sokongan TypeScript penuh disertakan.",
|
|
201
|
+
// Footer
|
|
202
|
+
"footer.about": "Tentang",
|
|
203
|
+
"footer.about_desc": "Komponen React siap produksi untuk platform mobiliti dan logistik, disokong oleh SWAT Mobility.",
|
|
204
|
+
"footer.documentation": "Dokumentasi",
|
|
205
|
+
"footer.getting_started": "Bermula",
|
|
206
|
+
"footer.api_reference": "Rujukan API",
|
|
207
|
+
"footer.components": "Komponen",
|
|
208
|
+
"footer.pages": "Halaman",
|
|
209
|
+
"footer.resources": "Sumber",
|
|
210
|
+
"footer.try_demo": "Cuba Demo",
|
|
211
|
+
"footer.github": "GitHub",
|
|
212
|
+
"footer.npm_package": "Pakej NPM",
|
|
213
|
+
"footer.connect": "Sambung",
|
|
214
|
+
"footer.swat_website": "SWAT Mobility",
|
|
215
|
+
"footer.contact": "Hubungi Kami",
|
|
216
|
+
"footer.about_us": "Tentang Kami",
|
|
217
|
+
"footer.copyright": "SWAT Mobility. Hak cipta terpelihara.",
|
|
218
|
+
"footer.terms": "Terma & Syarat",
|
|
151
219
|
// PT App
|
|
152
220
|
"ptapp.title": "Pengurusan PT",
|
|
153
221
|
"ptapp.login_required": "Sila log masuk untuk mengakses Pengurusan PT",
|
|
@@ -1913,4 +1981,11 @@ export const translations = {
|
|
|
1913
1981
|
"example.map.feature_style": "Tukar gaya peta menggunakan dropdown (kiri atas)",
|
|
1914
1982
|
"example.map.feature_zoom": "Zum dan geser menggunakan tetikus atau sentuhan",
|
|
1915
1983
|
"example.map.feature_updates": "Data dikemas kini secara automatik apabila collection berubah",
|
|
1984
|
+
// Table Examples
|
|
1985
|
+
"examples.live_example": "Contoh Langsung",
|
|
1986
|
+
"examples.integrated_editor_recommended": "Editor Bersepadu (Disyorkan)",
|
|
1987
|
+
"examples.integrated_editor_desc": "Dayakan edit dengan hanya enableEditor={true}. Jadual mengendalikan laci dan editor secara automatik.",
|
|
1988
|
+
"examples.custom_onedit_handler": "Pengendali onEdit Tersuai",
|
|
1989
|
+
"examples.custom_onedit_desc": "Untuk kes penggunaan lanjutan, sediakan pengendali onEdit anda sendiri untuk kawalan penuh.",
|
|
1990
|
+
"examples.see_code_above": "Lihat contoh kod di atas untuk pelaksanaan tersuai",
|
|
1916
1991
|
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type Language } from "./locale";
|
|
2
|
+
/**
|
|
3
|
+
* Hook for SSR-safe localization
|
|
4
|
+
* Returns a function that safely gets localized text, falling back to English during SSR
|
|
5
|
+
*/
|
|
6
|
+
export declare function useLocalization(): {
|
|
7
|
+
getText: (key: string, params?: Record<string, unknown>) => string;
|
|
8
|
+
locale: Language;
|
|
9
|
+
mounted: boolean;
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=useLocalization.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useLocalization.d.ts","sourceRoot":"","sources":["../../sgerplib/locales/useLocalization.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAiD,KAAK,QAAQ,EAAE,MAAM,UAAU,CAAC;AAExF;;;GAGG;AACH,wBAAgB,eAAe;mBAmBW,MAAM,WAAW,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;EAKjF"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
"use client";
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
15
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
16
|
+
}) : function(o, v) {
|
|
17
|
+
o["default"] = v;
|
|
18
|
+
});
|
|
19
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
20
|
+
var ownKeys = function(o) {
|
|
21
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
22
|
+
var ar = [];
|
|
23
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
24
|
+
return ar;
|
|
25
|
+
};
|
|
26
|
+
return ownKeys(o);
|
|
27
|
+
};
|
|
28
|
+
return function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
})();
|
|
36
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
+
exports.useLocalization = useLocalization;
|
|
38
|
+
const React = __importStar(require("react"));
|
|
39
|
+
const react_1 = require("react");
|
|
40
|
+
const locale_1 = require("./locale");
|
|
41
|
+
/**
|
|
42
|
+
* Hook for SSR-safe localization
|
|
43
|
+
* Returns a function that safely gets localized text, falling back to English during SSR
|
|
44
|
+
*/
|
|
45
|
+
function useLocalization() {
|
|
46
|
+
const [mounted, setMounted] = (0, react_1.useState)(false);
|
|
47
|
+
const [locale, setLocaleState] = (0, react_1.useState)("en");
|
|
48
|
+
// Load locale synchronously before paint to avoid text blink
|
|
49
|
+
(0, react_1.useLayoutEffect)(() => {
|
|
50
|
+
setLocaleState((0, locale_1.getLocale)());
|
|
51
|
+
setMounted(true);
|
|
52
|
+
}, []);
|
|
53
|
+
// Subscribe to locale changes
|
|
54
|
+
(0, react_1.useEffect)(() => {
|
|
55
|
+
const unsubscribe = (0, locale_1.subscribeToLocaleChanges)((newLocale) => {
|
|
56
|
+
setLocaleState(newLocale);
|
|
57
|
+
});
|
|
58
|
+
return unsubscribe;
|
|
59
|
+
}, []);
|
|
60
|
+
const getText = React.useCallback((key, params) => {
|
|
61
|
+
return (0, locale_1.localize)(key, params, locale);
|
|
62
|
+
}, [locale]);
|
|
63
|
+
return { getText, locale, mounted };
|
|
64
|
+
}
|
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
export type Language = "en" | "ja";
|
|
2
|
+
export declare const locales: {
|
|
3
|
+
sgerp_login: {
|
|
4
|
+
en: {
|
|
5
|
+
username: string;
|
|
6
|
+
password: string;
|
|
7
|
+
backend: string;
|
|
8
|
+
username_placeholder: string;
|
|
9
|
+
password_placeholder: string;
|
|
10
|
+
backend_placeholder: string;
|
|
11
|
+
connect_button: string;
|
|
12
|
+
connecting_button: string;
|
|
13
|
+
error_fill_fields: string;
|
|
14
|
+
error_auth_failed: string;
|
|
15
|
+
error_failed_connect: string;
|
|
16
|
+
success_connected: string;
|
|
17
|
+
backend_localhost: string;
|
|
18
|
+
backend_staging: string;
|
|
19
|
+
backend_production: string;
|
|
20
|
+
};
|
|
21
|
+
ja: {
|
|
22
|
+
username: string;
|
|
23
|
+
password: string;
|
|
24
|
+
backend: string;
|
|
25
|
+
username_placeholder: string;
|
|
26
|
+
password_placeholder: string;
|
|
27
|
+
backend_placeholder: string;
|
|
28
|
+
connect_button: string;
|
|
29
|
+
connecting_button: string;
|
|
30
|
+
error_fill_fields: string;
|
|
31
|
+
error_auth_failed: string;
|
|
32
|
+
error_failed_connect: string;
|
|
33
|
+
success_connected: string;
|
|
34
|
+
backend_localhost: string;
|
|
35
|
+
backend_staging: string;
|
|
36
|
+
backend_production: string;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
sgerp_autocomplete: {
|
|
40
|
+
en: {
|
|
41
|
+
no_results: string;
|
|
42
|
+
loading: string;
|
|
43
|
+
select_first: string;
|
|
44
|
+
placeholder: string;
|
|
45
|
+
placeholder_project: string;
|
|
46
|
+
placeholder_user: string;
|
|
47
|
+
placeholder_simulation: string;
|
|
48
|
+
placeholder_vehicle: string;
|
|
49
|
+
placeholder_vehicletype: string;
|
|
50
|
+
placeholder_booking: string;
|
|
51
|
+
placeholder_node: string;
|
|
52
|
+
placeholder_projectmember: string;
|
|
53
|
+
};
|
|
54
|
+
ja: {
|
|
55
|
+
no_results: string;
|
|
56
|
+
loading: string;
|
|
57
|
+
select_first: string;
|
|
58
|
+
placeholder: string;
|
|
59
|
+
placeholder_project: string;
|
|
60
|
+
placeholder_user: string;
|
|
61
|
+
placeholder_simulation: string;
|
|
62
|
+
placeholder_vehicle: string;
|
|
63
|
+
placeholder_vehicletype: string;
|
|
64
|
+
placeholder_booking: string;
|
|
65
|
+
placeholder_node: string;
|
|
66
|
+
placeholder_projectmember: string;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
column: {
|
|
70
|
+
en: {
|
|
71
|
+
id: string;
|
|
72
|
+
name: string;
|
|
73
|
+
email: string;
|
|
74
|
+
phone: string;
|
|
75
|
+
active: string;
|
|
76
|
+
organization: string;
|
|
77
|
+
created: string;
|
|
78
|
+
created_at: string;
|
|
79
|
+
modified_at: string;
|
|
80
|
+
external_id: string;
|
|
81
|
+
code: string;
|
|
82
|
+
address: string;
|
|
83
|
+
postal_code: string;
|
|
84
|
+
coordinates: string;
|
|
85
|
+
project: string;
|
|
86
|
+
simulation: string;
|
|
87
|
+
vehicle: string;
|
|
88
|
+
vehicle_type: string;
|
|
89
|
+
registration_number: string;
|
|
90
|
+
color: string;
|
|
91
|
+
capacity: string;
|
|
92
|
+
start_time: string;
|
|
93
|
+
end_time: string;
|
|
94
|
+
passenger: string;
|
|
95
|
+
driver: string;
|
|
96
|
+
status: string;
|
|
97
|
+
state: string;
|
|
98
|
+
pickup_time: string;
|
|
99
|
+
dropoff_time: string;
|
|
100
|
+
type: string;
|
|
101
|
+
amount: string;
|
|
102
|
+
template: string;
|
|
103
|
+
service: string;
|
|
104
|
+
description: string;
|
|
105
|
+
username: string;
|
|
106
|
+
first_name: string;
|
|
107
|
+
last_name: string;
|
|
108
|
+
role: string;
|
|
109
|
+
message: string;
|
|
110
|
+
recipient: string;
|
|
111
|
+
sent_at: string;
|
|
112
|
+
delivery_status: string;
|
|
113
|
+
};
|
|
114
|
+
ja: {
|
|
115
|
+
id: string;
|
|
116
|
+
name: string;
|
|
117
|
+
email: string;
|
|
118
|
+
phone: string;
|
|
119
|
+
active: string;
|
|
120
|
+
organization: string;
|
|
121
|
+
created: string;
|
|
122
|
+
created_at: string;
|
|
123
|
+
modified_at: string;
|
|
124
|
+
external_id: string;
|
|
125
|
+
code: string;
|
|
126
|
+
address: string;
|
|
127
|
+
postal_code: string;
|
|
128
|
+
coordinates: string;
|
|
129
|
+
project: string;
|
|
130
|
+
simulation: string;
|
|
131
|
+
vehicle: string;
|
|
132
|
+
vehicle_type: string;
|
|
133
|
+
registration_number: string;
|
|
134
|
+
color: string;
|
|
135
|
+
capacity: string;
|
|
136
|
+
start_time: string;
|
|
137
|
+
end_time: string;
|
|
138
|
+
passenger: string;
|
|
139
|
+
driver: string;
|
|
140
|
+
status: string;
|
|
141
|
+
state: string;
|
|
142
|
+
pickup_time: string;
|
|
143
|
+
dropoff_time: string;
|
|
144
|
+
type: string;
|
|
145
|
+
amount: string;
|
|
146
|
+
template: string;
|
|
147
|
+
service: string;
|
|
148
|
+
description: string;
|
|
149
|
+
username: string;
|
|
150
|
+
first_name: string;
|
|
151
|
+
last_name: string;
|
|
152
|
+
role: string;
|
|
153
|
+
message: string;
|
|
154
|
+
recipient: string;
|
|
155
|
+
sent_at: string;
|
|
156
|
+
delivery_status: string;
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
filter: {
|
|
160
|
+
en: {
|
|
161
|
+
project: string;
|
|
162
|
+
simulation: string;
|
|
163
|
+
vehicle_type: string;
|
|
164
|
+
passenger: string;
|
|
165
|
+
driver: string;
|
|
166
|
+
organization: string;
|
|
167
|
+
template: string;
|
|
168
|
+
status: string;
|
|
169
|
+
state: string;
|
|
170
|
+
placeholder_project: string;
|
|
171
|
+
placeholder_simulation: string;
|
|
172
|
+
placeholder_vehicle_type: string;
|
|
173
|
+
placeholder_passenger: string;
|
|
174
|
+
placeholder_driver: string;
|
|
175
|
+
placeholder_organization: string;
|
|
176
|
+
placeholder_template: string;
|
|
177
|
+
};
|
|
178
|
+
ja: {
|
|
179
|
+
project: string;
|
|
180
|
+
simulation: string;
|
|
181
|
+
vehicle_type: string;
|
|
182
|
+
passenger: string;
|
|
183
|
+
driver: string;
|
|
184
|
+
organization: string;
|
|
185
|
+
template: string;
|
|
186
|
+
status: string;
|
|
187
|
+
state: string;
|
|
188
|
+
placeholder_project: string;
|
|
189
|
+
placeholder_simulation: string;
|
|
190
|
+
placeholder_vehicle_type: string;
|
|
191
|
+
placeholder_passenger: string;
|
|
192
|
+
placeholder_driver: string;
|
|
193
|
+
placeholder_organization: string;
|
|
194
|
+
placeholder_template: string;
|
|
195
|
+
};
|
|
196
|
+
};
|
|
197
|
+
sgerp_map: {
|
|
198
|
+
en: {
|
|
199
|
+
map_style: string;
|
|
200
|
+
style_light: string;
|
|
201
|
+
style_dark: string;
|
|
202
|
+
style_satellite: string;
|
|
203
|
+
style_street: string;
|
|
204
|
+
style_outdoors: string;
|
|
205
|
+
};
|
|
206
|
+
ja: {
|
|
207
|
+
map_style: string;
|
|
208
|
+
style_light: string;
|
|
209
|
+
style_dark: string;
|
|
210
|
+
style_satellite: string;
|
|
211
|
+
style_street: string;
|
|
212
|
+
style_outdoors: string;
|
|
213
|
+
};
|
|
214
|
+
};
|
|
215
|
+
table: {
|
|
216
|
+
en: {
|
|
217
|
+
map_hide: string;
|
|
218
|
+
map_split: string;
|
|
219
|
+
map_full: string;
|
|
220
|
+
};
|
|
221
|
+
ja: {
|
|
222
|
+
map_hide: string;
|
|
223
|
+
map_split: string;
|
|
224
|
+
map_full: string;
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
};
|
|
228
|
+
//# sourceMappingURL=locales.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"locales.d.ts","sourceRoot":"","sources":["../sgerplib/locales.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,QAAQ,GAAG,IAAI,GAAG,IAAI,CAAA;AAElC,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiOnB,CAAA"}
|